/*
Theme Name: Dacha
Author: Maxim Smolnikov
Author URI: https://smolnikov.site/
Version: 1.0
*/

/* Colors */

:root {
	--dacha-black: #212721;
	--dacha-green: #3e753b;
	--dacha-green-dark: #295e26;
	--dacha-red: #f9423a;
	--header-height: 83px;
	--header-2-height: 160px;
	--container-width: 1200px;
	--container-width-thin: 720px;
	--container-padding: 2rem;
	--poles: calc(100% - var(--container-width));
	--halfpoles: calc(var(--poles) / 2);
}

@media all and (max-width: 1024px) {
	:root {
		--header-2-height: 136px;
	}
}

@media all and (max-width: 768px) {
	:root {
		/* --header-2-height: 104px; */
	}	
}

/* Common */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-rendering: optimizeLegibility;
}
.grecaptcha-badge {
	display: none !important;
}
html {
    font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	background-color: white;
	padding-top: var(--header-height);
}
body.blocked {
	overflow: hidden;
}
body.with-header-2 {
	padding-top: var(--header-2-height);	
}
body,
body a {
	color: var(--dacha-black);
}
li {
	list-style: none;
}
img {
	max-width: 100%;
}
a, a:visited {
    text-decoration: none;
}
.container {
    margin: 0 auto;
    width: var(--container-width);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container.thin {
    width: var(--container-width-thin);
}
.category .posts {
	margin-left: -15px;
	margin-right: -15px;
}
.hide-on-desktop {
	display: none;
}
input, textarea {
	font-family: 'Montserrat', sans-serif;
}
input:not([type="checkbox"]),
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.button {
	font-family: 'Montserrat', sans-serif;
	color: var(--dacha-green);
	background: white;
	font-size: 1.6rem;
	line-height: 2.0rem;
	padding: 1.5rem 6rem;
	position: relative;
	transition: all 0.25s;
	cursor: pointer;
	user-select: none;
	border: none;
	border-radius: 100px;
	border: 1px solid var(--dacha-green);
	display: inline-block;
}
.button.white {
	color: white;
	background: transparent;
	border-color: white;
}
.button.active,
.button:hover,
.button.white:hover {
	color: white;
	background: var(--dacha-green);
	border-color: var(--dacha-green);
}
/*
.button.transparent {
	color: var(--dacha-green);
	background: none;
}
.button.transparent:hover {
	color: var(--dacha-green);
	background: white;
    text-shadow: 0 1px 0px transparent;
}*/
.button.small {
	font-size: 1.2rem;
	padding: 0.8rem 2rem;
}
.button:disabled {
	color: black;
	background: #ccc;
}

/* Slick Slider */

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
.slick-loading .slick-list {
	background: #fff url('img/ajax-loader.gif') center center no-repeat;
}

/* Slick arrows */

.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	outline: none;
	background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: .25;
}
.slick-prev:before,
.slick-next:before {
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-prev {
	left: -25px;
}
[dir='rtl'] .slick-prev {
	right: -25px;
	left: auto;
}
.slick-prev:before {
	content: '';
}
.slick-next {
	right: -25px;
}
[dir='rtl'] .slick-next {
	right: auto;
	left: -25px;
}
.slick-next:before {
	content:''
}

/* Slick dots */

.slick-dotted.slick-slider {
	margin-bottom: 30px;
}
.slick-dots {
	position: absolute;
	bottom: -25px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}
.slick-dots li button:before {
	font-family: 'slick';
	font-size: 6px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '',
	text-align: center;
	opacity: .25;
	color: black;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
	opacity: .75;
	color: black;
}

/* Header */

#mobilemenu {
	display: none;
	position: fixed;
	top: var(--header-height);
	width: 100%;
	left: 0;
	background: white;
	z-index: 15;
	margin-left: 0;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	padding: 4rem 0 2rem 0;
	height: calc( 100% - var(--header-height) );
	overflow: auto;
}
body.with-header-2 #mobilemenu {
	top: var(--header-2-height);	
}
.admin-bar #mobilemenu {
	top: calc( var(--header-height) + 32px );
	height: calc( 100% - var(--header-height) - 32px );
}
#mobilemenu br {
	display: none;
}
#mobilemenu .container > ul > li > a {
	font-weight: 700;
	font-size: 18px;
}
#mobilemenu .container > ul > li.opened > a {
	color: var(--dacha-green);
}
#mobilemenu .container > ul > li + li {
	margin-top: 1rem;
}
#mobilemenu .container > ul li.menu-item-has-children > a:after {
	margin-left: 5px;
	content: '';
	display: inline-block;
	width: 8px;
	height: 10px;
	background-size: contain;
	background: url('img/arrow-down.svg') center no-repeat;
}
#mobilemenu .container > ul > li > ul {
	margin: 1.5rem 0 1.5rem 2rem;
	display: none;
}
#mobilemenu .container > ul .sub-menu {
	
}
#mobilemenu .container > ul > li > ul > li > a {
	font-size: 16px;
}
#mobilemenu .container > ul > li > ul > li + li {
	margin-top: 1rem;
}
#mobilemenu .container > ul > li > ul > li > ul {
	display: none;
	margin: 1.5rem 0 1.5rem 2rem;
}
#mobilemenu .container > ul > li > ul > li > ul > li + li {
	margin-top: 1rem;
}
#mobilemenu .container > ul > li > ul > li > ul > li > a {
	font-size: 14px;
}
.mobile-switch {
	display: none;
	width: 26px;
	height: 26px;
	position: relative;
	align-self: center;
}
.mobile-switch .line {
	width: 26px;
	height: 2px;
	position: absolute;
	background: var(--dacha-black);
	right: 0;
	top: 0;
	transition: all 0.3s;
}
.mobile-switch.opened .line {
	background: var(--dacha-green);
}
.mobile-switch .line1 {
	top: 10px;
	left: 0;
}
.mobile-switch.opened .line1 {
	top: 12px;
	left: -3px;
	width: 32px;
	transform: rotate(45deg);
}
.mobile-switch .line2 {
	top: 16px;
	left: 0;
}
.mobile-switch.opened .line2 {
	top: 12px;
	width: 32px;
	left: -3px;
	transform: rotate(-45deg);
}
#megamenu-wrapper {
	position: absolute;
	left: -25px;
	top: var(--header-height);
	min-width: 900px;
	min-height: 290px;
	background: white;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
	padding: 4rem 4rem 3rem 3rem;
	border-radius: 3px;
	z-index: 120;
	transition: all 300ms ease-in-out;
}
#megamenu-wrapper .close {
	position: absolute;
	right: 1.5rem;
	top: 1.3rem;
	font-size: 18px;
	cursor: pointer;
}
#megamenu-wrapper .close:hover {
	color: var(--dacha-green);
}
#megamenu {
	display: flex;
	justify-content: space-between;
	min-height: 290px;
}
#megamenu > .ui-tabs-nav {
	width: 220px;
	margin: -1rem 0;
}
#megamenu > .ui-tabs-nav li {

}
#megamenu > .ui-tabs-nav li a {
	color: black;
	font-size: 14px;
	line-height: 24px;
	outline: none;
	display: block;
	padding: 1rem;
}
#megamenu > .ui-tabs-nav li.ui-state-active a {
	font-weight: 700;
}
#megamenu > .ui-tabs-panel {
	width: calc(100% - 220px - 2rem);
	position: relative;
	display: flex;
	flex-direction: column;
}
#megamenu > .ui-tabs-panel .description {
	font-size: 14px;
	margin-top: 30px;
}
#megamenu > .ui-tabs-panel .link {
	align-self: flex-end;
	margin-top: 30px;
}
#megamenu > .ui-tabs-panel .link a {

}
#megamenu .tiles {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}
#megamenu .tiles a {
	width: calc(33.33332% - 20px);
	margin: 10px;
	display: flex;
	flex-direction: column;
	transition: all 300ms ease-in-out;
}
#megamenu .tiles a:hover {
	transform: translateY(-3px);
}
#megamenu .tiles a .pic {
	width: 100%;
	height: 120px;
	border-radius: 3px;
}
#megamenu .tiles a .pic img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 3px;
}
#megamenu .tiles a .name {
	font-size: 12px;
	margin-top: 10px;
	text-align: center;
	background: rgba(255,255,255,0.75);
}
.scrolled.to-bottom #mobile-header {
	top: calc( var(--header-height) * -1 ) !important;
}
#mobile-header {
	z-index: 30;
	position: fixed;
	top: 0;
	width: 100%;
	height: var(--header-height);
	background: white;
	transition: all 300ms ease-in-out;
	border-bottom: 1px solid transparent;
}
#mobile-header:not(.opened) {
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);	
}
#mobile-header.opened {
	border-bottom-color: var(--dacha-green);
}
#mobile-header .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#mobile-header .bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}
#mobile-header .worktime {
	font-size: 12px;
}
#mobile-header .logo {
	
}
#mobile-header .logo a {
	display: block;
}
#mobile-header .logo a img {
	height: 44px;
	width: auto;
}
#mobile-header .phone a {
	color: var(--dacha-green);
	font-weight: 700;
    font-size: 16px;
}

