/*!
Theme Name: unitbud-zt
Author: Oleg
Author URI: #
Description: Unitbud-zt Theme
Version: 1.1.0
Text Domain: unitbud-zt
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 */

:root {
	--black: #000;
	--grey: #757777;
	--white: #fff;
	--green: #77d14d;
	--bg: #f5f5f5;
	--font-family: "Roboto", sans-serif;
	--second-family: "Alumnisans", sans-serif;
	--third-family: "Mont", sans-serif;
}

@font-face {
	font-family: "Roboto";
	src: local("Roboto Regular"), local("Roboto-Regular"),
		url("./assets/fonts/roboto.woff2") format("woff2");
	font-weight: 400;
	font-display: fallback;
}

@font-face {
	font-family: "Roboto Bold";
	src: local("Roboto-Bold"), local("Roboto-Bold"),
		url("./assets/fonts/robotobold.woff2") format("woff2");
	font-weight: 700;
	font-display: fallback;
}
@font-face {
	font-family: "RobotoCondensed Regular";
	src: local("RobotoCondensed Regular"), local("RobotoCondensed-Regular"), 
		url("./assets/fonts/robotocondensed-regular.woff2") format("woff2");
	font-weight: 700;
	font-display: fallback;
}

@font-face {
	font-family: "Alumnisans Black";
	src: local("Alumnisans Black"), local("Alumnisans-Black"),
		url("./assets/fonts/alumnisans-black.woff2") format("woff2");
	font-weight: 900;
	font-display: fallback;
}

@font-face {
	font-family: "Alumnisans";
	src: local("Alumnisans Bold"), local("Alumnisans-Bold"),
		url("./assets/fonts/alumnisans-bold.woff2") format("woff2");
	font-weight: 700;
	font-display: fallback;
}



@layer {
	* {
		padding: 0;
		margin: 0;
		box-sizing: border-box;
		scroll-margin-top: 110px;
	}

	html {
		box-sizing: border-box;
		scroll-behavior: smooth;
		touch-action: manipulation;
		-webkit-text-size-adjust: 100%;
		-webkit-tap-highlight-color: transparent;
	}

	body,
	input,
	button,
	select,
	textarea {
		font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
		font-size: 14px;
		line-height: 1.5;
		color: var(--black);
	}

	a {
		text-decoration: underline;
		color: var(--blue);
	}
	a:hover,
	a:focus-visible {
		text-decoration: none;
	}

	img {
		max-width: 100%;
		height: auto;
		vertical-align: middle;
	}

	iframe {
		max-width: 100%;
		vertical-align: middle;
		border: none;
	}
    body.lg-overlay-open {
        padding-right: 0 !important;
    }
	@media screen and (min-width: 1024px) {
		* {
			scroll-margin-top: 135px;
		}
	}
}

/* Disable animations during page load */
.loading *,
.loading ::before,
.loading ::after {
	transition: none !important;
}

/* Main Container */
.container {
	max-width: 1180px;
	padding: 0 20px;
	margin-inline: auto;
}
/* General */
.section{
	padding: 50px 0 0 0;
}
aside{
	margin-top: 50px;
}
.section__title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 45px;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
	margin-bottom: 30px;
}
.main-button{
	border: 1px solid var(--black);
	border-radius: 5px;
	padding: 10px 15px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	color: var(--black);
	background: transparent;
    cursor: pointer;
}
.main-button:hover{
    color: var(--white);
    background: var(--black);
}
.social {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0 45px;
}
.scroll-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    height: 69px;
    width: 69px;
    z-index: 100;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.scroll-top.visible {
    opacity: 1;
    display: block;
}
@media screen and (min-width: 768px) {
    .section__title {
        font-size: 50px;
    }
}
@media screen and (min-width: 992px) {
    .section__title {
        font-size: 55px;
    }
}
@media screen and (min-width: 1200px) {
    .section__title {
        font-size: 60px;
    }
}
/* Header */
.header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header__top{
    padding: 0 20px;
    margin-inline: auto;
}
.header__top--content {
	position: relative;
	z-index: 100;
	display: flex;
    gap: 25px;
    justify-content: space-between;
	align-items: center;
	border-radius: 10px;
    margin-top: 10px;
    padding: 10px 20px;
	background: rgba(243, 243, 243, 0.95);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}
