/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
         -o-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 576px) {
	.container {
		width: 540px;
	}
}
@media screen and (min-width: 768px) {
	.container {
		width: 720px;
	}
}
@media screen and (min-width: 992px) {
	.container {
		width: 960px;
	}
}
@media screen and (min-width: 1200px) {
	.container {
		width: 1140px;
	}
}
@media screen and (min-width: 1400px) {
	.container {
		width: 1320px;
	}
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
}
header {
	-webkit-box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
    box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
    z-index: 1;
    position: relative;
}
header .container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 150px calc(100% - 150px);
	grid-template-columns: 150px calc(100% - 150px);
	/*padding: 10px;*/
	
}
header nav {
	-ms-grid-row-align: center;
	-ms-grid-column-align: end;
	place-self: center end;
}
header img {
	width: 150px;
	-ms-grid-row-align: center;
	-ms-grid-column-align: center;
	place-self: center center;
}
header nav ul {
	display: -ms-grid;
	display: grid;
	grid-auto-flow: column;
	grid-column-gap: 15px;
	margin: 5px;
}
header nav ul li {
	color: #23242C;
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
}
@media screen and (min-width: 568px) {
	/*header .container {
		-ms-grid-columns: 150px calc(100% - 150px);
		grid-template-columns: 150px calc(100% - 150px);
	}
	header img {
		width: 200px;
	}
	header nav ul li {
		font-size: 20px;
	}*/
}
@media screen and (min-width: 768px) {
	/*header .container {
		-ms-grid-columns: 112px calc(100% - 112px);
		grid-template-columns: 112px calc(100% - 112px);
	}
	header img {
		width: 100%;
	}
	header nav ul li {
		font-size: 20px;
	}*/
}
header nav ul li a {
	color: #23242C;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
/*.class-uk header nav ul .li-home {
	color: #92C43D;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
header nav ul .li-home {
	color: #92C43D;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	border-bottom: 2px solid #92C43D;
}
header nav ul li:hover a {
	color: #92C43D;
}*/
.block-under-slider {
	position: relative;
}
.block-under-slider .container {
	border-radius: 8px;
	background-color: #92C43D;
	position: absolute;
	left: 0;
	right: 0;
	font-size: 16px;
	top: -25px;
	z-index: 1001;
	display: -ms-grid;
	display: grid;
	padding: 20px 40px;
}
.block-under-slider .container .blocks {
	place-self: center center;
	width: 100%;
	display: grid;
	grid-template-columns: 100%;
	line-height: 1.1;
	grid-row-gap: 10px;
}

.block-under-slider .container .block-text-top {
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 2;
	align-self: center;
	justify-self: center;
	color: #fff;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-weight: bold;
}
.block-under-slider .container .block-text-bot {
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 2;
	grid-row-end: 3;
    align-self: center;
    justify-self: center;
	color: #23242C;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-weight: normal;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.block-under-slider .container {
		top: -100px;
		padding: 50px 100px;
		font-size: 28px;
	}
	.block-under-slider .container .blocks {
		grid-template-columns: 100%;
		place-self: center start;
	}
	.block-under-slider .container .block-text-top {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 2;
		align-self: center;
	}
	.block-under-slider .container .block-text-bot {
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 2;
		grid-row-end: 3;
		align-self: center;
	}
}
.service {
    margin-top: 200px;
}
.service.two {
    margin-top: 15px;
}
.service .container {
	position: relative;
}
.service h2 {
	text-align: center;
    padding: 40px 0 25px;
    font-size: 24px;
    color: #92C43D;
    text-transform: none;
    position: relative;
	background: url("../img/bg_h2.png") no-repeat 50% 100%;
	font-weight: 500;
    font-family: 'Fira Sans Condensed', sans-serif;
}
.service h2 .service-black {
	color: #23242C;
}

