/*--------------------------------------------------------------
# Main style & custom components
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&display=swap');

body {
    margin: 0;
    background: #fff;
    color: #0c0c0c;
    font-family: "Ancizar Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62857;
}

.container-big {
    width: 100%;
    max-width: 1656px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.container-mid {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

a {
    color: #b69479;
    background-color: transparent;
    transition: .2s ease-in-out;
}

a:active,
a:hover {
    color: #b69479;
    outline: 0;
    text-decoration: none;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 300;
}

strong {
    font-weight: 700;
}

.btn-main {
    line-height: 2rem;
}

.property__form input[type="submit"],
.cta-right input[type="submit"],
.entry-content input[type="submit"],
.btn-main a {
    transition: .2s ease-in-out;
    background: #b69479;
    border: 2px solid #d4b59d;
    color: #fff;
    border-radius: 2rem;
    padding: .8rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.btn-second a {
    transition: .2s ease-in-out;
    background: transparent;
    border: 2px dashed #d4b59d;
    color: #fff;
    border-radius: 2rem;
    padding: .8rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.btn-second a:hover {
    background: #d4b59d;
    border: 2px solid #d4b59d;

}

.property__form input[type="submit"]:hover,
.cta-right input[type="submit"]:hover,
.entry-content input[type="submit"]:hover,
.btn-main a:hover {
    background: #987b63;
    border: 2px solid #987b63;
    color: #fff;
}

.btn-main a .fa-sharp {
    padding-left: .5rem;
}

.btn-main a:hover .fa-sharp {
    padding-left: .5rem;
    color: #51bf9a;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#wrapper,
#footer-wrapper {
    margin-left: 90px;
}

.sidebar-left {
    position: fixed;
    left: 0;
    top: 0;
    width: 90px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 5px 0 40px 0 rgba(65, 61, 61, .07);
}

.sidebar-top {
    margin-top: 9rem;
}

.rotated-text {
    display: inline-block;
    transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.sidebar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.sidebar-center i {
    font-size: 1.5rem;
}

.sidebar-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.05);
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-panel.open {
    left: 90px;
}

.sidebar-panel-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 3rem;
    justify-content: center;
}

.sidebar-panel-logo img {
    max-width: 200px;
    height: auto;
}

.sidebar-panel-menu .menu {
    list-style: none;
    padding: 0;
    margin: 5rem 0;
}

.sidebar-panel-menu .menu li {
    margin-bottom: 1rem;
}

.sidebar-panel-menu .menu li a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1.1rem;
    font-weight: 500;
}

.sidebar-panel-menu .menu li a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sidebar-panel-menu .menu li a:hover {
    transform: translateX(0.4rem);
    color: #b69479;
}

.sidebar-panel-bottom a {
    font-size: 1.2rem;
    color: #b69479;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sidebar-panel-bottom a:hover {
    transform: scale(1.1);
    color: #9e7a5d;
}

.sidebar-panel-bottom {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sidebar-panel-bottom a {
    font-size: 1.2rem;
    color: #b69479;
    text-decoration: none;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.sidebar-bottom {
    margin-bottom: 3rem;
}

.sidebar-bottom i {
    font-size: 1.4rem;
}

body.fullpanel-open {
    overflow: hidden;
}

.fullpanel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fullpanel-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.fullpanel {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.fullpanel.open {
    left: 0;
}

.fullpanel-inner {
    padding: 0rem 0rem;
    max-width: 1656px;
    margin: 0 auto;
    position: relative;
}

.fullpanel-close {
    position: absolute;
    top: -4rem;
    right: -2rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #f00000;
}

.fullpanel-content {
    margin-top: 6rem;
}

.mastheader {
    position: relative;
    width: 100%;
    z-index: 999;
}

.mastheader .toggler-icon {
    text-align: right;
    transition: 0.3s ease-in-out;
}

.mastheader .toggler-icon .fa-regular {
    padding: 1rem 1.05rem;
    background: #fff;
    color: #222;
    transition: 0.3s ease-in-out;
    border-radius: 100%;
}

.mastheader .toggler-icon:hover .fa-regular {
    background: #000000;
    color: #fff;
    cursor: pointer;
}

.mh-top {
    background: #0000004f;
    padding: 1rem 0;
    font-size: .9rem;
}

.mh-top span {
    color: #b69479
}

.mh-top a {
    color: #fff;
    font-weight: 700;
}

.mh-top .fa-brands,
.mh-top .fa-light {
    background-color: #b69479;
    color: #fff;
    padding: 0.8rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    font-size: 1rem;
    margin: 0 .5rem 0 .75rem
}

.mht4 {
    text-align: right;
}

.mh-main {
    padding: 2rem 0;
    position: relative;
}

.mh-main .row {
    align-items: center;
}

.logo {
    height: auto;
    position: absolute;
}

.logo img {
    max-width: 220px;
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
}

.navbar {
    margin: 0;
    padding: 0;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    margin: 0px 2rem;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 700;
    border-bottom: 2px dashed transparent;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
    border-bottom: 2px dashed #b69479;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .open>.nav-link {
    color: #fff;
    border-bottom: 2px dashed #b69479;
}

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

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.top {
    padding-right: 0;
    padding-left: 0;
    position: relative;
    margin-top: -177px;
    z-index: 9;
}

#slider .item {
    position: relative;
    min-height: 100vh;
    padding: 22rem 0 4rem;
    overflow: hidden;
}

#slider .background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomPanHorizontal 20s ease-in-out infinite alternate;
}

@keyframes zoomPanHorizontal {
    0% {
        transform: scale(1.05) translateX(0);
    }

    25% {
        transform: scale(1.08) translateX(-10px);
    }

    50% {
        transform: scale(1.1) translateX(0);
    }

    75% {
        transform: scale(1.08) translateX(10px);
    }

    100% {
        transform: scale(1.05) translateX(0);
    }
}


#slider .box {
    position: relative;
    z-index: 999;
}

#slider .mask {
    z-index: 99;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(160deg, rgb(0 0 0) 0%, rgb(0 0 0 / 63%) 30%, rgb(255 255 255 / 0%) 60%);
    top: 0;
    left: 0;
    pointer-events: none;
}

#slider .mask2 {
    z-index: 99;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(45deg, rgb(91 91 91) 0%, rgb(0 0 0 / 64%) 30%, rgb(255 255 255 / 0%) 60%);
    top: 0;
    left: 0;
    pointer-events: none;
}


#slider .item h2 {
    margin: 0 0 1rem;
    font-weight: 400;
    font-size: 6rem;
    line-height: 5.4rem;
    max-width: 45%;
    color: #fff;
    text-shadow: 12px 8px 16px rgb(0 0 0);
}

#slider .item h3 {
    color: #b69479;
    margin: 0 0rem 2rem 0;
    font-size: 1.6rem;
    border-radius: 2rem;
    font-weight: 400;
}

#slider .item h4 {
    color: #fff;
    margin: 0 0rem 2rem 0;
    font-size: 1.4rem;
}

#slider .item h4 span {
    background: #b69479;
    padding: .8rem 1.6rem;
    border-radius: 2rem;
}

#slider .item .box__content {
    max-width: 55%;
    margin: 0 0 5rem;
}

#slider .item .box__content p {
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 12px 8px 16px rgb(0 0 0);
}

#slider .item .btn-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

#slider .item .btn-main {}

#slider .box h3,
#slider .box h2,
#slider .box .box__content,
#slider .box .btn-row {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease forwards;
}

#slider .box h3 {
    animation-delay: 0.2s;
}

#slider .box h2 {
    animation-delay: 0.4s;
}

#slider .box .box__content {
    animation-delay: 0.6s;
}

#slider .box .btn-row {
    animation-delay: 0.8s;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#slider .owl-controls {
    position: absolute;
    margin: 0;
    bottom: 2.5rem;
    left: 50%;
    transform: translate(-50%, -50%)
}


#slider .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
}

#slider .owl-controls .owl-page span {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 .3rem;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background: #fff;
}

#slider .owl-controls .owl-page.active span,
#slider .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1;
}

.scroll-down {
    position: absolute;
    bottom: 8rem;
    right: 3rem;
    z-index: 9;
}


.scroll-down a {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    transition: .25s ease-in-out;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
}

.scroll-down a:hover {
    transform: translateY(1.5rem);
}

.scroll-down a .fa-regular {
    color: #b69479
}

.scroll-down .scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 1.5rem;
}


/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/

.service {
    padding: 6.5rem 0;
}

.service__links ul {
    list-style: none;
    padding: 0;
}

.service__links li {
    cursor: pointer;
    padding: 0.75rem 1rem;
    margin-right: 3rem;
    font-weight: 600;
    color: #111;
    transition: background 0.3s;
}

.service__links li.active {
    background-color: #b69479;
    color: #ffffff;
}

.service__links li i {
    margin-right: 0.5rem;
}

.service__content-box {
    position: relative;
}

.service__content-box .txt {
    max-width: 85%
}

.service__content-box .txt h2 {
    font-weight: 700;
    margin: 0 0 2rem;
    font-size: 2rem;
}

.service__content {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service__content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.about {
    padding: 0 0;
}

.container-full .row {
    margin: 0 0
}

.about .row>* {
    padding: 0;

}

.about .box {
    position: relative;
    height: 280px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-size 0.6s ease;
    overflow: hidden;
}

.about .box:hover {
    background-size: 110%;
}

.about .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 51%);
    z-index: 1;
    pointer-events: none;
}

.about .box__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 1rem;
    z-index: 2;
    width: 75%;
}

.about .box__content h3 {
    font-size: 1.6rem;
    margin: 0 0 .5rem;
}

.about .box__content h3 a {
    color: #fff;
    text-decoration: none;
}

.about .box__content .txt {
    color: #dcc9b9
}

.property {
    padding: 6.5rem 0;
}

.property .section-title {
    text-align: center;
    max-width: 65%;
    margin: 0 auto 3rem auto;
}

.property .section-title h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.property .section-title h3 {
    font-size: 1.4rem;
    color: #b69479;
    margin: 0;
}

.property__table {
    margin-top: 3rem;
    width: 100%;
    border-collapse: collapse;
    font-size: 1.3rem;
}

.property__table thead {
    background: #b69479;
    color: #fff
}

.property__table thead tr th {
    padding: 1rem 1rem
}

.property__table tbody {}

.property__table tbody tr:hover {
    background: #b6947935
}

.property__table tbody tr.wolne {}

.property__table tbody tr.zarezerwowane {
    background: #b6947917
}

.property__table tbody tr.sprzedane {
    background: #b6947965
}

.property__table td {
    border-bottom: 1px solid #b69479;
    padding: 1rem 1rem
}

.property__table td span.info {
    font-size: 1rem;
}

.property__table td.wolne {}

.property__table td.zarezerwowane {}

.property__table td.sprzedane {}

.property__table td span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.property__table td.sprzedane span::before,
.property__table td.zarezerwowane span::before,
.property__table td.wolne span::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: .5rem;
    font-size: 0.8rem;
    color: #fff;
}


.property__table td.sprzedane span::before {
    content: "\f00d";
    background-color: #d93030;
}

.property__table td.zarezerwowane span::before {
    content: "\f017";
    background-color: #f5b042;
}

.property__table td.wolne span::before {
    content: "\f00c";
    background-color: #3aa76d;
}

.property__table td:nth-last-child(1),
.property__table td:nth-last-child(2),
.property__table th:nth-last-child(1),
.property__table th:nth-last-child(2) {
    width: 80px;
    text-align: center;
    white-space: nowrap;
}

.property__table td i.fa-file-arrow-down {
    font-size: 1.2rem;
    color: #b69479;
}

.property__table .table-icon i {
    font-size: 1rem;
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/


.page-bg {
    margin-top: -170px;
    padding: 24rem 0 10rem 0;
    position: relative;
}

.page-bg .container-big {
    position: relative;
    z-index: 999;
}


.page-bg .mask {
    z-index: 99;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(170deg, rgb(0 0 0) 0%, rgb(0 0 0 / 63%) 30%, rgb(255 255 255 / 0%) 60%);
    top: 0;
    left: 0;
    pointer-events: none;
}

.page-title {
    text-align: center;
    padding: 6rem 0 3rem;
    background-color: #b6947914
}

.pt-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 6.5rem;
    gap: 2rem;
    padding-bottom: 3.25rem;
    border-bottom: 2px dashed #d4b59d
}

.pt-inner h1 {
    margin: 0rem 0 1rem;
    font-size: 4rem;
}

.pt-inner .sep {
    margin: 0 3rem;
    font-size: 2rem;
    color: #b69479;
    font-weight: 300;
}

.pt-inner h3 {
    font-size: 1.4rem;
    margin: 0rem;
    color: #b69479;
    text-transform: uppercase;
    letter-spacing: .5rem;
}

body.page-id-59 .entry-page {
    display: none;
}

.page-wrapper {
    padding: 0rem 0;
    background-color: #b6947914
}

body.product-template-default #main,
.entry-page {
    padding: 6.5rem 3rem;
    background: #fff;
    margin-top: -9rem;
    border-radius: 1rem 1rem 0 0;
    position: relative;
    z-index: 999;
}

.entry-content {}

.entry-content h2 {
    font-weight: 700;
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

.entry-content h3 {
    margin: 2rem 0 1rem;
    font-weight: 700;
    font-size: 1.6rem;
    color: #b69479;
    text-transform: uppercase;
}

.entry-content h4 {
    margin: 2rem 0 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: #b69479;
    text-transform: uppercase;
}

.entry-content a {}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-content .wp-block-migb-masonry-gallery img {
    transition: .25s ease-in-out;
}

.entry-content .wp-block-migb-masonry-gallery img:hover {
    opacity: .7
}

.entry-content ul li,
li .entry-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: .75rem;
}

.entry-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.entry-content ul li::before {
    font: var(--fa-font-solid);
    content: "\f0da";
    padding: 0 0.5rem 0 0;
    color: #55ab8e;
    font-weight: 300;
}

.entry-content p:last-child {
    margin-bottom: 0
}


.entry-content table {
    margin: 1.5rem 0;
}

.entry-content table td {
    border: 2px solid #eaeaea;
    padding: 1rem;
}

.wpcf7 p {
    font-size: .9rem;
}

.wpcf7-not-valid-tip {
    color: #dcc132;
    font-size: .7rem;
    font-weight: normal;
    display: block;
    margin-top: -2.5rem;
}

.wpcf7 form .wpcf7-response-output {
    padding: 1rem;
}

.wpcf7-not-valid-tip {
    color: #dcc132;
    font-size: .7rem;
    font-weight: normal;
    display: inline;
    margin-top: -2.5rem;
}

.content__thumb img {
    max-width: 100%;
    height: 460px;
    object-fit: cover;
    transition: .25s ease-in-out;
}

.content__thumb img:hover {
    opacity: .7
}

.pw-archive article {
    margin: 0 0 3rem 0;
}


.content__box h3 {
    font-size: 1.6rem;
    margin: 2rem 0 0rem 0;
}

.content__box h3 a {
    color: #111;
}

.content__box h3 a:hover {
    color: #b69479
}

.realizations-on-page {
    margin-top: 10rem
}

.wp-pagenavi a,
.wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #ddd;
    padding: .5rem .95rem;
    margin: 0 .5rem 0 0;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border-color: #03452f;
    color: #fff;
    background: #03452f;
}

body.page-template-page-mieszkanie .entry-content h2.wp-block-heading {
    font-size: 3rem;
    margin: 0 0 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

body.page-template-page-mieszkanie .entry-content h3.wp-block-heading {
    font-size: 1.4rem;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0 0 1rem;
}

body.page-template-page-mieszkanie .entry-content h3.wp-block-heading strong {
    color: #b69479;
    font-size: 1.6rem;
    font-weight: 700;
}

body.page-template-page-mieszkanie .entry-content .wp-block-table {
    margin-bottom: 2rem;
    overflow-x: auto;
}

body.page-template-page-mieszkanie .entry-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
    background-color: #fff;
}

body.page-template-page-mieszkanie .entry-content table thead {
    border-bottom: none;
}

body.page-template-page-mieszkanie .entry-content table th {
    border: 1px solid #b69479;
    background-color: #b69479;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

body.page-template-page-mieszkanie .entry-content table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e2e2;
    color: #2c2c2c;
    font-weight: 300;
}

body.page-template-page-mieszkanie .entry-content table tr:last-child td {
    border-bottom: none;
}

body.page-template-page-mieszkanie .entry-content table td strong {
    font-weight: 700;
    color: #b69479;
}

.property__another h2 {
    margin: 0 0 2rem;
}

.property__another .img-fluid {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    display: block;
}

.property__another .box:hover .img-fluid {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.property__another h3 {
    margin: 2rem 0;
    text-align: center;
}

.property__form {
    margin: 4rem 0;
    background: #b6947957;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
}

.property__form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 2rem;
    text-align: center;
}

.property__form .wpcf7-not-valid-tip {
    color: #F44336;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
body.page-id-72 .cta {
    display: none
}

.cta {
    padding: 6.5rem 0;
    background: #b6947957
}

.cta-left h2,
.cta-right h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.cta-left {
    margin-top: 3.5rem;
}

.cta-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.cta-left .btn-main {
    margin-top: 3rem;
}

.cta-left .btn-main a {
    color: #fff;
}

.cta-right {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
}

.entry-content form.wpcf7-form,
.cta-right form.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.property__form input[type="text"],
.property__form input[type="email"],
.property__form input[type="tel"],
.property__form textarea,
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="tel"],
.entry-content textarea,
.cta-right input[type="text"],
.cta-right input[type="email"],
.cta-right input[type="tel"],
.cta-right textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #b6947932;
    border-radius: 4px;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.property__form textarea,
.entry-content textarea,
.cta-right textarea {
    min-height: 160px;
    resize: vertical;
}

.property__form input[type="text"]:focus,
.entry-content input[type="text"]:focus,
.property__form input[type="email"]:focus,
.entry-content input[type="email"]:focus,
.property__form input[type="tel"]:focus,
.entry-content input[type="tel"]:focus,
.property__form textarea:focus,
.entry-content textarea:focus,
.cta-right input[type="text"]:focus,
.cta-right input[type="email"]:focus,
.cta-right input[type="tel"]:focus,
.cta-right textarea:focus {
    border-color: #b69479;
    outline: none;
    box-shadow: 0 0 0 2px rgba(182, 148, 121, 0.2);
}

.cta-right::placeholder {
    color: #999;
    font-style: italic;
    opacity: 1;
}

.cta-right .wpcf7-acceptance {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.gmap {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

#footer-wrapper {
    margin-top: -9px;
    padding: 6.5rem 0;
    background: url('https://www.slonecznezadziele.pl/wp-content/uploads/2025/05/fw-bg.jpg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #b4b4b4
}


.footer-widget .row__first {
    align-items: center;
}

.footer-widget h2 {
    margin: 0;
    font-size: 2.4rem;
    padding: 0;
    color: #fff;
}

#block-2 {
    margin-top: 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 2rem;
}

.footer-widget .widget {}


.footer-widget a {
    color: #fff;
}

.footer-widget ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


#block-5 p {
    text-align: center;
    color: #fff;
    font-weight: 300;
    margin: 0rem;
    font-size: 2rem;
}

#block-5 p a {
    color: #fff
}

#block-6 p {
    color: #b69479;
    font-weight: 300;
    font-size: 2rem;
    margin: 0rem;
}

#block-6 p a {
    color: #b69479;
}

.row__second {
    margin-top: 4rem;
    border-top: 2px solid #2e2e2e;
    padding-top: 4rem;
}

.row__second h2 {
    color: #fff;
    margin: 0 0 .5rem;
    font-size: 1.6rem;
}

.footer-widget ul li {
    transition: .25s ease-in-out;
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.footer-widget a:hover,
.footer-widget ul li a:hover {
    text-decoration: underline;
}

.footer-widget ul li a {
    transition: .25s ease-in-out;
    color: #b4b4b4;
}

.footer-widget ul li a:hover {
    transition: .25s ease-in-out;
    text-decoration: none;

}

.footer-widget ul li:hover::before {
    padding-left: .75rem
}

.footer-widget ul li::before {
    font: var(--fa-font-solid);
    content: "\f0da";
    padding: 0 0.75rem 0 0;
    color: #b69479;
    transition: .25s ease-in-out;
    font-weight: 200;
}

.footer-widget .fa-facebook-f {
    font-size: 1.2rem;
    color: #fff;
    background-color: #3b5998;
    padding: 0.5rem;
    border-radius: 50%;
    text-align: center;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer .fa-facebook-f:hover {
    background-color: #2d4373;
}


.footer-bottom {
    background: transparent;
    padding: 6.5rem 0 0rem 0;
    font-size: .9rem;
}

.footer-bottom a {
    color: #b69479;
}

.footer-bottom .footer-credits {
    margin-bottom: 0;
    text-align: left;
}

.footer-bottom .footer-author {
    text-align: left;

}

.footer-bottom .footer-logo {
    text-align: center;
}

.footer-bottom .footer-logo img {
    max-height: 40px;
}


.footer-bottom .footer-credits a,
.footer-bottom a,
.footer-bottom .footer-author a {
    font-weight: 700;
}

.footer-bottom .footer-credits a:hover,
.footer-bottom a:hover,
.footer-bottom .footer-author a:hover {}

.scroll-top {
    text-align: right;

}

.scroll-top a {
    transition: .25s ease-in-out;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: #ffffff00;
    border: 2px solid #b69479;
    padding: 1rem 1.2rem;
    border-radius: 100%;
}

.scroll-top a:hover {
    color: #fff;
    background: #b69479;
    border: 2px solid #b69479;
}