.header__phone{
	display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
	border-radius: 100px;
    background: var(--green);
}
.hamburger {
	z-index: 1;
	width: 50px;
    height: 32px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	transition: opacity 0.15s;
}
.hamburger__inner,
.hamburger__inner::before,
.hamburger__inner::after {
	position: absolute;
	display: block;
	width: 50px;
    height: 4px;
	border-radius: 3px;
	background-color: var(--black);
}
.hamburger__inner {
	top: 50%;
	margin-top: -1.5px;
	transition: transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0.24s;
}
.hamburger__inner::before {
	content: "";
	top: -16px;
	transition: top 0.1s 0.14s ease, opacity 0.1s ease, background-color 0.24s;
}
.hamburger__inner::after {
	content: "";
	bottom: -16px;
	transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0.24s;
}
.hamburger--active .hamburger__inner {
	transform: rotateZ(45deg);
	transition: transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.24s;
}
.hamburger--active .hamburger__inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease, opacity 0.1s 0.14s ease, background-color 0.24s;
}
.hamburger--active .hamburger__inner::after {
	bottom: 0;
	transform: rotateZ(-90deg);
	transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.24s;
}
.header__top--navigation{
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: transform 0.9s ease 0s;
    transform: translate(0px,-100%);
    z-index: 98;
	padding-top: 115px;
}
.navigation--active {
    transform: translate(0%, 0px);
}
.nav-menu {
    list-style: none;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}
.nav-menu--item{
	border-bottom: 1px solid var(--black);
	text-align: center;
}
.nav-menu--item:last-child{
	border-bottom: none;
}
.nav-menu--item a{
    display: block;
    padding: 20px 25px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	text-decoration: none;
	color: var(--black);
}
.header__bottom{
	display: none;
}
.header__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header__schedule {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--grey);
}
.header__contact a {
	font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
}

