@font-face { src: url("../fonts/Mulish/Mulish-Bold.woff2") format("woff2"); font-family: "Mulish"; font-weight: 700; font-style: normal; }
@font-face { src: url("../fonts/Mulish/Mulish-Light.woff2") format("woff2"); font-family: "Mulish"; font-weight: 300; font-style: normal; }

:root {
	--main-color: #06566C;
  --title-color: #FE6C23;
	--accent-color: #FFB929;
	--accent-color-rgb: 255, 185, 41;
	--bg-color: #F2F2F2;
}

* {
	box-sizing: border-box;
}

body {
	position: relative;
	font-family: 'Mulish', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.25;
	color: var(--main-color);
	transition: 0.3s ease-in-out;
}
body.oh {
	overflow: hidden;
}
.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--main-color);
	opacity: 0;
	z-index: -1;
	transition: 0.3s ease-in-out;
}
.overlay.active {
	opacity: 0.8;
	z-index: 98;
}
.container {
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--accent-color);
	padding: 12px 32px;
	border: none;
	color: var(--main-color);
	cursor: pointer;
	transition: 0.3s;
}
.button:hover {
	filter: brightness(1.14);	
	color: var(--main-color);
}
.button.disabled:hover {
	filter: none;
	color: inherit;
	cursor: not-allowed;
}

img {
	max-width: 100%;
}
a,
a:hover {
	color: inherit;
	text-decoration: none;
}
input:focus,
textarea:focus,
button:focus {
	outline: none;
}
.hidden {
	display: none !important;
}

/*placeholder*/
*::-webkit-input-placeholder {
	color: var(--main-color);
}
*:-moz-placeholder {
	color: var(--main-color);
}
*::-moz-placeholder {
	color: var(--main-color);
}
*:-ms-input-placeholder {
	color: var(--main-color);
}
/* end placeholder*/

.page-home h1 {
	font-size: 100px;
	font-weight: 700;
	line-height: 103px;
	color: var(--title-color);
	-webkit-text-stroke: 1px var(--accent-color);
	max-width: 380px;
	margin: 0 0 42px 0;
}
.page-inner h1 {
	font-size: 70px;
	font-weight: 700;
	color: var(--title-color);
	margin: 0;
}
h2 {
	font-size: 70px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--title-color);
	margin: 0 0 55px 0;
}

header .top-line {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	padding: 10px 0;
}
header .top-line .messengers {
	display: flex;
	align-items: center;
	gap: 15px;
}
header .top-line .messengers .item {
	display: flex;
}
header .top-line .phone {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 9px;
}
header .bottom-line-wrap {
	background: var(--main-color);
}
header .bottom-line {
	padding: 10px 0;
	display: flex;
	align-items: center;
	gap: 40px;
	color: var(--accent-color);
	font-size: 18px;
	font-weight: 700;
}
header .logo {
	display: flex;
}
header .menu-wrap {
	margin-left: auto;
}
header .menu-title {
	display: none;
	align-items: center;
	justify-content: space-between;
	font-size: 28px;
	color: var(--title-color);
	margin: 0;
}
header .menu-title .close-menu {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}
header .menu-title .close-menu span {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	display: block;
	width: 30px;
	height: 2px;
	background: var(--title-color);
	border-radius: 4px;
	cursor: pointer;
}
header .menu-title .close-menu span:first-child {
	transform: rotate(45deg);
}
header .menu-title .close-menu span:last-child {
	transform: rotate(-45deg);
}
header .menu {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
}
header .menu li {
	list-style-type: none;
}
header .menu li a {
	padding: 4px 0;
}
header .menu li a:after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: var(--accent-color);
	transition: 0.3s ease-in-out;
}
header .menu li a:hover:after {
	width: 100%;
}
header .button-account {
	border-radius: 10px;
	padding: 8px 14px;
	border: 1px solid var(--accent-color);
	transition: 0.3s ease-in-out;
}
header .button-account:hover {
	background: var(--accent-color);
	color: var(--main-color);
}
header .burger-menu {
	display: none;
	flex-direction: column;
	gap: 10px;
	width: 40px;
	cursor: pointer;
}
header .burger-menu span {
	display: block;
	height: 2px;
	background: var(--accent-color);
	border-radius: 4px;
}

