/*
Embed fonts families:
-------------------
font-family: "Archivo", sans-serif;
font-family: "Playfair Display", serif;

.archivo-<uniquifier> {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.playfair-display-<uniquifier> {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

possible weights:
-------------------
Archivo: 100;200;300;400;500;600;700;800;900;
Playfair Display: 400;500;600;700;800;900;

animation:
-------------------
transition: all 0.5s;

Content:
1. Main styles override
2. Contact form 7 
3. Navbar bootstrap
4. ACF elements
5. Theme styles  
6. Responsive fixes
*/

/* ============================================= */
/* 1. Main styles override                       */
/* ============================================= */

body {
	font-family: "Archivo", sans-serif;
	font-weight: 200;
	font-size: 17px;
	font-weight: 200;
	color:#606060;
	line-height: 26px;
}
body.admin-bar .navbar.fixed-top {
	margin-top: 32px;
}
html {
	scroll-behavior:smooth;
	font-display: swap
}
strong {
	font-weight: 700;
}
/* Links */
a {
	color: #464646;
	text-decoration: none;
}
a:focus, a:hover {
	color: #464646;
	text-decoration: none;
	outline: 0;
}
a:focus {
	outline: 0;
	outline-offset: -2px;
}
button, button:focus, button:active {
	outline: 0;
	box-shadow: 0
}


/* /Links */

/* Image responsive fix */
img {
	width: initial;
	max-width: 100%;
	height: auto;
}
/* /Image responsive fix */

/* Headers */
h1, h2, h3, h4, h5 {
	font-family: "Playfair Display", serif;
	font-weight: 400;
	color:#252525;
}
h1 {
	font-size: 34px;
	font-weight: 300;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 28px;
	font-weight: 300;
}
h4 {
	font-size: 25px;
	position: relative;
}
h5 {
	font-size: 22px;
}
h6 {
	font-size: 16px;
}
/* /Headers */

@media only screen and (max-width : 768px) {
	h4 {
		font-size: 22px;
	}
}

/* Bootstrap extra spaces */
.pt-6,
.py-6 {
	padding-top: 5rem !important;
}

.pe-6,
.px-6 {
	padding-right: 5rem !important;
}

.pb-6,
.py-6 {
	padding-bottom: 5rem !important;
}

.ps-6,
.px-6 {
	padding-left: 5rem !important;
}
.mt-6,
.my-6 {
	margin-top: 5rem !important;
}

.mr-6,
.mx-6 {
	margin-right: 5rem !important;
}

.mb-6,
.my-6 {
	margin-bottom: 5rem !important;
}

.ms-6,
.mx-6 {
	margin-left: 5rem !important;
}
.py-6-fixed {
	padding-top: 4rem !important;
	padding-bottom: 7rem !important;
}
@media only screen and (max-width : 768px) {
	.py-6-fixed {
		padding-top: 4rem !important;
		padding-bottom: 7rem !important;
	}
	.pt-6,
	.py-6 {
		padding-top: 4rem !important;
	}

	.pr-6,
	.px-6 {
		padding-right: 4rem !important;
	}

	.pb-6,
	.py-6 {
		padding-bottom: 4rem !important;
	}

	.pl-6,
	.px-6 {
		padding-left: 4rem !important;
	}
	.mt-6,
	.my-6 {
		margin-top: 4rem !important;
	}

	.me-6,
	.mx-6 {
		margin-right: 4rem !important;
	}

	.mb-6,
	.my-6 {
		margin-bottom: 4rem !important;
	}

	.ms-6,
	.mx-6 {
		margin-left: 4rem !important;
	}
}
/* /Bootstrap extra spaces */
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: transparent;
  box-shadow: none;
  outline: 0 none;
}
/* Buttons */
.btn {
	text-transform: uppercase;
	font-family: "Archivo", sans-serif;
	font-weight: 700;
	font-size: 15px;
	padding:15px 125px 15px 40px;
	border-radius: 0;
}
.btn-white {
	color: #fff;
	background-image: url(../img/icons/wired-outline-225-arrow-small-right.svg);
	background-repeat: no-repeat;
	background-position: right 40px center;
	transition: all 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
	color: #fff;
	box-shadow: 0px;
	background-position: right 30px center;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
}
.btn-default {
	font-family: "Archivo", sans-serif;
	font-weight: 700;
	font-size: 15px;
	padding:20px 105px 20px 40px;
	border-radius: 0;
	border-top-left-radius: 30px;
	background-color: #68982a;
	border:1px solid #68982a;
	color: #fff;
	background-image: url(../img/icons/wired-outline-225-arrow-small-right-white.svg);
	background-repeat: no-repeat;
	background-position: right 40px center;
	border:0;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#68982a;
	color: #fff;
	border:0;
	box-shadow: 0;
	background-position: right 30px center;
}
.btn-default.btn-search {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-top: 28px;
	padding-bottom: 28px;
	padding-left: 0px;
	padding-left: 0px;
	background-color: #68982a;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.cn-button.bootstrap {
	background-color: #68982a !important;
	text-transform: uppercase !important;
}
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}
/* /Buttons */