.home__banner {
    width: 100%;
    padding-top: 150px ;
	padding-bottom: calc(250px + (100vw - 425px));
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
}
.header__logo {
    display: none;
    grid-template-columns: 5% auto 1fr;
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
    position: absolute;
    margin-top: 30px;
}
.header__logo img {
    width: 100%;
}
.header__logo:before {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: var(--green);
}
.header__logo:after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: var(--black);
    align-self: self-end;
}
.custom-logo-link{
    z-index: 99;
}
.home__banner--headline{
    display:flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    color: var(--black);
}
.home__banner--subtitle{
    font-weight: 400;
    color: var(--black);
}
.home__banner--old-price{
    font-weight: 300;
    text-decoration: line-through;
    color: var(--grey);
}
.home__banner--new-price{
    font-weight: 700;
    color: var(--green);
    background: var(--white);
    border-radius: 5px;
    padding: 5px;
}
@media screen and (min-width: 768px) {
	.home__banner {
		padding-bottom: calc(10px + (100vw - 535px));
        padding-top: 75px;
        background-size: 150%;
	}
    .home__banner--headline{
        gap: 10px;
    }
}
@media screen and (min-width: 992px) {
	.header {
		position: absolute;
		overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 35px;
	}
	.hamburger{
		display: none;
	}
	.home-background-mob{
		display: none;
	}
    .header__logo {
        display: grid;
    }
	.header__top {
		position: relative;
		display: flex;
		align-items: center;
		margin-top: 50px;
        padding: 0;
        margin-inline: unset;
	}
	.header__top--content{
        display: none;
	}
	.custom-logo-link img {
		height: 65px;
		width: 105px;
	}
	.header__top--navigation{
		position: relative;
		transform: none;
		background: none;
		padding-top: 0;
		margin-top: 0;
	}
	.nav-menu{
        display: flex;
        margin-left: 21%;
        gap: 20px;
        border: none;
	}
	.nav-menu--item{
		border-bottom: none;
	}
	.nav-menu--item a{
        display:inline;
        padding: 0px;
		position: relative;
		font-weight: 700;
	}
	.nav-menu--item a:hover::after {
		content: "";
		position: absolute;
        left: -23px;
        right: -20px;
        bottom: -18px;
        height: 10px;
		z-index: -1;    
		background-color: #77d14d;
	}
	.header__phone{
		display: none;
	}
	.home-background-pc{
		display: block;
	}
	.header__social{
		display: none;
	}
	.header__bottom {
		display: flex;
		justify-content: end;
		gap: 30px;
        margin-right: 25px;
        padding-bottom: 25px;
	}
	.home__banner {
		padding-top: 160px;
		padding-bottom: calc(0px + (95vw - 670px));
        background-size: 140%;
	}
    .home__banner--headline{
        font-size: 24px;
    }
    .home__banner--old-price{
        font-size: 26px;
    }
    .home__banner--new-price{
        font-size: 26px;
    }
}
@media screen and (min-width: 1200px) {
    .header__logo {
        grid-template-columns: 10% auto 1fr;
    }
    .nav-menu {
        gap: 35px;
        margin-left: 23%;
    }
    .header__bottom {
        margin-right: 100px;
    }
    .home__banner {
        padding-top: 185px;
        padding-bottom: calc(0px + (55vw - 235px));
	}
    .home__banner--old-price{
        font-size: 30px;
    }
    .home__banner--new-price{
        font-size: 30px;
        padding: 10px;
    }
}
@media screen and (min-width: 1400px) {
    .header__logo {
        grid-template-columns: 15% auto 1fr;
    }
    .nav-menu {
        gap: 35px;
        margin-left: 26%;
    }
    .header__bottom {
        margin-right: 250px;
    }
    .home__banner {
        padding-bottom: calc(0px + (55vw - 300px));
        background-size: 130%;
	}
}
@media screen and (min-width: 1800px) {
    .nav-menu {
        gap: 35px;
        margin-left: 24%;
    }
    .home__banner {
        padding-bottom: calc(0px + (50vw - 425px));
        background-size: 100%;
	}
}
@media screen and (min-width: 2200px) {
    .nav-menu {
        gap: 35px;
        margin-left: 22%;
    }
}


/*
.home__banner--background {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.home-background-mob{
    height: 600px;
	width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.home-background-pc{
	display: none;
}*/
.home__banner>.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}
.home__banner--title{
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 45px;
	line-height: 120%;
	text-transform: uppercase;
	text-align: center;
	color: var(--black);
}

/* Advantages */
.advantages__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.advantages__item {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 20px;
}
.advantages__item--title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: var(--black);
}
@media screen and (min-width: 992px) {
    .home__banner>.container {
        align-items: flex-start;
        gap: 0px;
    }
    .main-button {
        margin-top: 50px;
    }
}
@media screen and (min-width: 1200px) {
    .advantages__item--title {
        font-size: 20px;
    }
}
@media screen and (min-width: 1600px) {
    .home__banner>.container {
        align-items: center;
        gap: 25px;
    }
    .main-button {
        margin-top: 0px;
    }
}