.page-home .main {
	background: var(--main-color);
	padding: 20px 0 34px 0;
	margin-bottom: 59px;
}
.page-home .main-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.page-home .main .main-button {
	position: relative;
	display: inline-flex;
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-color);
	padding: 16px 18px;
	border: 2px solid var(--accent-color);
	border-radius: 10px;
	background: var(--main-color);
	transition: 0.3s ease-in-out;
}
.page-home .main .main-button:hover {
	color: var(--main-color);
}
.page-home .main .main-button:hover:before {
	background: var(--accent-color);
}
.page-home .main .main-button span {
	z-index: 1;
}
.page-home .main .main-button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--main-color);
	z-index: 1;
	border-radius: 8px;
	transition: 0.3s ease-in-out;
}
.page-home .main .main-button:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	border: 2px solid rgba(var(--accent-color-rgb), 0.4);
	border-radius: 10px;
	width: 100%;
	height: 100%;
}
.page-home .main .main-image {
	position: absolute;
	right: 0;
	border-radius: 40px;
	border: 20px solid var(--accent-color);
	max-width: 600px;
}
.page-home .rent-apartment {
	margin-bottom: 120px;
}
.page-home .rent-apartment-wrap {
	max-width: 323px;
}
.page-home .rent-apartment .text {
	margin: 0 0 15px 0;
}
.page-home .about {
	margin-bottom: 120px;
}
.page-home .about-wrap {
	display: flex;
	gap: 52px;
}
.page-home .about .col-text {
	max-width: 368px;
	font-size: 24px;
	display: flex;
	flex-direction: column;
	gap: 42px;
}
.page-home .about .col-text p {
	margin: 0;
}
.page-home .about .col-text .logos {
	display: flex;
	align-items: center;
	gap: 30px;
}
.page-home .about .col-text .logos img:nth-child(2) {
	max-width: 73px;
}
.page-home .about .col-text .logos img:nth-child(3) {
	max-width: 50px;
}
.page-home .about .col-image {
	display: flex;
	gap: 20px;
}
.page-home .about .col-image .image {
	display: flex;
}
.page-home .about .col-image .image img {
	border-radius: 80px 5px 5px 5px;
}
.page-home .about .col-image .image:nth-child(2) {
	align-self: first baseline;
	position: relative;
}
.page-home .about .col-image .image:nth-child(2) img {
	position: relative;
	z-index: 2;
}
.page-home .about .col-image .image:nth-child(2):after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 80px 5px 5px 5px;
	position: absolute;
	top: 39px;
	left: 36px;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	z-index: 1;
}
.page-home .advantages {
	margin-bottom: 52px;
}
.page-home .advantages .advantages-wrap {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.page-home .advantages .col-text {
	display: flex;
	gap: 22px;
}
.page-home .advantages .col-text .icon {
	flex-shrink: 0;
	display: block;
	width: 26px;
	height: 26px;
	border: 4px solid var(--title-color);
	border-radius: 7px;
	margin-top: 17px;
}
.page-home .advantages h2 {
	-webkit-text-stroke: 1px var(--accent-color);
	max-width: 313px;
	margin: 0;
}
.page-home .advantages .col-items {
	display: flex;
	flex-direction: column;
	gap: 61px;
}
.page-home .advantages .advantage {
	max-width: 400px;
}
.page-home .advantages .advantage .name {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 6px 0;
	min-height: 60px;
}
.page-home .advantages .advantage img {
	border-radius: 20px;
	border: 10px solid var(--accent-color);
}
.page-home .rental-packages {
	overflow: hidden;
}
.page-home .rental-packages .wrap {
	background: var(--main-color);
	padding: 24px 0 8px 0;
}
.page-home .rental-packages:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 94px solid var(--main-color); 
	border-left: 100vw solid transparent;
}
.page-home .rental-packages .packages {
	display: flex;
	gap: 22px;
	justify-content: space-between;
}
.page-home .rental-packages .package {
	width: 100%;
}
.page-home .rental-packages .package .name {
	padding: 14px 20px;
	max-width: 285px;
	border-radius: 10px;
	background: var(--accent-color);
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 35px 0;
}
.page-home .rental-packages .package .details {
	padding: 17px 12px 17px 20px;
	border-radius: 10px;
	border: 2px solid var(--accent-color);
	color: var(--accent-color);
	font-size: 24px;
}
.page-home .rental-packages .package .details .items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.page-home .rental-packages .package .details .items .item {
	display: flex;
	gap: 16px;
}
.page-home .rental-packages .package .details .items .item:before {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	margin-top: 12px;
	background: var(--title-color);
	flex-shrink: 0;
}
.page-home .rental-packages .package .details .price {
	text-align: right;
	font-size: 40px;
	font-weight: 700;
	color: var(--title-color);
	margin: 40px 0 0 0;
}
.section-free .container {
	background-position: right bottom;
	background-repeat: no-repeat;
	padding-bottom: 100px;
}
.section-free h2 {
	color: var(--main-color);
	margin-bottom: 35px;
}
.section-free .cols {
	display: flex;
	gap: 21px;
}
.section-free .col {
	display: flex;
	flex-direction: column;
	gap: 2px;
	width: 100%;
	max-width: 380px;
	border-radius: 20px;
	border: 10px solid var(--accent-color);
	background: var(--bg-color);
	padding: 20px 15px;
	align-self: flex-start;
}
.page-home .services {
	overflow-x: hidden;
	margin-top: -46px;
	padding-bottom: 68px;
}
.page-home .services .wrap {
	background: var(--main-color);
	padding-top: 40px;
}
.page-home .services:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-bottom: 94px solid var(--main-color); 
	border-left: 100vw solid transparent;
}
.page-home .services h2 {
	margin-bottom: 31px;
}
.page-home .services .items {
	display: flex;
	gap: 21px;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	top: 68px;
	padding-bottom: 2px;
}
.page-home .services .item {
	display: flex;
	align-items: flex-start;  
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 14px 23px;
	width: calc(33.333% - 14px);
	aspect-ratio: 2 / 1;
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-color);
	transition: 0.3s ease-in-out;
}
.page-home .services .item:nth-child(6n-3),
.page-home .services .item:nth-child(6n-4),
.page-home .services .item:nth-child(6n-5) {
	align-items: flex-end;    
}
.page-home .services .item:hover {
	box-shadow: 2px 2px 0 0 var(--accent-color);
}