@media screen and (min-width: 768px) {
	.service h2 {
		font-size: 36px;
	}
	.service h2::before, .service h2::after {
		width: 170px;
		height: 43px;
		position: absolute;
		top: 60px;
		content: "";
		display: block;
	}
	.service h2::before {
		border-top: 2px solid #92C43D;
		border-left: 2px solid #92C43D;
		left: 0;
	}
	.service h2::after {
		border-top: 2px solid #92C43D;
		border-right: 2px solid #92C43D;
		right: 0;
	}
}
@media screen and (min-width: 992px) {
	.service h2 {
		font-size: 48px;
	}
}
.service p {
	text-align: center;
	padding: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	font-size: 16px;
    font-family: 'Fira Sans Condensed', sans-serif;
}
.splide.two {
	margin-top: 20px;
}
.splide__slide.two {
	display: -ms-grid;
	display: grid;
	grid-auto-flow: row;
	grid-row-gap: 20px;
	grid-template-rows: 28% 13% 25%;
}
.splide__slide__container {
	display: -ms-grid;
	display: grid;
}
.splide__slide.two img {
	-ms-grid-row-align: center;
	-ms-grid-column-align: center;
	place-self: center center;
}
.splide__slide.two h3 {
	-ms-grid-row-align: center;
	-ms-grid-column-align: center;
	place-self: center center;
}
.splide__slide.two p {
	-ms-grid-row-align: center;
	-ms-grid-column-align: center;
	place-self: start center;
	padding: 0 20px;
	text-align: center;
}
#count {
	display: -ms-grid;
	display: grid;
	grid-auto-flow: row;
	width: 100%;
	margin-top: 40px;
}
#count .count-block {
	background: -webkit-gradient(linear, left top, right top, from(#add256), to(#79ad11));
	background: -o-linear-gradient(left, #add256 0%, #79ad11 100%);
	background: linear-gradient(to right, #add256 0%, #79ad11 100%);
	display: -ms-grid;
	display: grid;
	grid-auto-flow: row;
	font-family: 'Fira Sans Condensed', sans-serif;
	height: 160px;
}
#count .count-block:not(:last-child) {
	border-bottom: 1px solid rgb(151, 149, 149);
}
#count .count-block span {
	font-size: 36px;
	color: #fff;
	-ms-grid-row-align: end;
	-ms-grid-column-align: center;
	place-self: end center;
}
#count .count-block p {
	font-size: 24px;
	color: #23242C;
	-ms-grid-row-align: start;
	-ms-grid-column-align: center;
	place-self: start center;
}
@media screen and (min-width: 768px) {
	#count {
		display: -ms-grid;
		display: grid;
		grid-auto-flow: column;
		height: 200px;
	}
	#count .count-block {
		height: unset;
	}
	#count .count-block span {
		font-size: 32px;
	}
	#count .count-block p {
		font-size: 16px;
	}
	#count .count-block:not(:last-child) {
		border-bottom: none;
	}
}
@media screen and (min-width: 992px) {
	#count .count-block span {
		font-size: 60px;
	}
	#count .count-block p {
		font-size: 24px;
	}
}
.design-project {
	margin-top: 60px;
}
.design-project .container {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 50% 50%;
	grid-template-rows: 50% 50%;
	-ms-grid-columns: 100%;
	grid-template-columns: 100%;
	height: 600px;
	border-radius: 8px;
	position: relative;
}
.design-project .container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.design-project .container > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
@media screen and (min-width: 768px) {
	.design-project .container {
		-ms-grid-rows: 100%;
		grid-template-rows: 100%;
		-ms-grid-columns: 50% 50%;
		grid-template-columns: 50% 50%;
		height: 360px;
	}
	.design-project .container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
	}
	.design-project .container > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
	}
}
.design-project .container .block-left {
	padding: 15px 10px 15px 40px;
	height: 100%;
    background: #23242C url('../img/design-logo.png') no-repeat 50% 50%;
    position: relative;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 50% 50%;
	grid-template-rows: 50% 50%;
}
.design-project .container .block-left h2 {
	line-height: 1;
	font-size: 40px;
    color: #92C43D;
	-ms-grid-row-align: center;
	-ms-grid-column-align: start;
	place-self: center start;
}
.design-project .container .block-left p {
	font-size: 16px;
    color: #fff;
	text-align: left;
}
.design-project .container .block-right {
	background: url('../img/design-image.png') no-repeat 50% 50%;
    background-size: cover;
    height: 100%;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}