section {
	position: relative;
	overflow-x: clip;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

/* Vertical align */
.vertical-a {
	display: flex;
	justify-content: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
	.vertical-align {
		display: block;
	}
}
.vertical-b {
	align-self: center;
	width: 100%;
}
/* /Vertical align */

/* Placeholder  */
::-webkit-input-placeholder {
	color:#888;
}
:-moz-placeholder {
	color:#888;
}
::-moz-placeholder {
	color:#888;
}
:-ms-input-placeholder {
	color:#888;
}
/* /Placeholder  */

/* Selection  */
::selection {
	background: #68982a; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #68982a; /* Gecko Browsers */
	color:#fff;
}
/* /Selection */

/* Box links (often used)  */
.box-link {
	position:absolute;
	height:100%;
	width:100%;
	left:0px;
	top:0px;
}
/* /Box links (often used)  */

.bg-test {
	background-color: rgba(255,0,0,0.5);
}

.dark, .dark p, .dark a, .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
	color: #fff;
}

/* ============================================= */
/* 2. Contact form 7                             */
/* ============================================= */
.wpcf7 input[type="text"],
.wpcf7 input[type="date"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7-select,
.wpcf7 textarea {
	background-color: transparent;
	color: #303338;
	border-radius: 0;
	border-bottom-left-radius: 15px;
	border:1px solid #bebebe;
	padding: 13px 30px;
	font-size: 15px;
	width: 100% !important;
	color:#000;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #fafafa;
	color: #303338;
	box-shadow: none;
	outline: 0 none;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}

.wpcf7-list-item-label {
	color:#000; 
	font-size: 15px;
	margin-left: 20px;
	padding-top:2px;
}

.wpcf7-list-item-label a {
	color:#000; 
	font-weight: 700;
}

.wpcf7-form-control.wpcf7-acceptance label {
    display: flex;
    line-height: 1.2;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    margin-right: 5px;
    align-self: start;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-submit {
	font-family: "Archivo", sans-serif;
	font-weight: 700;
	font-size: 15px;
	padding:20px 40px 20px 40px;
	border-radius: 0;
	border-bottom-left-radius: 30px;
	background-color: #68982a;
	border:1px solid #68982a;
	color: #fff;
	border:0;
	text-transform: uppercase;
	transition: all 0.5s;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	color: #000 !important;
}

.wpcf7-submit:disabled {
	opacity:0.7;
}
/* Placeholder  */
::-webkit-input-placeholder {
 color:#b6b6b6;
 opacity: 0.7;
}
:-moz-placeholder {
 color:#b6b6b6;
 opacity: 0.7;
}
::-moz-placeholder {
 color:#b6b6b6;
 opacity: 0.7;
}
:-ms-input-placeholder {
 color:#b6b6b6;
 opacity: 0.7;
}
:active::-webkit-input-placeholder,
:focus::-webkit-input-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-ms-input-placeholder,
:focus::-ms-input-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
/* /Placeholder  */

/* ============================================= */
/* 3. Navbar (bootstrap)                         */
/* ============================================= */
.navbar {
	font-family: "Archivo", sans-serif;
	box-shadow: none;
	padding-top: 0;
	padding-bottom: 0;
	background-color: #fff;
}
.navbar::before {
	content:"";
	position: absolute;
	top: 0;
	background-color:#68982a;
	opacity: 0.14;
	width: 66px;
	left: 33%;
	height: 100%;
}
.navbar .container-fluid {
	z-index: 10;
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.5s;
	width: 284px;
	padding-top: 25px;
	padding-bottom: 25px;
}

.navbar-default .navbar-nav .nav-link {
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	padding:20px 25px;
	transition: all 0.5s;
	position: relative;
}
.navbar-default .navbar-nav .current-menu-item .nav-link:after {
	content:"";
	position: absolute;
	top: -50px;
	left: 50%;
	width: 1px;
	height: 50px;
	background-color: #68982a;
}
.navbar-default .navbar-nav .tel .nav-link  {
	border-left: 1px solid #5a5a5a;
	font-size: 22px;
	margin-left: 20px;
}
.navbar-default .navbar-nav .tel .nav-link span  {
	font-size: 16px;
	font-weight: 400;
}


@media only screen and (max-width : 1700px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 12px;
		padding-right: 12px; 
	}
}
@media only screen and (max-width : 1500px) {
	.navbar-brand img {
		width:210px;
	}
}
@media only screen and (max-width : 1040px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px; 
	}
}