.section-contact .container {
	padding-top: 132px;
	padding-bottom: 127px;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.lead-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 800px;
}
.lead-form input,
.lead-form textarea {
	background: var(--bg-color);
	border-radius: 5px;
	border: 5px solid var(--accent-color);
	padding: 7px 20px;
	font-size: 24px;
	color: var(--main-color);
	margin-bottom: 30px;
}
.lead-form textarea {
	height: 127px;
	padding: 16px 20px;
}
.lead-form .button {
	font-size: 24px;
	align-self: flex-end;
	border-radius: 10px;
	background: var(--accent-color);
	padding: 12px 32px;
	border: none;
	color: var(--main-color);
	margin: 0;
}

footer {
	background: var(--main-color);
	padding: 40px 0;
	font-size: 24px;
	font-weight: 600;
	color: var(--title-color);
}
footer .footer-wrap {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
footer .title {
	font-size: 30px;
	margin: 0 0 34px 0;
}
footer .contacts {
	display: flex;
	justify-content: space-between;
	min-width: 496px;
}
footer .contacts .items {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
footer .contacts .items .item {
	display: flex;
	align-items: center;
	gap: 16px;
	transition: 0.3s ease-in-out;
}
footer .contacts .items .item:before {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--title-color);
	transition: 0.3s ease-in-out;
}
footer .contacts .items a.item:hover {
	color: var(--accent-color);
}
footer .contacts .items a.item:hover:before {
	background: var(--accent-color);
}

footer .footer-map {
	border-radius: 20px;
	width: 400px;
	height: 238px;
	overflow: hidden;
}

.page-about .concept {
	margin-top: 40px;
}
.page-about .concept .wrap {
	position: relative;
}
.page-about .concept h1 {
	max-width: 600px;
	margin-bottom: 60px;
}
.page-about .concept .items {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 600px;
}
.page-about .concept .item {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.page-about .concept .item .text-block {
	background: var(--main-color);
	border-radius: 20px;
	padding: 41px 25px 48px 20px;
	color: var(--accent-color);
	font-size: 20px;
}
.page-about .concept .item .text-block p {
	margin: 0;
}
.page-about .concept .item .text-block .title {
	font-size: 24px;
	font-weight: 700;
	color: var(--title-color);
	margin-bottom: 24px;
}
.page-about .concept .item .text-block .title span {
	font-weight: 300;
	color: var(--accent-color);
}
.page-about .concept .item .image {
	position: absolute;
	align-self: flex-start;
	border-radius: 20px;
	border: 10px solid var(--accent-color);
	max-width: 364px;
}
.page-about .concept .item:nth-child(1) .image {
	top: 0;
	right: 200px;
}
.page-about .concept .item:nth-child(2) .image {
	top: 292px;
	right: 0;
}
.page-about .concept .item:nth-child(3) .image {
	top: 625px;
	right: 200px;
}
.page-about .concept .item:nth-child(4) .image {
	top: 906px;
	right: 0;
}
.page-about .section-contact {
	margin-top: -68px;
}

.page-services .main {
	margin: 21px 0 60px;
}
.page-services .main-wrap {
	position: relative;
	display: flex;
	gap: 20px;
	width: 100%;
	justify-content: flex-end;
}
.page-services .main h1 {
	max-width: 700px;
	position: absolute;
	top: 0;
	left: 0;
}
.page-services .main .images {
	justify-self: flex-start;
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 15px;
}
.page-services .main .images .image {
	border-radius: 20px;
	border: 10px solid var(--accent-color);
	max-width: 600px;
}
.page-services .main .images .image:first-child {
	max-width: 600px;
}
.page-services .main .images .image:last-child {
	max-width: 380px;
}
.page-services .services-list .items {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
}
.page-services .services-list .item {
	padding: 6px 14px;
	border-radius: 20px;
	border: 10px solid var(--accent-color);
	width: 100%;
	max-width: 465px;
	aspect-ratio: 2.2 / 1;
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-color);
	background-repeat: no-repeat;
	background-size: cover;
}
.page-services .services-list .item:nth-child(3) {
	margin-left: auto;
}
.page-services .services .service {
	padding: 20px 0 60px 0;
}
.page-services .services .service h2 {
	margin-bottom: 45px;
}
.page-services .services .service .cols {
	display: flex;
	align-items: center;
}
.page-services .services .service .text-block {
	padding: 26px 50px 58px 20px;
	background: var(--main-color);
	color: var(--accent-color);
	border-radius: 20px;
	max-width: 600px;
}
.page-services .services .service .text-block .title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 36px 0;
}
.page-services .services .service .text-block .text {
	margin-bottom: 60px;
}
.page-services .services .service .text-block .button {
	font-size: 24px;
	font-weight: 600;
	padding: 14px 42px;
	border-radius: 20px;
}
.page-services .services .service .images {
	position: relative;
	width: 100%;
	text-align: right;
}
.page-services .services .service .images .image {
	border-radius: 20px;
	border: 10px solid var(--accent-color);
}
.page-services .services .service .images .image:first-child {
	max-width: 400px;
}
.page-services .services .service .images .image:last-child {
	max-width: 314px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
}
.page-services .services .service:nth-child(even) {
	background: var(--bg-color);
	box-shadow: 0 7px 7.5px 0 rgba(0,0,0,0.1608);
}
.page-services .services .service:nth-child(odd) h2 {
	text-align: right;
}
.page-services .services .service:nth-child(odd) .cols {
	flex-direction: row-reverse;
}
.page-services .services .service:nth-child(odd) .text-block {
	text-align: right;
	padding: 57px 20px 58px 50px;
}
.page-services .services .service:nth-child(odd) .images {
	text-align: left;
}
.page-services .services .service:nth-child(odd) .images .image:last-child {
	left: auto;
	right: 0;
}
.page-services .section-contact {
	margin-top: -40px;
}