/* Feedback */
.feedback{
	position: relative;
	background: url(/wp-content/themes/unitbud-zt/assets/img/feedback-bg.webp) center center / cover no-repeat;
	padding: 35px 0 50px 0;
}
.feedback:after {
	content: '';
	background: rgba(0, 0, 0, 0.85);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
}
.feedback__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
	align-items: center;
    width: fit-content;
	position: relative;
    z-index: 99;
}
.feedback__wrap--reverse .feedback__image{
    order:1;
}
.feedback__subtitle{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	color: var(--white);
}
.feedback__title{
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 32px;
	text-transform: uppercase;
	line-height: 1;
	color: var(--green);
}
.feedback__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.feedback__image--url {
    width: 150px;
    height: 160px;
    object-fit: cover;
}
.feedback__button{
	border: 1px solid var(--white);
    line-height: 1;
    color: var(--white);
	margin-top: 10px;
    padding: 10px;
    width: fit-content;
    min-width: 150px;
}
.feedback__button:hover{
    background: none;
}
.form-send-status {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 30px;
    text-align: center;
    max-width: 295px;
    margin-inline: auto;
}
.form-send-status:not(.form-send-status--popup) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 30px;
    text-align: center;
    max-width: 295px;
    margin-inline: auto;
}
.form-send-status__icon {
    width: 50px;
    margin-bottom: 30px;
    user-select: none;
}
.form-send-status__title {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--white);
	font-family: var(--font-family);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
}
.form-send-status__paragraph {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--white);
	font-family: var(--font-family);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
}
.form-send-status__title.form-send-status__title--popup,
.form-send-status__paragraph.form-send-status__paragraph--popup {
    color: var(--black);
}


@media screen and (max-width: 380px) {
    .home__banner {
        padding-top: 100px;
    }
    .feedback__image--url {
        width: 125px;
        height: 135px;
    }
}
@media screen and (min-width: 576px) {
    .feedback >.container{
        display: flex;
        justify-content: center;
    }
    .feedback__wrap{
        gap: 40px;
    }
}
@media screen and (min-width: 768px) {
    .feedback {
        padding: 50px 0 65px 0;
    }
    .feedback__subtitle {
        font-size: 18px;
    }
    .feedback__title {
        font-size: 36px;
    }
    .feedback__button {
        margin-top: 25px;
        font-size: 16px;
        padding: 10px 30px;
    }
    .feedback__image--url {
        width: 170px;
        height: 180px;
    }
}
@media screen and (min-width: 992px) {
    .feedback {
        padding: 70px 0 85px 0;
    }
    .feedback__subtitle {
        font-size: 20px;
    }
    .feedback__title {
        font-size: 50px;
    }
    .feedback__button {
        margin-top: 35px;
        font-size: 18px;
    }
    .feedback__image--url {
        width: auto;
        height: auto;
    }
    .form-send-status__title {
        font-size: 24px;
    }
    .form-send-status__paragraph {
        font-size: 18px;
    }
    .form-send-status__icon {
        width: 90px;
    }

}
@media screen and (min-width: 1200px) {
    .feedback__title {
        font-size: 60px;
    }
    .feedback__button {
        margin-top: 50px;
        font-size: 20px;
    }
}
/* House */
.house__list{
	display: grid;
	gap: 30px;
}
.house__list.toggle__content{
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: visible;
    max-height: 100%;
    height: 0;
    opacity: 0;
}
.house__list.active{
    margin-top: 30px;
}
.house__item {
    position: relative;
    border: 2px solid var(--black);
    border-radius: 10px;
	overflow: hidden;
}
.house__item--wrap:hover .house__item--img{
    transform: scale(1.2);
}
.house__item--img{
    transition-duration: 1000ms;
    object-fit: cover;
    height: 100%;
}
.house__item--characteristics {
	display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    top: 0;
    border-bottom: 2px solid var(--black);
    border-right: 2px solid var(--black);
    background: var(--white);
}
.house__item--characteristics span{
	display: flex;
    align-items: center;
    gap: 10px;
}
.house__item--characteristics span:before {
	content: "";
    border-radius: 100%;
    background: var(--green);
    display: block;
    width: 5px;
    height: 5px;
}
.house__item--area{
    border-right: 2px solid var(--black);
    padding: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: var(--black);
}
.house__item--price{
	font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: var(--black);
    padding: 10px;
}
.house__item--link {
	position: absolute;
    bottom: 0;
    right: 0;
    border-top: 2px solid var(--black);
    border-left: 2px solid var(--black);
    padding: 15px;
    background: var(--green);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}
