/* normalize */
*, *:before, *:after {
	 box-sizing: border-box;
	 margin: 0;
	 padding: 0;
}
body {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
}
.wrapper {
    position: relative;
}
.content {
	width: calc(95% - 90px);
	margin: 0 auto;
	padding: 3em 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
h3 {
    padding-bottom: 1em;
    font-size: 2em;
	text-transform: uppercase;
}
p {
	margin: 0;
	padding: 0 0 0.5em;
	line-height: 1.5;
	letter-spacing: 1px;
}
ul {
	margin: 0;
	padding: 0;
}
li {
	list-style-type: none;
}
a {
	text-decoration: none;
}
.title {
	padding-bottom: 2em;
	text-align: center;
}
img  {
	width: 100%;
	height: auto;
}
/* header */
header {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
    width: 100%;
	background: #231F20;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
	z-index: 2;
}
header a {
	color: #fff;	
}
/* logo */
.site-branding {
	padding-left: 1em;
	text-transform: uppercase;
}
img.custom-logo {max-height: 50px;
	width: auto;
    margin: 0.3em 0;
}
/* nav */
nav#site-navigation {

}
nav ul#primary-menu {
	display: flex;
	position: relative;
}
nav ul#primary-menu li a {
	margin: 0 0.5em;
    padding: 1em 0;
	position: relative;
	transition: 0.3s ease-out 0.1s;
}
nav ul#primary-menu li a::after {
	content: "";
	position: absolute;
	left: 0px;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: #fff;
	transform: scaleX(0);
	transition: 0.3s;
}
nav ul#primary-menu li a:hover::after {
  transform: scaleX(1);
}
/* navbar */
nav div.main_list {
    height: 55px;
    float: right;
}
nav div.main_list .menu {
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav div.main_list .menu li {
    width: auto;
    padding: 0;
}
nav div.main_list .menu li a {
    text-decoration: none;
    color: #fff;
    line-height: 57px;
}
.navTrigger {
    display: none;
}
.navTrigger {
	cursor: pointer;
	width: 40px;
	height: 25px;
	position: absolute;
	right: 15px;
	top: 30px;
	bottom: 0;
}
.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 3px;
}
.navTrigger.active i {
	background-color: #fff;
}
.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}
.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}
.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}
@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(7px) rotate(135deg);
    }
}
@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}
@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}
@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}
@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}
@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}
@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}
.affix {
    padding: 0;
    background-color: #111;
}
.myH2 {
	text-align:center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
/* nav phone */
.social {
    filter: f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-phone {
    min-width: 145px;
	padding: 0.9em 1em 0.9em 1em;
}
/* hero */
main#primary {
	position: relative;
	height: 97vh;
	padding-top: 75px;
}
.hero_title {
    position: absolute;
    left: 0;
    height: 92vh;
    width: 500px;
    background: #0000009c;
    color: #fff;
}
.hero_title-content {
    position: absolute;
    top: 30%;
    margin: 0 2em 0 4em;
}
.hero_title h1 {
    text-transform: uppercase;
}
.hero_title h2 {
    padding: 1em 3em 2em 0;
    font-size: 1em;
	font-weight: 100;
    color: #fff;
}

.hero_title a.form_link {
    background: #ffffff;
    padding: 0.5em 1em;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}
a.form_link {
	display: inline-block;
	position: relative;
	background: none;
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	margin: 20px 30px;
	background: rgba(0,0,0,0.09);
}
a.form_link::before, a.form_link::after{
	content:"";
	width: 0;
	height: 2px;
	position: absolute;
	transition: all 0.4s linear;
	background: #000;
}
.form_link span::before, .form_link span::after{
	content:"";
	width:2px;
	height:0;
	position: absolute;
	transition: all 0.2s linear;
	background: #000;
}
a.form_link:hover::before, a.form_link:hover::after{
	width: 100%;
}
a.form_link:hover span::before, a.form_link:hover span::after{
	height: 100%;
}
.form_link::after{
	right:0;
	bottom: 0;
	transition-duration: 0.4s;
}
.form_link span::after{
	right:0;
	bottom: 0;
	transition-duration: 0.4s;
}
.form_link::before{
	left: 0;
	top: 0;
	transition-duration: 0.4s;
}
.form_link span::before{
	left: 0;
	top: 0;
	transition-duration: 0.4s;
}
.main_picture {
    height: 92vh;
    background: url(https://pine-house.com.ua/wp-content/uploads/2020/05/main_picture.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* about us */
.about_us-content {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 3em;
}
.about_us-content .about_us-img {
	background-image: url(https://pine-house.com.ua/wp-content/uploads/2020/06/about_us.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 2em;
}
.advantages_item {
    display: flex;
	width: 170px;
	margin: 0 auto;
}
.advantages_text {
    padding-left: 1em;
}
.advantages_text p {
	padding: 0;
    letter-spacing: 0;
}
.advantages_icon svg {
    width: 50px;
    height: 50px;
}
/* home */
.home_content {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}
/* swiper */
.swiper-container {
	width: 100%;
	height: 100%;
	grid-row: 1/3;
    grid-column: 1;
}
.swiper-slide {
	position: relative;
	text-align: center;
	font-size: 18px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-button-prev {
    top: auto;
	left: 0;
    bottom: 0;
    background-color: #fff;
	background-size: 65%;
    opacity: 1;
}
.swiper-pagination.swiper-pagination-fraction {
    bottom: -2px;
    height: 44px;
    width: 128px;
    padding-top: 13px;
    font-weight: 600;
	background: #fff;
}
.swiper-button-next {
    top: auto;
	left: 95px;
    bottom: 0;
    background-color: #fff;
	background-size: 65%;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	height: 42px;
    background-image: url(https://pine-house.com.ua/wp-content/uploads/2020/06/next.png);
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url(https://pine-house.com.ua/wp-content/uploads/2020/06/back.png);
    left: 10px;
    right: auto;
}
.swiper-slide > a {
	position: absolute;
    bottom: -2px;
    left: 0;
    height: 44px;
    padding-top: 0.4em;
    padding-right: 1em;
    padding-left: 140px;
    font-weight: 600;
    background: #fff;
    color: #000;
}
.swiper-slide a span:after {
	display: inline-block;
    content: '\276F';
    padding-left: 0.5em;
    margin-right: 0.5em;
    padding-top: 4px;
    font-size: 15px;
    animation: slide-icon alternate 1s infinite;
}
@keyframes slide-icon {
	0% { transform: translate(0, 0); }
	100% { transform: translate(10px, 0); }
}
/* home text */
.home_text {
    grid-row: 1;
    grid-column: 2;
}
/* Cost Calculator */
.calculator .calculator-settings {
    margin: 0;
}
.calculator .calc-fields.calc-list.loaded {
    min-height: 100%;
	padding: 2em 2em 0!important;
	border-radius: 10px 10px 0 0!important;
	background-color: #f2f2f2;
}
.calculator .calc-subtotal.calc-list.loaded {
    min-height: 100%;
    padding: 0 2em 2em!important;
	border-radius: 0 0 10px 10px!important;
}
.calculator .calc-fields.calc-list.loaded {
	display: grid;
}
.calculator .calc-container.horizontal .calc-list.calc-fields .calc-item {
    width: 100%;
}
.calculator div#range_field_id_1 {
    grid-column: 1/3;
    grid-row: 2;
}
.calculator div#radio_field_id_2 {
    grid-column: 1;
    grid-row: 3;
}
.calculator div#radio_field_id_3 {
	grid-column: 2;
    grid-row: 3;
}
.calculator .calc-container .calc-list .calc-item-title {
	grid-column: 1/3;
	margin-bottom: 15px;
}
.calculator .calc-item-title h4 {
	font-size: 18px!important;
}
.calculator .calc-container {
	padding: 0;	
}
.calculator .calc-container.horizontal .calc-list {
    margin-bottom: 0!important;
}
.calculator .sub-list-item.range_field_id_1,
.calculator .sub-list-item.radio_field_id_2,
.calculator .sub-list-item.radio_field_id_3 {
	display: none!important;
}
.calculator .calc-item.title {
    display: none!important;
}
.calculator .sub-list-item.total {
    margin-top: 0px;
}
.calculator .calc-container.horizontal {
    background: #eff4f4;
}
.calculator .e-control-wrapper.e-slider-container.e-material-slider .e-slider .e-handle.e-handle-first,
.calculator .e-slider-tooltip.e-tooltip-wrap.e-popup,
.calculator .e-control-wrapper.e-slider-container .e-slider .e-handle {
    background: #000000 !important;
}
.calculator .calculator-settings .calc-radio-item input[type='radio']:checked {
    background: #000000 !important;
}
/* price */
.price_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}
.price_item {
    padding: 1em 2em;
    background: #f2f2f2;
}
.price_item-head {
    padding-bottom: 1em;
}
.price_item-body-content {
	display: flex;
    align-items: flex-start;
}
.price_item-body-content svg {
	width: 20px;
    margin-right: 1em;
    padding-top: 0.2em;
}
.price_item-body-content svg.close {
	width: 16px;
    margin-left: 2px;
}
/* projects */
.projects_content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2em;
}
.projects_item {
	background: #eee;
	width: 100%;
	display: block;
	float: left;
	position: relative;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
	transition: all 250ms ease-in;
	min-height: 300px;
	background-size: cover;
	background-position: center center;
	margin-bottom: 30px;
}
.projects_item .bg-overlay{
	background: rgba(0,0,0,0.25);
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	transition: all 200ms linear;
}
.projects_item .projects_item-content{
	padding: 30px 40px;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	flex-direction: row;
}
.projects_item .projects_item-content .primary{
	text-transform: uppercase;
	width: 100%;
	transition: all 250ms ease-out 200ms;
	opacity: 1;
	transform: translate3d(0px, 0px, 1px);
}
.projects_item .projects_item-content .secondary{
	position: absolute;
	opacity: 0;
	left: 0px;
	transform: translate3d(0px, 30px, 1px);
	transition: all 200ms linear 0ms;
	padding-left: 35px;
	padding-right: 35px;
	width: 100%;
}
.projects_content h4 {
	font-size: 1.5em;
	font-weight: 900;
	letter-spacing: 0.25px;
}
.projects_content h5 {
	font-size: 1em;
	font-weight: 900;
	letter-spacing: 0.25px;
	text-align: center;
}
.projects_item .button{
	border: solid 1px #fff;
	padding: 8px 12px;
	display: inline-block;
	border-radius: 2px;
	margin: 12px auto;
	color: #fff;
}
.projects_item .v-border{
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
}
.projects_item .v-border:before,
.projects_item .v-border:after{
	width: 0%;
	height: 1px;
	left: 50%;
	transition: all 250ms ease-out;
	background: #fff;
}
.projects_item .v-border:before{
	content: '';
	top: 10%;
	position: absolute;
}
.projects_item .v-border:after{
	content: '';
	bottom: 10%;
	position: absolute;
}
.projects_item .h-border{
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
}
.projects_item .h-border:before,
.projects_item .h-border:after{
	height: 0%;
	top: 50%;
	width: 1px;
	transition: all 250ms ease-out;
	background: #fff;
}
.projects_item .h-border:before{
	content: '';
	left: 10%;
	height: 0%;
	position: absolute;
}
.projects_item .h-border:after{
	content: '';
	right: 10%;
	position: absolute;
}
.projects_item:active .v-border:before,
.projects_item:active .v-border:after,
.projects_item:hover .v-border:before,
.projects_item:hover .v-border:after{
	width: 90%;
	left: 5%;
}
.projects_item:active .h-border:before,
.projects_item:active .h-border:after,
.projects_item:hover .h-border:before,
.projects_item:hover .h-border:after{
	height: 90%;
	top: 5%;
}
.projects_item:active,
.projects_item:hover{
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.3);
}
.projects_item:active .projects_item-content .primary,
.projects_item:hover .projects_item-content .primary{
	opacity: 0;
	transform: translate3d(0px, 20px, 1px);
	transition: all 200ms linear 0ms;
}
.projects_item:active .projects_item-content .secondary,
.projects_item:hover .projects_item-content .secondary{
	opacity: 1;
	transform: translate3d(0px, 0px, 1px);
	transition: all 200ms linear 200ms;
}
.projects_item:active .bg-overlay,
.projects_item:hover .bg-overlay{
	background: rgba(0,0,0,0.45);
}
/* partners */
.partners_content {
	display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}
.partners_item {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #cecece;
	align-items: center;
	background-color: #f1f1f1;
}
.partners_item .partners_img {
	max-width:100%;
	filter: grayscale(100%);
	transition: all 0.3s;
}

.partners_item:hover .partners_img {
	filter:none;
	transition: all 0.3s;
}
/* construction */
.construction_title h3 {
    padding-bottom: 0.5em;
}
.construction_title p {
    padding-bottom: 2em;
}
.construction_content h4 {
	font-size: 1.5em;
	font-weight: 900;
	letter-spacing: 0.25px;
}
.construction_content h5 {
	font-size: 1em;
	font-weight: 900;
	letter-spacing: 0.25px;
	text-align: center;
}
/* page homes */
.homes_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
}
.homes_item {
    background: #f2f2f2;
}
.homes_title, .pergolas_title, .terraces_title, .canopy_title {
    width: calc(95% - 90px);
    margin: 0 auto;
    padding-top: 80px;
}
.homes_title h2, .pergolas_title h2, .terraces_title h2, .canopy_title h2 {
    font-size: 1em;
}
.homes_text-title h3{
	padding: 0.5em;
	font-size: 1.2em;
	text-align: center;
}
.homes_text p {
	width: 90px;
    margin: 0;
    padding: 0 0 0.5em;
    font-size: 0.8em;
    line-height: 1;
    letter-spacing: 0;
}
.homes_text hr {
	height: 2px;
    background: darkgray;
    margin: 0 1em;
    margin-bottom: 1em;
}
.homes_text-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.homes_text-description-sizes,
.homes_text-description-rooms,
.homes_text-description-deadlines,
.homes_text-description-storey {
    display: grid;
    grid-template-columns: 50px 1fr;
    padding: 1em;
}
.homes_text-description-deadlines {
    display: none;
}
.homes_text-description svg {
	width: 35px;
    height: 35px;
}
.homes_text-description svg path {
    fill: darkgray;
}
.homes_text-price {
    display: grid;
    grid-template-columns: 1fr 150px;
    text-align: center;
}
.homes_text-price a {
	color: #000;
}
.homes_text-price p {
	width: 100%!important;
	font-size: 1em!important;
	padding-bottom: 1em;
}
/* page house */
.house {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
	padding-top: 6em!important;
}
.house_text {
	display: grid;
	height: max-content;
}
.house_title {
    grid-row: 1;
    grid-column: 1/3;
    padding-bottom: 2em;
}
.house_text h1 {
	padding-bottom: 0.3em;
    font-size: 3em;
}
.house_text h2 {
    font-size: 1em;
}
.house_specification p {
	border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0.5em;
}
.house_specification-border {
	display: none;
	border-bottom: 1px solid #000;
}
.house_specification p:nth-last-child(2) {
	border-bottom: 1px solid #000;
}
.house_specification {
    grid-row: 2;
    grid-column: 1;
	padding: 1em;
	background: #f2f2f2;
}