.page-catalog .search h2 {
	margin-bottom: 8px;
}
.page-catalog .search .wrap {
	position: relative;
	display: flex;
	gap: 30px;
}
.page-catalog .search .search-image {
	position: absolute;
	top: -56px;
	right: 0;
	border-radius: 20px;
	border: 21px solid var(--accent-color);
}
.page-catalog .search .search-form {
	position: relative;
	z-index: 1;
}
.page-catalog .search .search-form .inputs-wrap {
	padding: 25px 26px 54px 20px;
	background: var(--main-color);
	border-radius: 20px 20px 0 20px;
	display: flex;
	gap: 48px;
}
.page-catalog .search .search-form .button-wrap {
	padding: 0 26px 36px 96px;
	border-radius: 0 0 20px 20px;
	background: var(--main-color);
	max-width: max-content;
	margin-left: auto;
}
.page-catalog .search .search-form label {
	display: flex;
	font-size: 20px;
	font-weight: 700;
	color: var(--title-color);
	margin-bottom: 9px;
}
.page-catalog .search .search-form .inputs {
	display: flex;
	gap: 16px;
}
.page-catalog .search .search-form .inputs input {
	width: 86px;
	height: 40px;
	border-radius: 5px;
	font-size: 12px;
	border: none;
	text-align: center;
}
.page-catalog .search .search-form .select-area {
	width: 273px;
}
.page-catalog .search .search-form .button {
	font-weight: 700;
}
.page-catalog .catalog {
	padding-bottom: 55px;
	margin-top: -60px;
}
.page-catalog .catalog h1 {
	margin-bottom: 103px;
}
.properties-grid {
	display: flex;
	gap: 46px 27px;
	flex-wrap: wrap;
}
.property-card {
	background: #F2F2F2;
	font-size: 18px;
	font-weight: 700;
	box-shadow: 10px 7px 5px 0 rgba(0,0,0,0.16);
	width: calc(33.333% - 18px);
}
.property-card .info {
	padding: 22px 20px 18px 20px;
}
.property-card .image {
	display: flex;
}
.property-card .title-wrap {
	display: flex;
	flex-direction: column;
}
.property-card .title {
	align-self: flex-start;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 45px;
}
.property-card .price {
	display: flex;
	flex-direction: column;
	margin: 0 0 32px 0;
}
.property-card .price .num {
	font-size: 24px;
	color: var(--title-color);
}
.property-card .features {
	display: flex;
	gap: 30px;
}
.property-card .features .item {
	display: flex;
	gap: 4px;
	align-items: flex-end;
	font-size: 15px;
	color: var(--accent-color);
}
.page-catalog .additional-services {
	overflow-x: hidden;
}
.page-catalog .additional-services .wrap {
	background: var(--main-color);
	padding-top: 43px;
}
.page-catalog .additional-services:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 180px solid var(--main-color);
	border-left: 100vw solid transparent;
}
.page-catalog .additional-services h2 {
	max-width: 626px;
	margin-bottom: 0;
}
.page-catalog .additional-services .items {
	display: flex;
	flex-wrap: wrap;
	gap: 26px 9px;
	max-width: 791px;
	margin-top: -35px;
	margin-left: auto;
}
.page-catalog .additional-services .item {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 391px;
	aspect-ratio: 1.53 / 1;
	padding: 19px 21px;
	transition: 0.3s ease-in-out;
}
.page-catalog .additional-services .item:hover {
	box-shadow: 2px 2px 0 0 var(--accent-color);
}
.page-catalog .additional-services .item .name {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-color);
}
.page-catalog .why-us .text {
	font-size: 20px;
	font-weight: 700;
	max-width: 1011px;
}

