/*
Theme Name: Osiedle-Reńskie
Author: Desineo.pl
Author URI: https://desineo.pl/
Version: 1.0
Requires PHP: 7.3
*/

:root {
	--color-primary: #2f3f97;
	--color-secondary: #273358;
	--color-text: #000000;
	--color-lighter: #f5f5f5;
	--color-light: #f5f5f5;
	--color-dark: #d7d7d7;
	--font-family: "Lato";
	--font-size: 16px;
	--font-size-s: .875rem;
	--font-size-m: 1.125rem;
	--font-size-l: 1.5rem;
	--font-size-xl: 2rem;
	--space: 15px;
	--space-2x: 30px;
	--container: 1440px;
	--font-light: 300;
	--font-regular: 400;
	--font-medium: 700;
	--font-extra: 900;
}

* {
	box-sizing: border-box;
}

html,
body,
figure {
	margin: 0;
	padding: 0;
}

html {
	font-size: var(--font-size);
}

body {
	color: var(--color-darken);
	font: var(--font-regular) 1rem/1.8rem var(--font-family), sans-serif;
}

a {
	color: var(--color-text);
	text-decoration: none;
	transition: color .15s ease;
}

a:hover {
	color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: var(--font-light);
	line-height: 1;
	margin: 0;
}

h1{
	font-size: 3.125rem;
}

h2 {
	font-size: 3.125rem;
}

h3{
	font-size: 1.35rem;
}

ul {
	padding: 0;
}

p {

}

.h100 {
	height: 100%;
}

.container-fluid {
	width: 100%;
	padding-right: var(--space);
	padding-left: var(--space);
	margin-right: auto;
	margin-left: auto;
	position: relative;
}


.container{
	width: 100%;
	padding-right: var(--space);
	padding-left: var(--space);
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	position: relative;
}