#mobile-header .messengers {
	display: flex;
	align-items: center;
	align-self: center;
}
#mobile-header .messengers .icon {
	
}
#mobile-header .messengers .icon + .icon {
	margin-left: 16px;
}
#mobile-header .messengers .icon a {
	font-size: 20px;
	color: var(--color);
	display: block;
}
#header {
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	height: var(--header-height);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 30;
	transition: 0.3s;
	background: white;
}
.admin-bar #header {
	top: 32px;
}
.scrolled.to-bottom #header {
	top: -200px !important;
}
#header.opened {
	box-shadow: none;
}
#header .container {
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
}
#header .logo {
	position: relative;
	z-index: 20;
}
#header .logo a,
#header .logo a img {
	display: block;
}
#header .logo a img {
	height: var(--header-height);
	width: auto;
}
#header .logo img:hover {
	animation-name: logoflash;
	animation-duration: 0.5s;
}
@keyframes logoflash {
	from {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.75;
		transform: scale(1.05);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
#header .messengers {
	display: flex;
	align-items: center;
	align-self: center;
	margin: 0 16px;
}
#header .messengers .icon {
	
}
#header .messengers .icon + .icon {
	margin-left: 16px;
}
#header .messengers .icon a {
	font-size: 24px;
	color: var(--color);
	transition: all 300ms ease-in-out;
	display: block;
}
#header .messengers .icon:hover a {
	transform: scale(1.2);
}
#header .menu {
	margin-right: auto;
	margin-left: 4rem;
}
#header .menu > ul {
	height: 100%;
	display: flex;
	margin: 0 -1.5rem;
}
#header .menu > ul > li {
	padding: 0 1.5rem;
}
#header .menu > ul > li.megamenu-parent {
	position: relative;
}
#header .menu > ul > li:not(.megamenu-parent):hover > ul.sub-menu {
	display: block;
}
#header .menu > ul > li.megamenu-parent > #megamenu-wrapper {
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
}
#header .menu > ul > li.megamenu-parent.megamenu-opened > #megamenu-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#header .menu > ul > li.menu-item-has-children {
	transition: all 0.3s;
	display: flex;
	align-items: center;
}
#header .menu > ul > li.menu-item-has-children:after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-top: 0;
	margin-left: 3px;
	background: url('img/arrow-down.svg') center center no-repeat;
	transition: all 0.3s;
}
/*
#header .menu > ul > li.menu-item-has-children:hover:after {
	margin-top: 5px;
} */
#header .menu > ul > li > a {
	font-size: 14px;
	color: var(--dacha-black);
	padding-top: 4px;
	border-bottom: 4px solid transparent;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	height: 100%;
}
#header .menu > ul > li:not(.current-menu-item):hover > a {
	color: var(--dacha-green);
	border-bottom-color: var(--dacha-green);
}
#header .menu > ul > li.current-menu-ancestor > a,
#header .menu > ul > li.current-menu-item > a {
	border-bottom-color: #d6d6d6;
}
#header .menu > ul > li.menu-item-has-children > .wrap {
	position: absolute;
	z-index: 10;
	background: white;
	left: 0;
	top: var(--header-height);
	width: 100%;
	pointer-events: none;
	transition: 0.3s;
	opacity: 0;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
#header .menu > ul > li.menu-item-has-children.opened > .wrap {
	opacity: 1;
	pointer-events: initial;
}
#header .menu > ul > li.menu-item-has-children > .wrap ul {
	width: var(--container-width);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
	margin: 0 auto;
	align-items: center;
	padding: 60px 0;
	display: flex;
	flex-wrap: wrap;
}
#header .menu > ul > li.menu-item-has-children > .wrap ul > li {
	width: calc(20% - 40px);
	margin: 0 20px;
	display: flex;;
	justify-content: center;
}
#header .menu > ul > li.menu-item-has-children > .wrap ul > li:nth-child(n + 6) {
	margin-top: 40px;
}
#header .menu > ul > li.menu-item-has-children > .wrap ul a {
	color: var(--dacha-black);
	font-size: 18px;
	font-weight: 700;
	transition: all 0.3s;
	position: relative;
	display: block;
	padding: 5px 10px;
}
#header .menu > ul > li > .wrap ul li.current-menu-item a,
#header .menu > ul > li.menu-item-has-children > .wrap ul a:hover {
	color: var(--dacha-green);
}
#header .menu > ul > li > .wrap ul > li.current-menu-item a:after,
#header .menu > ul > li.menu-item-has-children > .wrap ul a:after {
	content: '';
	position: absolute;
	display: block;
	left: -2px;
	top: -2px;
	width: 0%;
	height: 100%;
	border: 2px solid transparent;
	transition: all 0.6s ease;
	z-index: -1;
}
#header .menu > ul > li > .wrap ul > li.current-menu-item a:after,
#header .menu > ul > li.menu-item-has-children > .wrap ul a:hover:after {
	width: 100%;
	border: 2px solid var(--dacha-green);
}
#header .phone {
	align-self: center;
	margin-left: 20px;
	display: flex;
	flex-direction: column;
}
#header .phone a {
	color: var(--dacha-green);
	font-weight: 700;
	font-size: 18px;
	transition: all 0.3s;
}
#header .phone:hover a {
	opacity: 0.75;
}
#header .phone .worktime {
	font-size: 10px;
	color: #c9c9c9;
	text-align: center;
	margin-top: 5px;
}
#header .tender {

}
#header .tender {
    align-self: center;
}
#header .tender a {

}
#header .tender a:hover {
	background-color: var(--dacha-green);
}