.navbar-default .navbar-nav .nav-link.active,
.navbar-default .navbar-nav .nav-link:hover,
.navbar-default .navbar-nav .nav-link:focus,
.navbar-default .navbar-nav .show > .nav-link,
.navbar-default .navbar-nav .nav-link.show {
	color: #68982a;
	transition: all 0.5s;
}
.navbar-nav .current-menu-item .active > .nav-link,
.navbar-nav .current-menu-item .nav-link.active {
	color: #68982a;
}
.sticky.navbar {
	-webkit-box-shadow: 0px 0px 24px -16px rgba(66, 68, 90, 1);
	-moz-box-shadow: 0px 0px 24px -16px rgba(66, 68, 90, 1);
	box-shadow: 0px 0px 24px -16px rgba(66, 68, 90, 1);
}
.sticky.navbar .navbar-brand img {
	width: 160px;
	padding-top: 0px;
	padding-bottom: 0px;
}

/* Menu dla mobilnych i po scrolly */
.sticky.navbar-default .navbar-nav .nav-link {
	padding-top:15px;
	padding-bottom:15px;
}
@media only screen and (max-width : 1040px) {
	.navbar-default .navbar-nav .nav-link {
		padding-top:15px;
		padding-bottom:15px;
	}
	.navbar-default .navbar-nav .current-menu-item .nav-link:after {
		content:"";
		position: absolute;
		top: 50%;
		left: -50px;
		width: 30px;
		height: 1px;
		background-color: #68982a;
	}
}

.navbar-toggler {
	background-color: #68982a;
	border:1px solid #68982a; 
	border-top-left-radius: 15px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 15px;
	transition: all 0.5s;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: rgba(255,255,255,0.6);
	height: 2px;
	width: 24px;
	margin-top: 6px;
	margin-bottom: 6px;
	position: relative;
	left: 0;
	opacity: 1;
	transition: all 0.35s ease-out;
	transform-origin: center left;
}
.navbar-toggler span:nth-child(1) {
	transform: translate(0%, 0%) rotate(0deg);
}
 
.navbar-toggler span:nth-child(2) {
	opacity: 1;
}
 