[class^="col"] {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

.flex {
	display: flex;
}

.flex-middle {
	align-items: center;
}

.flex-center {
	justify-content: center;
}

.flex-column {
	flex-direction: column;
}

.flex-end {
	justify-content: flex-end;
}

.flex-between {
	justify-content: space-between;
}

.col {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.col-1 {
	flex: 0 0 8.3333333333%;
	max-width: 8.3333333333%;
}

.col-2 {
	flex: 0 0 16.6666666667%;
	max-width: 16.6666666667%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	flex: 0 0 33.3333333333%;
	max-width: 33.3333333333%;
}

.col-5 {
	flex: 0 0 41.6666666667%;
	max-width: 41.6666666667%;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	flex: 0 0 58.3333333333%;
	max-width: 58.3333333333%;
}

.col-8 {
	flex: 0 0 66.6666666667%;
	max-width: 66.6666666667%;
}

.col-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	flex: 0 0 83.3333333333%;
	max-width: 83.3333333333%;
}

.col-11 {
	flex: 0 0 91.6666666667%;
	max-width: 91.6666666667%;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.h100 {
	height: 100%;
}

.mh100 {
	min-height: 100%;
}

.w100 {
	width: 100%;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-muted {
	color: rgba( 0, 0, 0, .6);
}

.btn--menu {
	border: 1px solid var(--color-primary);
	background: var(--color-primary);
	padding: 5px;
	margin: 0;
	outline: 0;
	position: fixed;
	top: 15px;
	right: 30px;
	display: none;
	flex-direction: column;
	z-index: 99999;
}

.btn--burger {
	width: 20px;
	height: 2px;
	background: var(--color-light);
	margin: 3px;
}

.form-group {
	margin-bottom: 30px;
}

.form-control {
	border: 1px solid #d7d7d7;
	background: #ffffff;
	height: 47px;
	padding: 5px 10px;
	width: 100%;
	font: 400 .875rem/1 var(--font-family), sans-serif;
}

.form-control:focus {
	background: #ffffff;
}

textarea.form-control {
	padding: 10px;
	height: 130px;
}

.alert {
	width: 100%;
	padding: 15px;
	color: var(--color-light);
	font-weight: 700;
	margin-bottom: 15px;
}

.alert-error {
	background: #e53935;
}

.alert-success {
	background: var(--color-primary);
}

.bg-primary {
	background-color: var(--color-primary);
}

.bg-light {
	background-color: var(--color-light);
}

.show-mobile {
	display: none;
}


.table__body .table__item div, .table__header div{
	padding: 15px;
	text-align: left;
	width: 100%;
}
.mt{
	margin-top: var(--space);
}
	.mt-2x{
		margin-top: var(--space-2x);
	}

.ml{
	margin-left: var(--space);
}
	.ml-2x{
		margin-left: var(--space-2x);
	}

	.mb{
		margin-bottom: var(--space);
	}
		.mb-2x{
			margin-bottom: var(--space-2x);
		}

		.strength{
			margin-bottom: 30px;
		}

		.strengths__list{
			position: relative;
		}
			.strengths__list:hover .strengths__list-item{
				opacity: 1;
			}
			.strengths__list-item{
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 98%;
				padding: 100px;
				display: flex;
				flex-direction: column;
				justify-content: center;
				font-size: 22px;
				line-height: 19px;
				font-weight: bold;
				background: rgba( 19, 60, 172, .85 );
				color: #FFF;
				opacity: 0;
				transition: opacity .25s ease;
			}

@media (min-width: 1440px){

	.container{
		width: var(--container);
	}

}

@media (min-width: 960px) {

	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-md-1 {
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.col-md-2 {
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.col-md-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.col-md-5 {
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-md-7 {
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.col-md-8 {
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.col-md-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-md-10 {
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.col-md-11 {
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.col-md-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.flex-md-column {
		flex-direction: column;
	}

	.flex-md-row {
		flex-direction: row;
	}

	.hide-md {
		display: none;
	}

	.text-md-right {
		text-align: right;
	}
}



/* Starting css */

.header{
	padding-top: var(--space);
	padding-bottom: var(--space);
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: var(--color-light);
	margin-bottom: var(--space);
}

	.header .nav{
		width: 100%;
	}

		.header .nav .menu{
			display: flex;
			font-weight: var(--font-medium);
			font-size: var(--font-size-s);
			justify-content: space-between;
			list-style: none;
			text-transform: uppercase;
		}

.icons{

}
	.icons__item{
		font-weight: var(--font-medium);
		line-height: 1;
	}
	.icons__item--small{
		font-size: var(--font-size-s);
		font-weight: var(--font-regular);
	}
	.icons__rounded{
		border-radius: 40px;
		color: var(--color-light);
		font-size: 18px;
		display: flex;
		width: 40px;
		height: 40px;
		justify-content: center;
		align-items: center;
		background: var(--color-primary);
		margin-right: 10px;
	}


	.header--home{
		background: #2f3f97;
		margin-bottom: 0;
	}

		.header--home img{
			filter: invert();
		}

		.header--home a{
			color: var(--color-light);
		}


.footer{
	font-size: var(--font-size-s);
	margin-top: var(--space-2x);
	margin-bottom: var(--space-2x);
	padding-top: var(--space-2x);
	border-top: 1px solid var(--color-dark);
}

.footer .nav .menu{
	display: flex;
	list-style: none;
}

.footer .nav .menu li{
	padding: 0 15px;
	position: relative;;
}

.footer .nav .menu li:first-child{
	padding-left: 0;
}

.footer .nav .menu li:last-child{
	padding-right: 0;
}

.footer .nav .menu li::after{
	content: "/";
	color: var(--color-dark);
	position: absolute;
	right: 0;
}

.footer .nav .menu li:last-child::after{
	content: ""
}

.footer .footer__icons{
	font-size: var(--font-size-l);
}

.footer .footer__copyrights, .footer .footer__copyrights a{
	color: var(--color-text);
}

.footer .footer__logo .custom-logo{
	width: 50%;
	height: auto;
}

#slider-header-ow .tns-nav{
	position: absolute;
	display: flex;
	flex-direction: column;
	z-index: 1;
	height: 100%;
	padding: 160px 0;
	top: 30px;
}

	#slider-header-ow .tns-nav button{
		color: var(--color-light);
		text-transform: uppercase;
		font-family: var(--font-family);
		flex: 1;
		background-color: transparent;
		border: 1px solid transparent;
		border-right-color: rgba( 255, 255, 255, 1 );
		opacity: .5;
		padding: 80px 30px;
		margin-bottom: 30px;
		outline: 0;
	}

	#slider-header-ow .tns-nav button.tns-nav-active{
		opacity: 1;
	}

.tns-outer{
	width: 100%;
}

.slider__container{
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.slider__caption--content{
	line-height: 1;
	margin: var(--space-2x) 0;
}

.slider__item{
	width: 100%;
	height: 850px;
	background-size: cover;
}

.slider__caption{
	color: var(--color-light);
}

.slider__caption--title{
	font-size: 5.3125rem;
	font-weight: var(--font-light);
	width: 80%;
	font-weight: 800;
	line-height: 1.30;
}

.slider__caption--text{
	background: rgba(0,0,0,.8);
	letter-spacing: .5px;
}

.slider__caption--content p {
		display: table-cell;
	background: rgba(0,0,0,.8);
	padding: 5px;
	line-height: 1.60;
}

.slider__price{
	display: inline-block;
	font-size: var(--font-size-m);
	font-weight: var(--font-extra);
	border: 1px solid var(--color-light);
	padding: 10px 40px;
	height: 50px;
	line-height: 1.5;
	margin-right: 15px;
}

.btn{
	color: var(--color-light);
	display: inline-block;
	line-height: 1.65;
	font-size: var(--font-size);
	font-weight: var(--font-medium);
	background: transparent;
	border: 2px solid transparent;
	height: 50px;
	padding: 10px 40px;
	cursor: pointer;
	text-transform: uppercase;
	transition: all .15s ease;
	position: relative;
}

.btn:hover{
	color: var(--color-light);
}

.btn__icon--line{
	height: 75px;
	width: 1px;
	display: block;
	position: absolute;
	background: rgba( 255, 255, 255, 1 );
	top: 50%;
	transform: translateY(-50%);
	right: 40px;
}

.btn__icon--right{
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.btn--primary{
	background: var(--color-primary);
	border-color: var(--color-primary);
}
	.btn--primary:hover{
		color: var(--color-light);
		background-color: var(--color-secondary);
		border-color: var(--color-secondary);
	}


.btn--border-primary{
	color: var(--color-primary);
	border-color: var(--color-primary);
}
	.btn--border-primary .btn__icon--line{
		background-color: var(--color-primary);
	}
	.btn--border-primary:hover{
		color: var(--color-light);
		background-color: var(--color-secondary);
		border-color: var(--color-secondary);
	}

.btn--transparent-primary{
	color: var(--color-primary);
}
	.btn--transparent-primary:hover{
		color: var(--color-secondary);
	}


.btn--icon{
	padding: 10px 80px 10px 40px;
	position: relative;
}


.btn__street-view{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-light);
	text-transform: uppercase;
	padding-left: 50px;
}

.section-space > .row{
	padding-bottom: 40px;
}

	.btn__street-view img{
		margin: 0 15px;
	}

	.btn__street-view .btn__icon--line{
		right: initial;
		left: 40px;
	}

	.btn__street-view .btn__icon--right{
		right: initial;
		left: 0px;
	}

	.btn__street-view:hover{
		color: var(--color-light);
	}

.btn--is-left{
	padding-left: 0;
}

.btn--is-left .icon-right{
	padding-right: 10px;
}

.offer-list{}
	.offer-list__item{
		transition: all .15s ease;
		margin: 0 1px;
		position: relative;
		padding: 0;
		height: 520px;
	}
		.offer-list__image{
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	.offer-list__title{
		font-size: 26px;
		font-weight: var(--font-medium);
		text-transform: uppercase;
		color: var(--color-light);
		margin-bottom: 15px;
	}
	.offer-list__tag{
		background: #FFF;
		color: #000;
		font-weight: bold;
		text-transform: uppercase;
		padding: 5px 10px;
		display: inline-table;
		width: fit-content;
	}
	.offer-list__footer{
		margin: 30px 0;
	}
	.offer-list__content{
		background-color: rgba( 0, 0, 0, .6 );
		z-index: 1;
		position: absolute;
		padding: 15px;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		transition: background-color .15s ease;
	}
	.offer-list__content:hover{
		background-color: rgba( 0, 0, 0, .25 );
	}


.title{
	margin: 80px 0;
	font-weight: var(--font-light);
}
	.title__page{
		font-size: 50px;
	}
	.title__content{
		text-transform: uppercase;
	}

	.title--white{
		color: var(--color-light);
	}

.section-space{
	padding: 60px 0;
}

.icon-set{
	/* display: grid;
	grid-template-columns: repeat( 4, 1fr); */
	border-top: 1px solid rgba( 0, 0, 0, .5 );
}

#slider-icons-ow{
	position: relative;
}

.icon-set [data-controls]{
	border: 0;
	padding: 10px;
	margin: 0;
	background: transparent;
	/* position: absolute; */
}

.icon-set [data-controls="next"]{
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	margin-right: -60px;
}
.icon-set [data-controls="prev"]{
	position: absolute;
	top: 50px;
	transform: rotate(180deg);
	left: 0;
	margin-left: -60px;
}

.icon-set {
	margin-top: 45px;
}

.icon-set img{
	width: 120px;
}

.contact{}
	.contact .title__page{
		margin-bottom: 30px;
	}
	.contact .col-md-6, .contact .row{
		position: initial;
	}
	.contact .title{
		margin-bottom: 30px;
	}
	.contact h3{
		margin-top: 30px;
	}
	.contact p{
		margin: 30px 0;
	}

.page-contact{
	position: relative;
}

.page-contact .map{
	border:0;
	width: 50%;
	height: calc( 100% - 60px );
	position: absolute;
	left: 50%;
	top: 60px;
}

.page-contact .title{
		margin-top: 0;
}

.position-initial{
	position: initial;
}

.position-relative{
	position: relative;
}

#slider-news-ow{
	z-index: 1;
}

#slider-news-ow .tns-nav{
	display: none;
}

#slider-news-ow .tns-slider{
	position: relative;
}

#slider-news-iw{
	background: var(--color-lighter);
}

#slider-news-ow {
	position: relative;
}

#slider-news-ow .tns-controls [data-controls="prev"],
#slider-news-ow .tns-controls [data-controls="next"]{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	padding: 50px;
	background: var(--color-lighter);
	border: 0;
	outline: 0;
	cursor: pointer;
}

#slider-news-ow .tns-controls button:hover{
	color: var(--color-primary);
}

#slider-news-ow .tns-controls [data-controls="prev"]{
	left: -115px;
}