.page-property .main .gallery {
	display: flex;
	max-width: 1280px;
	margin: 0 auto 42px auto;
}
.page-property .main .gallery .col {
	align-self: flex-start;
	display: flex;
	flex-wrap: wrap;
	width: 50%;
}
.page-property .main .gallery .gallery-item {
	display: flex;
	border: 5px solid var(--accent-color);
}
.page-property .main .gallery .col:last-child .gallery-item {
	width: 50%;
}
.page-property .main .gallery .show-more {
	width: 50%;
	max-width: 320px;
	background: #C1C1C1;
	border: 5px solid var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #535353;
}
.page-property .main .content-wrap {
	display: flex;
	gap: 24px;
	margin-bottom: 20px;
}
.page-property .main .content {
	width: 100%;
}
.page-property .main .sidebar {
	flex-shrink: 0;
	width: 100%;
	max-width: 400px;
}
.page-property .main .content .title-wrap {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
.page-property .main .content .title-wrap h1 {
	font-size: 24px;
	max-width: 483px;
	margin-bottom: 41px;
}
.page-property .main .content .title-wrap .sku {
	font-size: 24px;
	color: var(--title-color);
}
.page-property .main .content h2 {
	font-size: 20px;
	margin-bottom: 30px;
}
.page-property .main .content .property-details {
	margin-bottom: 37px;
}
.page-property .main .content .property-details .items {
	display: flex;
	gap: 24px;
}
.page-property .main .content .property-details .items .col {
	display: flex;
	flex-direction: column;
	width: calc(50% - 12px);
}
.page-property .main .content .property-details .items .item {
	font-size: 20px;
	font-weight: 700;
}
.page-property .main .content .prices {
	display: flex;
	flex-direction: column;
	margin-bottom: 57px;
}
.page-property .main .content .prices .item {
	display: flex;
	gap: 24px;
	margin: 0;
}
.page-property .main .content .prices .item .col {
	width: calc(50% - 12px);
}
.page-property .main .content .prices .item .col:first-child {
	text-transform: uppercase;
}
.page-property .main .content .description {
	margin-bottom: 70px;
}
.page-property .main .content .description .text {
	font-size: 18px;
}
.page-property .main .content .cols-wrap {
	display: flex;
	justify-content: space-between;
	gap: 50px;
}
.page-property .main .content .cols-wrap .col {
	width: calc(50% - 25px);
	font-size: 18px;
}
.page-property .main .content .cols-wrap .col .item {
	margin: 0;
}
.page-property .main .sidebar {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.page-property .main .sidebar .callback {
	border-radius: 10px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.16);
}
.page-property .main .sidebar .callback .manager {
	padding: 28px 26px;
}
.page-property .main .sidebar .callback .manager .info {
	display: flex;
	gap: 20px;
	margin-bottom: 19px;
}
.page-property .main .sidebar .callback .manager .info .text {
	display: flex;
	flex-direction: column;
	gap: 9px;
	font-size: 24px;
}
.page-property .main .sidebar .callback .manager .info .text p {
	margin: 0;
}
.page-property .main .sidebar .callback .manager .phone {
	display: flex;
	gap: 15px;
	font-size: 24px;
	font-weight: 700;
}
.page-property .main .sidebar .form-callback .title {
	border-radius: 5px;
	padding: 6px 0;
	background: var(--main-color);
	color: var(--title-color);
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin: 0;
}
.page-property .main .sidebar .form-callback .inputs {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 24px 34px 31px 26px;
}
.page-property .main .sidebar .form-callback input {
	width: 100%;
	padding: 11px 15px;
	text-align: center;
	border-radius: 5px;
	border: 1px solid var(--accent-color);
	background: var(--bg-color);
}
.page-property .main .sidebar .form-callback .button {
	background: var(--accent-color);
	color: var(--main-color);
	font-size: 20px;
	font-weight: 700;
	padding: 15px;
}
.page-property .main .sidebar .booking {
	border-radius: 5px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.16);
}
.page-property .main .sidebar .booking .title {
	background: var(--main-color);
	color: var(--title-color);
	font-size: 25px;
	font-weight: 700;
	margin: 0;
	border-radius: 5px 5px 0 0;
	padding: 7px 15px 7px 37px;
}
.page-property .main .sidebar .booking .calendar-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 10px 20px 25px 20px;
}
.page-property .main .sidebar .booking .calendar-wrap .button {
	font-size: 25px;
	font-weight: 700;
	width: 100%;
	border-radius: 5px;
}
.page-property .main .sidebar .booking .calendar .air-datepicker {
	font-family: 'Mulish', sans-serif;
	font-size: 16px;
	width: 100%;
	border: none;
}
.page-property .main .sidebar .booking .calendar .air-datepicker-body--cells.-days- {
	grid-auto-rows: 42px;
}
.page-property .main .sidebar .booking .calendar .air-datepicker-cell {
	color: #1F8240;
}
.page-property .main .sidebar .booking .calendar .air-datepicker-cell.-selected-,
.page-property .main .sidebar .booking .calendar .air-datepicker-cell.-in-range-,
.page-property .main .sidebar .booking .calendar .air-datepicker-cell.-range-to- {
	background: rgba(31,130,64,0.2);
}
.page-property .main .sidebar .booking .calendar .air-datepicker-cell.-range-to- {
	border-color: rgba(31,130,64,0.4);
}
.page-property .main .sidebar .booking .calendar .air-datepicker-cell.-disabled- {
	color: #E13C3C;
}