.navbar-toggler span:nth-child(3) {
	transform: translate(0%, 0%) rotate(0deg);
}
.navbar-toggler span:nth-child(1) {
	margin-top: 0.3em;
}
 
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	transform: translate(15%, -33%) rotate(45deg);
}
 
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	transform: translate(15%, 33%) rotate(-45deg);
}

.navbar .contact a.nav-link {
	background: #00465e;
	/*background: linear-gradient(0deg, rgba(33,37,41,1) 0%, rgba(0,62,83,1) 100%);*/
}
.search-activator {
	cursor: pointer;
}

.search-activator a.nav-link {
	text-indent: -9999px;
	background-image: url(../img/icon-main-menu-search.png);
	background-repeat: no-repeat;
	background-position: center;
}

.dropdown-menu {
	margin-top: -2px;
	border-radius: 0px;
	background-color: #1e1e1e;
	border:0px;
	text-transform: lowercase;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
}
.dropdown-menu[data-bs-popper] {
	margin-top: -1px;
	border-top:1px solid #00465e;
}
.dropdown-menu li a.dropdown-item {
	font-size: 14px;
	line-height: 35px;
	color: #fff;
	transition: all 0.5s;
}


.dropdown-menu li a.dropdown-item:hover {
	color:#68982a;
	transition: all 0.3s;
}
.dropdown-menu li a.dropdown-item:hover,
.dropdown-menu li a.dropdown-item:focus,
.dropdown-menu li a.dropdown-item:active {
	background-color: transparent;
	transition: all 0.3s;
	border-left-color: #68982a;
}
.dropdown-item.active {
	background-color: transparent;
	color:#68982a !important;
}