#slider-news-ow .tns-controls [data-controls="prev"] i::before{
	transform: rotate(180deg);
}

#slider-news-ow .tns-controls [data-controls="next"]{
	right: -100px;
}

.section-gallery{
	top: -320px;
	position: absolute;
	width: 100%;
	height: 595px;
	background-size: 90.5%;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.section-news {
	padding-top: 240px;
	margin-top: 280px;
	border-top: 1px solid rgba( 0, 0, 0, .2 );
}

.section-news .line{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba( 0, 0, 0, .75 );
	position: absolute;
	left: 0;
	transform: translateY(-50%);
	bottom: 165px;
}

.slider-news__title{
	text-transform: uppercase;
	font-size: var(--font-size);
	font-weight: var(--font-extra);
}

.slider-news__date{
	padding-top: var(--space);
	display: block;
	font-size: var(--font-size-s);
	color: rgba( 0, 0, 0, .5 );
	font-weight: var(--font-light);
}

.slider-news__content{
	margin: var(--space) 0;
	color: rgba( 0, 0, 0, .5 );
}

.home .title__page{
	font-size: 5.35rem;
}


.single-gallery .single-image{
	height: 240px;
	display: block;
	margin-top: 15px;
	margin-bottom: 15px;
}
.single-gallery .single-image img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media (max-width: 1440px){
	.slider__container{
		padding-left: 160px;
	}
}
@media (max-width: 720px){
	.slider__container{
		padding-left: 15px;
		padding-right: 15px;
	}
	.tns-nav{
		display: none!important;
	}
	.header__icons{
		display: none;
	}

	.offer__housing{
		display: none
	}
}

.flex-revers {
	flex-direction: row-reverse;
}

@media (max-width: 960px) {

	/* .table__header, .table__body .table__item{
		flex-direction: column;
	} */

.table{
	display: block;
  width: 100%;
  overflow-x: auto;
}
.table__item{
	overflow-y: auto;
}
.table__none{
	display: none;
}
.table__body{
	max-width: 100%;
	overflow-x: auto;
}
.table__header{
	max-width: 100%;
	overflow-x: auto;
}


.table__body .table__item div, .table__header div{
	font-size: 11px;
	padding: 2px;
}

.icons__item{
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 10px;
}

.slider__caption--text, .title__page, .home .title__page{
	font-size:1.5rem;
}

.page__offer h1{
	font-size: 1.2rem;
}
.btn--icon{
	padding: 10px 60px 10px 20px;
}
	.btn--menu {
		display: flex;
	}

	.icon-set{
			margin-top: 60px;
			border: 0;
	}

	.slider__price{
		margin-right: 0;
	}

	.btn{
		width: 100%;
	}

	.btn--primary .btn__icon--line{
		display: none;
	}
	.icon-set{
		display: flex;
	}

	 .header--home{
		 border: 0;
	 }

	 .slider__caption--title{
		 margin-top: 15px;
	 }


	.logo{
		justify-content: center;
		margin-bottom: 5px;
	}

	.header__icons{
		flex-direction: column;
		justify-content: center;

	}

	.icon-set .flex-middle{
		align-items: center;
		justify-content: center;
		margin-bottom: var(--space);
	}

	.btn__street-view{
		position: initial;
		margin-top: 60px;
	}

	.slider__container{
		flex-direction: column;
		justify-content:  center;
	}

	.title__page, .slider__caption--title{
		font-size: 48px;
	}

	.page-contact .map{
		position: initial;
		height: 480px;
		width: 100%;
		margin: 15px 0;
		padding: 0;
	}

	.section-gallery{
		position: initial;
		background-size: cover;
	}

	.section-news{
		padding-top: 0;
		margin-top: 0;
		border: 0;
	}

	.slider__footer{
		display: flex;
	}

	.section-space, .slider__footer{
		flex-direction: column;
		padding: 15px 0;
	}

	.title{
		margin: 30px 0;
		text-align: center;
	}

	.slider__caption--title{

	}

	.tns-controls, .section-news .line{
		display: none;
	}

	.header .nav .menu{
		position: absolute;
		width: 100%;
		height: 100vh;
		flex-direction: column;
		justify-content: flex-start;
		font-size: var(--font-size-l);
		top: -120PX;
		left: 0;
		z-index: 3;
		background: var(--color-primary);
		display: none;
		padding: 60px 30px;
		justify-content: space-between;
	}

	.footer .nav .menu{
		flex-direction: column;
	}

	.footer .nav .menu li{
		width: 100%;
		padding: 15px;
	}

	.footer .nav .menu li:first-child{
		padding: 15px;
	}

	.header .nav .menu.menu-menu-gorne--is-active{
		display: flex;
	}

}

.page-default h2{
	font-size: 3.125rem;
	margin: 30px 0;
}

.page__gallery-item{
	display: block;
	width: 100%;
	height: 320px;
	position: relative;
}

.page__gallery-opacity{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-light);
	text-transform: uppercase;
	font-size: 26px;
	background-color: rgba( 0, 0, 0, .6 );
	transition: opacity .15s ease;
}