.house__item--more {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 auto;
    color: var(--black);
    border-top: none;
    border-right: none;
    border-bottom: 1px solid var(--black);
    border-left: none;
    background: none;
    padding: 10px;
    margin-top: 30px;
    display: flex;
    gap: 10px;
    cursor: pointer;
}
.house__item--more:after {
    content:url(/wp-content/themes/unitbud-zt/assets/img/arrow-right.svg);
    transform: rotate(90deg);
    transition-duration: 0.4s;
    transition-property: transform;
}
.house__item--more.active:after{
    transform: rotate(270deg);
}
@media screen and (min-width: 768px) {
    .house__list,
    .house__list.toggle__content{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (min-width: 992px) {
    .house__item--area{
        font-size: 18px;
        padding: 10px 20px;
    }
    .house__item--price{
        font-size: 18px;
        padding: 10px 20px;
    }
    .house__item--link {
        font-size: 18px;
    }
}
/* Price */
.section--price{
    background:url(/wp-content/themes/unitbud-zt/assets/img/price_bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
}
.price__table {
    width: 100%;
    text-align: center;
	border-spacing: 0 5px;
}
.price__table th:first-child{
    display: none;
    background: none;
}
.price__table th:nth-child(2){
    border-radius: 5px 0px 0px 5px;
}
.price__table th{
	width: 33.33%;
	padding: 5px 10px;
    background: var(--grey);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: var(--white);
	border-right: 1px solid white;
}
.price__table th:last-child{
    border-radius: 0px 5px 5px 0px;
	border-right: none;
}
.price__table--title-pc {
	display: none;
}
.price__table td:nth-child(2) {
	border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.price__table td:not(.price__table--title) {
    border: 1px solid black;
	border-right: none;
    padding: 15px 5px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: var(--black);
}
.price__table td:last-child:not(.price__table--title) {
	border-right: 1px solid black;
	border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.price__table .price__table--title{
	font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--green);
	border:none;
	padding: 5px 0;
}
@media screen and (min-width: 992px) {
    .price__table {
        border-spacing: 0 10px;
    }
    .price__table th:first-child {
        display: block;
    }
    .price__table th {
        width: 29%;
        padding: 10px;
        font-size: 16px;
    }
    .price__table .price__table--title:not(.price__table--title-pc){
        display: none;
    }
    .price__table .price__table--title {
        display: block;
    }
    .price__table td:not(.price__table--title){
        font-size: 20px;
    }
    .price__table .price__table--title{
        font-size: 24px;
    }

}
/* Options */
.options__list {
    display: flex;
    flex-direction: column;
	gap:20px;
}
.options__item--title {
	position: relative;
    z-index: 99;
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--grey);
    border-radius: 5px;
    padding: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: var(--white);
    cursor: pointer;
}
.options__item--title:after {
    content: "";
    transition: transform 0.15s;
    background: url(/wp-content/themes/unitbud-zt/assets/img/options-arrow.svg);
    height: 8px;
    width: 13px;
}
.options__item--title.active {
    background: var(--green);
}
.options__item--title.active:after {
	transform: scaleY(-1);
}

.options__item--content{
    position: relative;
    z-index: 99;
	background: var(--bg);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: visible;
    max-height: 100%;
    margin-top: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.options__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    font-weight: 700;
    line-height: 1;
    font-size: 14px;
}
.options__content--title{
    font-size: 18px;
}
.options__content--title__main {
    font-size: 20px;
}
.dashed {
    display: none;
}
.options__content--title__solo{
    font-size: 16px;  
}
.options__subtitle {
    position: relative;
    z-index: 999;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: var(--black);
	margin-bottom: 20px;
}
.options__column--content {
    display: flex;
    flex-direction: column;
    gap: 10px;
	padding: 10px;
}
.options__column--image {
    text-align: end;
    display: flex;
    align-items: end;
    justify-content: end;
}
.options__image--url {
    width: 150px;
    height: 160px;
    object-fit: cover;
}
@media screen and (min-width: 576px) {
    .options__item--content{
        display: grid;
        grid-template-columns: 1fr 25%;
    }
}
@media screen and (min-width: 992px) {
    h3.options__item--title {
        font-size: 20px;
    }
    .options__content {
        flex-direction: row;
        align-items: baseline;
        gap:0;
        font-size: 16px;
    }
    .options__content--title__main {
        font-size: 24px;
    }
    .options__content--title {
        font-size: 16px;
        flex: 0 1 auto;
        margin-right: 10px;
    }
    .dashed {
        display: flex;
        flex: 1;
        position: relative;
    }
    .dashed::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: radial-gradient(circle at center, #000000 50%, transparent 60%) top left / 5px 5px repeat-x;
        transform: translateY(-50%);
    }
    .options__content--text {
        padding-left: 10px;
        flex: 0 0 400px;
        width: 400px;
    }
    .options__subtitle {
        font-size: 24px;
    }
    .options__image--url {
        width: auto;
        height: auto;
    }
    .options__item--content__house{
        grid-template-columns: 1fr;
    }
    .options__item--content__house .options__content--text{
        flex: 0 0 300px;
        width: 300px;
    }

}
/* Reviews */
.reviews__button {
    margin: 0 auto;
    display: block;
    width: fit-content;
    text-decoration: none;
	margin-top: 30px;
}
/* Text */
.text__content p{
	font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--black);
    margin-top: 1em;
}
/* Footer */
.footer__section{
	padding: 50px 0;
}
.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.footer__logo {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    gap: 5px;
    margin-bottom: 30px;
}
.footer__logo img {
    width: 100%;
}
.footer__logo:before {
    content: "";
    display: block;
    width: 100%;
    height: 15px;
    background: var(--green);
}
.footer__logo:after {
    content: "";
    display: block;
    width: 100%;
    height: 15px;
    background: var(--black);
    align-self: self-end;
}
.footer__social--title{
	text-align: center;
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--black);
}
.footer__social .social{
	gap: 20px;
    margin-top: 15px;
}
.footer__contact--title {
	text-align: center;
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: var(--black);
}
.footer__contact--items {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.footer__contact--item{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contact__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--black);
}
.contact__text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--black);
}
.footer__contact--item a{
	text-decoration: none;
}
@media screen and (min-width: 992px) {
    .footer__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .footer__contact--title{
        display: none;
    }
}