.page-property .similar-properties {
	overflow-x: hidden;
	margin-top: -150px;
}
.page-property .similar-properties h2 {
	margin: 34px 0;
}
.page-property .similar-properties .properties-grid {
	margin-bottom: 89px;
}
.page-property .similar-properties .decor-line {
	height: 58px;
	background: var(--main-color);
}
.page-property .similar-properties:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-bottom: 187px solid var(--main-color);
	border-right: 100vw solid transparent;
}
.page-property .similar-properties:after {
	content: '';
	display: block;
	height: 110px;
	background: var(--main-color);
}
.page-property .section-contact {
	margin-top: -90px;
}

.page-account .wrap {
	display: flex;
	gap: 35px;
	padding: 37px 0 49px 0;
}
.page-account .sidebar {
	flex-shrink: 0;
	align-self: flex-start;
	width: 400px;
	border-radius: 10px;
	background: var(--main-color);
	padding: 20px 22px 36px 23px;
}
.page-account .sidebar .user-info {
	display: flex;
	gap: 24px;
	margin-bottom: 44px;
}
.page-account .sidebar .user-info .avatar {
	flex-shrink: 0;
	width: 91px;
	height: 91px;
	border-radius: 50%;
	background: var(--accent-color);
}
.page-account .sidebar .user-info .name {
	font-weight: 700;
	color: var(--accent-color);
	margin: 0;
}
.page-account .sidebar .menu {
	display: flex;
	flex-direction: column;
	gap: 37px;
}
.page-account .sidebar .menu .button {
	font-weight: 700;
	width: 100%;
	padding: 16px 32px;
}
.page-account .sidebar .menu .logout {
	margin-top: 86px;
}
.page-account .content {
	width: 100%;
}
.page-account .content .booking-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.page-account .content .booking-card {
	display: flex;
	flex-direction: column;
	gap: 23px;
	border-radius: 20px;
	background: var(--bg-color);
	border: 1px solid var(--accent-color);
	padding: 20px 30px;
}
.page-account .content .booking-card .item {
	display: flex;
	gap: 15px;
}
.page-account .content .booking-card .item:has(.value > p) {
	flex-direction: column;
}
.page-account .content .booking-card .item .name {
	font-weight: 700;
	color: var(--title-color);
	margin: 0;
}
.page-account .content .booking-card .item .value {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0;
}
.page-account .content .booking-card .item .value p {
	margin: 0;
}