.page__gallery-opacity h3{
	font-weight: var(--font-extra);
}

.page__gallery-item:hover .page__gallery-opacity{
	opacity: 0;
}

.offer-list__item{
	display: block;
}

.page__gallery-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.articles .col-md-6{
	margin-bottom: 30px;
}

.articles h2{
	margin: 30px 0;
}


.offer__select, .offer__select img{
	width: 100%;
	margin: 0;
	padding: 0;
}

.offer__select{
	position: relative;
}

.offer__select .m1{
	top: 215px;
	left: 370px;
	width: 165px;
	height: 170px;
	clip-path: polygon(3px 117px, 23px 32px, 147px 13px, 162px 39px, 163px 150px, 24px 175px, -2px 141px);
	transition: all .3s ease;
}

.offer__select .m2{
	top: 210px;
	left: 560px;
	width: 165px;
	height: 170px;
	clip-path: polygon(15px 124px, 12px 13px, 135px 1px, 158px 105px, 156px 142px, 25px 161px);
}

.offer__select .m3{
	top: 99px;
	left: 556px;
	width: 133px;
	height: 170px;
	clip-path: polygon(17px 82px, 12px 13px, 117px 3px, 132px 73px, 131px 107px, 21px 121px);
}

.offer__select .m4{
	top: 193px;
  left: 740px;
  width: 170px;
  height: 150px;
	clip-path: polygon(2px 49px, 2px 14px, 124px 0px, 169px 95px, 158px 124px, 33px 143px);
}