/* Search window */
#search-container {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.9);
	top:0px;
	left:0px;
	max-height: 100vh;
	z-index: 999999999;
}
#search-container .d-flex {
	height: 100%;
}
#search-close {
	position: absolute;
	right: 40px;
	top:25px;
	background-image: url(../img/search-close.png);
	background-repeat: no-repeat;
	background-color: transparent;
	height: 41px;
	width: 41px;
	z-index: 100000;
	cursor: pointer;
}
#search-close span {
	position: absolute;
	right: 50px;
	top:10px;
	width: 100px;
	text-align: right;
	color: #fff
}
#search-container .vertical-align {
	height: 100%;
}
#title .form-control {
	border:0;
}
.search-btn {
	background-image: url(../img/icon-search.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.search-input {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	line-height: 56px;
	height: 56px;
	padding-left: 25px;
}
/* /Search window */

/* Open on hover for desktops only */
ul.nav li.dropdown:hover > ul.dropdown-menu {
	display: block;    
}
@media (min-width: 979px) {
	ul.nav li.dropdown:hover > ul.dropdown-menu {
		display: block;
	}
}
/* /Open on hover for desktops only */


/* ============================================= */
/* 4. ACF elements                               */
/* ============================================= */
.embed-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 
.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.acf-map {
	width: 100%;
	height: 475px;
	margin-bottom: 0px;
}
/* fixes potential theme css conflict */
.acf-map img {
	max-width: inherit !important;
}
.poi-distance {
	color:#68982a;
	font-size: 18px;
	font-weight: 500;
	display: block;
}
.poi-description {
	color:#252525;
	font-size: 18px;
	font-weight: 500;
}

/* ============================================= */
/* 5. Theme styles                               */
/* ============================================= */

/* Tiny Slider Banner */
.banner-slider-container .height-keeper {
	left: 12px;
	top: 0;
	width: 100%;
	min-height: 80vh;
	overflow:hidden;
	padding-bottom: 50px;
}
.slider-container .slider-controls {
	margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;   
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;    
    justify-content: space-between;
}
.banner-slider-container .slider-controls {
	left: 30px;
    right: 30px;
    z-index: 40;
}
.banner-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 18px;
	width: 40px;
	background-image: url(../img/arrows.png);
	cursor: pointer;
}

.arrow.arrow-right {
	background-position: 40px 0;
}
.tns-nav {
	position: absolute;
	left: 50%;
	bottom: 50px;
	transform: translateX(-50%);
	z-index: 50;
}
.tns-nav button {
	background-color: #cfcfcf;
	border:0;
	padding: 0;
	margin: auto 5px;
	border-radius: 0;
	width: 30px;
	height: 1px;
}
.tns-nav button.tns-nav-active {
	background-color: #68982a;
	border:0;
	margin: auto 5px;
	border-radius: 0;
	width: 30px;
	height: 1px;
}
/* /Tiny Slider Banner */

.banner-scene-bg {
	height: 82vh;
	min-height: 800px;
	background-size: cover;
	background-repeat: no-repeat;
}
.rounded-ts-80 {
	border-top-left-radius: 80px;
}
.banner-caption {
	padding-bottom: 10vh;
}
.banner-caption h2 {
	font-size: 61px;
}
.banner-caption h2 strong {
	font-weight: 400;
	color:#68982a;
}
@media only screen and (max-width : 768px) {
	.banner-caption h2 {
		font-size: 40px;
	}
}
.banner-caption p {
	font-size: 20px;
	font-weight: 600;
	max-width: 600px;
}
.feature-pos .icon {
	width: 66px;
	margin-right: 25px;
}
.feature-pos span {
	color:#68982a;
	font-weight: 700;
	font-size: 21px;
}
.product-distances {
	font-family: "Playfair Display", serif;
	font-size: 18px;
	position: absolute;
	top:-180px;
	background-color: #68982a;
	padding:45px 40px;
	border-bottom-left-radius: 80px;
	background-image: url(../img/bg-product-distances.webp);
	background-position: center;
	background-repeat: no-repeat;
}
.product-distances ul {
	padding-left: 0;
	padding-top: 15px;
}
.product-distances ul li {
	position: relative;
	list-style-type: none;
	padding-left: 65px;
	padding-top:4px;
	padding-bottom:4px;
}
.product-distances ul li strong {
	margin-right: 5px;
}
.product-distances ul li::before {
	position: absolute;
	content: "";
	width: 10px;
	height: 1px;
	background-color: #fff;
	top:50%;
	left:30px;
}
@media only screen and (max-width : 1150px) {
	.product-distances {
		position: static;
		padding:25px 20px;
	}	
	.product-distances ul li {
		padding-left: 30px;
	}
	.product-distances ul li::before {
		left:5px;
	}
}
.section-header span {
	color:#68982a;
	font-weight: 700;
	font-size: 21px;
	display: inline-block;
	margin-bottom: 15px;
}
.green-line-start {
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #68982a;
	left:-30px;
	bottom:0;
}
.green-line-start::before {
	content:"";
	position: absolute;
	width: 2px;
	height: 200px;
	background-color: #68982a;
	left:0;
	top:-200px;
}
.green-line-start-sm {
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #68982a;
	left:-30px;
	bottom:0;
}
.green-line-start-sm::before {
	content:"";
	position: absolute;
	width: 2px;	
	background-color: #68982a;
	left:0;
	height: 48px;
	top:-48px;
}
.green-line-start-md {
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #68982a;
	left:-30px;
	bottom:0;
}
.green-line-start-md::before {
	content:"";
	position: absolute;
	width: 2px;	
	background-color: #68982a;
	left:0;
	height: 120px;
	top:-120px;
}
.sygnet-start {
	position: absolute;
	width: 56px;
	height: 56px;
	background-image: url(../img/header-sygnet.webp);
	left:-110px;
	top:0;
	bottom:0;
}
.dark .sygnet-start {
	background-image: url(../img/header-sygnet-white.webp);
}
#lokalizacja .bg-sygnet {
	background-image: url(../img/bg-sygnet.webp);
	background-repeat: no-repeat;
	background-position: top left;
}
.cta-btn {
	display: block;
	margin-bottom: 150px;
}
.rounded-be {
	border-bottom-right-radius: 80px;
}
.ul-styled ul {
	font-weight: 700;
	color:#606060;
	padding-left: 0;
	padding-top: 30px;
	padding-bottom: 30px;
}
.ul-styled ul li {
	padding-top: 7px;
	padding-bottom: 7px;
	list-style-type: none;
	position: relative;
	padding-left: 70px;
}
.ul-styled ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top:50%;
	transform: translateY(-50%);
	width: 30px;
	height: 1px;
	background-color: #68982a;
}