/* .house_description {
    grid-row: 3;
    grid-column: 1/3;
	padding-top: 2em;
} */
/* .house_price {
    grid-row: 4;
    grid-column: 1/3;
} */
.house_text h3 {
    font-size: 1em;
}
.house_img {
    margin-top: 1em;
}
#omega_img {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
	margin-top: 1em;
	zoom: 1;
}
#omega_img img {
	height: auto;
	float: left;
	cursor: pointer;
	margin-right: 2%;
	border: 2px solid #eee;
	box-sizing: border-box;
	opacity: 0.5;
}
#omega_img img.active {
 	opacity: 1;
}
/* page pergolas, terraces, canopy */
.pergolas_content,
.terraces_content,
.canopy_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
}
.pergolas_text-title h3,
.terraces_text-title h3,
.canopy_text-title h3 {
	padding: 0.5em;
    font-size: 1.2em;
    text-align: center;
}
.pergolas_item,
.terraces_item,
.canopy_item {
	display: grid;
    background: #f2f2f2;
}
.pergolas_text-description,
.terraces_text-description,
.canopy_text-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.pergolas_text-sizes,
.terraces_text-sizes,
.canopy_text-sizes,
.pergolas_text-type,
.pergolas_text-deadlines,
.terraces_text-deadlines,
.canopy_text-deadlines,
.pergolas_text-roof {
	display: grid;
    grid-template-columns: 50px 1fr;
    padding: 0.7em;
}
.pergolas_text-description svg,
.terraces_text-description svg,
.canopy_text-description svg {
    width: 35px;
    height: 35px;
}
.pergolas_text-description svg path,
.terraces_text-description svg path,
.canopy_text-description svg path {
    fill: darkgray;
}
.pergolas_text-text p,
.terraces_text-text p,
.canopy_text-text p {
	width: 95px;
    margin: 0;
    padding: 0 0 0.5em;
    font-size: 0.7em;
    line-height: 1;
    letter-spacing: 0;
}
.pergolas_text hr,
.terraces_text hr,
.canopy_text hr {
    height: 2px;
    background: darkgray;
    margin: 0 1em;
    margin-bottom: 1em;
}
.pergolas_text-price,
.terraces_text-price,
.canopy_text-price {
	padding-bottom: 1em;
    text-align: center;
}
.pergolas_text-price a,
.terraces_text-price a,
.canopy_text-price a {
	color: #000;
}
/* work */
.work_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
}
.work_item {
	display: grid;
    background: #f2f2f2;
}
.work_title {
    width: calc(95% - 90px);
    margin: 0 auto;
    padding-top: 6em;
}
.work_title h2 {
    font-size: 1em;
}
.work_text-title h3{
	padding: 0.5em;
	font-size: 1.2em;
	text-align: center;
}
.work_text p {
	width: 90px;
    margin: 0;
    padding: 0 0 0.5em;
    font-size: 0.8em;
    line-height: 1;
    letter-spacing: 0;
}
.work_text hr {
	height: 2px;
    background: darkgray;
    margin: 0 1em;
    margin-bottom: 1em;
}
.work_text-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.work_text-description-sizes,
.work_text-description-rooms,
.work_text-description-deadlines,
.work_text-description-storey {
    display: grid;
    grid-template-columns: 50px 1fr;
    padding: 1em;
}
.work_text-description svg {
	width: 35px;
    height: 35px;
}
.work_text-description svg path {
    fill: darkgray;
}
.work_text-price {
    display: grid;
    grid-template-columns: 1fr 150px;
    text-align: center;
}
.work_text-price a {
	color: #000;
}
.work_text-price p {
	width: 100%!important;
	font-size: 1em!important;
	padding-bottom: 1em;
}
.swiper-container-s3 {
	position: relative;
    overflow: hidden;
}
.swiper-s3-button-next {
	height: 30px;
    width: 30px;
    position: absolute;
    top: 50%;
	left: 0;
    background-image: url(https://pine-house.com.ua/wp-content/uploads/2020/07/back-s3.png);
	background-size: cover;
	outline: none;
	z-index: 1;
}
.swiper-s3-button-prev {
	height: 30px;
    width: 30px;
    position: absolute;
    top: 50%;
	right: 0;
    background-image: url(https://pine-house.com.ua/wp-content/uploads/2020/07/next-s3.png);
	background-size: cover;
	outline: none;
	z-index: 1;
}
/* review */
.review {
	overflow: hidden;
}
.review .swiper-container-s2 {
	width: 100%;
	height: 100%;
}
.review .swiper-container-s2 .swiper-slide {
	display: block;
	background: #f2f2f2;
    border-radius: 1em;
    text-align: left;
    padding: 1em 1em 1em 3em;
}
.review .swiper-container-s2 .swiper-slide::before {
	content: "\201c";
    position: absolute;
    left: 0.2rem;
    top: 0rem;
    font-size: 9rem;
    line-height: 1;
    font-family: sans-serif;
}
.review .swiper-container-s2 .swiper-slide p {
	font-size: 0.8em;
}
.review .swiper-container-s2 .swiper-slide span {
	font-weight: 600;
}
p.autor_review {
    text-align: end;
}
/* footer */
footer#colophon {
	padding: 1em 3em 0 3em;
    background: #231F20;
}
.contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5em 1em;
    padding: 1em 0;
}
.contacts_icon {
    display: inline-block;
    float: left;
	padding-right: 1em;
}
.contacts_icon svg {
    width: 28px;
    height: auto;
}
.contacts_icon svg path {
    fill: #5d5e63;
}
.language .contacts_icon svg path {
    fill: transparent;
}
/* language */
.language-switcher {
    display: flex;
}
.language-switcher strong,
.language-switcher a {
    margin-right: 15px;
    font-weight: 600;
    color: #fff;
}
.language-switcher strong {
	color: #ccc;
}
.language-switcher a {
	cursor: pointer;
}
.contacts h5 {
	margin-bottom: 10px;
    font-size: 1.2em;
    color: #5d5e63;
}
.contacts p a {
	font-weight: 600;
    color: #fff;
}
.phone a {
	font-weight: 600;
    color: #fff;
}
.social_media-content {
	display: block;
    padding-top: 1em;
}
.social_media-item {
    float: left;
}
.socials_link {
    display: block;
}
.socials_link svg {

}
.socials_link svg path {
    fill: #fff;
}
.сopyright {
	margin-top: 2em;
	padding: 0.5em;
	font-size: 0.8em;
    text-align: center;
	background: #231F20;
    color: #fff;
}
/* Внешний вид формы */
#feedback {
    margin: 0 auto;
}
#feedback h5 {
	padding-bottom: 1em;
    font-size: 1.5em;
}
#feedback p {
	color: #5d5e63;
}
.feedback {
    position: relative;
    display: grid;
    gap: 2em;
    margin: 1em 0;
}
.feedback_tel {
	position: relative;
}
.feedback label {
    font-weight: 600;
    text-transform: uppercase;
}
.art_name, .art_tel {
	width: 100%;
    margin-top: 1em;
    padding: 1em 0 1em 2em;
	font-size: 1em;
    line-height: unset;
    color: #000;
    border: 2px solid #101010;
    border-radius: 4px;
}
.wpcf7-submit {
    height: 54px;
    width: 200px;
    font-size: 1em;
	text-transform: uppercase;
	border: none;
    border-radius: 3px;
    background-color: #231F20;
    color: #fff;
    cursor: pointer;
}
.wpcf7-not-valid-tip {
    padding-top: 5px;
    color: #dc3232;
    font-size: 12px;
    font-weight: normal;
    display: block;
}
/* responsive */
@media (min-width: 786px) {
	.partners_content {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 40px;
	}
	.feedback {
		grid-template-columns: 1fr 1fr 200px;
	}
	.wpcf7-submit {
		margin-top: 40px;
	}
}
@media (min-width: 905px) {
	.construction {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 40px;
	}
	.partners_content {
		grid-template-columns: repeat(6, 1fr);
		grid-gap: 20px;
	}
}
@media (max-width: 1610px) {
	.homes_content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1em;
	}
	.homes_text p {
		width: 125px;
		font-size: 0.9em;
	}
	.house {
		gap: 2em;
	}
	.house_specification {
		grid-row: 2;
		grid-column: 1/3;
		padding: 1em;
		background: #f2f2f2;
	}
	.work_content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1em;
	}