.offer__select .m5{
	top: 85px;
  left: 714px;
  width: 133px;
  height: 121px;
  clip-path: polygon(1px 44px, -6px 13px, 103px 3px, 136px 75px, 129px 105px, 19px 119px);
}

.offer__select .m6{
	top: 208px;
	left: 918px;
	width: 206px;
	height: 150px;
	clip-path: polygon(0px 44px, 22px 9px, 144px -1px, 207px 93px, 173px 133px, 58px 153px);
}


.offer__select .m7{
	top: 96px;
  left: 860px;
  width: 180px;
  height: 120px;
	clip-path: polygon(3px 41px, 13px 9px, 113px -2px, 168px 71px, 151px 109px, 49px 123px);
}

.offer__select .m8{
	top: 185px;
  left: 1080px;
  width: 221px;
  height: 150px;
	clip-path: polygon(-4px 46px, 22px 9px, 135px -1px, 220px 92px, 175px 138px, 71px 148px);
}


.offer__select .m9{
		top: 82px;
	  left: 1001px;
	  width: 180px;
	  height: 115px;
		clip-path: polygon(-1px 46px, 22px 9px, 113px -2px, 178px 67px, 154px 106px, 57px 118px);
}

.offer__select a{
	display: block;
	background: var(--color-primary);
	opacity: 0;
	transition: opacity .3s ease;
	position: absolute;
}