.toggle__trigger:hover{
    cursor:pointer;
}
.toggle__content.active {
    opacity: 1;
    height: auto;
}

.popup-form {
    contain: strict;
    position: fixed;
    z-index: 10150;
    inset: 0;
    display: none;
    place-items: center;
    padding: 20px;
    background-color: rgb(48 48 48 / 15%);
    overflow-y: auto;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.2s 0.064s;
}
.popup-form--open {
    opacity: 1;
}
.popup-form__close-win {
    position: absolute;
    inset: 0;
}
.popup-form__container {
    contain: content;
    position: relative;
    max-width: 375px;
    width: 100%;
    padding: 50px 20px 45px;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    transform: translateY(50%) scale(0.5);
    transition: transform 0.4s 0.016s;
}
.popup-form__container--open {
    transform: none;
}
.popup-form__close-btn {
	box-sizing: content-box;
	position: absolute;
	top: 15px;
	right: 15px;
	width: 20px;
	height: 20px;
	border: 5px solid transparent;
	background-color: transparent;
	opacity: 0.65;
	cursor: pointer;
}
.popup-form__close-btn:hover,
.popup-form__close-btn:focus-visible {
	opacity: 1;
}
.popup-form__close-btn::before,
.popup-form__close-btn::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--black);
	transform: rotateZ(45deg);
}
.popup-form__close-btn::after {
	transform: rotateZ(-45deg);
}
.popup-form__fieldset {
	max-width: 275px;
	margin-inline: auto;
	border: none;
	font-size: 14px;
	color: var(--black);
	transition: opacity 0.2s;
}
.popup-form__fieldset:disabled {
	opacity: 0.5;
	pointer-events: none;
}
.popup-form__title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
}
.popup-form__title span {
    color: var(--green);
}
.popup-form__field {
	-moz-appearance: textfield;
    appearance: textfield;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
    border: 1px solid var(--grey);
    border-radius: 5px;
    padding: 15px;
    height: 40px;
}
.popup-form__field:focus {
	border-color: var(--black);
}
.popup-form__submit {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, transform 0.064s;
    background: transparent;
    appearance: button;
    display: block;
    padding: 10px 40px 10px;
    margin-top: 20px;
    margin-inline: auto;
    border: 1px solid var(--black);
    border-radius: 5px;
}
.popup-form__submit:hover {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}
@media screen and (min-width: 768px) {
    .popup-form__container {
        max-width: 500px;
        padding: 80px 30px;
    }
    .popup-form__close-btn {
		top: 24px;
		right: 25px;
	}
	.popup-form__fieldset {
		max-width: 350px;
	}
    .popup-form__title {
        margin-bottom: 30px;
        font-size: 32px;
    }
    .popup-form__submit {
        font-size: 16px;
        padding: 13px 50px 11px;
        margin-top: 30px;
    }
}