/* flexible content */

.builder-area {

}


.builder.heading {
	background-color: rgba(33, 39, 33, 0.05);
	padding: 5rem 0;
}
.builder.heading .title {
	font-size: 44px;
	font-weight: 700;
	line-height: 52px;
}
.builder.subheader {
	background-color: rgba(33, 39, 33, 0.05);
	padding: 8rem 0;
}
.builder.subheader .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.builder.subheader .info {
	width: calc(50% - 50px);
}
.builder.subheader .info.without-image {
	width: initial;
}
.builder.subheader .image {
	position: relative;
	width: 50%;
}
.builder.subheader .image img {
	object-fit: cover;
	min-height: 420px;
	max-height: 550px;
	width: 100%;
}
.builder.subheader .image .caption {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
	left: 0;
	top: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding: 30px;
}
.builder.subheader .image .caption span {
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	color: var(--dacha-green);
	border-radius: 100px;
	padding: 10px 20px;
	box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
	background-color: rgb(255 255 255 / 0.85);
	max-width: 440px;
}
}
.builder.subheader .info {
	padding-right: 8rem;
}
.builder.subheader .info .title {
	font-size: 44px;
	font-weight: 700;
	line-height: 52px;
}
.builder.subheader .info .title.small {
	font-size: 32px;
	line-height: 42px;
}
.builder.subheader .info .description {
	margin-top: 3rem;
	font-size: 15px;
	line-height: 24px;
}
.builder.subheader .info .button {
	margin-top: 3rem;
}


.builder.numbers {
	padding: 130px 0;
    text-align: center;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.builder.numbers .title {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2.5px;
}
.builder.numbers .points {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}
.builder.numbers .points .item {
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 330px;
    max-width: 360px;
    background: white;
	border-radius: 7px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	color: var(--dacha-green);
}
.builder.numbers .points .item .tag {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: var(--dacha-black);
}
.builder.numbers .points .item .number {
	font-weight: 700;
	line-height: 64px;
	margin-top: 40px;
	display: flex;
	flex-direction: column;
}
.builder.numbers .points .item .number .value {
	font-size: 70px;
}
.builder.numbers .points .item .number .unit {
    font-size: 35px;
}
.builder.numbers .points .item .parameter {
	font-size: 16px;
	line-height: 24px;
	margin-top: 40px;
}


.builder.gallery {
    padding-bottom: 90px;
}
.builder.gallery .container {
	border-top: solid 1px #ececec;
	padding-top: 90px;
}
.builder.gallery .title {
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 3px;
	text-align: center;
	text-transform: uppercase;
}
.builder.gallery .points {
	display: flex;
	flex-wrap: wrap;
	margin: 60px -20px 0;
}
.builder.gallery .points .item {
width: calc(33.3332% - 40px);
	margin: 20px;
	text-align: center;
	background: #f4f4f4;
	display: flex;
	align-items: center;
	justify-content: center;
}
.builder.gallery .points .item a {
	display: block;
	width: 100%;
	height: 240px;
}
.builder.gallery .points .item a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 3px;
}

.builder.raboty {
	padding: 60px 0;
}

.builder.raboty .title {
	text-align: center;
}

.builder.raboty .points {
	margin-top: 40px;
}

.builder.raboty .points .item {
	
}

.builder.raboty .points .pic {
	height: 220px;
}

.builder.raboty .points .item .name {
	font-size: 18px;
}

.builder.raboty .points .item .name:after {
	/* display: none; */
}

.builder.raboty .points .item .text > * + * {
    margin-top: 1.5rem;
}

.builder.hero-cover {
	position: relative;
}

.builder.hero-cover .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 5;
	color: var(--text-color);
	text-align: center;
}

body.with-header-2 .builder.hero-cover.--height-medium .content,
.builder.hero-cover.--height-medium .content {
	height: 640px;	
}

body.with-header-2 .builder.hero-cover.--height-screen .content,
.builder.hero-cover.--height-screen .content {
	height: calc( 100vh - var(--header-height) );	
}

.builder.hero-cover .content .title {
	font-size: 52px;
    line-height: 60px;
    font-weight: 700;
}

.builder.hero-cover .content .text {
	margin: 24px auto 0;
	max-width: 600px;
}

@media (max-width: 1199px) {
	.builder.hero-cover .content .title {
		font-size: 30px;
		line-height: 36px;
	}
	.builder.hero-cover .content .text {
		font-size: 13px;
		line-height: 20px;
	}
}

.builder.hero-cover .content .container > a.button {
	margin-top: 40px;
}

.builder.hero-cover .image {
	position: absolute;
	width: 100%;
	height: 100%;		
	left: 0;
	top: 0;
	z-index: 3;
}

.builder.hero-cover .image:before {
	content: '';
	display: block;
	background-color: rgba(0,0,0, var(--background-shading-percent) );
	position: absolute;
	width: 100%;
	height: 100%;	
	left: 0;
	top: 0;	
}

.builder.hero-cover .image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.builder.hero {
	position: relative;
	display: flex;
}
.builder.hero .image {
	width: 50%;
	background: #fbfbfb;
}
.builder.hero .image img {
	object-fit: cover;
	display: block;
	min-height: 800px;
}
.builder.hero .info {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding-left: calc(var(--container-padding) + var(--halfpoles));
	padding-right: 5rem;
	width: 50%;
	background: url('img/house.svg') no-repeat;
	background-size: cover;
	background-position: center;
}
.builder.hero .info .title {
	font-size: 52px;
	line-height: 60px;
	font-weight: 700;
}
.builder.hero .info .subtitle {
	font-size: 16px;
	line-height: 24px;
	margin-top: 3rem;
}
.builder.hero .info .button {
	margin-top: 4rem;
}


.builder.reviews {
    padding: 80px 0;
    background: #f4f4f4;
}