.bg-green-line::before {
	content:"";
	position: absolute;
	top: 0;
	background-color:#68982a;
	opacity: 0.14;
	width: 66px;
	left: 33%;
	height: 100%;
	z-index: -1;
}
.gallery .gallery-pos  img {
	object-fit: cover;
}
.gallery .gallery-pos:first-of-type img {
	border-top-left-radius: 120px;
}
.gallery .gallery-pos:last-of-type img {
	border-bottom-right-radius: 120px;
}

.gallery-pos  {
	overflow:hidden;
}
.gallery-pos img {
	object-fit: cover;
	transition: all 0.5s;
}
.gallery-pos:hover img {
	transform: scale(1.05);
}
.distances {
	font-size: 24px;
	padding-top:8px;
	padding-bottom:8px;
}
.distances .value {
	color:#68982a;
	min-width: 90px;
}

.distances .legend {
	font-family: "Playfair Display", serif;
}
#location-features .feature-pos h4 {
	font-size: 36px;
	max-width: 80%;
}

.mapsvg-filters-wrap {
	display: none;
}
@media only screen and (max-width : 768px) {
	#location-features .feature-pos h4 {
		font-size: 32px;
	}
	
}
#mapa-inwestycji .bg-grey-half {
	background-image: url(../img/bg-sygnet-darker.webp);
	background-repeat: no-repeat;
	background-position: top 100px right 50px;
}
.bg-grey {
	background-color: #fafafa;
}
.bg-grey-half {
	position: relative;
}
.bg-grey-half::before {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: #fafafa;
	z-index: -1;
}
.investment-map {
	position: relative;
}

.investment-map .mapsvg-wrap-all {
	border-top-left-radius: 80px;
	border-bottom-right-radius: 80px;
	overflow: hidden;
}
.investment-option-pos span {
	color:#68982a;
	font-weight: 700;
	font-size: 21px;
}

.investment-option-pos h4  {
	font-size: 36px;
	position: relative;
}
.investment-option-pos h4::before {
	content: "";
	position: absolute;
	left: -30px;
	width: 2px;
	height: 100%;
	bottom:0;
	background-color: #68982a;
}
.investment-option-pos h4::after {
	content: "";
	position: absolute;
	left: -30px;
	width: 2px;
	height: 115px;
	top:-115px;
	background-color: #68982a;
}
@media only screen and (max-width : 1150px) {
	.investment-option-pos h4  {
		font-size: 32px;
	}
}
a.text-link {
	color:#68982a;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	background-image: url(../img/icons/wired-outline-225-arrow-small-right.svg);
	background-repeat: no-repeat;
	background-position: right 40px center;
	padding:20px 105px 20px 0px;
	transition: all 0.5s;
}
a.text-link:hover {
	color:#68982a;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	background-position: right 30px center;
}
.investment-position-list-pos {
	font-weight: 700;
	padding:25px 40px;
}
.investment-position-list-wrapper span {
	display: block;
	font-weight: 300;
}
.investment-position-list-wrapper .name {
	font-family: "Playfair Display", serif;
	font-size: 25px;
	font-weight: 400;
	color:#000000;
}
.status {
	font-weight: 300;
}
.status.wolny {
	color: #68982a;
}
.status.rezerwacja {
	color: #ffae00;
}
.status.kupiony {
	color: #ff0000;
}
.investment-position-list-wrapper .more_link {
	color: #606060;
	font-size: 15px;
}