.tooltip{
	font-size: 10px;
	font-weight: var(--font-extra);
	text-transform: uppercase;
	position: absolute;
	box-shadow: 5px 5px 30px 5px rgba( 0, 0, 0, .5 );
	pointer-events: none;
}

.tooltip__symbol{
	background: var(--color-primary);
	color: var(--color-light);
	padding: 10px;
	position: relative;
}

	.tooltip__symbol::after{
		content: "";
		display: block;
		position: absolute;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 7px 7px 7px 0;
		border-color: transparent var(--color-primary) transparent transparent;
		top: 50%;
		left: -7px;
		transform: translateY(-50%);
	}

.tooltip__name{
	background: #FFFFFF;
	padding: 10px;
}


h2{
	margin-bottom: 30px;
}


.offer__select a:hover{
	opacity: .7;

}

.floors-of-block, .offer__housing{
	position: relative;
}
 .map-floors__item{
 		background: var(--color-primary);
		cursor: pointer;
		opacity: 0;
		transition: opacity .3s ease;
		position: absolute;
	}
	 .map-floors__item:hover{
	 	opacity: .7;
		}

 .f0{
	 top: 331px;
	 left: 160px;
	 width: 700px;
	 height: 101px;
	 clip-path: polygon(5px 84px, 5px 13px, 185px -3px, 693px 14px, 694px 93px, 188px 93px);
	}

	 .f1{
		 top: 208px;
     left: 160px;
     width: 700px;
     height: 135px;
     clip-path: polygon(6px 140px, 7px 60px, 185px -1px, 694px 69px, 694px 140px, 186px 121px);
		}

	 .f2{
		 top: 60px;
	    left: 160px;
	    width: 700px;
	    height: 220px;
	    clip-path: polygon(6px 209px, 4px 141px, 185px -3px, 694px 144px, 694px 217px, 189px 147px);
		}