.builder.reviews .title {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
    color: #140000;
    margin-bottom: 50px;
}

.builder.reviews .elements .slick-list {
    padding: 20px 0;
}

.builder.reviews .elements.static {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.builder.reviews .elements.static .item {
	width: calc(50% - 40px);
	margin: 20px;
}

.builder.reviews .elements .item {
    outline: none;
    padding: 40px;
    margin: 0 20px;
    background: white;
    border-radius: 5px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 3px 15px rgb(0 0 0 / 0.15);
}

.builder.reviews .elements .item .summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.builder.reviews .elements .item .photo {
    width: 150px;
    height: 150px;
}

.builder.reviews .elements .item .photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.builder.reviews .elements .item .info {
    width: calc(100% - 150px - 30px);
}

.builder.reviews .elements .item .info .name {
    font-weight: 700;
    font-size: 22px;
}

.builder.reviews .elements .item .info .date {
    margin-top: 10px;
    font-size: 12px;
}

.builder.reviews .elements .item .review {
    font-size: 14px;
    line-height: 24px;
    margin-top: 30px;
}


.builder.spoiler {
	padding: 120px 0;
}
.builder.spoiler .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.builder.spoiler .image {

}
.builder.spoiler .image img {
	width: 410px;
	height: 450px;
	object-fit: cover;
	display: block;
}
.builder.spoiler .info {
	width: calc(100% - 410px - 10rem);
}
.builder.spoiler .info .subtitle {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2.5px;
	color: #140000;
}
.builder.spoiler .info .title {
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	margin-top: 3rem;
}
.builder.spoiler .info .description {
	font-size: 16px;
	line-height: 24px;
	margin-top: 2rem;
}
.builder.spoiler .info a.button {
	margin-top: 4rem;
}


.builder.what-we-do {
	padding: 175px 0 190px;
	background-size: cover;
	background-position: center;
}
.builder.what-we-do .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-align: center;
	color: white;
}
.builder.what-we-do .services {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 75px -2rem 0;
}
.builder.what-we-do .services .service {
	min-height: 290px;
	background: #ffffff;
	width: calc(25% - 4rem);
	margin: 0 2rem;
	padding: 3rem;
	border-radius: 7px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.25s;
}
.builder.what-we-do .services.quantity-5 .service {
	width: calc(33.3332% - 4rem);
}
.builder.what-we-do .services .service:nth-child(n + 5) {
	margin-top: 4rem;
}
.builder.what-we-do .services.quantity-5 .service:nth-child(n + 4) {
	margin-top: 4rem;
}
.builder.what-we-do .services .service:hover {
	background: var(--dacha-green);
}
.builder.what-we-do .services .service .images {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.builder.what-we-do .services .service .images .icon {
	width: 11rem;
	height: 11rem;
	padding: 3rem;
	background-color: #21272108;
	border-radius: 50%;
	transition: all 0.25s;
}
.builder.what-we-do .services .service:hover .images .icon {
	background-color: white;
}
.builder.what-we-do .services .service .images .icon svg {
	width: 100%;
	height: 100%;
}
.builder.what-we-do .services .service:hover .images .icon svg {
	fill: var(--dacha-green);
}
.builder.what-we-do .services .service .images .arrow {
	margin-right: 3rem;
	opacity: 0;
	transition: all 0.25s;
	width: calc(100% - 11rem - 3rem);
}
.builder.what-we-do .services .service:hover .images .arrow {
	margin-right: 0;
	opacity: 1;
}
.builder.what-we-do .services .service .images .arrow img {
	width: 5rem;
}
.builder.what-we-do .services .service .name {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	margin-top: 45px;
	transition: all 0.25s;
}
.builder.what-we-do .services .service:hover .name {
	color: white;
}


.builder.advantages {
	padding: 40px 0;
}

.builder.advantages .heading {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 60px;
}

.builder.advantages .points {
	display: flex;
	justify-content: space-between;
}

.builder.advantages .points .item {
	text-align: center;
	width: 22%;
}

.builder.advantages .points .item .icon {
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
    border-radius: 50%;
	background: #e9f7e8;
	margin: 0 auto;
	flex-shrink: 0;
}

.builder.advantages .points .item .icon svg {
	fill: var(--dacha-green);
	display: block;
	max-height: 60px;
	max-width: 60px;
}

.builder.advantages .points .item .info {
	color: var(--dacha-black);
}

.builder.advantages .points .item .title {
	font-size: 18px;
	font-weight: 900;
	margin-top: 30px;
}

.builder.advantages .points .item .desc {
	margin-top: 10px;
	font-size: 14px;
	line-height: 20px;
}
.builder.calc {
	padding: 80px 0;
}
.builder.prices {
	padding: 80px 0;
	background: #f4f4f4;
}
.builder.prices .heading {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2.5px;
	text-align: center;
	text-transform: uppercase;
	color: #140000;
}
.builder.prices .description {
	text-align: center;
	margin-top: 30px;
}
.builder.prices .points {
	margin-top: 50px;
}
.builder.prices .points .item {
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    background: white;
	border-radius: 5px;

}
.builder.prices .points .item + .item {
	margin-top: 30px;
}
.builder.prices .points .item .icon {
    width: 320px;
    height: 240px;
}
.builder.prices .points .item .icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px 0 0 5px;
}
.builder.prices .points .item .info {
    width: calc(100% - 320px);
    padding: 40px;
}
.builder.prices .points .item .info .name {
    font-weight: 700;
    font-size: 20px;
}
.builder.prices .points .item .info .desc {
	margin-top: 20px;

}
.builder.prices .points .item .info .price {
	margin-top: 20px;
	display: flex;
	align-items: center;
}
.builder.prices .points .item .info .price span {
    color: var(--dacha-green);
    font-weight: 700;
    font-size: 18px;
}
.builder.prices .points .item .info .price .cta {
	margin-left: 20px;
}