/*Popup*/
.popup {
	background-color: #fff;
	margin: auto;
	position: relative;
	text-align: center;
	max-width: max-content;
	padding: 20px 30px 30px 30px;
	border-radius: 20px;
}
.popup .title {
	font-size: 24px;
	font-weight: 700;
	color: var(--title-color);
	margin: 0 0 24px 0;
}
.popup input:not(.button),
.popup textarea {
	width: 100%;
	border-radius: 5px;
	border: 1px solid var(--accent-color);
	background: var(--bg-color);
	padding: 11px 15px;
	font-size: 20px;
	color: var(--main-color);
	margin-bottom: 18px;
}
.popup textarea {
	height: 127px;
}
.popup .button {
	width: 100%;
	font-weight: 700;
	border-radius: 5px;
	margin-bottom: 0;
}
.mfp-close {
	width: auto;
	height: auto;
	top: 10px;
	right: 10px;
	opacity: 1;
	padding: 10px;
	line-height: normal;
	cursor: pointer;
}
.mfp-close:active {
	top: 10px;
}
.mfp-close path {
	fill: #333;
}
.mfp-bg {
	opacity: 0.8;
	background: var(--main-color);
}

.login-form-popup .message {
	display: none;
	color: red;
	margin: 15px 0 0 0;
}
.lead-form-popup {
	max-width: 500px;
}
.login-form-popup {
	max-width: 400px;
}
#booking-form-popup {
	padding: 45px;
}
.booking-form-popup {
	text-align: left;
	max-width: 1010px;
}
.booking-form-popup .title {
	font-size: 24px;
	font-weight: 700;
	color: var(--title-color);
	margin: 0 0 24px 0;
}
.booking-form-popup .inputs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 600px;
	margin-bottom: 18px;
}
.booking-form-popup .inputs .input-group {
	display: flex;
	gap: 30px;
	align-items: center;
}
.booking-form-popup .inputs .input-group:first-child {
	margin-bottom: 10px;
}
.booking-form-popup .inputs .input-group label,
.booking-form-popup .checkbox-group > label {
	display: block;
	font-weight: 700;
	min-width: 280px;
}
.booking-form-popup .inputs .input-group .period {
	font-size: 24px;
}
.booking-form-popup .inputs .input-group input {
	width: 290px;
	height: 39px;
	border-radius: 3px;
	border: 1px solid var(--accent-color);
	background: var(--bg-color);
	padding: 0 15px;
	color: var(--main-color);
	margin-bottom: 0;
}
.booking-form-popup .checkbox-group {
	margin-bottom: 85px;
}
.booking-form-popup .checkbox-group > label {
	margin-bottom: 34px;
}
.booking-form-popup .checkbox-group .items {
	display: flex;
	gap: 22px;
}
.booking-form-popup .checkbox-group .items label {
	display: flex;
	gap: 7px;
	font-size: 15px;
	cursor: pointer;
}
.booking-form-popup .checkbox-group .items input {
	display: none;
}
.booking-form-popup .checkbox-group .items input + .box {
	flex-shrink: 0;
	position: relative;
	top: 3px;
	display: block;
	width: 12px;
	height: 12px;
	border: 2px solid var(--title-color);
	border-radius: 50%;
}
.booking-form-popup .checkbox-group .items input:checked + .box:before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--title-color);
	position: absolute;
	top: 1px;
	left: 1px;
}
.booking-form-popup .button {
	display: flex;
	font-weight: 700;
	max-width: 400px;
	margin: 0 auto;
}
/*end Popup*/

