/* Header
-----------------------------------------------------------------------------*/
h2 {
	font-size: 45px;
	line-height: 60px;
	font-weight: 100;
	padding-bottom: 25px;
	color: #000;
}
.header {
	margin-top: 45px;
	margin-bottom: 40px;
}
.logo {
	padding: 0;
}
.logo img {
	width: 100%;
	height: auto;
	max-width: 323px;
}
.social {
	margin-top: 23px;
}
#pozvonit {
	position: fixed;
	background: #85C160;
	right: 0px;
	top: 30%;
	border-radius: 50px 0 0 50px;
	border-top: 2px solid #70A248;
	border-bottom: 2px solid #70A248;
	border-left: 2px solid #70A248;
	padding: 10px 10px 10px 15px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 42px;
	z-index: 1000;
}
.zvonok  a:link {
	color: #FFF;
}
.zvonok a:visited {
	color: #FFF;
}
.zvonok a:hover {
	color: #FFF;
	background: #70A248;
}
.zvonok a:active {
	color: #FFF;
	background: #70A248;
}

/* Menu
-----------------------------------------------------------------------------*/
.menu {
	font-size: 16px;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	top: 22px;
	padding: 0;
}
.burger { 
	display: block;
	list-style-type: none;
}
.burger ul { 
	text-align: center;
}
.burger li {
	list-style: none;
	color: #000;
	line-height: 32px;
}
.burger li a {
	padding: 3px 10px;
	margin: 0 4px;
	text-decoration: none;
	color: #000;
	transition: 0.3s;
}
.burger li a:hover {
	background: #65AA4B;
	color: #fff;
}
.burger label {
	display: none;
}
#menu-toggle {
	display: none;
}

@media all and (max-width: 992px) and (min-width: 0px) {
.burger label {
	display: block;
	line-height: 32px;
	text-align: center;
	color: #65AA4B;
	font-size: 1.4rem;
	cursor: pointer;
	}
.burger .nav {
	display: none;
	}
.burger li {
	width: 100%;
	}
#menu-toggle:checked + .nav {
	display: block;
	}
.burger label:active .nav {
	display: none;
	}
.content-slide {
	padding: 2rem 2% 0 2rem!important;
}
.content-slide h2 {
	font-size: 32px!important;
	line-height: 40px!important;
}
.counter {
	font-size: 3rem!important;
}
.text-block2 {
	margin-top: 5%!important;
}
#pozvonit {
	top: 30%;
	padding: 3px 5px 3px 10px;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 42px;
	z-index: 1000;
}
#pozvonit img {
	width: 20px;
	height: 20px;
	}
}
@media all and (max-width: 576px) and (min-width: 0px) {
	.logo {
	text-align: center;
}
	.social {
	text-align: center;
}
.content-slide {
	position: absolute;
	top: 0!important;
	width: 100%!important;
	text-align: center!important;
	padding: 0 15px!important;
	font-size: 15px;
	line-height:21px;
}
.content-slide h2 {
	font-size: 24px!important;
	line-height: 26px!important;
}
.cd-slider {
	height: 25rem!important;
}
.footer {
	text-align: center!important;
}
.logo img {
    max-width: 300px;
}
.image {
	top: 100px!important;
}
}

/* Slider Style
--------------------------------------*/
.cd-slider {
	position: relative;
	width: 100%;
	height: 48rem;
	overflow: hidden;
	margin-bottom: 0;
}
.cd-slider li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
    will-change: visibility;
}
.image {
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	clip: rect(0, 80rem, 50rem, 80rem);
    will-change: clip;
    transition: 3s;
    z-index:-1;
}
.content-slide {
	position: absolute;
	display: block;
	top: 10%;
	right: 0;
	width: 50%;
	height: 92%;
	padding: 2rem 20% 0 2rem;
	font-size: 17px;
	text-align: left;
	color: #696969;
}
.content-slide h2 {
	text-overflow: ellipsis;
	overflow: hidden;
	transform: translateY(-30%);
	opacity: 0;
	transition: transform .5s, opacity .5s;
    will-change: transform, opacity;
	font-size: 45px;
	line-height: 60px;
	font-weight: 100;
	padding-bottom: 10px;
	color: #000;
}

/* Current Slide 
-------------------------------------*/
li.current {
	visibility: visible;
	transition-delay: 0s;
}
li.current .image {
	clip: rect(0, 80rem, 50rem, 0);
}
li.current .content-slide h2 {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 1s;
}
li.current .content-slide a {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 1.1s;
}