.builder.recipients {
	padding: 80px 0;
}
.builder.recipients .title {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2.5px;
	text-align: center;
	text-transform: uppercase;
	color: #140000;
}
.builder.recipients .points {
	margin: 75px -2rem 0;
	display: flex;
	flex-wrap: wrap;
}
.post-medium {
	width: calc(33.33332% - 4rem);
	margin: 0 2rem;
	border-radius: 20px 20px 5px 5px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	background: white;
	transition: all 0.25s;
}
.post-medium:nth-child(n + 4) {
	margin-top: 4rem;
}
.post-medium:hover {
	background: var(--dacha-green);
}
.post-medium .pic {
	height: 180px;
	background: #e1ece1;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}
.post-medium .pic img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.post-medium .info {
	padding: 4rem 3rem;
	transition: all 0.25s;
}
.post-medium:hover .info {
	color: white;
}
.post-medium .info .name {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
}
.post-medium .info .name:after {
	content: '';
	display: inline-block;
	background: url('img/white-arrow-right.svg') no-repeat;
	width: 3rem;
	height: 2.5rem;
	background-size: contain;
	margin-bottom: -3px;
	margin-left: 0;
	opacity: 0;
	transition: all 0.25s;
}
.post-medium:hover .info .name:after {
	margin-left: 2rem;
	opacity: 1;
}
.post-medium .info .excerpt {
	font-size: 14px;
	line-height: 22px;
	margin-top: 1rem;
}


.builder.news {
	background-color: rgba(33, 39, 33, 0.05);
	padding: 100px 0;
}
.builder.news .title {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2.5px;
	text-align: center;
	text-transform: uppercase;
	color: #140000;
}


.builder.editor {
	padding: 75px 0;
}

.builder.editor .text img.aligncenter {
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
	border-radius: 3px;
}


.builder.services {
	margin: 75px 0;

}
.builder.services .points {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem;
}
.post-big {
	width: calc(50% - 4rem);
	margin: 0 2rem;
	border-radius: 20px 20px 5px 5px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	background: white;
	transition: all 0.25s;
}
.post-big:nth-child(n + 3) {
	margin-top: 4rem;
}
.post-big:hover {
	background: var(--dacha-green);
}
.post-big .pic {
	height: 205px;
	background: #e1ece1;
	border-radius: 5px 5px 0 0;
	position: relative;
}
.post-big .pic img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	border-radius: 5px 5px 0 0;
}
.post-big .pic .icon {
	width: 9rem;
	height: 9rem;
	padding: 2.2rem;
	background-color: white;
	border-radius: 50%;
	transition: all 0.25s;
	position: absolute;
	right: 3rem;
	bottom: -45px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.post-big .pic .icon svg {
	width: 100%;
	height: 100%;
}
.post-big:hover .pic .icon svg {
	fill: var(--dacha-green);
}
.post-big .info {
	padding: 4rem 3rem 2rem;
	transition: all 0.25s;
}
.post-big:hover .info {
	color: white;
}
.post-big .info .name {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
}
.post-big .info .excerpt {
	font-size: 14px;
	line-height: 22px;
	margin-top: 1rem;
}
.post-big .info:after {
	content: '';
	display: block;
	text-align: right;
	margin: 2rem 2rem 0 auto;
	background: url('img/white-arrow-right.svg') no-repeat;
	width: 4rem;
	height: 3rem;
	background-size: contain;
	opacity: 0;
	transition: all 0.25s;
}
.post-big:hover .info:after {
	margin-right: 0;
	opacity: 1;
}


.builder.table {
	margin: 6rem 0;
}


.builder.accordion {
	margin: 6rem 0;
}
.builder.accordion .points {

}
.builder.accordion .points .item {
	border-top: 1px solid #979797;
}
.builder.accordion .points .item:last-child {
	border-bottom: 1px solid #979797;
}
.builder.accordion .points .item .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	color: var(--dacha-black);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding: 3rem 0;
}
.builder.accordion .points .item .title .arrow {
	width: 16px;
	margin-left: 1rem;
	transform: rotate(180deg);
	transition: all 0.25s;
}
.builder.accordion .points .item .title .arrow img {
    width: 16px;
    max-width: unset;
}

.builder.accordion .points .item.opened .title .arrow {
	transform: rotate(0);
}
.builder.accordion .points .item .desc {
	margin-bottom: 3rem;
	font-size: 14px;
	line-height: 30px;
}
.builder.accordion .points .item .desc,
.builder.accordion .points .item .desc a {

}
.builder.accordion .points .item .desc h2 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	margin-bottom: 2rem;

}
.builder.previews {

}
.builder.previews .points {
	padding: 60px 0;
}
.builder.previews .points .item {
	display: flex;
	justify-content: space-between;
}
.builder.previews .points .item.align-center {
	align-items: center;
}
.builder.previews .points .item + .item {
	padding-top: 60px;
	margin-top: 60px;
}
.builder.previews .points.with-delimiters .item + .item {
	border-top: solid 1px #ececec;
	padding-top: 90px;
	margin-top: 90px;
}
.builder.previews .points .item img.image {
	display: none;
}
.builder.previews .points.init-position-left .item:nth-child(odd) .image {
	order: 1;
}
.builder.previews .points.init-position-left .item:nth-child(even) .image {
	order: 2;
}
.builder.previews .points.init-position-left .item:nth-child(odd) .info {
	order: 2;
}
.builder.previews .points.init-position-left .item:nth-child(even) .info {
	order: 1;
}
.builder.previews .points.init-position-right .item:nth-child(odd) .image {
	order: 2;
}
.builder.previews .points.init-position-right .item:nth-child(even) .image {
	order: 1;
}
.builder.previews .points.init-position-right .item:nth-child(odd) .info {
	order: 1;
}
.builder.previews .points.init-position-right .item:nth-child(even) .info {
	order: 2;
}
.builder.previews .points .item .image img {
	width: 410px;
	height: 450px;
	object-fit: cover;
	display: block;
}
.builder.previews .points .item .info {
	width: calc(100% - 410px - 100px);
}
.builder.previews .points .item .info .subtitle {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2.5px;
	color: #140000;
	margin-bottom: 30px;
}
.builder.previews .points .item .info .title {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	margin-bottom: 30px;
}
.builder.previews .points .item .info .desc {
	font-size: 15px;
	line-height: 28px;
}
.builder.previews .points .item .info .desc h2 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
}
.builder.previews .points .item .info .desc ul {
	/*
	border-top: solid 1px var(--dacha-green);
	border-bottom: solid 1px var(--dacha-green);
	*/
	font-size: 14px;
	line-height: 28px;
	color: var(--dacha-green);
	margin-left: 0;
}
.builder.previews .points .item .info .desc ul li {
	list-style: none;
}
.builder.previews .points .item .info .desc ul li:before {
	content: '- ';
}
.builder.previews .points .item .info .button {
	margin-top: 30px;
}

table.table {
    width: 100%;
    border-collapse: collapse;
}

table.table th, td {
	padding: 15px 20px;
	border: 1px solid #e0e0e0;
}

table.table th {
	font-size: 18px;
	color: white;
    background: var(--dacha-green);
	border: 1px solid var(--dacha-green);
}

table.table tr td:not(:first-child) {
	text-align: center;
}

table.table tr td {
	font-size: 14px;
	background: #f5f5f5;
}

.text {
	font-size: 16px;
	line-height: 24px;
}
.text > * + * {
    margin-top: 2.5rem;
}
.text em {
	font-size: 18px;
	font-style: normal
}
.text a {
	font-weight: bold;
	color: var(--dacha-green);
	text-decoration: underline;
}
.text .alignleft {
	float: left;
	margin-right: 40px;
}
.text ol,
.text ul {
	margin-left: 20px;
}
.text ul li {
	list-style: initial;
}
.text ol li {
	list-style: decimal;
}
.text .wp-caption-text {
   border-left: 2px solid var(--dacha-green);
   padding-left: 10px;
   padding-top: 5px;
   margin-top: 10px;
}
.text .wp-caption {
   font-size: 13px;
   line-height: 22px;
}