/*animate popup*/
.my-mfp-zoom-in .popup,
.my-mfp-zoom-in .mfp-iframe {
	opacity: 0;
	transition: all 0.2s ease-in-out;
	transform: scale(0.8);
}
.my-mfp-zoom-in.mfp-ready .popup,
.my-mfp-zoom-in.mfp-ready .mfp-iframe {
	opacity: 1;
	transform: scale(1);
}
.my-mfp-zoom-in.mfp-removing .popup,
.my-mfp-zoom-in.mfp-removing .mfp-iframe {
	transform: scale(0.8);
	opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
/*end animate popup*/

.lead-form,
.lead-form-popup {
	position: relative;
}
.lead-form .wpcf7-spinner,
.lead-form-popup .wpcf7-spinner,
.form-callback .wpcf7-spinner,
.booking-form-popup .wpcf7-spinner {
	position: absolute;
	bottom: 0;
	left: 0;
}
.wpcf7 form .wpcf7-response-output {
	border: none;
	background: var(--title-color);
	color: #fff;
	border-radius: 8px;
	padding: 10px 10px;
	font-size: 16px;
}
.wpcf7 form.sent .wpcf7-response-output {
	background: #46b450;
}
.wpcf7 form.form-callback .wpcf7-response-output {
	margin: 0px 34px 31px 26px;
}

.custom-select {
	position: relative;
	font-size: 12px;
}
.custom-select .overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 98;
}
.custom-select.open .overlay {
	display: block;
}
.custom-select .selected {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	height: 40px;
	padding: 0 20px;
	border-radius: 5px;
	cursor: pointer;
	margin: 0;
}
.custom-select.error .selected {
	border-color: red;
}
.popup .custom-select.open .selected {
	z-index: 99;
}
.popup .custom-select .selected {
	margin-bottom: 6px;
}
.custom-select .selected .placeholder {
	opacity: 0.7;
}
.custom-select .selected .text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.2;
}
.custom-select .dropdown {
	display: none;
	position: absolute;
	top: 40px;
	left: 0;
	flex-direction: column;
	width: 100%;
	max-height: 270px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 6px 10px 0px rgba(149, 116, 213, 0.15);
	padding: 15px 0;
	overflow: auto;
	z-index: 99;
}
.custom-select .dropdown .item {
	padding: 12px 20px;
	cursor: pointer;
}
.custom-select .dropdown .item:hover,
.custom-select .dropdown .item.active {
	background: var(--accent-color);
	color: #fff;
}
.custom-select.open .dropdown {
	display: flex;
}
.custom-select.open .arrow {
	transform: rotate(180deg);
}

.pagination {
	display: flex;
	gap: 20px;
	justify-content: flex-end;
	padding: 0 20px;
	margin-top: 46px;
}
.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 33px;
	height: 33px;
	border: 2px solid var(--title-color);
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-color);
	transition: 0.3s;
}
.pagination .page-numbers.current {
	background: var(--title-color);
	color: #fff;
	cursor: default;
}
.pagination .page-numbers:not(.dots):hover {
	background: var(--title-color);
	color: #fff;
}
.pagination .page-numbers svg path {
	transition: 0.3s;
}
.pagination .page-numbers:hover svg path {
	stroke: #fff;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	padding: 0 13px;
}
.pagination .dots {
	cursor: default;
}