/* Prev Slide 
------------------------------------*/
li.prev_slide .image {
	clip: rect(0, 0, 0rem, 0);
}
nav {
	position: absolute;
	bottom: 0;
	right: 34%;
	top: 77%;
	z-index: 2;
}
.prev, .next, .counter {
	vertical-align: middle;
}
.prev, .next {
	position: relative;
    display: inline-block;
    height: 15px;
    width: 15px;
    border: 0;
    padding: 17px;
    cursor: pointer;
    background: transparent;
    outline: 0 !important;
    border-radius: 50px;
}
.prev::before, .next::before {
	content: '';
	position: absolute;
	border-right-color: #81C068;
	width: 15px;
	height: 15px;
	border-radius:50px;
}
.prev::after, .next::after {
	content: '';
	position: absolute;
	background: #81C068;
	height: 15px;
	width: 15px;
	transition: width .3s;
	border-radius:50px;
	border:2px solid #6DA151;
}
.next::before {
	right: 0;
    left: auto;
	border-left-color: #81C068;
	border-radius:50px;
}
.next::after {
	right: .5rem;
	left: auto;
}
.counter {
	display: none;
	font-size: 2rem;
	font-family: serif;
	font-style: italic;
}
@media screen and ( max-width: 550px ) {
	.image { width: 100%; }
	.content { padding-right: 2rem; }
	nav { right: 25px; left: auto; }
}
.block2 {
	padding: 60px 0;
	margin: 0;
	background: #E8EEEF;
	color: #363937;
}
.block2 li {
	font-weight: bold;
	font-size: 17px;
	line-height: 26px;
	list-style: none;
	background: url(./../images/check.jpg) left no-repeat;
	padding: 0 0 0 40px;
	margin-bottom: 22px;
}
.block3 {
	padding: 45px 0;
	margin: 0;
	color: #363937;
}
.block3 img {
	margin-bottom: 40px;
}
.block4 {
	padding: 60px 0;
	margin: 0;
	background: #E8EEEF;
	color: #363937;
}
.block5 {
	padding: 60px 0;
	margin: 0;
	color: #363937;
}
.block5 img {
	width: 100%;
	height: auto;
	max-width: 970px;
	margin-top: 15px;
}
.block6 {
	padding: 60px 0;
	margin: 0;
	background: #E8EEEF;
	color: #363937;
}
.block6 img {
	width: 100%;
	height: auto;
	max-width: 187px;
	margin-bottom: 12px;
}
.block7 {
	padding: 60px 0;
	margin: 0;
	color: #363937;
	font-size: 18px;
}
.block7 img {
	margin-top: 10px;
}
.block7 a:link {
	color: #669a14;
	font-weight: 700;
	text-decoration: underline;
}
.block7 a:visited {
	color: #669a14;
	font-weight: 700;
	text-decoration: underline;
}
.block7 a:hover {
	color: #669a14;
	font-weight: 700;
	text-decoration: none;
}
.footer {
	padding: 20px 0;
	margin: 0;
	background: #E8EEEF;
	color: #6c6c6c;
	font-size: 12px;
}
.img-block img {
	width: 100%;
	height: auto;
	max-width: 617px;
	padding-top: 40px;
}
.zayavka {
	font-size: 21px;
	text-transform: uppercase;
	margin: 40px 0 30px 0;
}
.zayavka a:link {
	font-size: 21px;
	text-transform: uppercase;
	padding: 6px 45px 8px 45px;
	border-radius: 50px;
	background: #85c160;
    background: -moz-linear-gradient(top, #85c160 0%, #6ba449 100%);
    background: -webkit-linear-gradient(top, #85c160 0%,#6ba449 100%);
    background: linear-gradient(to bottom, #85c160 0%,#6ba449 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#85c160', endColorstr='#6ba449',GradientType=0 );
	border: 2px solid #6BA449;
	color: #FFF;
	font-weight: 400;
	text-decoration: none;
}
.zayavka a:visited {
	font-size: 21px;
	text-transform: uppercase;
	padding: 6px 45px 8px 45px;
	border-radius: 50px;
	background: #85c160;
    background: -moz-linear-gradient(top, #85c160 0%, #6ba449 100%);
    background: -webkit-linear-gradient(top, #85c160 0%,#6ba449 100%);
    background: linear-gradient(to bottom, #85c160 0%,#6ba449 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#85c160', endColorstr='#6ba449',GradientType=0 );
	border: 2px solid #6BA449;
	color: #FFF;
	font-weight: 400;
	text-decoration: none;
}
.zayavka a:hover {
	font-size: 21px;
	text-transform: uppercase;
	padding: 6px 45px 8px 45px;
	border-radius: 50px;
	background: #6BA449;
	border: 2px solid #6BA449;
	color: #FFF;
	font-weight: 400;
	text-decoration: none;
}
.zayavka a:active {
	font-size: 21px;
	text-transform: uppercase;
	padding: 6px 45px 8px 45px;
	border-radius: 50px;
	background: #6BA449;
	border: 2px solid #6BA449;
	color: #FFF;
	font-weight: 400;
	text-decoration: none;
}
.btn-primary {
    font-size: 21px;
	text-transform: uppercase;
	padding: 5px 45px 7px 45px;
	border-radius: 50px;
	background: #85c160;
    background: -moz-linear-gradient(top, #85c160 0%, #6ba449 100%);
    background: -webkit-linear-gradient(top, #85c160 0%,#6ba449 100%);
    background: linear-gradient(to bottom, #85c160 0%,#6ba449 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#85c160', endColorstr='#6ba449',GradientType=0 );
	border: 2px solid #6BA449;
	color: #FFF;
	font-weight: 400;
	text-decoration: none;
	margin: 10px 0 0 0;
}
.btn-primary:hover {
	font-size: 21px;
	text-transform: uppercase;
	padding: 5px 45px 7px 45px;
	border-radius: 50px;
	background: #6BA449;
	border: 2px solid #6BA449;
	color: #FFF;
	font-weight: 400;
	text-decoration: none;
}
.text-block2 {
	margin-top: 15%;
}

.gall img {
	width: 100%;
	height: auto;
	max-width: 290px;
}
/*Zoom In*/
.column#zoomIn img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	margin: 15px 0;
}
.column#zoomIn:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/*With Simple Caption*/
.column#caption {
	position: relative;
}
.column#caption .text {
	position: absolute;		
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
    opacity: 0;
    transition: all 0.8s ease;			
}
.column#caption .text h1 {		
	margin: 0;		
	color: white;
}
.column#caption:hover .text {
	opacity: 1;
	
}
.column#caption:hover img {
	-webkit-filter: sepia(90%);
}
.frame {
	text-align: center;	
	position: relative;
	cursor: pointer;	
	perspective: 500px; 
}
.frame img {
	margin-top: 15px;
}
.frame .details {
	width: 70%;
	height: 80%;	
	padding: 8% 8%;
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotateY(90deg);
	transform-origin: 50%;
	background: rgba(255,255,255,0.9);	
	opacity: 0;
	transition: all 0.4s ease-in;
}
.frame:hover .details {
	transform: translate(-50%, -50%) rotateY(0deg);
	opacity: 1;
}
.pop {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 15px;
  background: #FFF;
  text-align: center;
}
.pop i {
  position: absolute;
  right: 4px;
  top: 2px;
  font-size: 2rem;
  cursor: pointer;
}
.pop i:hover {
  color: black;
}
.pop img {
  margin-right: 12px;
}
.pop h2 {
    line-height:40px;
}

@media only screen and (min-width: 768px) {
  i {
  font-size: 2rem;
  }
 .pop {
  left: 50%;
  top: 40%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  }
}
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #81C068;
  width: 40px;
  height: 40px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 3000;
  text-align: center;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 13px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background:#6DA151;
}
#return-to-top:hover i {
  color: #fff;
  top: 5px;
}




fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}
#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}
#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}
#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4CAF50;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}
#contact button[type="submit"]:hover {
  background: #43A047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}
::-webkit-input-placeholder {
  color: #888;
}
:-moz-placeholder {
  color: #888;
}
::-moz-placeholder {
  color: #888;
}
:-ms-input-placeholder {
  color: #888;
}


button, input {
    overflow: visible;
    width: 100%;
}
input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    padding: 5px 10px;
    border: 1px solid #ccc;
    margin: 5px 0;
}
button {
    background: #81C068;
    border: none;
    color: #FFF;
    padding: 7px 0;
    cursor:	pointer;
}