.posts {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.posts .post {
	width: calc(25% - 3rem);
	margin: 0 1.5rem;
	background: white;
	border-radius: 5px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}
.posts .post:hover {
	transform: translateY(-4px);
}
.posts .post:nth-child(n + 5) {
	margin-top: 4rem;
}
.posts .post .pic {
	background: var(--dacha-green);
	height: 150px;
	border-radius: 5px 5px 0 0;
}
.posts .post .pic img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 5px 5px 0 0;
}
.posts .post .pic.default img {
	object-fit: contain;
}
.posts .post .info {
	padding: 1.5rem 1.5rem 3rem;
}
.posts .post .info .summary {
	display: flex;
	justify-content: space-between;
}
.posts .post .info .summary .category {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.posts .post .info .summary .category .item {
    margin: 5px;
}
.posts .post .info .summary .category .item a {
	font-size: 12px;
	line-height: 20px;
	padding: 5px;
	color: var(--dacha-green);
	background: #e6e5ff;
	display: block;
	border-radius: 3px;
	white-space: nowrap;
}
.posts .post .info .summary .date {	
	display: none;
/* 	font-size: 13px;
	line-height: 20px;
	margin-left: auto;
	margin-top: 10px;
	font-weight: 700; */
}
.posts .post .info .name {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	margin-top: 3rem;
}


#invitation {
	display: flex;
}
#invitation,
#invitation a:not(.button) {
	color: white;
}
#invitation .title {
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
}
#invitation .contacts,
#invitation .action {
	width: 50%;
	min-height: 550px;
	padding-top: 185px;
}
#invitation .action {
	padding-right: calc(var(--container-padding) + var(--halfpoles));
	padding-left: 5rem;
}
#invitation .action .subtitle {
	margin-top: 3rem;
}
#invitation .action .button {
	margin-top: 3rem;
}
#invitation .action .button:hover {
	color: var(--dacha-green);
	background: white;
}
#invitation .contacts {
	padding-left: calc(var(--container-padding) + var(--halfpoles));
	padding-right: 5rem;
	background-size: cover;
	background-position: center;
}
#invitation .contacts .points {
	margin-top: 3rem;
}
#invitation .contacts .points .item {
	display: flex;
}
#invitation .contacts .points .item + .item {

}
#invitation .contacts .points .item .icon {
	margin-top: 9px;
	width: 24px;
	text-align: center;
}
#invitation .contacts .points .item .value {
	margin-left: 2rem;
}
#invitation .contacts .points .item .value,
#invitation .contacts .points .item .value a {
	font-size: 20px;
	line-height: 40px;
}


#footer a,
#subfooter a {
	transition: all 0.3s;
}
#footer a:hover,
#subfooter a:hover {
	color: var(--dacha-green);
}
#footer {
	padding: 80px 0;
}
#footer .container {
	display: flex;
}
#footer .column {
	width: 50%;
	display: flex;
	align-items: center;
	gap: 20px;
}
#footer .logo img {
	display: block;
	max-width: 83px;
}
#footer .company-info {
/* 	margin-top: 4rem; */
	font-size: 14px;
/* 	max-width: 430px; */
	max-width: 230px;
}
#footer .contact-info {
	display: flex;
	font-size: 14px;
	line-height: 32px;
}
#footer .contact-info .menu {
    min-width: 120px;
}
#footer .contact-info .menu a {
	transition: all 0.3s;
}
#footer .contact-info .menu a:hover {
	padding-left: 4px;
	margin-right: -4px;
}
#footer .contact-info .contacts {
	margin-left: 10rem;
}
#footer .contact-info .contacts .title {
	font-weight: 700;
}
#footer .contact-info .contacts br {
	display: none;
}

#subfooter {

}
#subfooter .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(33, 39, 33, 0.1);
	padding-top: 2rem;
	padding-bottom: 2rem;
}
#subfooter .socials {
	display: flex;
	align-items: center;
}
#subfooter .socials a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background:	white;
	border-radius: 50%;
	border: 2px solid  var(--dacha-green);
	padding: 0.6rem;
	transition: all 0.3s;
}
#subfooter .socials a:hover {
	background: var(--dacha-green);
}
#subfooter .socials a + a {
	margin-left: 1rem;
}
#subfooter .socials a svg {
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}
#subfooter .socials a:hover svg {
	fill: white;
}
#subfooter .menu {
	margin-left: auto;
	margin-right: 4rem;
}
#subfooter .menu ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
#subfooter .menu ul li {
    margin: 7px 10px;
}
#subfooter .menu ul li + li {

}
#subfooter .menu ul li a {
	font-size: 13px;
}
#subfooter .copyright {
	font-size: 10px;
	color: #969696;
}