/*house page header*/
.main-house{
    margin-top: 100px;
}
.breadcrumb__list span:not(.breadcrumb_last):after {
    content: '';
    background: url(/wp-content/themes/unitbud-zt/assets/img/breadcrumb-arrow.svg) no-repeat center / contain;
    display: inline-block;
    margin: 0 10px;
    width: 10px;
    height: 8px;
}
.breadcrumb__list a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--grey);
    text-decoration: none;
}
.breadcrumb_last{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--black);
}
.house__header--title{
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 45px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    margin-top: 25px;
}
.slider-wrap {
    position: relative;
}
.house__slide--link img{
    border-radius: 5px;
}
.slider-wrap .swiper-button-prev:after,
.slider-wrap .swiper-button-next:after{
    content:none;
}
.slider-wrap .swiper-button-prev,
.slider-wrap .swiper-button-next{
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: var(--white);
    border:1px solid var(--black);
}
.slider-wrap .swiper-button-prev svg,
.slider-wrap .swiper-button-next svg{
    width: 8px;
    height: 11px;
}
.slider-wrap .swiper-button-prev{
    top: 55%;
    left: -12px;
}
.slider-wrap .swiper-button-next{
    top: 55%;
    right: -12px;
}
.house-pagination{
    display: flex;
    justify-content: center;
    margin: 15px 0;
    text-align: center;
}
.house-pagination .swiper-pagination-bullet {
    background: var(--black);
    opacity: 1;
    width: 100%;
    height: 5px;
    border-radius: 0px;
}
.house-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--green);
}
.house__header--price {
    display: flex;
    align-items: end;
    gap: 10px;
    margin-top: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--black);
}
.house__header--price-value {
    font-weight: 700;
    font-size: 24px;
}
.section--packages{
    display: grid;
    grid-template-columns: 1fr;
}
.section--packages .container{
    width: 100%;
}
.packages__items {
    background: var(--bg);
    padding: 30px 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height:fit-content;
}
.packages__item.packages__item--header {
    display: flex;
    justify-content: space-between;
    padding-right: 75px;
}
.packages__item--header-text{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--grey);
}
.packages__item--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: var(--black);
    border-radius: 5px;
    padding: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 99;
}
.packages__item--dashed {
    display: flex;
    flex-grow: 1;
    margin-top: 15px;
    height: 1px;
    margin: 10px 0 0px 0;
    background: #ffffff;
}
.packages__item--title.active {
    background: var(--green);
}
.packages__item--title:after {
    content: "";
    transition: transform 0.15s;
    background: url(/wp-content/themes/unitbud-zt/assets/img/options-arrow.svg);
    height: 8px;
    width: 13px;
    margin-left: 20px;
}
.packages__item--title.active:after {
    transform: scaleY(-1);
}
.packages__item--content {
    position: relative;
    z-index: 99;
    background: var(--bg);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: visible;
    max-height: 100%;
    margin-top: 0;
    height: 0;
    opacity: 0;
}
.packages__item--text{
    padding: 10px;
    background: var(--white);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--black);
}
.section--plan{
    position: relative;
    z-index: 99;
    margin-bottom: 100px;
}
.plan__slide {
    text-align: center;
}
.open-form{
    display: grid;
    margin-top: 20px;
}
.open-form__fieldset {
    max-width: 275px;
    margin-inline: auto;
    border: none;
    font-size: 14px;
    color: var(--black);
    transition: opacity 0.2s;
}
.open-form__field {
    -moz-appearance: textfield;
    appearance: textfield;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
    border: 1px solid var(--grey);
    border-radius: 5px;
    padding: 15px;
    height: 40px;
    background: transparent;
    color: var(--white);
}
.open-form__submit {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, transform 0.064s;
    background: transparent;
    appearance: button;
    display: block;
    padding: 10px 40px 10px;
    margin-top: 20px;
    border: 1px solid var(--white);
    border-radius: 5px;
}
.house-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
@media screen and (min-width: 768px) {
    .house__header--slider-wrap {
        padding: 20px;
    }
    .slider-wrap .swiper-button-prev,
    .slider-wrap .swiper-button-next{
        width: 50px;
        height: 50px;
    }
    .slider-wrap .swiper-button-prev svg,
    .slider-wrap .swiper-button-next svg{
        width: 12px;
        height: 20px;
    }
    .slider-wrap .swiper-button-prev{
        top: 50%;
        left: -5px;
    }
    .slider-wrap .swiper-button-next{
        top: 50%;
        right: -5px;
    }
}
@media screen and (min-width: 992px) {
    .house-header{
        background: url(/wp-content/themes/unitbud-zt/assets/img/house-header-background.png);
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        gap: 35px;
        position: relative;
    }
    .main-house {
        margin-top: 20px;
    }
    .house__header--title{
        font-size: 60px;
    }
    .house__header--slider-wrap{
        padding: 0;
    }
    .house-pagination{
        margin: 20px 0;
    }
    .house__header--price {
        margin-top: 30px;
        font-size: 24px;
    }
    .house__header--price-value {
        font-size: 35px;
    }
    .section--packages {
        grid-template-columns: 1fr 1fr;
        padding: 50px 0 0 20px;
        max-width: 1180px;
        margin: 0 auto;
    }
    .packages__item--header-text,
    .packages__item--text{
        font-size: 16px;
    }
    .packages__item--title {
        font-size: 18px;
    }
    .open-form{
        margin-top: 40px;
    }
    .feedback__button--open{
        display: none;
    }
}
@media screen and (min-width: 1024px) {
    .slider-wrap .swiper-button-prev{
        left: -20px;
    }
    .slider-wrap .swiper-button-next{
        right: -20px;
    }
}
@media screen and (min-width: 1800px) {
    .house-header{
        background-image: linear-gradient(270deg, #c2d5e6 0%, #bfd3e4 60%), url(/wp-content/themes/unitbud-zt/assets/img/house-header-background.png);
    }
}