.design-project .container .divider {
	display: none;
}
@media screen and (min-width: 768px) {
	.design-project .container .divider {
		background: url('../img/bush.png') no-repeat 50% 50%;
		width: 295px;
		height: 345px;
		display: block;
		position: absolute;
		z-index: 100;
		right: -148px;
		bottom: -50px;
	}
	.design-project .container .block-left {
	    	border-top-left-radius: 8px;
	        border-bottom-left-radius: 8px;
	}
}
#special-offer {
	padding: 10px;
	margin: 50px 0;
}
#special-offer .container {
	position: relative;
}
#special-offer .container .item {
	padding: 20px;
    height: 622px;
    background: #F7F7F7 url("../img/special-bg.jpg") 50% 50% no-repeat;
    font-weight: 500;
    font-family: 'Fira Sans Condensed', sans-serif;
    border-radius: 8px;
    background-clip: padding-box;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 30px 100px 120px 250px;
	grid-template-rows: 30px 100px 120px 250px;
	-ms-grid-columns: 100%;
	grid-template-columns: 100%;
}
#special-offer .container .item > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#special-offer .container .item > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
#special-offer .container .item > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
#special-offer .container .item > *:nth-child(4) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
#special-offer .container .item::after {
	content: "";
    display: block;
    width: 86%;
    margin-left: -43%;
    position: absolute;
    z-index: -1;
    height: 10px;
    bottom: 25px;
    left: 50%;
    right: 0;
    -webkit-box-shadow: 0 35px 35px rgb(0 0 0 / 60%);
    box-shadow: 0 35px 35px rgb(0 0 0 / 60%);
}
#special-offer .container .item h3 {
	-ms-grid-column: 1;
	    grid-column-start: 1;
	-ms-grid-column-span: 1;
	grid-column-end: 2;
	-ms-grid-row: 1;
	    grid-row-start: 1;
	-ms-grid-row-span: 1;
	grid-row-end: 2;
	font-size: 24px;
    color: #92C43D;
	text-transform: uppercase;
	-ms-grid-column-align: center;
	    justify-self: center;
}
#special-offer .container .item h2 {
	-ms-grid-column: 1;
	    grid-column-start: 1;
	-ms-grid-column-span: 1;
	grid-column-end: 2;
	-ms-grid-row: 2;
	    grid-row-start: 2;
	-ms-grid-row-span: 1;
	grid-row-end: 3;
	font-size: 36px;
    color: #23242C;
    margin: 0 0 25px;
	text-transform: uppercase;
	-ms-grid-column-align: center;
	    justify-self: center;
}
#special-offer .container .item p {
	-ms-grid-column: 1;
	    grid-column-start: 1;
	-ms-grid-column-span: 1;
	grid-column-end: 2;
	-ms-grid-row: 3;
	    grid-row-start: 3;
	-ms-grid-row-span: 1;
	grid-row-end: 4;
	font-size: 16px;
}
#special-offer .container .item form {
	-ms-grid-column: 1;
	    grid-column-start: 1;
	-ms-grid-column-span: 1;
	grid-column-end: 2;
	-ms-grid-row: 4;
	    grid-row-start: 4;
	-ms-grid-row-span: 1;
	grid-row-end: 5;
	display: -ms-grid;
	display: grid;
	grid-auto-flow: row;
	grid-row-gap: 10px;
}
#special-offer .container .item form .form-group {
	width: 100%;
}
#special-offer .container .item form .btn {
	color: #ffffff;
    background: #92C43D;
	width: 100%;
	border-radius: 25px;
	border: none;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#special-offer .container .item form .btn:hover {
	background: #23242C;
    color: #ffffff;
}
#special-offer .container .item form .form-group input {
	width: 100%;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    background: #ffffff;
    padding: 16px 22px;
    border: 1px solid #dadada;
    -webkit-border-radius: 64px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 64px;
    -moz-background-clip: padding;
    border-radius: 64px;
    background-clip: padding-box;
}
#special-offer .container .item img {
	display: none;
}
@media screen and (min-width: 992px) {
	#special-offer {
		padding: 100px 0;
		margin: 0;
	}
	#special-offer .container .item {
		padding: 75px 100px 90px;
		-ms-grid-rows: 30px 100px 120px 250px;
		grid-template-rows: 30px 100px 120px 250px;
		-ms-grid-columns: 60% 40%;
		grid-template-columns: 60% 40%;
	}
	#special-offer .container .item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
	}
	#special-offer .container .item > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
	}
	#special-offer .container .item > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
	}
	#special-offer .container .item > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
	}
	#special-offer .container .item > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
	}
	#special-offer .container .item > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
	}
	#special-offer .container .item > *:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
	}
	#special-offer .container .item > *:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
	}
	#special-offer .container .item h3 {
		-ms-grid-column: 1;
		    grid-column-start: 1;
		-ms-grid-column-span: 1;
		grid-column-end: 2;
		-ms-grid-row: 1;
		    grid-row-start: 1;
		-ms-grid-row-span: 1;
		grid-row-end: 2;
		font-size: 24px;
		-ms-grid-column-align: start;
		    justify-self: start;
	}
	#special-offer .container .item h2 {
		-ms-grid-column: 1;
		    grid-column-start: 1;
		-ms-grid-column-span: 1;
		grid-column-end: 2;
		-ms-grid-row: 2;
		    grid-row-start: 2;
		-ms-grid-row-span: 1;
		grid-row-end: 3;
		font-size: 48px;
		-ms-grid-column-align: start;
		    justify-self: start;
	}
	#special-offer .container .item p {
		-ms-grid-column: 1;
		    grid-column-start: 1;
		-ms-grid-column-span: 1;
		grid-column-end: 2;
		-ms-grid-row: 3;
		    grid-row-start: 3;
		-ms-grid-row-span: 1;
		grid-row-end: 4;
		font-size: 16px;
	}
	#special-offer .container .item form {
		-ms-grid-column: 1;
		    grid-column-start: 1;
		-ms-grid-column-span: 1;
		grid-column-end: 2;
		-ms-grid-row: 4;
		    grid-row-start: 4;
		-ms-grid-row-span: 1;
		grid-row-end: 5;
		display: -ms-grid;
		display: grid;
		grid-auto-flow: row;
		grid-row-gap: 10px;
	}
	#special-offer .container .item form .form-group {
		width: 75%;
	}
	#special-offer .container .item img {
		-ms-grid-column: 2;
		    grid-column-start: 2;
		-ms-grid-column-span: 1;
		grid-column-end: 3;
		-ms-grid-row: 1;
		    grid-row-start: 1;
		-ms-grid-row-span: 4;
		grid-row-end: 5;
		position: absolute;
		right: 35px;
		bottom: 0;
		display: block;
	}
	#special-offer .container .item form .btn {
		width: 200px;
	}
}
@media screen and (min-width: 1200px) {
	#special-offer .container .item h2 {
		font-size: 60px;
	}
}
footer {
	background: #23242C;
    color: #F7F7F7;
    font-size: 14px;
	height: 600px;
	width: 100%;
}
footer .container {
	display: -ms-grid;
	display: grid;
	height: 100%;
	grid-auto-flow: column;
	-ms-grid-rows: 25% 25% 25% 25%;
	grid-template-rows: 25% 25% 25% 25%;
}
footer .footer-item {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 50% 50%;
	grid-template-rows: 50% 50%;
	-ms-grid-row-align: center;
	    align-self: center;
	height: 100%;
	padding: 10px;
}
footer .footer-item:not(:last-child) {
	border-bottom: 1px solid #42434D;
}
@media screen and (min-width: 768px) {
	footer {
		height: 300px;
	}
	footer .container {
		-ms-grid-rows: 100%;
		grid-template-rows: 100%;
		-ms-grid-columns: 25% 25% 25% 25%;
		grid-template-columns: 25% 25% 25% 25%;
		padding: 30px 0;
		/*background: #23242C url("../img/footer-bg.png") no-repeat 30px 80px;*/
	}
	footer .container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
	}
	footer .container > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
	}
	footer .container > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
	}
	footer .container > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
	}
	footer .footer-item {
		grid-auto-flow: column;
	/*height: 120px */;
	}
	footer .footer-item:not(:last-child) {
		border-right: 1px solid #42434D;
		border-bottom: none;
	}
}
footer .footer-item i {
	font-size: 30px;
	color: #92C43D;
	-ms-grid-row-align: end;
	-ms-grid-column-align: center;
	place-self: end center;
}
footer .footer-item p {
	-ms-grid-row-align: center;
	-ms-grid-column-align: center;
	place-self: center center;
	text-align: center;
	font-size: 16px;
    font-weight: 100;
    color: #F7F7F7;
	font-family: 'Open Sans', sans-serif;
}
.box {
    -webkit-box-shadow: 0 0 10px #cecece;
            box-shadow: 0 0 10px #cecece;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
 }
 .dropbtn {
  background-color: #92C43D;
  color: white;
  padding: 10px 40px;
  font-size: 14px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}

#gallery {
    margin: 100px auto 0 auto;
}

.footer-item iframe {
    width: 100%;
    height: 100%;
    grid-row-start: 1;
    grid-row-end: 3;
}

body {
    max-width: 1776px;
    margin-left: auto;
    margin-right: auto;
}