.table tbody tr:nth-child(odd) th,
.table tbody tr:nth-child(odd) td {
	background-color: #fafafa;
	opacity: 1;
	box-shadow: none;
}

.table tbody tr:hover {
	cursor:pointer;
}
.table tbody tr th,
.table tbody tr td {
	transition: all 0.5s;
}
.table tbody tr:hover th,
.table tbody tr:hover td {
	background-color: #f0f0f0;
}
.table tbody tr th,
.table tbody tr td {
	padding:25px 35px;
}
@media only screen and (max-width : 768px) {
	.table tbody tr th,
	.table tbody tr td {
		padding:10px 15px;
		text-wrap: nowrap;
	}
	.table tbody tr th span,
	.table tbody tr td span {
		font-size: 12px;
	}
}

.bg-sygnet-img {
	position: relative;
}
.bg-sygnet-img img {
	z-index: 10;
	position: relative;
}
.bg-sygnet-img::before {
	content:"";
	position: absolute;
	background-image: url(../img/bg-sygnet.webp);
	width: 610px;
	height: 610px;
	left: -150px;
	bottom:-150px;
}
#dziennik-budowy,
#posts-wrapper {
	background-image: url(../img/bg-log-building.webp);
	background-repeat: no-repeat;
	background-position: top right;
}
.news-title h3 {
	font-family: "Archivo", sans-serif;
	font-weight: 600;
	font-size: 17px;
}
.news-date {
	color:#68982a;
	font-weight: 600;
}
.news-desc,
.news-desc p {
	font-weight: 200;
	color:#999999;
	transition: all 0.5s;
}
footer .dark {
	background-color: #000;
}
footer ul {
	padding:0;
	padding-left: 25px;
}
@media only screen and (max-width : 768px) {
	footer ul {
		padding:0;
	}
}
footer ul li {
	list-style-type: none;
	font-size: 16px;
	font-weight: 600;
}
footer ul li a {
	display: block;
	transition: all 0.5s;
}
footer ul li:hover a {
	color:#68982a;
}
#copyrights {
	font-size: 14px;
	color:#767676;
}
.border-green-s {
	position: relative;
}
.border-green-s::after {
	content:"";
	position: absolute;
	top:0;
	height: 100%;
	width: 2px;
	left: 0;
	background-color: #68982a;
}

