#apartments-wrapper {
padding: 30px 40px;
box-shadow: 0 20px 50px rgba(0,0,0,.1);
border-radius: 10px;
background: white;
}
#apartments-wrapper .intro {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
#apartments-wrapper .intro h2 {
font-size: 48px;
line-height: 1;
margin-bottom: 0;
}
#apartments-wrapper .intro .stats > span {
font-size: 16px;
font-weight: 600;
padding: 8px 16px;
line-height: 1;
display: inline-block;
margin-left: 24px;
border-radius: 10px;
}
#apartments-wrapper .intro .stats > span.available {
background-color: rgba(36,124,76,.15);
color: rgb(36,124,76);
}
#apartments-wrapper .intro .stats > span.reserved {
background-color: rgba(222,196,5,.1);
color: rgb(222,196,5);
}
#apartments-wrapper .intro .stats > span.sold {
background-color: rgba(45,41,44,.1);
color: rgb(45,41,44);
}
#apartments-wrapper .filters {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 30px;
}
#apartments-wrapper .filter {
width: calc(25% - 10px);
min-width: 300px;
margin-bottom: 20px;
padding-right: 10px;
}
#apartments-wrapper .filter > span, #apartments-wrapper .filter_long > span {
display: block;
font-size: 16px;
font-weight: 600;
margin-bottom: 4px;
}
#apartments-wrapper .filter .inputs_wrap {
display: flex;
}
#apartments-wrapper .filter .inputs_wrap input[type="number"] {
width: 150px;
max-width: calc(50% - 7px);
font-size: 16px;
font-weight: 600;
padding: 8px 16px;;
box-shadow: none;
text-align: center;
border: 1px solid #247C4D;
border-radius: 10px;
}
#apartments-wrapper .filter .inputs_wrap input[type="number"]:first-of-type {
margin-right: 14px;
}
#apartments-wrapper .filter .inputs_wrap input[type="number"]::placeholder {
color: #91BDA5;
}
#apartments-wrapper input[type="checkbox"] , #apartments-wrapper input[type="radio"] {
display: none;
}
#apartments-wrapper input[type="checkbox"] + label, #apartments-wrapper input[type="radio"] + label {
font-size: 16px;
font-weight: 600;
line-height: 1;
padding: 8px 14px;
border: 1px solid #247C4D;
color: #247C4D;
border-radius: 10px;
user-select: none;
display: inline-block;
cursor: pointer;
margin-right: 10px;
min-width: 40px;
text-align: center;
margin-bottom: 10px;
}
#apartments-wrapper input[type="checkbox"]:checked + label , #apartments-wrapper input[type="radio"]:checked + label {
background: #247C4D;
color: white;
}
#apartments-wrapper input#codevly_sale:checked + label {
background: #dc3232;
border-color: #dc3232;
}
#apartments-wrapper button#filter_now, #apartments-wrapper button#clear_now {
padding: 12px 16px;
font-size: 16px;
font-weight: 600;
border: 1px solid #247C4D;
}
#apartments-wrapper .buttons {
align-self: flex-end;
margin-left: auto;
}
#apartments-wrapper .buttons button {
margin-bottom: 10px;
}
#apartments-wrapper button#clear_now {
margin-right: 14px;
color: #247C4D;
background: white;
}
#apartments-wrapper .table-wrap {
height: 350px;
overflow: auto;
border-radius: 10px;
}
#apartments-wrapper table th {
background: #E8F2ED;
padding: 16px;
font-weight: 600;
position: sticky;
top: 0;
z-index: 5;
cursor: pointer;
user-select: none;
}
#apartments-wrapper table th.no-events {
pointer-events: none;
cursor: default;
}
#apartments-wrapper table th::before {
content: '';
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #E8F2ED;
display: block;
position: absolute;
z-index: -1;
}
#apartments-wrapper table th::after {
content: '';
width: 100%;
height: 20px;
top: calc(100% - 10px);
left: 0;
background: linear-gradient(180deg, white, white, rgba(255,255,255,0));;
display: block;
position: absolute;
z-index: -3;
}
#apartments-wrapper table th:first-of-type, #apartments-wrapper table td:first-of-type, #apartments-wrapper table th:first-of-type::before {
border-radius: 10px 0 0 10px;
}
#apartments-wrapper table th:last-of-type, #apartments-wrapper table td:last-of-type, #apartments-wrapper table th:last-of-type::before {
border-radius: 0 10px 10px 0;
}
#apartments-wrapper table {
border-collapse: collapse;
}
#apartments-wrapper table td {
text-align: center;
padding: 12px 16px;
}
#apartments-wrapper table td img {
vertical-align: middle;
}
#apartments-wrapper table tr:hover td {
background: #F3F8F6;
}
#apartments-wrapper table tr td.sale > div {
position: relative;
display: inline-block;
}
#apartments-wrapper table tr td.sale > div::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
min-width: 100%;
width: 30px;
padding: 2px 5px;
min-height: 30px;
z-index: 1;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
border-radius: 20px;
border: 1px solid #247C4C;
}
#apartments-wrapper table tr td.sale > div > span {
z-index: 2;
position: relative;
padding: 4px 8px;
display: inline-block;
min-width: 32px;
}
#apartments-wrapper table tbody:before {
content:"@";
display:block;
line-height:10px;
text-indent:-99999px;
}
#apartments-wrapper .contact-now {
cursor: pointer;
}
.overlay-form {
visibility: hidden;
opacity: 0;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0,0,0,.4);
pointer-events: none;
transition: .3s;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.overlay-form.open {
visibility: visible;
opacity: 1;
pointer-events: all;
}
.overlay-form .form-wrap  {
background: #F3F4F7;
box-shadow: 0 5px 30px rgba(0,0,0,.3);
max-width: 950px;
width: 100%;
padding: 40px 60px;
border-radius: 10px;
position: relative;
max-height: 100%;
position: relative;
overflow: auto;
}
.overlay-form .form-wrap .wpcf7  {
margin: 0;
}
.overlay-form .wpcf7 input[type="text"], .overlay-form .wpcf7 input[type="email"], .overlay-form .wpcf7 input[type="tel"], .overlay-form .wpcf7 textarea {
padding: 20px 24px;
background: white;
box-shadow: none;
font-size: 18px;
}
.overlay-form .wpcf7 textarea {
max-width: 100%;
resize: none;
}
.overlay-form .wpcf7-form-control-wrap:not(.your-message):not(.acceptance) {
margin-bottom: 30px;
display: block;
}
.overlay-form .wpcf7-submit {
margin-top: 0;
font-size: 18px;
padding: 12px 30px;
font-weight: 600;
}
.overlay-form .col-two {
display: flex;
}
.overlay-form div.wpcf7-response-output {
font-size: 14px;
}
.overlay-form span.wpcf7-list-item {
margin-top: 0;
margin-left: 0;
margin-top: 10px;
margin-bottom: 20px;
}
.overlay-form h4 {
text-align: center;
font-size: 32px;
font-weight: 600;
margin: 0;
margin-bottom: 16px;
}
.overlay-form .center-send {
text-align: center;
}
.overlay-form .col-two .wpcf7-form-control-wrap {
width: calc(50% - 12px);
}
.overlay-form .col-two .wpcf7-form-control-wrap:first-of-type {
margin-right: 24px;
}
.overlay-form .close {
position: absolute;
top: 12px;
right: 12px;
display: flex;
transition: .3s;
cursor: pointer;
}
.overlay-form .close:hover {
transform: rotate(180deg) scale(1.1);
}
@media only screen and (max-width: 1200px) {
#apartments-wrapper .intro h2 {
font-size: 36px;
}
}
@media only screen and (max-width: 1000px) {
#apartments-wrapper {
padding: 20px;
}
#apartments-wrapper .buttons {
margin-top: 20px;
}
#apartments-wrapper .intro {
flex-direction: column;
align-items: flex-start;
margin-bottom: 20px;
}
#apartments-wrapper .intro h2 {
margin-bottom: 20px;
}
#apartments-wrapper .intro .stats > span {
margin-left: 0;
margin-right: 24px;
margin-bottom: 10px;
}
}
@media only screen and (max-width: 700px) {
#apartments-wrapper .buttons button {
width: calc(50% - 10px);
min-width: 210px;
}
#apartments-wrapper .buttons {
margin-left: unset;
width: 100%;
}
}
@media only screen and (max-width: 500px) {
#apartments-wrapper .buttons button {
width: 100%;
margin-right: 0;
}
#apartments-wrapper .intro .stats > span {
text-align: center;
margin-right: 0;
width: 100%;
}
}
#apartments-wrapper  .notice {
font-size: 12px;
line-height: 1.2;
margin-top: 30px;
padding: 10px 20px;
border-radius: 12px;
background: #237d4c;
color: white;
font-weight: 500;
}html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
}  main {
display: block;
} h1 {
font-size: 2em;
margin: 0.67em 0;
}  hr {
box-sizing: content-box;
height: 0;
overflow: visible;
} pre {
font-family: monospace, monospace;
font-size: 1em;
}  a {
background-color: transparent;
} abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
} b,
strong {
font-weight: bolder;
} code,
kbd,
samp {
font-family: "Montserrat", sans-serif;
font-size: 1em;
} small {
font-size: 80%;
} sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}  img {
border-style: none;
}  button,
input,
optgroup,
select,
textarea {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
} button,
input {
overflow: visible;
} button,
select {
text-transform: none;
} button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
} button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
} button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
} fieldset {
padding: 0.35em 0.75em 0.625em;
} legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
} progress {
vertical-align: baseline;
} textarea {
overflow: auto;
} [type="checkbox"],
[type="radio"] {
box-sizing: border-box;
padding: 0;
} [type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
} [type="search"] {
-webkit-appearance: textfield;
outline-offset: -2px;
} [type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
} ::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}  details {
display: block;
} summary {
display: list-item;
}  template {
display: none;
} [hidden] {
display: none;
} body,
button,
input,
select,
optgroup,
textarea {
color: #2d292c;
font-family: "Montserrat", sans-serif;
font-size: calc(16 * 1px);
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
clear: both;
font-weight: 600;
}
p {
margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
font-style: italic;
}
blockquote {
margin: 0 1.5em;
}
address {
margin: 0 0 1.5em;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", courier, monospace;
font-size: 1em;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
code,
kbd,
tt,
var {
font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 0.9375px;
}
abbr,
acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark,
ins {
background: #fff9c0;
text-decoration: none;
}
big {
font-size: 125%;
}  *,
*::before,
*::after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
}
body {
background: #fff;
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
ul,
ol {
margin: 0 0 1.5em 3em;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 1.5em;
}
dt {
font-weight: 700;
}
dd {
margin: 0 1.5em 1.5em;
}
img {
height: auto;
max-width: 100%;
}
figure {
margin: 1em 0;
}
table {
margin: 0 0 1.5em;
width: 100%;
} button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border: none;
border-radius: 10px;
background: #247c4c;
color: white;
font-size: 18px;
line-height: 1;
text-align: center;
padding: 24px 50px;
transition: 0.3s;
outline: none !important;
cursor: pointer;
font-weight: 800;
text-transform: uppercase;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
color: #151d41;
border: none;
border-radius: 10px;
padding: 30px;
font-size: 18px;
font-weight: 300;
outline: none !important;
width: 100%;
background-color: white;
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
line-height: 1;
}
::placeholder {
color: rgba(21, 29, 65, 0.6) !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}
select {
border: 1px solid #ccc;
}
textarea {
width: 100%;
}  a {
text-decoration: none;
font-weight: 500;
color: inherit;
}
a:focus {
outline: none;
}
a:hover,
a:active {
outline: 0;
color: inherit;
} .main-navigation {
display: flex;
align-items: center;
}
.main-navigation ul {
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation ul ul {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
border-radius: 10px;
background: white;
float: left;
position: absolute;
display: block;
left: 50%;
transform: translateX(-50%);
top: 100%;
z-index: 99999;
color: black;
text-align: center;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: 0.3s;
}
.main-navigation ul ul li a {
color: #2d292c !important;
font-weight: 400;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
opacity: 1;
visibility: visible;
pointer-events: unset;
}
.main-navigation ul ul a {
width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
opacity: 1;
visibility: visible;
pointer-events: unset;
}
.main-navigation li {
position: relative;
display: inline-block;
}
.main-navigation a {
display: block;
text-decoration: none;
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
text-align: end;
flex: 1 0 50%;
}  .screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
clip-path: none;
color: #21759b;
display: block;
font-size: 0.875px;
font-weight: 700;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
} #primary[tabindex="-1"]:focus {
outline: 0;
} .alignleft {
float: left;
margin-right: 1.5em;
margin-bottom: 1.5em;
}
.alignright {
float: right;
margin-left: 1.5em;
margin-bottom: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 1.5em;
} .widget {
margin: 0 0 1.5em;
}
.widget select {
max-width: 100%;
}  .sticky {
display: block;
}
.post,
.page {
margin: 0;
}
.updated:not(.published) {
display: none;
}
.page-content,
.entry-content,
.entry-summary {
margin: 0;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
} .comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}  .infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
display: none;
} .infinity-end.neverending .site-footer {
display: block;
} .page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
} embed,
iframe,
object {
max-width: 100%;
} .custom-logo-link {
display: inline-block;
} .wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
.wp-caption-text {
text-align: center;
} .gallery {
margin-bottom: 1.5em;
display: grid;
grid-gap: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
width: 100%;
}
.gallery-columns-2 {
grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
display: block;
}
:root {
font-size: calc(100vw / 1920);
}
@media only screen and (max-width: 1540px) {
:root {
font-size: 0.8px;
}
}
@media only screen and (min-width: 1920px) {
:root {
font-size: 1px;
}
}
.button {
font-size: 16px;
font-weight: 800;
line-height: 1;
padding: 16px 20px;
display: inline-block;
background: #247c4c;
border-radius: 10px;
color: white;
text-decoration: none;
margin-right: 10px;
transition: 0.3s;
border: 2px solid #247c4c;
}
.button-alt {
font-size: 16px;
font-weight: 800;
line-height: 1;
padding: 16px 20px;
display: inline-block;
background: transparent;
border-radius: 10px;
color: #247c4c;
text-decoration: none;
margin-right: 10px;
border: 2px solid #247c4c;
transition: 0.3s;
}
.button-alt:hover {
background: #247c4c;
color: white;
}
.button:hover {
background: transparent;
border-radius: 10px;
color: #247c4c;
text-decoration: none;
margin-right: 10px;
border: 2px solid #247c4c;
}
body {
font-size: 16px;
margin: 0;
background: #fff;
}
.container {
max-width: 1640px;
padding: 0 40px;
margin: auto;
font-size: 16px;
}
.alignwide,
.alignfull > .wp-block-group__inner-container {
max-width: 1640px;
padding: 0 40px;
margin: auto;
}
.container.short {
max-width: 1240px;
font-size: 18px;
}
.container.short a {
color: #247c4c;
}
.container.short img {
border-radius: 10px;
}
.post-thumbnail img {
border-radius: 10px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
margin-bottom: 60px;
width: 100%;
}
header#masthead {
margin: 24px 0;
position: sticky;
top: -1px;
z-index: 999;
background: white;
transition: 0.3s;
}
.page-template-home-template header#masthead,
.single-investments header#masthead {
background: none;
}
header#masthead.sticky {
box-shadow: 0 2px 6px rgba(118, 130, 183, 0.18);
background: white;
}
header#masthead .container {
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
}
header#masthead .container li a {
font-size: 16px;
color: #2d292c;
text-decoration: none;
text-transform: uppercase;
margin-right: 14px;
font-weight: 500;
padding: 8px 12px;
display: inline-block;
border: none;
transition: 0.3s;
}
.page-template-home-template header#masthead .container li.current-menu-item a,
.page-template-home-template header#masthead .container li a,
.page-template-home-template header#masthead .container li a:hover,
.single-investments header#masthead .container li.current-menu-item a,
.single-investments header#masthead .container li a,
.single-investments header#masthead .container li a:hover {
color: white;
}
.page-template-home-template header#masthead.sticky .container li a,
.single-investments header#masthead.sticky .container li a {
color: #2d292c;
}
header#masthead .container li.current-menu-item a,
header#masthead .container li a:hover {
color: #247c4c;
}
.page-template-home-template header#masthead.sticky .container li.current-menu-item a,
header#masthead.sticky .container li a:hover {
color: #2d292c;
}
.page-template-home-template header#masthead.sticky .container li.current-menu-item a,
header#masthead.sticky .container li a:hover {
color: #247c4c;
}
header .site-branding img {
width: calc(100px);
}
header .site-branding a {
display: flex;
}
header a.language {
margin-left: 26px;
display: flex;
}
header a.language img {
width: 30px;
height: auto;
}
.page-template-kontakt-template #primary {
background: #f4f5f7;
}
#intro {
background: none;
margin-top: calc(-64px - 48px);
position: relative;
overflow: hidden;
background-size: cover;
}
#intro::after {
content: "";
display: block;
width: calc(100% + 150px);
height: 450px;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
position: absolute;
z-index: 10;
transform: rotate(10deg);
top: -300px;
left: 0;
}
#intro .swiper-slide {
background-position: center;
background-size: cover;
}
#intro .container {
min-height: fill-avaliable;
min-height: 100vh;
display: flex;
align-items: flex-end;
justify-content: flex-start;
padding-bottom: 90px;
box-sizing: border-box;
}
.single-investments #intro .container {
padding-bottom: 80px;
justify-content: center;
}
.single-investments .entry-header {
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
padding: 30px 40px;
box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.16);
}
.additional-info-bar {
background-color: #247c4c;
padding: 60px;
color: white;
}
.additional-info-bar .container {
display: flex;
}
.additional-info-bar .container .column {
width: calc(100% / 3);
text-align: center;
}
.additional-info-bar .container .column span {
display: block;
font-size: 30px;
font-weight: 600;
}
.single-investments .entry-header h1 {
color: #2d292c;
margin: 0;
}
.single-investments .entry-header p.subtitle {
color: #247c4c;
margin: 0;
margin-top: 12px;
font-size: 24px;
font-weight: 500;
}
#intro .container .blog-box {
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.16);
padding: 30px 40px;
padding-right: 100px;
max-width: 800px;
}
#intro .container .blog-box h3 {
margin: 0 0 8px 0;
font-size: 48px;
color: #2d292c;
line-height: 1.1;
font-weight: 600;
}
#intro .container .blog-box .blog-box-content {
font-size: 20px;
font-weight: 500;
color: #2d292c;
margin-bottom: 12px;
}
#intro .container .blog-box a.button {
color: white;
background: #247c4c;
padding: 16px 20px;
border-radius: 10px;
text-decoration: none;
display: inline-block;
font-weight: 700;
}
#intro .swiper-pagination {
text-align: right;
padding: 0 20px;
}
#intro .swiper-pagination .swiper-pagination-bullet {
width: 15px;
height: 15px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.7);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
transition: 0.2s;
outline: none;
}
#intro .swiper-pagination .swiper-pagination-bullet-active {
background: rgba(255, 255, 255, 1);
}
#features {
padding: 120px 0 150px 0;
background-color: #f3f4f7;
}
header.title h2 {
font-size: 48px;
font-weight: 600;
color: #2d292c;
margin: 0;
margin-top: 4px;
line-height: 1;
}
p.short-description {
color: #247c4c;
font-size: 20px;
line-height: 1.5;
font-weight: 500;
max-width: 1300px;
}
header.title h5 {
font-size: 18px;
font-weight: 500;
color: #247c4c;
margin: 0;
line-height: 1;
}
.center {
text-align: center;
}
.boxes {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: stretch;
margin-top: 64px;
}
.boxes .box {
width: calc((100% - (2 * 60px)) / 3);
background: white;
margin-top: 16px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
padding: 40px 30px;
border-radius: 10px;
text-align: left;
}
.boxes .box > span.material-icons {
color: #247c4c;
font-size: 90px;
margin-bottom: 12px;
display: block;
}
.boxes .box h6 {
color: #247c4c;
font-size: 34px;
font-weight: 600;
margin: 0;
margin-bottom: 20px;
}
.boxes .box p {
color: #2d292c;
font-size: 18px;
font-weight: 500;
margin: 0;
} .banner {
background-position: center;
background-size: cover;
background-attachment: fixed;
padding: 75px 0;
text-align: center;
color: white;
}
@supports (-webkit-overflow-scrolling: touch) {
.banner {
background-attachment: scroll;
}
}
@media (prefers-reduced-motion: reduce) {
.banner {
background-attachment: scroll;
}
}
.banner h5 {
font-size: 18px;
font-weight: 400;
margin: 0;
text-shadow: 0 0 20px #2d292c;
}
.banner h4 {
font-size: 36px;
font-weight: 600;
margin: 0;
margin-top: 12px;
text-shadow: 0 0 20px #2d292c;
} .ribbon {
background: #247c4c;
padding: 70px 30px;
color: white;
}
.ribbon h3 {
margin: 0;
text-align: center;
font-weight: 600;
font-size: 48px;
}
.ribbon h3 a {
color: white;
text-decoration: none;
display: inline-block;
font-weight: 600;
}
#investments {
padding: 120px 0 150px 0;
}
.investments-posts {
background-color: #f4f5f7;
padding: 60px 0 60px 0;
}
.investments-section {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.investments-section .investment-box {
width: calc((100% - 60px) / 2);
margin-top: 60px;
min-height: 200px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
position: relative;
background-position: center;
background-size: cover;
}
.investments-section .investment-box img {
display: block;
height: 26vw;
width: 100%;
object-fit: cover;
}
.investments-section .investment-box .investment-description {
position: absolute;
bottom: 0;
left: 0;
padding: 20px 60px 20px 20px;
border-radius: 0 50px 0 10px;
background: #f3f4f7;
max-width: 85%;
}
.investments-section .investment-box .investment-description h4.title {
margin: 0;
color: #247c4c;
font-size: 32px;
}
.investments-section .investment-box .investment-description div.text {
font-size: 20px;
line-height: 1.5;
}
.investments-section .investment-box {
position: relative;
}
.investments-section .investment-box a.permalink-absolute {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#realized {
background-color: #f3f4f7;
padding: 100px 0 120px 0;
overflow: hidden;
}
.swiper-container {
overflow: visible;
align-items: stretch;
padding-top: 80px;
}
.swiper-slide.review {
height: unset;
}
.realized-investment {
background: white;
box-shadow: 0 20px 20px rgba(118, 130, 183, 0.18);
border-radius: 20px;
box-sizing: border-box;
position: relative;
padding-bottom: 30%;
overflow: hidden;
}
.realized-investment img {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
} .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
position: relative;
top: 50px;
}
.swiper-pagination-bullet-active {
background-color: #247c4c;
}
.swiper-pagination-bullet {
opacity: 0.5;
}
.swiper-pagination-bullet-active {
opacity: 1;
} footer .site-info {
padding-top: 100px;
}
footer .footer-boxes {
display: flex;
}
footer .footer-boxes > div.box {
width: calc(100% / 4);
font-size: 16px;
}
footer .footer-boxes > div.box h5 {
font-weight: bold;
margin: 0;
margin-bottom: 22px;
font-size: 16px;
}
footer .footer-boxes > div.box address {
font-style: normal;
}
footer .footer-boxes > div.box ul {
list-style-type: none;
padding: 0;
margin: 0;
}
footer .footer-boxes > div.box .line {
display: flex;
align-items: center;
margin-bottom: 20px;
}
footer .footer-boxes > div.box .line a {
padding-bottom: 0;
}
footer .footer-boxes > div.box .line i.material-icons {
display: block;
width: 24px;
margin-right: 8px;
color: #247c4c;
}
footer .footer-boxes > div.box.info address span {
display: block;
margin-bottom: 20px;
}
footer .footer-boxes > div.box a {
text-decoration: none;
color: #2d292c;
padding-bottom: 20px;
display: inline-block;
font-weight: 400;
}
footer .footer-boxes > div.box a:hover {
color: #247c4c;
}
footer .footer-boxes > div.box a i {
margin-right: 8px;
}
footer .end-box {
display: flex;
justify-content: space-between;
padding-top: 50px;
padding-bottom: 50px;
}
footer .end-box a {
text-decoration: none;
color: #2d292c;
}
#social-media li a {
display: flex;
align-items: center;
}
#social-media li img {
width: 20px;
height: auto;
margin-right: 8px;
} .entry-header h1 {
color: white;
font-size: 48px;
font-weight: 600;
margin: 0 auto;
z-index: 2;
position: relative;
}
.entry-header {
position: relative;
text-align: center;
padding: 70px 0;
background: #247c4c;
}
.entry-header span.date {
color: white;
font-weight: 500;
font-size: 18px;
}
.entry-content {
padding-top: 60px;
padding-bottom: 60px;
}
.page-element {
margin-bottom: 60px;
}
.page-element h2 {
font-size: 48px;
font-weight: 600;
margin: 2px 0 16px 0;
}
.page-element div.content {
font-weight: 400;
font-size: 28px;
line-height: 48px;
}
.offers-wrap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.offers-wrap header {
width: 100%;
}
.offers-wrap h5,
.offers-wrap .page-element {
width: 100%;
}
.offers-wrap .box-offer {
width: calc(100% / 2 - 20px);
min-height: 30vw;
background-position: center;
background-size: cover;
margin: 20px 0;
padding: 30px;
display: flex;
justify-content: flex-start;
align-items: flex-end;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.offers-wrap .box-offer .description {
background: white;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
border-radius: 20px;
padding: 20px 30px;
min-width: 350px;
}
.offers-wrap .box-offer .description h4 {
margin: 0;
font-size: 28px;
color: #247c4c;
margin-bottom: 4px;
font-weight: 500;
}
.offers-wrap .box-offer .description p.info {
margin: 0;
font-size: 22px;
}
.offers-wrap .box-offer .description span.price {
margin: 0;
font-size: 22px;
opacity: 0.6;
}
#adres {
background-color: #f3f4f7;
padding: 60px 0 120px 0;
}
.two-col-form {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.wpcf7 .two-col-form > p {
width: calc(100% / 2 - 25px);
margin: 0;
margin-bottom: 50px;
}
.two-col-form > p span {
display: block;
}
.wpcf7 {
margin-top: 60px;
}
.wpcf7 p {
margin: 0;
}
div.wpcf7 .ajax-loader {
display: none !important;
}
div.language {
position: relative;
display: flex;
}
div.language > .lang-item,
div.language > .lang-item a {
opacity: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.container.smaller {
max-width: 1360px;
}
.wpcf7-submit {
margin-top: 50px;
}
div.contact-wrap {
display: flex;
justify-content: space-between;
margin-top: 60px;
}
span.wpcf7-not-valid-tip {
font-size: 12px;
margin-top: 4px;
}
div.contact-wrap .info-box {
width: calc(40%);
background: white;
padding: 100px 80px;
border-radius: 10px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
div.contact-wrap .info-box i {
color: #247c4c;
font-size: 30px;
display: block;
margin-right: 18px;
padding-top: 4rem;
}
div.contact-wrap .info-box a {
color: inherit;
font-style: normal;
text-decoration: none;
}
div.contact-wrap .info-box p {
font-style: normal;
text-decoration: none;
font-size: 20px;
margin: 0;
display: flex;
line-height: 1.6;
}
div.contact-wrap .info-box p:not(:last-of-type) {
margin-bottom: 24px;
}
div.contact-wrap .info-box p a {
font-weight: 400;
}
div.contact-wrap .map {
width: calc(60% - 40px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
border-radius: 10px;
overflow: hidden;
background: #efeeec;
}
div.contact-wrap .map .wpgmza_map {
height: 100% !important;
}
div.wpcf7-response-output {
border: none !important;
text-align: center;
border-radius: 100px;
margin: auto;
padding: 10px;
background: rgba(127, 180, 0, 0.1);
font-weight: 500;
margin-top: 30px;
}
.admin-menu {
position: fixed;
bottom: 0;
left: 0;
z-index: 99;
padding: 12px;
}
.admin-menu a {
color: white;
background: #2d292c;
display: inline-block;
padding: 6px 12px;
text-decoration: none;
border-radius: 20px;
margin-right: 5px;
font-size: 14px;
transition: 0.3s;
font-weight: 500;
opacity: 0.5;
}
.admin-menu a:hover {
opacity: 1;
}
.relative {
position: relative;
}
.edit-icon {
position: absolute;
bottom: 10px;
right: 10px;
background: #2d292c;
opacity: 0;
width: 30px;
height: 30px;
border-radius: 24px;
display: flex;
justify-content: center;
align-items: center;
font-size: 15px;
color: white;
text-decoration: none;
visibility: hidden;
transition: 0.3s;
}
.edit-icon i {
font-size: 20px;
}
.relative:hover > .edit-icon {
visibility: visible;
opacity: 0.5;
}
.relative:hover .edit-icon:hover {
opacity: 1;
color: white;
}
.section-edit {
position: absolute;
top: 12px;
right: 12px;
background: #2d292c;
opacity: 0;
transition: 0.3s;
color: white;
font-size: 12px;
text-decoration: none;
padding: 6px 12px;
border-radius: 20px;
}
.relative:hover .section-edit {
opacity: 0.5;
}
.relative:hover .section-edit:hover {
opacity: 1;
color: white;
}
header .menu-toggle {
display: none;
font-size: 28px;
cursor: pointer;
}
#site-navigation .menu-close {
display: none;
font-size: 28px;
position: absolute;
top: 30px;
right: 30px;
cursor: pointer;
}
.wpcf7-list-item > label {
z-index: 0;
position: relative;
display: inline-block;
color: rgba(0, 0, 0, 0.87);
font-size: 16px;
line-height: 1.5;
user-select: none;
}
span.wpcf7-list-item {
margin-top: 20px;
}
.send_mail {
text-align: center;
} .wpcf7-list-item > label > input {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
z-index: -1;
position: absolute;
left: -10px;
top: -8px;
display: block;
margin: 0;
border-radius: 50%;
width: 40px;
height: 40px;
background-color: rgba(0, 0, 0, 0.6);
box-shadow: none;
outline: none;
opacity: 0;
transform: scale(1);
pointer-events: none;
transition: opacity 0.3s, transform 0.2s;
} .wpcf7-list-item > label > span {
display: inline-block;
width: 100%;
cursor: pointer;
} .wpcf7-list-item > label > span::before {
content: "";
display: inline-block;
box-sizing: border-box;
margin: 3px 11px 3px 1px;
border: solid 2px; border-color: rgba(0, 0, 0, 0.6);
border-radius: 2px;
width: 18px;
height: 18px;
vertical-align: top;
transition: border-color 0.2s, background-color 0.2s;
} .wpcf7-list-item > label > span::after {
content: "";
display: block;
position: absolute;
top: 4px;
left: 2px;
width: 10px;
height: 5px;
border: solid 2px transparent;
border-right: none;
border-top: none;
transform: translate(3px, 4px) rotate(-45deg);
} .wpcf7-list-item > label > input:checked,
.wpcf7-list-item > label > input:indeterminate {
background-color: rgb(36, 124, 76);
}
.wpcf7-list-item > label > input:checked + span::before,
.wpcf7-list-item > label > input:indeterminate + span::before {
border-color: rgb(36, 124, 76);
background-color: rgb(36, 124, 76);
}
.wpcf7-list-item > label > input:checked + span::after,
.wpcf7-list-item > label > input:indeterminate + span::after {
border-color: rgb(255, 255, 255);
}
.wpcf7-list-item > label > input:indeterminate + span::after {
border-left: none;
transform: translate(4px, 3px);
} .wpcf7-list-item > label:hover > input {
opacity: 0.04;
}
.wpcf7-list-item > label > input:focus {
opacity: 0.12;
}
.wpcf7-list-item > label:hover > input:focus {
opacity: 0.16;
} .wpcf7-list-item > label > input:active {
opacity: 1;
transform: scale(0);
transition: transform 0s, opacity 0s;
}
.wpcf7-list-item > label > input:active + span::before {
border-color: rgb(36, 124, 76);
}
.wpcf7-list-item > label > input:checked:active + span::before {
border-color: transparent;
background-color: rgba(0, 0, 0, 0.6);
} .wpcf7-list-item > label > input:disabled {
opacity: 0;
}
.wpcf7-list-item > label > input:disabled + span {
color: rgba(0, 0, 0, 0.38);
cursor: initial;
}
.wpcf7-list-item > label > input:disabled + span::before {
border-color: currentColor;
}
.wpcf7-list-item > label > input:checked:disabled + span::before,
.wpcf7-list-item > label > input:indeterminate:disabled + span::before {
border-color: transparent;
background-color: currentColor;
}
#colophon {
background-color: #f3f4f7;
}
#partners {
margin: 120px 0 -60px 0;
}
.partners-boxes {
display: flex;
margin-top: 60px;
flex-wrap: wrap;
}
.partners-boxes .partner-box {
width: calc(100% / 5);
padding-bottom: calc(100% / 5);
border-radius: 200px;
background-image: url(https://csi-mieszkania.pl/wp-content/themes/csi-theme/images/circle.svg);
background-position: center;
background-size: contain;
background-repeat: no-repeat;
position: relative;
}
.partners-boxes .partner-box-none {
width: calc(100% / 5);
padding-bottom: calc(100% / 5);
pointer-events: none;
}
.partners-boxes .box-go-top {
position: relative;
}
.partners-boxes .box-go-top:last-of-type {
display: none !important;
}
.partners-boxes .box-go-top:nth-of-type(n + 6):not(:nth-of-type(n + 11)) {
transform: translateY(calc(-100% / 3));
}
.partners-boxes .box-go-top:nth-of-type(n + 11):not(:nth-of-type(n + 16)) {
transform: translateY(calc(-100% / 3 * 2));
}
.partners-boxes .partner-box img {
position: absolute;
top: 50%;
left: 50%;
width: 60%;
transform: translateX(-50%) translateY(-50%);
object-fit: contain;
max-height: 120px;
}
#trust-us {
background-color: #f3f4f7;
padding-top: 150px;
}
#trust-us .container {
display: flex;
}
#trust-us .container .image,
#trust-us .container .content {
width: 50%;
}
#trust-us .container .image {
align-self: flex-end;
}
#trust-us .container .content {
margin-bottom: 120px;
}
#trust-us .container .image img {
display: block;
transform-origin: right bottom;
transform: scale(1.2);
}
#trust-us .container .content h3 {
font-size: 40px;
margin: 0 0 24px 0;
}
#trust-us .container .content .text {
font-size: 20px;
font-weight: 500;
margin-bottom: 24px;
}
.blog-section {
padding: 120px 0 70px 0;
background: #f4f5f7;
}
.blog-section.small {
display: flex;
justify-content: space-between;
align-items: stretch;
padding: 0;
padding-top: 30px;
}
.blog-section.small article {
width: calc(50% - 15px);
margin-bottom: 0 !important;
}
.blog-section article {
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 40px 25px 25px;
background: white;
border-radius: 10px;
box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.16);
min-height: 300px;
}
.blog-section article:not(:last-of-type) {
margin-bottom: 40px;
}
.blog-section article .thumb-image {
width: 30%;
align-self: stretch;
position: relative;
}
.blog-section article .excerpt {
width: calc(70% - 25px);
}
.blog-section article .excerpt h4 {
font-weight: 600;
font-size: 42px;
margin: 0 0 12px 0;
line-height: 1;
}
.blog-section.small article .excerpt h4 {
font-size: 24px;
margin: 0 0 12px 0;
}
.blog-section article .excerpt .flex-wrap {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 24px;
}
.blog-section article .excerpt .flex-wrap span.date {
font-size: 18px;
font-weight: 400;
color: #707070;
}
.blog-section article .excerpt .text-excerpt {
font-weight: 500;
font-size: 20px;
}
.blog-section.small article .excerpt .text-excerpt {
font-size: 16px;
}
.blog-section article img {
display: block;
border-radius: 10px;
width: 100%;
height: 100%;
object-fit: cover;
}
#pagination {
text-align: center;
padding: 0;
margin: 70px 0 0 0;
display: flex;
align-items: center;
justify-content: center;
}
#pagination .next-prev,
#pagination > a {
display: flex;
margin: 0 5px;
}
#pagination .nav-links a,
#pagination .nav-links span {
height: 40px;
min-width: 40px;
line-height: 1;
display: inline-flex;
align-items: center;
justify-content: center;
background: white;
border-radius: 10px;
font-size: 20px;
font-weight: 400;
text-decoration: none;
color: #2d292c;
padding: 10px;
margin: 0 5px;
border: 2px solid white;
transition: 0.3s;
}
#pagination .nav-links .page-numbers.current {
border-color: #247c4c;
}
#pagination .nav-links a.page-numbers:hover {
border-color: #247c4c;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#pagination .next-prev img {
filter: grayscale(1);
opacity: 0.5;
}
.realized-section {
background: #f4f5f7;
padding: 80px 0 60px 0;
}
.realized-section .container {
display: flex;
justify-content: space-between;
align-items: stretch;
flex-wrap: wrap;
}
.realized-section .container > article {
width: calc(100% / 2 - 20px);
background-color: white;
padding: 25px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
margin-top: 40px;
}
.realized-section .container > article .thumb-image img {
width: 100%;
height: auto;
display: block;
border-radius: 10px;
}
.realized-section .container > article .thumb-image {
position: relative;
}
.realized-section .container > article .thumb-image .attributes {
position: absolute;
bottom: 15px;
left: 15px;
right: 15px;
}
.realized-section .container > article .thumb-image .attributes .attribute {
color: white;
font-size: 20px;
font-weight: 600;
line-height: 1;
padding: 12px 24px;
background-color: #247c4c;
border-radius: 5px;
margin-right: 12px;
display: inline-block;
margin-top: 10px;
user-select: none;
}
.banner-notice {
color: white;
font-size: 18px;
font-weight: 500;
line-height: 1;
padding: 12px 24px;
background-color: #247c4c;
border-radius: 10px;
display: inline-block;
user-select: none;
position: absolute;
top: 15px;
right: 15px;
}
#intro .banner-notice {
top: auto;
bottom: 20px;
right: 20px;
}
.realized-section .container > article h2 {
font-size: 36px;
font-weight: 600;
margin: 20px 0 0 0;
line-height: 1;
}
@media only screen and (max-width: 1480px) {
.realized-section .container > article .thumb-image .attributes .attribute {
font-size: 18px;
}
.investments-section .investment-box .investment-description h4.title {
font-size: 28px;
}
.investments-section .investment-box .investment-description div.text {
font-size: 16px;
}
#intro .container .blog-box h3 {
font-size: 42px;
}
.boxes .box h6 {
font-size: 28px;
}
}
@media only screen and (max-width: 1320px) {
.blog-section.small article .excerpt .text-excerpt {
font-size: 14px;
}
.blog-section article .thumb-image {
min-width: 200px;
margin-right: 20px;
}
.blog-section.small {
flex-direction: column;
}
.blog-section.small article {
width: 100%;
margin-top: 30px;
}
#trust-us .container .content h3 {
font-size: 28px;
}
#trust-us {
padding-top: 90px;
}
.swiper-container {
padding-top: 40px;
}
.boxes .box h6 {
font-size: 24px;
}
.boxes .box p {
font-size: 16px;
}
.boxes .box {
width: calc((100% - (2 * 30px)) / 3);
}
#intro .container .blog-box .blog-box-content {
font-size: 16px;
}
#intro .container .blog-box h3 {
font-size: 36px;
}
.realized-section .container > article .thumb-image .attributes .attribute {
font-size: 16px;
}
.realized-section .container > article h2 {
font-size: 28px;
}
.investments-section .investment-box .investment-description h4.title {
font-size: 24px;
}
.investments-section .investment-box .investment-description div.text {
font-size: 14px;
}
#intro .container .text h1 {
font-size: 55px;
}
#intro .container .text p {
font-size: 20px;
}
}
@media only screen and (max-width: 1200px) {
header.title h2 {
font-size: 36px;
}
p.short-description {
font-size: 18px;
}
.investments-section .investment-box {
width: calc((100% - 40px) / 2);
margin-top: 40px;
}
.boxes .box > i {
font-size: 38px;
width: 80px;
height: 80px;
}
.boxes .box h6 {
font-size: 28px;
}
.boxes .box p {
font-size: 18px;
}
article .entry-header h1 {
font-size: 60rem;
}
.entry-header h1 {
font-size: 42px;
}
#trust-us .container .content .text {
font-size: 18px;
}
header#masthead .container li a {
padding: 0;
}
}
@media only screen and (max-width: 1000px) {
header#masthead .container li a {
font-size: 14px;
}
.alignwide,
.alignfull > .wp-block-group__inner-container {
padding: 0 20px;
}
#intro .banner-notice {
right: 50%;
transform: translateX(50%);
text-align: center;
}
.banner-notice {
font-size: 14px;
}
.features-wrap h3 {
font-size: 20px !important;
}
.features-wrap .wp-block-column p {
font-size: 16px !important;
}
.blog-section article {
flex-direction: column;
padding: 25px;
}
.blog-section article .thumb-image {
width: 100%;
margin-right: 0;
}
.blog-section article .excerpt {
width: 100%;
margin-top: 30px;
}
.blog-section article .excerpt h4 {
font-size: 32px;
}
.blog-section article .excerpt .text-excerpt {
font-size: 18px;
}
footer .footer-boxes {
flex-wrap: wrap;
}
footer .footer-boxes > div.box {
width: 50%;
margin-top: 40px;
}
footer .site-info {
padding-top: 40px;
}
#trust-us .container .content h3 {
font-size: 24px;
}
#trust-us .container {
flex-direction: column-reverse;
}
#trust-us .container .image,
#trust-us .container .content {
width: 100%;
}
#trust-us .container .image img {
transform: none;
}
#trust-us .container .content {
margin-bottom: 20px;
}
.partners-boxes .partner-box-none {
display: none;
}
#partners {
margin-bottom: 50px;
}
.partners-boxes .partner-box {
transform: none !important;
width: calc((100% - 30px * 3) / 4);
margin-bottom: 60px;
padding-bottom: calc((100% - 30px * 3) / 4);
}
.partners-boxes {
align-items: center;
justify-content: space-between;
}
#intro .container .blog-box h3 {
font-size: 20px;
}
#intro .container .blog-box .blog-box-content {
font-size: 14px;
}
.investments-section .investment-box img {
height: auto;
}
.realized-section .container > article {
width: 100%;
}
.investments-section .investment-box {
width: 100%;
}
.images-wrapper a:last-of-type {
display: none;
}
.offers-wrap .box-offer {
width: 100%;
height: 60vw;
}
#intro .container .text h1 {
font-size: 40px;
}
#intro .container .text p {
font-size: 16px;
}
.boxes .box {
width: calc((100% - (2 * 16px)) / 3);
}
.images-wrapper a {
display: flex;
width: calc((100% - 40px) / 2);
}
.ribbon h3 {
font-size: 38px;
}
.container {
padding: 0 30px;
}
div.contact-wrap {
flex-wrap: wrap;
}
div.contact-wrap .info-box,
div.contact-wrap .map {
width: 100%;
}
div.contact-wrap .info-box {
padding: 30px;
}
div.contact-wrap .map {
margin-bottom: 50px;
}
div.contact-wrap .info-box p {
justify-content: center;
}
div.contact-wrap .map {
height: 400px;
}
.entry-content.container.smaller form {
padding-bottom: 50px;
}
}
@media only screen and (max-width: 840px) {
.page-template-home-template header#masthead .container li a {
color: black;
}
#trust-us .container .content .text {
font-size: 16px;
}
.realized-investment {
padding-bottom: 60%;
}
header .menu-toggle {
display: flex;
}
#site-navigation .menu-close {
display: block;
}
#site-navigation {
position: fixed;
background: white;
align-items: center;
width: 100%;
height: 100%;
top: 0;
left: -100%;
overflow: auto;
padding: 30px;
opacity: 0;
transition: transform 0.5s, opacity 0.6s;
flex-direction: column;
justify-content: center;
}
#site-navigation.open {
transform: translateX(100%);
opacity: 1;
}
header#masthead .container li a {
margin-right: 0;
}
.main-navigation li {
display: block;
padding: 20px 0;
text-align: center;
}
.main-navigation li a {
color: black !important;
}
header.title h2 {
font-size: 38px;
}
.boxes .box {
width: calc((100% - (1 * 16px)) / 2);
}
footer .footer-boxes {
flex-wrap: wrap;
}
footer .footer-boxes > div.box {
width: 50%;
}
footer .footer-boxes > div.box:first-of-type,
footer .footer-boxes > div.box:nth-of-type(2) {
margin-bottom: 30px;
}
.footer-boxes > div.box:nth-of-type(1) {
order: 4;
}
.footer-boxes > div.box:nth-of-type(2) {
order: 1;
}
.footer-boxes > div.box:nth-of-type(3) {
order: 2;
}
.footer-boxes > div.box:nth-of-type(4) {
order: 3;
}
.investments-section .investment-box .investment-description h4.title {
font-size: 18px;
}
.additional-info-bar .container .column span {
font-size: 20px;
}
.additional-info-bar {
padding: 30px;
}
}
@media only screen and (max-width: 780px) {
.features-wrap .wp-block-column {
flex-basis: 100% !important;
margin: 0;
margin-bottom: 30px;
}
.section-full-padding h2 {
font-size: 36px !important;
}
.features-wrap h2 + p.has-text-color {
font-size: 16px;
}
.wp-block-gallery.columns-3 .blocks-gallery-item {
width: 100% !important;
}
.layout-left .hotspots-interaction {
flex-direction: column !important;
}
.layout-left .hotspots-placeholder {
max-width: 100% !important;
width: 100%;
}
}
@media only screen and (max-width: 740px) {
.single-investments .entry-header h1 {
font-size: 24px;
}
.single-investments .entry-header p.subtitle {
font-size: 16px;
}
#intro .swiper-slide {
animation: bganimation 35s linear infinite;
}
.blog-section article .excerpt h4 {
font-size: 24px;
}
.blog-section article .excerpt .text-excerpt {
font-size: 16px;
}
.blog-section article .excerpt .flex-wrap span.date {
font-size: 16px;
}
.partners-boxes .partner-box {
transform: none !important;
width: calc((100% - 30px * 2) / 3);
margin-bottom: 30px;
padding-bottom: calc((100% - 30px * 2) / 3);
}
p.short-description {
font-size: 14px;
}
#intro .container .blog-box h3 {
font-size: 18px;
}
#intro .container .blog-box .blog-box-content {
font-size: 12px;
}
.button {
font-size: 14px;
}
.realized-section .container > article .thumb-image .attributes .attribute {
font-size: 12px;
padding: 6px 12px;
}
.investments-section .investment-box .investment-description div.text {
display: none;
}
.page-element div.content,
.two-box .text,
.two-box p {
font-size: 18px !important;
line-height: 1.8;
}
.page-element h2,
.two-box h2 {
font-size: 38px;
}
article .entry-header h1 {
font-size: 40rem;
}
#intro .container {
flex-wrap: wrap;
}
#intro .container .text,
#intro .container .image {
width: 100%;
margin-bottom: 40px;
}
#intro .container .image {
transform: translateX(-20px);
}
header .site-branding img {
height: 60px;
object-position: left;
object-fit: contain;
}
.banner h4 {
font-size: 28px;
}
.container {
padding: 0 20px;
}
}
@media only screen and (max-width: 540px) {
.additional-info-bar .container {
flex-direction: column;
}
.additional-info-bar .container .column {
margin: 20px 0;
width: 100%;
}
.realized-section .container > article .thumb-image .attributes .attribute .prefix {
display: none;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
font-size: 14px;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
padding: 20px;
}
.wpcf7 .two-col-form > p {
margin-bottom: 30px;
}
div.contact-wrap .info-box p {
justify-content: unset;
}
.blog-section article .excerpt .flex-wrap span.date,
.blog-section article .excerpt .text-excerpt {
font-size: 14px;
}
.blog-section article .excerpt h4 {
font-size: 20px;
}
article .button {
font-size: 12px;
}
footer .footer-boxes > div.box {
width: 100%;
}
.footer-boxes > div.box:nth-of-type(1) {
display: none;
}
.partners-boxes .partner-box {
transform: none !important;
width: calc((100% - 30px) / 2);
padding-bottom: calc((100% - 30px) / 2);
margin-bottom: 30px;
}
.boxes .box {
width: 100%;
}
.images-wrapper a {
display: flex;
width: 100%;
}
.ribbon h3 {
font-size: 28px;
}
article .entry-header h1 {
font-size: 36rem;
}
.wpcf7 .two-col-form > p {
width: 100%;
}
}
@media only screen and (max-width: 480px) {
.footer-boxes > div.box:nth-of-type(1) {
display: none;
}
.prywatnosc {
display: none;
}
}
@media only screen and (max-width: 400px) {
footer .footer-boxes > div.box {
width: 100%;
}
}
.fa,
.far,
.fas {
font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
}
.two-box .text {
font-weight: 400;
font-size: 28px;
line-height: 48px;
}
@media only screen and (max-width: 1420px) {
.two-box.left .image {
margin-right: 30px;
}
.two-box.right .image {
margin-left: 30px;
}
}
@media only screen and (max-width: 1200px) {
.page-element div.content,
.two-box .text {
font-size: 24px;
}
}
@media only screen and (max-width: 1000px) {
.page-element div.content,
.two-box .text {
font-size: 20px;
}
}
@media only screen and (max-width: 900px) {
.two-box > div {
width: 100%;
}
.two-box {
flex-wrap: wrap;
}
.two-box.right {
flex-direction: column-reverse;
}
.two-box.left .image {
margin-right: 0px;
padding: 30px;
}
.two-box.right .image {
margin-left: 0px;
padding: 30px;
}
.two-box:not(:last-of-type) {
margin-bottom: 60px;
}
article .entry-content {
padding-top: 80px;
padding-bottom: 80px;
}
.offers-wrap .box-offer .description {
padding: 15px;
}
.offers-wrap .box-offer .description h4 {
font-size: 16px;
margin-bottom: 0;
}
.offers-wrap .box-offer .description p.info,
.offers-wrap .box-offer .description span.price {
font-size: 14px;
}
.offers-wrap .box-offer .description {
min-width: unset;
}
.offers-wrap .box-offer {
padding: 10px;
}
}
article .entry-header {
background-size: cover;
}
.hotspots-placeholder {
background: transparent !important;
border: none !important;
}
.hotspot-title {
font-size: 18px;
padding: calc(15 / 16 * 16px) !important;
line-height: 1;
display: inline-block;
border: none;
background-color: #247c4c;
color: white !important;
font-weight: 600;
border-radius: calc(50 / 16 * 16px);
outline: none !important;
transition: 0.3s;
opacity: 0.6;
margin-right: calc(10 / 16 * 16px);
margin-bottom: calc(10 / 16 * 16px);
cursor: pointer;
}
.hotspot-title.option1,
.hotspot-title-long.option1 {
background-color: #247c4c;
}
.hotspot-title.option2,
.hotspot-title-long.option2 {
background-color: #dec405;
}
.hotspot-title.option3,
.hotspot-title-long.option3 {
background-color: #717171;
}
.hotspot-title.option4,
.hotspot-title-long.option4 {
background-color: black;
}
.hotspot-title.active,
.hotspot-title:hover {
opacity: 1;
}
.hotspots-placeholder .hotspot-info {
display: none;
visibility: hidden;
opacity: 0;
transition: 0.3s;
}
.hotspots-placeholder .hotspot-info.active {
display: block;
visibility: visible;
opacity: 1;
}
.hotspot-info {
margin-top: calc(26 / 16 * 16px);
color: #202126;
}
.hotspot-info > div {
font-weight: 600;
font-size: 16px;
margin-bottom: calc(24 / 16 * 16px);
}
.hotspot-info > div b {
font-weight: bold;
}
.hotspot-info > div a {
font-size: 16px;
display: inline-block;
text-decoration: none;
border: calc(2 / 16 * 16px) solid #202126;
border-radius: calc(100 / 16 * 16px);
padding: calc(8 / 16 * 16px) calc(16 / 16 * 16px);
color: #202126;
}
.hotspot-title-long {
font-size: calc(18 / 16 * 16px);
color: white;
background: #247c4c;
display: inline-block;
margin: 0;
padding: calc(10 / 16 * 16px) calc(16 / 16 * 16px);
border-radius: calc(50 / 16 * 16px);
margin-bottom: calc(24 / 16 * 16px);
font-weight: 600;
}
.hotspots-container .option1,
.hotspots-container .option2,
.hotspots-container .option3,
.hotspots-container .option4 {
fill: rgba(255, 255, 255, 0.7) !important;
stroke-width: calc(3 / 16 * 16px) !important;
}
.hotspots-container .option1 {
stroke: #247c4c !important;
}
.hotspots-container .option2 {
stroke: #dec405 !important;
}
.hotspots-container .option3 {
stroke: #717171 !important;
}
.hotspots-container .option4 {
stroke: black !important;
}
.leaflet-tooltip {
background: none !important;
padding: 0 !important;
border: none !important;
opacity: 1 !important;
transition: 0s !important;
box-shadow: none !important;
}
.leaflet-tooltip > div {
background: white !important;
font-size: calc(16 / 16 * 16px);
padding: calc(8 / 16 * 16px) calc(12 / 16 * 16px);
border-radius: calc(100 / 16 * 16px);
box-shadow: 0 calc(1 / 16 * 16px) calc(3 / 16 * 16px) rgba(0, 0, 0, 0.2);
}
.leaflet-tooltip > div.option1 {
color: #247c4c;
border: calc(2 / 16 * 16px) solid #247c4c;
}
.leaflet-tooltip > div.option2 {
color: #dec405;
border: calc(2 / 16 * 16px) solid #dec405;
}
.leaflet-tooltip > div.option3 {
color: #717171;
border: calc(2 / 16 * 16px) solid #717171;
}
.leaflet-tooltip > div.option4 {
color: black;
border: calc(2 / 16 * 16px) solid black;
}
.leaflet-container {
background-color: #f5f5f5 !important;
}
.hotspots-container .hotspots-image-container > img {
width: 100%;
height: auto;
margin: 0;
}
.error-404 .center .button {
margin-bottom: 50px;
} .has-main-green-background-color {
background-color: #247c4c;
}
.has-main-green-color {
color: #247c4c;
}
.has-semi-black-background-color {
background-color: #2d292c;
}
.has-semi-black-color {
color: #2d292c;
}
.has-blue-silver-background-color {
background-color: #f3f4f7;
}
.has-blue-silver-color {
color: #f3f4f7;
}
.has-white-background-color {
background-color: #ffffff;
}
.has-white-color {
color: #ffffff;
}
.wp-block-group.has-background:not(.alignfull) {
padding: 30px;
}
.section-full-padding {
padding: 80px 0;
}
.section-full-padding.margin-top-none {
padding-top: 0;
}
.section-full-padding {
padding: 80px 0;
overflow: hidden;
}
.section-full-padding img {
border-radius: 10px;
}
.imp-shape-container img {
border-radius: 10px;
}
.section-full-padding h2 {
font-size: 48px;
margin: 0;
margin-bottom: 12px;
}
.features-wrap h2 + p.has-text-color {
font-weight: 500;
font-size: 20px;
margin: 0;
}
.features-columns {
margin-top: 40px;
}
.features-wrap-thin .features-columns {
margin-top: var(--wp--style--block-gap, 30px);
}
.features-wrap h3 {
font-size: 36px;
margin: 0;
}
.features-wrap .wp-block-column p {
font-size: 20px;
margin: 0;
}
.features-wrap .wp-block-column .has-background {
border-radius: 10px;
padding: 80px 30px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
height: 100%;
}
.wp-block-column.is-vertically-aligned-center {
align-self: stretch;
}
.has-normal-font-size {
font-size: 20px;
}
.gallery-section h2:not(:first-of-type) {
margin-top: 80px;
}
.gallery-section h2 {
margin-bottom: 30px;
}
.blocks-gallery-grid,
.wp-block-gallery {
justify-content: space-between;
}
.wp-block-gallery.columns-3 .blocks-gallery-item {
width: calc((100% - 60px) / 3);
margin: 0;
margin-bottom: 30px;
flex-grow: unset;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}
.wp-block-gallery .blocks-gallery-item {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}
.pswp--zoom-allowed .pswp__img {
border-radius: 10px;
}
.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
pointer-events: none;
}
.more-content {
background: #f4f5f7;
padding: 100px 0;
}
.more-content .realized-section {
padding: 0;
}
.location-section .wpgmza_map {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
background-color: #fefefe;
}
.location-section .wpgmza_map .gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-t::after {
display: none !important;
}
.investments-map {
display: flex;
margin-top: 80px;
}
.investments-map .wpgmza_map {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
background-color: #fefefe;
}
.gm-style-pbc {
opacity: 0 !important;
}
.gm-style .gm-style-iw-c {
background: rgba(255, 255, 255);
border-radius: 10px;
box-shadow: 2px 5px 12px rgb(0 0 0 / 16%);
font-family: "Montserrat";
padding: 10px;
}
.gm-style .gm-style-iw-c > button {
right: -3px !important;
top: -3px !important;
}
.gm-style .gm-style-iw-c p {
margin: 0;
}
.gm-style .gm-style-iw-c img {
border-radius: 10px;
margin-bottom: 5px;
margin-top: 10px;
pointer-events: none;
}
.gm-style .gm-style-iw-d {
padding: 0;
padding-left: 8px;
}
a.wpgmza_infowindow_link {
background: #247c4c;
color: white;
border-radius: 5px;
display: inline-block;
font-size: 12px;
padding: 4px 8px;
margin-top: 5px;
}
.featherlight .featherlight-content {
background: none !important;
}
.hotspots-image-container .hotspots-map-container {
background: #f3f4f7 !important;
}
.hotspots-container.loaded .hotspots-placeholder,
.hotspots-container.loaded .hotspots-image-container {
background: none !important;
}
.imp-initialized {
box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.imp-shape-container img {
border-radius: 10px;
}
@keyframes bganimation {
0% {
background-position: 0 0;
}
70% {
background-position: 100% 0;
}
100% {
background-position: 0 0;
}
}
.page-template-default .entry-content {
padding-top: 0;
padding-bottom: 0;
}
#blog.blog-section {
background-color: white;
padding-bottom: 100px;
}
.single-investments .entry-content {
padding-bottom: 0;
}
footer .footer-boxes > div.box .line a {
display: block;
}
.grecaptcha-badge {
visibility: hidden;
pointer-events: none;
}
#overlay-form2 h4 {
text-align: left;
margin-bottom: 0;
}
#overlay-form2 h5 {
text-align: left;
margin-top: 10px;
font-size: 20px;
font-weight: 400;
margin-bottom: 20px;
}
.realized-investment h5 {
position: absolute;
color: white;
font-size: 16px;
font-weight: 500;
line-height: 1;
padding: 8px 16px;
background-color: #247c4c;
border-radius: 10px;
display: inline-block;
user-select: none;
margin: 0;
bottom: 16px;
left: 16px;
}
.cookie-banner {
display: flex !important;
align-items: center;
justify-content: space-between;
position: fixed;
background: white;
bottom: 0;
left: 0;
right: 0;
z-index: 999999;
font-size: 14px;
padding: 10px 20px;
box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
transition: 0.3s;
transform: translateY(100%);
}
.cookie-banner.show {
transform: translateY(0);
}
.cookie-banner p {
margin: 0;
}
.cookie-banner button {
border: none;
background: none;
padding: 0;
display: flex;
outline: none !important;
}
.cookie-banner button i {
font-size: 20px;
border-radius: 30px;
padding: 2px;
transition: 0.3s;
color: black;
}
.cookie-banner button i:hover {
background: rgba(255, 0, 0, 0.1);
transform: rotate(180deg);
color: red;
cursor: pointer;
}
@media only screen and (hover: none) and (pointer: coarse) {
.qubely-section-parallax {
background-attachment: scroll !important;
}
}
.invisible {
display: none;
}
.contact-form-container h2 {
font-weight: 600 !important;
text-align: center;
}
.features-wrap-thin .wp-block-column .has-background .wp-block-group__inner-container img {
vertical-align: middle;
margin-right: 40px;
}
.features-wrap-thin .wp-block-column .has-background .wp-block-group__inner-container p {
display: flex;
align-items: center;
margin: 0;
font-size: 22px;
}
.features-wrap-thin .wp-block-column .has-background {
border-radius: 20px;
padding: 30px 50px;
box-shadow: 0 5px 10px rgba(45, 41, 44, 0.1);
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.features-left.features-wrap-thin .wp-block-column .has-background {
justify-content: flex-start;
}
.green-links a {
color: #237d4c;
font-weight: 600;
}
.features-wrap-thin img {
border-radius: 0;
}
.gallery-section h2 {
margin-bottom: 40px;
}
.gallery-section .wp-block-image img {
box-shadow: 0 5px 10px rgba(45, 41, 44, 0.1);
border-radius: 20px;
}
.calculator-wrap p {
font-weight: 600;
}
:root {
--wp--style--block-gap: 30px;
--gallery-block--gutter-size: 30px;
}
@media (max-width: 1500px) {
.features-wrap-thin .wp-block-column .has-background .wp-block-group__inner-container p {
font-size: 18px;
}
}
@media (max-width: 1300px) {
.features-wrap-thin .features-columns.three {
flex-wrap: wrap;
justify-content: space-between;
}
.features-wrap-thin .features-columns.three .wp-block-column {
width: calc((100% - var(--wp--style--block-gap)) / 2);
flex-grow: unset;
flex-basis: unset;
margin-left: 0;
margin-top: var(--wp--style--block-gap);
}
.features-wrap-thin .features-columns.three .wp-block-column:last-of-type {
width: 100%;
}
}
@media (max-width: 1100px) {
.features-wrap-thin .wp-block-column .has-background .wp-block-group__inner-container p {
font-size: 18px;
}
:root {
--wp--style--block-gap: 10px;
--gallery-block--gutter-size: 10px;
}
}
@media (max-width: 780px) {
.features-wrap-thin .features-columns {
flex-wrap: wrap;
flex-direction: column;
}
.features-wrap-thin .features-columns.three .wp-block-column {
width: 100%;
}
.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:nth-child(2n),
.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:last-of-type {
margin-left: 0;
margin-top: 30px;
}
.features-wrap-thin .wp-block-column .has-background .wp-block-group__inner-container img {
margin-right: 20px;
}
.features-wrap-thin h2 span {
font-size: 30px !important;
}
}