.offer-block h3{
	font-size: 3.125rem;
	margin: 30px 0;
}


.table__header{
	display: flex;
	justify-content: space-between;
	color: #FFFFFF;
	background: #2f3f97;
	align-items: center;
	line-height: 1.25;
}

/* .table__header div{
	display: flex;

} */

.table__body{
	display: flex;
	flex-direction: column;
}

.table__body .table__item{
	display: none;
}

.signle-thumb img{
	max-width: 100%;
	height: auto;
}

.table__item:nth-of-type(odd){
	background: #f8f8f8;
}

.table__body .table__item:hover{
	box-shadow: 0px 10px 15px 0 rgba( 0, 0, 0, .2 );
}

.table__body .table__item.table__item--is-active{
	display: flex;
	justify-content: space-between;
}

.floors-of-block, .offer__housing, .offer__select{
	margin: 60px 0;
}

.offer__housing h2, .offer-block h2{
	margin-bottom: 60px;
}

.page__offer{}
.page__offer p {
	line-height: 1.45;
	margin: 30px 0;
}
	.page__offer h1{
		font-size: 77px;
		margin-top: 30px;
	}
		.page__offer h2{
			font-size: 3.125rem;
		}
			.page__offer h3{
				font-size: 18px;
				margin: 30px 0;
			}

			.page__offer .wp-block-separator{
				margin: 60px 0;
				border-color: rgba( 0, 0, 0, .15 );
			}

			@media (min-width: 782px){
				.page__offer .wp-block-column:not(:first-child) {
			    margin-left: 100px;
				}
			}

			.icon-list{
				margin: 15px 0;
				display: flex;
				align-items: center;
			}

			.icon-list .wp-block-media-text__content{
				padding: 0 15px;
			}

			.icon-list p{
				margin: 0;
			}

	.offer__housing{}