/* 	.house_description {
		grid-row: 4;
		grid-column: 1/3;
		padding-top: 2em;
	} */
/* 	.house_price {
		grid-row: 5;
		grid-column: 1/3;
	} */
}
@media (max-width: 1580px) {
	.pergolas_content, .terraces_content, .canopy_content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1em;
	}
	.pergolas_text-text p, .terraces_text-text p, .canopy_text-text p {
		width: 125px;
		font-size: 0.9em;
	}
}
@media (max-width: 1450px) {
	.homes_text p {
		width: 95px;
		font-size: 0.7em;
	}
}
@media (max-width: 1400px) {
	.swiper-container {
		grid-row: 1;
		grid-column: 1;
		height: 350px;
	}
	.home_text {
		grid-row: 1;
		grid-column: 2;
	}
	.calculator {
		grid-row: 2;
		grid-column: 1/3;
	}
	#ccb-horizontal-main {
		width: 100%;
		display: flex;
	}
	.projects_item {
		min-height: 250px;
	}
	.pergolas_text-text p, .terraces_text-text p, .canopy_text-text p {
		width: 95px;
		font-size: 0.7em;
	}
}
@media (max-width: 1300px) {
	.advantages {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.advantages_item {
		padding-bottom: 2em;
	}
	.projects_content {
		grid-template-columns: repeat(2, 1fr);
	}
	.projects_item {
		min-height: 300px;
	}
	#add_feedback {
		gap: 2em;
	}
}
@media (max-width: 1260px) {
	.homes_content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1em;
	}
	.homes_text p {
		width: 125px;
		font-size: 0.9em;
	}
	.work_content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1em;
	}
}
@media (max-width:1200px) {
	.content {
		width: calc(95% - 0px);
	}
	nav ul#primary-menu li a {
		margin: 0 0.5em;
	}
	.swiper-container {
		height: 300px;
	}
	.swiper-slide > a {
		height: 25px;
		padding-top: 0;
	}
	.swiper-pagination.swiper-pagination-fraction {
		height: 25px;
		padding-top: 5px;
	}
	.swiper-button-next, .swiper-button-prev {
		width: 20px;
		height: 20px;
		margin-top: -22px;
	}
	.swiper-button-next {
		left: 100px;
	}
	.homes_title, .pergolas_title, .terraces_title, .canopy_title {
		width: calc(95% - 0px);
	}
}
@media (max-width: 1180px) {
	.swiper-slide .swiper-content .projects_exx-area {
		font-size: 25px;
	}
	.swiper-slide .swiper-content .projects_exx-cost {
		font-size: 12px;
	}
}
@media (max-width: 1100px) {
	.house {
		grid-template-columns: 1fr;
	}
	.pergolas_content, .terraces_content, .canopy_content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1em;
	}
	.pergolas_text-text p, .terraces_text-text p, .canopy_text-text p {
		width: 125px;
		font-size: 0.9em;
	}
}
@media (max-width: 1023px) {
	.price_content {
		grid-template-columns: repeat(2, 1fr);
	}
	.swiper-container.swiper-container-coverflow {
		padding-top: 0;
	}
}
@media screen and (max-width:1000px) {
	nav#site-navigation {
		width: 0;
	}
    .navTrigger {
        display: block;
    }
    nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    nav div.show_list {
        height: auto;
        display: none;
    }
    nav div.main_list .menu {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
    	background-color: #231f20;
        background-position: center top;
    }
    nav ul#primary-menu li {
		margin: 0.5em;
		padding-right: 0;
        text-align: center;
    }
    nav ul#primary-menu li a {
		padding: 20px;
		margin: 0;
        text-align: center;
        width: 100%;
        font-size: 2rem;
    }
	.site-phone {
		margin-right: 60px;
	}
	.show_list ul#primary-menu {
		position: absolute;
		top: 76px;
	}
	.about_us-content {
		display: grid;
		grid-template-columns: 1fr;
	}
	.about_us-content .about_us-img {
		display: none;
	}
	.advantages {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	#add_feedback {
		gap: 2em;
	}
	.footer-content {
		grid-template-columns: 300px 1fr;
	}
	.contacts {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2.5em 1em;
		padding: 1em 0;
		max-width: 260px;
        margin: 0 auto;
		
	}
	.сopyright {
		max-width: 260px;
        margin: 0 auto;
		text-align: left;
		padding: 20px 0 10px;
	}
}
@media (min-width: 787px) and (max-width: 1000px) {
	.advantages_item {
		padding-bottom: 0;
	}
}
@media (max-width: 905px) {
	.homes_text p {
		width: 95px;
		font-size: 0.7em;
	}
}
@media (max-width: 878px) {
	.home_content {
		display: block;
	}
	.home_text {
		padding: 2em 0px;
	}
	div#ccb-horizontal-main {
		display: grid;
	}
	#ccb-horizontal-main .ccb-inner-wrapper {
		padding-right: 0em!important;
	}
	#ccb-horizontal-main .ccb-inner-wrapper {
		width: 100%;
	}
	.ccb-inner-wrapper.wrap_range_field_id_1 {
		grid-row: 1;
		grid-column: 1/3;
	}
	.ccb-inner-wrapper.wrap_radio_field_id_2 {
		grid-row: 2;
		grid-column: 1;
	}
	.ccb-inner-wrapper.wrap_radio_field_id_3 {
		grid-row: 2;
		grid-column: 2;
	}
	.pergolas_text-text p, .terraces_text-text p, .canopy_text-text p {
		width: 95px;
		font-size: 0.7em;
	}
}
@media screen and (max-width: 787px) {
	.hero_title {
		width: 100%;
	}
	.advantages {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.homes_content {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1em;
	}
	.homes_text p {
		width: 125px;
		font-size: 0.9em;
	}
	.work_content {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1em;
	}
	.price_content {
		grid-template-columns: 1fr;
	}
	.footer-content {
		grid-template-columns: 1fr;
	}
	.contacts {
		display: grid;
		gap: 2.5em 1em;
		padding: 1em 0;
	}
	iframe {
		height: 300px;
	}
}
@media screen and (max-width: 750px) {
	.pergolas_content, .terraces_content, .canopy_content {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1em;
	}
	.pergolas_text-text p, .terraces_text-text p, .canopy_text-text p {
		width: 125px;
		font-size: 0.9em;
	}
}
@media screen and (max-width: 600px) {
	#add_feedback {
		grid-template-columns: 1fr;
	}
	input#submit-feedback {
		position: unset!important;
	}
}
@media screen and (max-width: 600px) {
	.projects_content {
		grid-template-columns: 1fr;
	}
	.price_content {
		grid-template-columns: 1fr;
	}
	.construction_content {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 550px) {
	h3 {
		font-size: 1.6em;
	}
	.ccb-inner-wrapper.wrap_radio_field_id_2 {
		grid-row: 2;
		grid-column: 1/3;
	}
	.ccb-inner-wrapper.wrap_radio_field_id_3 {
		grid-row: 3;
		grid-column: 1/3;
	}
	.contacts {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 500px) {
	.hero_title-content {
		margin: 0 2em 0 2em;
	}
	.hero_title h1 {
		font-size: 1.4em;
	}
	.hero_title h2 {
		padding: 1em 0em 2em 0;
	}
	a.form_link {
		margin: 0;
	}
	main#primary {
		padding-top: 38px;
	}
	.site-phone {
		padding: 0.5em 0.3em 0.5em 0.3em;
	}
	.navTrigger {
		top: 23px;
		right: 15px;
	}
	.show_list ul#primary-menu {
		top: 64px;
	}
	.ccb-horizontal-calc-wrapper h3 {
		font-size: 0.8em;
	}
	.homes_title, .pergolas_title, .terraces_title, .canopy_title, .work_title {
		padding-top: 6em;
}
	.content {
		padding: 1em 0;
	}
}
@media screen and (max-width: 435px) {
	.homes_text p {
		width: 95px;
		font-size: 0.7em;
	}
}
@media screen and (max-width: 420px) {
	.pergolas_text-text p, .terraces_text-text p, .canopy_text-text p {
		width: 95px;
		font-size: 0.7em;
	}
}
@media screen and (max-width: 400px) {
	.advantages_item {
		display: block;
		width: 100%;
		text-align: center;
	}
	.advantages_text {
		padding-left: 0;
	}
	.calculator div#radio_field_id_2 {
		grid-column: 1/3;
		grid-row: 3;
	}
	.calculator div#radio_field_id_3 {
		grid-column: 1/3;
		grid-row: 4;
	}
	footer#colophon {
		padding: 1em 1em 0 1em;
		background: #231F20;
	}
}
@media screen and (max-width: 375px) {
	.homes_text-description-sizes, .homes_text-description-rooms, .homes_text-description-deadlines, .homes_text-description-storey {
		padding: 0.2em;
	}
}
@media screen and (max-width: 355px) {
	.pergolas_text-sizes, .terraces_text-sizes, .canopy_text-sizes, .pergolas_text-type, .pergolas_text-deadlines, .terraces_text-deadlines, .canopy_text-deadlines, .pergolas_text-window {
		padding: 0.7em 0.2em;
	}
	.site-branding {
		padding-left: 0.3em;
	}
	.site-phone a {
		font-size: 0.9em;
	}
	.navTrigger {
		right: 12px;
	}
}