#breadcrumbs {
	padding: 2.5rem 0;
}
#breadcrumbs,
#breadcrumbs a {
	font-size: 12px;
	line-height: 20px;
}
#breadcrumbs a:hover {
	text-decoration: underline;
}
#breadcrumbs .delimiter {
	padding: 0 1rem;
}
#breadcrumbs .current-item {
	color: var(--dacha-green);
}
#brochure {
	background-color: rgba(6, 3, 141, 0.05);
	background-position: calc(50% - 220px) bottom;
	background-repeat: no-repeat;
}
#brochure .container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#brochure .whitepaper {
	margin-top: 60px;
	margin-right: -6px;
}
#brochure .whitepaper img {
	display: block;
	object-fit: cover;
	width: 451px;
	height: 375px;
}
#brochure .whitepaper .inner {
	position: absolute;
	width: 352px;
	height: 340px;
	right: 6px;
	bottom: 0;
	z-index: 3;
	border-radius: 4px 4px 0 0;
	background-position: center;
	background-size: cover;
}
#brochure .wrap {
	width: 50%;
	padding-left: 5rem;
}
#brochure .subtitle {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}
#brochure .title {
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	margin-top: 1rem;
}
#brochure .button {
	margin-top: 3rem;
}
.cat-template {
	background-color: rgba(33, 39, 33, 0.04);
	padding: 10rem 0;
}
.cat-template h1 {
	font-size: 44px;
	font-weight: 700;
	line-height: 52px;
}
.cat-template .filter {
	display: flex;
	border-bottom: solid 1px rgba(33, 39, 33, 0.15);
	padding-bottom: 2rem;
	margin-top: 6rem;
	margin-bottom: 3rem;
}
.cat-template .filter ul {
	display: flex;
	margin-left: 2rem;
}
.cat-template .filter ul li {

}
.cat-template .filter ul li + li {
	margin-left: 2rem;
}
.cat-template .filter ul li a {
	font-weight: 700;
	line-height: 24px;
}
.cat-template .filter ul li a:hover {
	text-decoration: underline;
}
.cat-template .filter ul li.current-cat a {
	color: var(--dacha-green);
	text-decoration: underline;
}
.load-more-posts {
	margin-top: 50px;
	text-align: center;
}
.load-more-posts span {
	position: relative;
}
.load-more-posts .loading-animation {
	position: absolute;
	width: 32px;
	height: 32px;
	display: block;
	right: -50px;
	top: calc(50% - 16px);
	background: url('img/ajax-loader.gif');
}
.other-offices {
	background-color: rgba(0, 0, 0, 0.02);
	padding: 110px 0;
}
.other-offices .title {
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
}
.other-offices .offices-list {
	font-size: 18px;
	line-height: 34px;
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
}
.other-offices .offices-list .office {
	width: 40%;
}
.other-offices .offices-list .office:nth-child(n + 3) {
	margin-top: 10px;
}
.contact-block {
	background-color: rgba(33, 39, 33, 0.05);
	padding: 100px 0 0;
	z-index: 10;
	position: relative;
}
.contact-block .container {
	display: flex;
	justify-content: space-between;
}
.contact-block .form {
	width: calc(100% - 410px - 5rem);
}
.contact-block .form .title {
	font-size: 36px;
	line-height: 44px;
	font-weight: 700;
	margin-bottom: 30px;
}
.contact-block .form .subtitle {
	font-size: 15px;
	line-height: 24px;
	margin-top: 20px;
}
.contact-block .form .gform_wrapper {
	margin-top: 40px;
}
.contact-block .form .gform_body {

}
.form .gform_footer {
	margin-top: 40px;
}
.contact-block .form ul.gform_fields {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact-block .form ul.gform_fields > li {
	width: 48%;
}
.contact-block .form ul.gform_fields > li + li {
	margin-top: 0;
}
.contact-block .form ul.gform_fields > li:nth-child(n + 3) {
	margin-top: 20px;
}
.form ul.gform_fields > li.hidden_label label {
	display: none;
}
/* contact form 7 styles START */
.wpcf7 {

}
.wpcf7 .field input[type="text"],
.wpcf7 .field input[type="email"],
.wpcf7 .field input[type="tel"],
.wpcf7 .field textarea {
	font-size: 16px;
	border: none;
	padding: 15px;
	width: 100%;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	border: solid 1px rgba(33, 39, 33, 0.15);
}
.wpcf7 .field textarea {
	height: 120px;	
}
.form .wpcf7 .field + .field {
	margin-top: 20px;
}
.wpcf7 .field.hidden {
	display: none;
}
.wpcf7 form .wpcf7-response-output {
	border-radius: 100px;	
	border: none;
	margin: 40px 0 0 0;
	padding: 8px 16px;
	text-align: center;
	font-size: 14px;
	background-color: #e5e5e5;
}
.wpcf7 form.sent .wpcf7-response-output {
	color: white;
    background-color: var(--dacha-green);
}
/* contact form 7 styles END */
/* gravity form styles START */
.gform_wrapper ul.gform_fields > li.agree-consent {
	display: flex;
    flex-direction: column;
    justify-content: center;
	padding: 10px 20px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	border: solid 1px rgba(33, 39, 33, 0.15);
	background: white;
}
.gform_wrapper ul.gform_fields > li.agree-consent .ginput_container_consent {
	display: flex;
	align-items: center;
}
.gform_wrapper ul.gform_fields > li.agree-consent .gfield_label {
    font-weight: 700;
    margin-bottom: 5px;
    display: none;
}
.gform_wrapper ul.gform_fields > li.agree-consent .ginput_container label {
    font-size: 16px;
    color: #757575;
    margin-left: 7px;
}
.gform_wrapper ul.gform_fields > li.agree-consent .ginput_container input {
    margin-top: 0px;
}
.gform_wrapper ul.gform_fields > li input[type="text"],
.gform_wrapper ul.gform_fields > li input[type="email"],
.gform_wrapper ul.gform_fields > li textarea {
	font-size: 16px;
	border: none;
	padding: 15px;
	width: 100%;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	border: solid 1px rgba(33, 39, 33, 0.15);
}
.gform_wrapper ul.gform_fields > li .ginput_container_fileupload {
    text-align: center;
}
.gform_wrapper ul.gform_fields > li textarea {
	height: 90px;
	display: block;
}
.gform_wrapper ul.gform_fields .ginput_container_fileupload {
	padding: 20px 20px 10px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	border: solid 1px rgba(33, 39, 33, 0.15);
}
.gform_wrapper ul.gform_fields .gform_drop_instructions {
	color: #c2c2c2;
	font-size: 13px;
	margin-right: 10px;
}
.gform_wrapper ul.gform_fields .gform_button_select_files {
    font-size: 10px;
    padding: 3px 10px;
    text-transform: uppercase;
}
.gform_wrapper ul.gform_fields .ginput_preview {
	text-align: center;
	font-size: 12px;
	margin-top: 20px;
	display: flex;
	align-items: center;
}
.gform_wrapper ul.gform_fields .ginput_preview + .ginput_preview {
	margin-top: 5px;
}
.gform_wrapper ul.gform_fields .ginput_preview img {
	margin-right: 7px;
}
.gform_wrapper ul.gform_fields .ginput_preview strong {
	font-weight: 400;
}
.gform_wrapper ul.gform_fields > li.gfield_contains_required input {

}
.gform_wrapper ul.gform_fields > li.gfield_error input[type="text"],
.gform_wrapper ul.gform_fields > li.gfield_error input[type="email"],
.gform_wrapper ul.gform_fields > li.gfield_error textarea {
	color: var(--dacha-red);
	border: solid 1px var(--dacha-red);
    background-color: #ffeeee;
}
.gform_wrapper ul.gform_fields > li.gfield_error input::placeholder,
.gform_wrapper ul.gform_fields > li.gfield_error textarea::placeholder {
	color: var(--dacha-red);
}
.gform_confirmation_wrapper {
	margin-top: 30px;
}
.form .gform_confirmation_message,
.form .validation_error {
	color: var(--dacha-green);
	text-align: center;
    background-color: rgba(6, 3, 141, 0.05);
    font-size: 13px;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}
.form .validation_message {
    color: red;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}
/* gravity form styles END */
.contact-block .communications {
	background: white;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	padding: 50px;
	width: 410px;
}
.contact-block .communications .company-name {
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
}
.contact-block .communications .points {
	margin-top: 40px;
	font-size: 20px;
	line-height: 32px;
}
.contact-block .communications .points a {
	transition: all 0.3s;
}
.contact-block .communications .points .item {
	display: flex;
	justify-content: space-between;
}
.contact-block .communications .points .item + .item {
	margin-top: 15px;
}
.contact-block .communications .points .item:hover,
.contact-block .communications .points .item:hover a {
	color: var(--dacha-green);
}
.contact-block .communications .points .item .icon {
	padding-top: 1px;
	width: 30px;
	text-align: center;
}
.contact-block .communications .points .item .icon svg path {
	fill: black;
	transition: all 0.3s;
}
.contact-block .communications .points .item:hover .icon svg path {
	fill: var(--dacha-green);
}
.contact-block .communications .points .item .value {
	width: calc(100% - 30px - 20px);
}
.contact-block .communications .other-locations {
	margin-top: 50px;
	padding-left: 50px;
	display: none;
}
.contact-block .communications .other-locations a,
.contact-block .communications .invoicing a {
	transition: all 0.3s;
	font-weight: 700;
}
.contact-block .communications .invoicing {
	margin-top: 10px;
	padding-left: 50px;
}
.contact-block .communications .other-locations a:hover,
.contact-block .communications .invoicing a:hover {
	text-decoration: underline;
	color: var(--dacha-green);
}
.contact-employees {
	padding: 110px 0;
}
.contact-employees h1 {
	font-size: 36px;
	line-height: 44px;
	font-weight: 700;
	margin-bottom: 55px;
}
.contact-employees .employees-block {

}
.contact-employees .employees-block:after {
	content: '';
	display: block;
	clear: both;
}
.contact-employees .employees-block .tabs-nav {
	border-bottom: solid 1px rgba(33, 39, 33, 0.15);
	display: flex;
	padding-bottom: 10px;
}
.contact-employees .employees-block .tabs-nav span {
	margin-right: 30px;
}
.contact-employees .employees-block .tabs-nav ul {
	display: flex;
}
.contact-employees .employees-block .tabs-nav ul li {

}
.contact-employees .employees-block .tabs-nav ul li + li {
	margin-left: 30px;
}
.contact-employees .employees-block .tabs-nav ul li a {
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
	transition: all 0.3s;
}
.contact-employees .employees-block .tabs-nav ul li a.active {
	text-decoration: underline;
	color: var(--dacha-green);
}
.contact-employees .employees-block .department {
	display: none;
}
.contact-employees .employees-block .department.active {
	display: block;
}
.contact-employees .employees-block > ul li a:hover {
	color: var(--dacha-green);
}
.contact-employees .employees-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
	margin-top: 60px;
}
.contact-employees .employees-list .employee {
	width: calc(33.3332% - 40px);
	margin: 0 20px;
	line-height: 24px;
}
.contact-employees .employees-list .employee a {
	transition: all 0.3s;
}
.contact-employees .employees-list .employee a:hover {
	color: var(--dacha-green);
}
.contact-employees .employees-list .employee:nth-child(n + 4) {
	margin-top: 80px;
}
.contact-employees .employees-list .employee .name {
	font-size: 20px;
	font-weight: 700;
}
.contact-employees .employees-list .employee .position {
	font-size: 14px;
}
.contact-employees .employees-list .employee .phone {
	font-size: 18px;
	line-height: 34px;
	margin-top: 20px;
}
.contact-employees .employees-list .employee .email {
	font-size: 18px;
	line-height: 34px;
}
.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 100;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.75);
    background-color: rgba(62, 117, 59, 0.9);
    text-align: center
}
.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}
.blocker.behind {
    background-color: transparent
}
.modal {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 101;
	max-width: 500px;
	box-sizing: border-box;
	width: 90%;
	background: #fff;
	padding: 30px 40px;
	border-radius: 3px;
	box-shadow: 0 10px 15px 0 rgba(6, 3, 141, 0.5);
	text-align: left;
}
.modal .title {
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
}
.modal .description {
	margin-top: 25px;
}
.modal .form {
	margin-top: 40px;
}
.modal a.close-modal {
    position: absolute;
    top: -36px;
    right: -36px;
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('img/close-white.svg');
}
.modal-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 12px 16px;
    border-radius: 5px;
    background-color: #111;
    height: 20px
}
.modal-spinner>div {
    border-radius: 100px;
    background-color: #fff;
    height: 20px;
    width: 2px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out
}
.modal-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}
.modal-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s
}
.modal-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}
@keyframes sk-stretchdelay {
    0%,40%,100% {
        transform: scaleY(0.5);
        -webkit-transform: scaleY(0.5)
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0)
    }
}