.border-green-s::before {
	content:"";
	position: absolute;
	top:-125px;
	height: 125px;
	width: 2px;
	left: 0;
	background-color: #68982a;
}
@media only screen and (max-width : 768px) {
	.border-green-s::after {
		display: none;
	}
	
	.border-green-s::before {
		display: none;
	}
}
.news-img img {
	border-bottom-right-radius: 80px;
}
.news-box::after {
	content:"";
	position: absolute;
	height:70px;
	width: 2px;
	background-color: #68982a;
	top:-10px;
	left: 20px;
	opacity: 0;
	transition: all 0.5s;
}
.news-box:hover::after {
	top:-22px;
	opacity: 1;
}
.news-box:hover .news-desc,
.news-box:hover .news-desc p {
	color:#fff;
}
.modal .cta-btn {
	margin-bottom: 0;
}
a.text-green,
.text-green {
	color:#68982a;
	font-size: 15px;
	font-weight: 700;
}
.modal-content {
	border:0;
	border-radius: 30px;
	padding-left: 25px;
	padding-right: 25px;
}
h2.modal-title {
	font-size: 36px;
	min-width: 135px;
}
@media only screen and (max-width : 768px) {
	h2.modal-title {
		font-size: 32px;
	}
}
#posts-wrapper {
	border-top-left-radius: 80px;
	/* Firefox fix */
	margin-bottom: -1px;
	/* /Firefox fix */
}
@media only screen and (max-width : 768px) {
	#posts-wrapper {
		border-top-left-radius: 60px;
	}
}
.pagination-container .page-numbers {
	font-size: 15px;
	font-weight: 700;
	display: inline-block;
	width: 60px;
	height: 60px;
	border:1px solid #68982a;
	text-align: center;
	line-height: 60px;
	transition: all 0.5s;
}
.pagination-container .page-numbers.current,
.pagination-container .page-numbers:hover {
	background-color: #68982a;
}
.pagination-container .page-numbers:first-child {
	border-top-left-radius: 30px;
}
.pagination-container .page-numbers:last-child {
	border-bottom-right-radius: 30px;
}
.featured-img img {
	border-bottom-right-radius: 80px;
}
.gallery-single-post div:first-child img {
	border-top-left-radius: 120px;
}
.gallery-single-post div:last-child img {
	border-bottom-right-radius: 120px;
}
@media only screen and (max-width : 768px) { 
	.featured-img img {
		border-radius: 50px;
	}
	.gallery-single-post div:first-child img {
		border-top-left-radius: 60px;
	}
	.gallery-single-post div:last-child img {
		border-bottom-right-radius: 60px;
	}
}
.modal-contact {
	cursor: pointer;
}
h2.wp-block-heading {
	margin-top: 40px;
}
#contact-modal .modal-body h3 {
	font-size: 25px;
	border-left: 2px solid #68982a;
	padding-top: 25px;
	padding-left: 25px;
	padding-bottom: 10px;
}
.contact-details {
	max-width: 350px;
}
.contact-data {
	color: #000;
	font-weight: 400;
}
.contact-data a,
.contact-data {
	font-family: "Playfair Display", serif;
	font-size: 18px;
	font-weight: 700;
	color: #000;
	line-height: 28px;
}
.contact-data a:hover {
	font-family: "Playfair Display", serif;
	font-size: 18px;
	font-weight: 700;
	color: #68982a;
}
.contact-data a.external-link {
	font-family: "Archivo", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #68982a;
}
.contact-data span {
	font-family: "Archivo", sans-serif;
	font-size: 16px;
	font-weight: 400;
}
.contact-icon {
	width: 45px;
}
.contact-pos {
	border-bottom:1px solid #e8e8e8;
}
.contact-pos:last-of-type {
	border-bottom:0;
}
.floor::before,
.areas-details::before {
	content: "";
	position: absolute;
	height:60px;
	width: 2px;
	background-color: #68982a;
	top:-10px;
	left: 20px;
}
.room-area-details {
	padding-top:15px;
	padding-bottom:15px;
	border-bottom: 1px solid #e8e8e8;
}
.room-area-details div {
	font-weight: 700;
}
.room-area-details div span {
	font-size: 15px;
	font-weight: 400;
}
.room-area-details.legend {
	font-size: 13px;
	border-bottom: 0;
}
#error-404 {
	background-image: url(../img/bg-sygnet-half.webp);
	background-repeat: no-repeat;
	background-position: top right;
}
/* ============================================= */
/* 6. Responsive fixes                           */
/* ============================================= */

@media only screen and (max-width : 1150px) {
	.slider-container .slider-controls {
		margin: 0;
	    padding: 0;
	    list-style: none;
	    position: absolute;   
	    top: 50%;
	    transform: translatey(-50%);
	    display: flex;
	    align-items: center;    
	    justify-content: space-between;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) { 

	.fixed-top.navbar-light .navbar-nav .nav-link {
		padding-top:8px;
		padding-bottom:8px;
	}
	.navbar-nav .nav-link {
		padding-top:10px;
		padding-bottom:10px;
	}
	.navbar {
		padding-top:8px !important;
		padding-bottom:8px !important;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	/* WP image float fix */
	figure.alignleft, img.alignleft, figure.alignright, img.alignright {
		float:none;
	}
	/* /WP image float fix */

} 

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
}


/* Height */
@media only screen and (max-height : 730px) {
}