.map-housing__item{
		background: var(--color-primary);
	display: block;
	width: 30px;
	height: 105px;
	position: absolute;
	cursor: pointer;
	transition: opacity .3s ease;
		opacity: 0;
}
	.map-housing__item:hover{
		opacity: .5;
	}
	.housing1{
		top: 210px;
		left: 395px;
		width: 56px;
	}
	.housing2{
		top: 210px;
		left: 452px;
	}
	.housing3{
		top: 210px;
		left: 483px;
	}
	.housing4{
		top: 210px;
		left: 514px;
	}
	.housing5{
		top: 210px;
		left: 545px;
	}
	.housing6{
		top: 210px;
		left: 575px;
	}
	.housing7{
		top: 210px;
		left: 607px;
	}
	.housing8{
		top: 210px;
		left: 638px;
	}
	.housing9{
		top: 210px;
		left: 669px;
	}
	.housing10{
		top: 210px;
		left: 701px;
		display: none;
	}
	.housing11{
		top: 210px;
		left: 701px;
		width: 46px;
	}


	.housing12{
		top: 210px;
		left: 782px;
		width: 53px;
	}
	.housing13{
		top: 210px;
		left: 835px;
	}
	.housing14{
		top: 210px;
		left: 867px;
	}
	.housing15{
		top: 210px;
		left: 898px;
	}
	.housing16{
		top: 210px;
		left: 929px;
	}
	.housing17{
		top: 210px;
		left: 960px;
	}
	.housing18{
		top: 210px;
		left: 991px;
	}
	.housing19{
		top: 210px;
		left: 1022px;
		width: 53px;
	}


	.housing20{
		top: 216px;
		left: 1097px;
		width: 50px;
	}
	.housing21{
		top: 216px;
		left: 1148px;
	}
	.housing22{
		top: 216px;
		left: 1179px;
	}
	.housing23{
		top: 216px;
		left: 1210px;
	}
	.housing24{
		top: 216px;
		left: 1241px;
	}
	.housing25{
		top: 216px;
		left: 1272px;
	}
	.housing26{
		top: 216px;
		left: 1303px;
	}
	.housing27{
		top: 216px ;
		left: 1334px;
		width: 55px;
	}


	.housing28{
		top: 350px;
		left: 543px;
	}


	.housing29{
		top: 740px;
		left: 777px;
		width: 53px;
	}
	.housing30{
		top: 740px;
		left: 830px;
	}
	.housing31{
		top: 740px;
		left: 861px;
	}
	.housing32{
		top: 740px;
		left: 892px;
	}
	.housing33{
		top: 740px;
		left: 923px;
	}
	.housing34{
		top: 740px;
		left: 954px;
	}
	.housing35{
		top: 740px;
		left: 984px;
	}
	.housing36{
		top: 740px;
		left: 1017px;
		width: 53px;
	}



	.housing37{
		top: 740px;
		left: 1095px;
		width: 48px;
	}
	.housing38{
		top: 740px;
		left: 1144px;
	}
	.housing39{
		top: 740px;
		left: 1174px;
	}
	.housing40{
		top: 740px;
		left: 1205px;
	}
	.housing41{
		top: 740px;
		left: 1237px;
	}
	.housing42{
		top: 740px;
		left: 1268px;
	}
	.housing43{
		top: 740px;
		left: 1299px;
	}
	.housing44{
		top: 740px;
		left: 1330px;
		width: 53px;
	}

.text-primary{
	color: var(--color-primary);
}

.single{
	margin-top: 60px;
}
	.single-line{
		margin: 45px 0;
	}
	.single-price{
		font-size: 40px;
		font-weight: 600;
	}
	.single-header{
		font-weight: 600;
		font-size: 26px;
	}
	.single-promotion{
		background: var(--color-primary);
		padding: 5px 15px;
		color: #FFFFFF;
		font-weight: 600;
		margin-left: 10px;
	}
	.single-btn{
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--color-primary);
		color: #FFF;
		text-align: center;
		font-weight: bold;
		width: 100%;
		height: 90px;
		margin: 30px 0 5px 0;
	}
		.single-btn__line{
			display: block;
			width: 1px;
			height: 80%;
			background: #FFFFFF;
			margin: 0 30px;
		}
  .single-btn:hover{
		background: transparent;
		color: var(--color-primary);
	}
		.single-btn:hover .single-btn__line{
			background-color: var(--color-primary);
		}
		.single-ikon b{
			padding-left: 10px;
		}
		.single-group{
			margin-bottom: 15px;
		}
		.single-help{
			margin: 60px 0;
		}
			.single-help div{
				margin-right:1px;
			}
			.single-help img{
				width: 100%;
			}
.single-post{
	margin-top: 0;
}
	.single-post .bg-light{
		padding-bottom: 30px;
	}
	.single-post .title{
		margin-bottom: 60px;
	}
	.single-post .title__page{
		margin-bottom: 0;
		padding-top: 30px;
		word-spacing: normal;
	}
	.table{
		margin: 25px 0 30px 0;
	}
		.table-row{
			display: flex;
			justify-content: space-between;
			align-items: center;
			border-bottom: 1px solid rgba( 0, 0, 0, .1 );
			padding: 5px 0;
		}
	.bg-muted{
		background: rgba( 0, 0, 0, .05 );
		padding: 15px;
		text-align: center;
	}

	[data-dostepnosc="sprzedane"]{
		cursor: not-allowed;
		pointer-events: none;
	}

	.offer__housing{
		width: 100%;
		overflow: auto;
	}

	.blocks-gallery-item .wp-image-822 {
		width: 1400px!important;
		min-width: 1400px!important;
	}