.stacktable.large-only {
	display: table;
}

.stacktable.small-only {
	display: none;
}

.main-loop {
    padding: 60px 0;
}

.main-loop h1 {
	font-size: 60px;
	line-height: 72px;
	font-weight: 900;
	text-align: center;
}

.price-list {

}

.price-list .nav {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.price-list .nav .element {
	margin: 5px 10px;
}

.price-list .nav .element.active {

}

.price-list .block {
	display: none;
}

.price-list .block.active {
	display: block;
}

.price-list .title {
	font-size: 24px;
	font-weight: 700;
	margin-top: 40px;
}

.price-list .title,
.price-list .title a {
	color: var(--dacha-green);
}

.price-list .table {
	margin-top: 20px;
}

.nav-prev.type-1,
.nav-next.type-1 {
	cursor: pointer;
	font-size: 20px;
	line-height: 72px;
	height: 72px;
	background: rgba(255,255,255,0.7);
	width: 72px;
	text-align: center;
	position: absolute;
	top: calc(50% - 36px);
	z-index: 20;
	transition: all 0.3s;
	border-radius: 50%;
}
.nav-prev.type-1:hover,
.nav-next.type-1:hover {
	color: white;
	background: var(--dacha-green);
}
.nav-prev.type-1 {
	left: -2rem;
}
.nav-next.type-1 {
	right: -2rem;
}

#office-map {
	height: 720px;
	background: #f4f4f4;
	position: relative;
	z-index: 29;
}

#office-map:before {
	content: '';
	display: block;
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 50;
	background: -moz-linear-gradient(top,  rgba(244,244,244,1) 0%, rgba(250,250,250,1) 50%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(244,244,244,1) 0%,rgba(250,250,250,1) 50%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom,  rgba(244,244,244,1) 0%,rgba(250,250,250,1) 50%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#00ffffff',GradientType=0 );
}

.icon-minus {
	background-image: url('/wp-content/uploads/2022/05/icons8-minus-48.png');
	width: 24px;
	height: 24px;
	display: block;
	margin: auto;
}

.icon-plus {
	background-image: url('/wp-content/uploads/2022/05/icons8-pljus-1.png');
	width: 24px;
	height: 24px;
	display: block;
	margin: auto;
}

.plitka-flex {
	display: flex;
	flex-wrap: wrap;
}

.plitka-button{
	margin-bottom: 10px;
	margin-right: 10px;
	text-decoration: none !important;
}

.not-found-block {
    margin-top: 50px;
}
