/* Fonts */

/* Source Sans – Variable */
@font-face {
    font-family: 'Source Sans';
    src: url('../fonts/SourceSans3-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Source Sans – Variable Italic */
@font-face {
    font-family: 'Source Sans';
    src: url('../fonts/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Poppins Regular */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Poppins Medium */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Poppins SemiBold */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Poppins Bold */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
} */

/* Fonts */

/* DEFAULTS */

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: "Source Sans", "Arial", sans-serif;
    color: #565C67;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    overflow-x: hidden;
}

img,
object,
embed {
    max-width: 100%;
}

a:hover,
a:focus,
a:active {
    outline: none !important;
}

strong,
b {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Source Sans", "Arial", sans-serif;
    color: #565C67;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

h1,
.h1 {
    font-size: 48px;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 32px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: 20px;
}

@media (max-width:1366px) {

    h1,
    .h1 {
        font-size: 42px;
    }

    h2,
    .h2 {
        font-size: 32px;
    }

    h3,
    .h3 {
        font-size: 26px;
    }

    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
        font-size: 18px;
    }
}

@media (max-width:991px) {

    h1,
    .h1 {
        font-size: 32px;
    }

    h2,
    .h2 {
        font-size: 24px;
    }

    h3,
    .h3 {
        font-size: 18px;
    }

    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
        font-size: 16px;
    }
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    transition: color .3s ease;
}

textarea {
    resize: vertical;
    min-height: 48px;
}

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

picture {
    display: flex;
    /* height: auto; */
    height: 100%;
}

button {
    outline: none !important;
    background-color: transparent;
}

body.nav-opened {
    overflow: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.container {
    position: relative;
    max-width: 1230px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.container-sm {
    max-width: 996px;
}

@media (min-width:1441px) {
    .container {
        max-width: 1400px;
    }

    .container-sm {
        max-width: 1200px;
    }
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    height: 100%;
    transition: padding .3s ease;
}

.grecaptcha-badge {
    display: none !important;
}

/* btns */

.btn {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    padding: 12px 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: color .3s ease, background .3s ease, border .3s ease
}

.btn svg path {
    transition: fill .3s ease;
}

.btn-primary {
    background: #E16B3B;
    border-color: #E16B3B;
}

.btn-primary svg path {
    fill: #fff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within {
    background: transparent;
    border-color: #E16B3B;
    color: #E16B3B;
}

.btn-primary:hover svg path,
.btn-primary:active svg path,
.btn-primary:focus-within svg path {
    fill: #E16B3B;
}

.btn-primary-outline {
    border-color: #E16B3B;
    color: #E16B3B;
}

.btn-primary-outline svg path {
    fill: #E16B3B;
}

.btn-primary-outline:hover,
.btn-primary-outline:active,
.btn-primary-outline:focus-within {
    background: #E16B3B;
    border-color: #E16B3B;
    color: #fff;
}

.btn-primary-outline:hover svg path,
.btn-primary-outline:active svg path,
.btn-primary-outline:focus-within svg path {
    fill: #E16B3B;
}

.btn-secondary {
    background: transparent;
    border-color: #224254;
    color: #224254;
}

.btn-secondary svg path {
    fill: #224254;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus-within {
    background: #224254;
    border-color: #224254;
    color: #fff;
}

.btn-secondary:hover svg path,
.btn-secondary:active svg path,
.btn-secondary:focus-within svg path {
    fill: #fff;
}

.btn-tertiary {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-tertiary svg path {
    fill: #fff;
}

.btn-tertiary:hover,
.btn-tertiary:active,
.btn-tertiary:focus-within {
    background: #224254;
    border-color: #fff;
    color: #fff;
}

.btn-tertiary:hover svg path,
.btn-tertiary:active svg path,
.btn-tertiary:focus-within svg path {
    fill: #fff;
}

.btn[disabled]{
	pointer-events: none;
	opacity: 0.5
}

@media (max-width:991px) {
    .btn {
        font-size: 14px;
    }
}

/* btns */


/* nav sticky */

.navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: top .3s ease, box-shadow .3s ease, background .3s ease;
    transition: top .3s ease, box-shadow .3s ease, background .3s ease;
    z-index: 1002;
    background-color: #fff;
}

.navbar-sticky .navbar-default {
    background-color: #fff;
}

.navbar-sticky .nav-wrapper {
    padding: 5px 0;
}

/* nav sticky */

/* nav */

.nav-wrapper {
    padding: 40px 0;
    transition: padding .3s ease;
}

.nav-wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-wrapper-inner .btn-wrapper {
    margin-left: auto;
    position: relative;
    z-index: 9;
}

.nav-wrapper .main-logo {
    transition: transform .3s ease;
}

.nav-wrapper .main-logo img {
    transition: opacity .3s ease;
}

.nav-wrapper .hamburger {
    display: none;
}

.nav-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 40px;
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
}

.navbar-nav a {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    color: #F4F8FB;
}

.nav-primary {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 781px;
    transform: translateX(100%);
    transition: transform .3s ease;
    height: 100dvh;
    padding: 0 120px;
    background: rgba(22, 43, 54, 0.96);
    box-shadow: -16px 0 45.3px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(28px);
}

.nav-primary.active {
    transform: translateX(0);
}

.navbar-nav li.active a,
.navbar-nav a:hover {
    color: #E16B3B;
}

.nav-wrapper {
    padding: 12px 0;
}

.nav-wrapper .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 99;
}

.nav-wrapper .hamburger {
    display: flex;
    text-align: center;
    font-family: 'Poppins';
    font-size: 10px;
    font-weight: 600;
    color: #224254;
    transition: color .3s ease;
}

body:not(.nav-opened) .nav-wrapper .hamburger .opened {
    display: none;
}

body.nav-opened .nav-wrapper .hamburger .closed {
    display: none;
}

.nav-opened .hamburger {
    color: #fff;
}

.nav-primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-primary .menu-primary-container {
    width: 100%;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    height: 100%;
}

.nav-menu-wrapper {
    width: 100%;
    padding: 0;
}

.nav-menu-wrapper nav {
    transform: translateX(100%);
    transition: transform .3s ease, width .3s ease;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
}

.nav-menu-wrapper.active nav {
    transform: translateX(0);
}

.nav-wrapper .bar {
    width: 26px;
    height: 3px;
    background-color: #E16B3B;
    margin: 4px 0;
    transition: 0.4s;
    margin-left: auto;
    border-radius: 10px;
}

.nav-wrapper .bar:not(.active):nth-child(1) {
    width: 22px;
}

.nav-wrapper .bar:not(.active):nth-child(2) {
    width: 26px;
}

.nav-wrapper .bar:not(.active):nth-child(3) {
    width: 16px;
}

.nav-wrapper .bar.active:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.nav-wrapper .bar.active:nth-child(2) {
    opacity: 0;
}

.nav-wrapper .bar.active:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
}

.nav-menu-wrapper {
    border-bottom: 0;
}

.navbar-default .btn-mobile {
    display: none;
}

.nav-wrapper-collapse-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-height: 100dvh;
    padding: 128px 0 64px;
    overflow: auto;
}

.nav-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.nav-box-single {
    border-radius: 8px;
    border: 1px solid rgba(166, 174, 187, 0.15);
    padding: 16px;
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-box-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding-left: 21px;
    position: relative;
    border-left: 5px solid #E16B3B;
}

.nav-box-single:first-child .nav-box-title {
    border-left-color: #5086B4;
}

.nav-box-single ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-contact-data a {
    gap: 16px;
}

.nav-box-single ul a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #F4F8FB;
    font-weight: 400;
}

.nav-box-single ul a svg {
    min-width: 16px;
    max-width: 16px;
    width: 100%;
}

.nav-box-single ul a:hover {
    color: #E16B3B;
}

@media (max-width:991px) {
    .nav-wrapper-inner {
        gap: 16px;
    }

    .nav-wrapper .main-logo img {
        max-width: 105px;
        height: auto;
    }

    .nav-wrapper .bar {
        width: 21px;
        height: 2px;
        margin: 3px 0;
        margin-left: auto;
    }

    .hamburger span {
        margin-top: 4px;
        font-weight: 500;
    }

    .nav-wrapper .bar:not(.active):nth-child(1) {
        width: 17px;
    }

    .nav-wrapper .bar:not(.active):nth-child(2) {
        width: 21px;
    }

    .nav-wrapper .bar:not(.active):nth-child(3) {
        width: 11px;
    }

    .nav-wrapper .bar.active:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 3px);
    }

    .nav-wrapper .bar.active:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
    }

    .navbar-default .btn-mobile {
        color: #224254;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px;
        font-weight: 600;
        transition: color .3s ease;
        text-transform: uppercase;
    }

    .nav-opened .navbar-default .btn-mobile {
        color: #fff;
    }

    .navbar-default .btn-desktop {
        display: none;
    }

    .nav-primary {
        padding: 0 16px;
    }

    .navbar-nav {
        padding: 0 16px;
        gap: 16px;
    }

    .navbar-nav a {
        color: #F4F8FB;
        font-size: 18px;
        padding: 0 0 8px;
    }

    .nav-box-single:first-child {
        width: 100%;
    }
}

/* nav */

/* footer */

footer * {
    font-family: 'Poppins';
}

footer {
    background-color: #E6EFF4;
}

footer .footer-nav-wrapper-outer {
    padding: 80px 0 100px;
    background-image: url(../../assets/images/footer-bg.svg);
    background-size: contain;
    background-position: 50% 100%;
    background-repeat: no-repeat;
}

footer .footer-nav-wrapper {
    display: flex;
    gap: 64px;
}

footer .footer-nav-wrapper>* {
    min-width: 212px;
}

footer .footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    max-width: 30%;
}

footer .footer-logo-wrapper img {
    max-width: 180px;
    height: auto;
    width: 100%;
}

footer .footer-nav-wrapper .h4 {
    color: #5086B4;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    white-space: nowrap;
}

footer .footer-image-wrapper {
    min-width: 140px;
}

footer .footer-image-wrapper img {
    max-width: 138px;
    height: auto;
    width: 100%;
}

footer .footer-contact-wrapper-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .footer-contact-single {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #224254;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

footer .contact-icon {
    min-width: 36px;
    max-width: 36px;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 64px;
    border: 1.5px solid #5086B4;
    background: #F0F3F8;
    transition: background .2s ease;
}

footer .footer-contact-single svg {
    min-width: 16px;
    max-width: 16px;
    width: 100%;
    height: auto;
}

footer .footer-contact-single svg path {
    transition: fill .2s ease;
}

footer .footer-contact-single:hover .contact-icon {
    background-color: #5086B4
}

footer .footer-contact-single:hover svg path {
    fill: #F0F3F8;
    ;
}

footer .footer-menu-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .footer-menu-wrapper ul a {
    padding-left: 10px;
    color: #224254;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    transition: color .3s ease, padding .3s ease;
    position: relative;
    display: flex;
}

footer .footer-menu-wrapper ul a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../../assets/images/footer-list-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 6px;
    height: 6px;
}

footer .footer-menu-wrapper ul li.active a,
footer .footer-menu-wrapper ul a:hover {
    color: #E16B3B;
    padding-left: 18px;
}

.footer-copy-wrapper-outer {
    background: rgba(22, 43, 54, 0.09);
    padding: 16px 0;
}

.footer-copy-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px 16px;
    line-height: 1.6;
    font-size: 12px;
}

.footer-privacy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.footer-privacy-nav li:first-of-type::marker {
    color: transparent;
}

.footer-privacy-nav a {
    font-size: 12px;
    color: #565C67;
}

.footer-privacy-nav a:hover,
.footer-privacy-nav li.active a {
    color: #E16B3B;
}

@media (max-width:1366px) {
    footer .footer-nav-wrapper {
        gap: 32px 48px;
    }
}

@media (max-width:1300px) {

    footer .footer-nav-wrapper {
        flex-wrap: wrap;
    }

    footer .footer-image-wrapper,
    footer .footer-nav-wrapper>* {
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width:991px) {
    footer .footer-nav-wrapper-outer {
        padding: 64px 0;
    }

    footer .footer-nav-wrapper .h4 {
        font-size: 10px;
        margin-bottom: 8px;
    }

    footer .footer-nav-wrapper {
        gap: 32px;
    }

    footer .footer-logo-wrapper {
        width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: 10px;
    }

    footer .footer-logo-wrapper p {
        font-size: 12px;
    }

    footer .footer-nav-wrapper h4 {
        margin-bottom: 8px;
        font-size: 10px;
    }

    footer .footer-contact-wrapper,
    footer .footer-image-wrapper {
        width: 100%;
    }

    footer .footer-menu-wrapper {
        width: calc(50% - 16px);
    }

    footer .footer-menu-wrapper ul,
    footer .footer-contact-wrapper-inner {
        gap: 8px;
    }
}

@media (max-width:768px) {
    .footer-copy-wrapper {
        text-align: center;
        justify-content: center;
    }
    
    .footer-privacy-nav {
    	justify-content: center;
    }
}

/* footer */

/* 404 */

.error-page {
    padding: 120px 0;
}

.error-page .error-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

/* 404 */

/* single-post */

.single-property .cta-bg .cta-bg-wrapper {
    text-align: left;
    align-items: flex-start;
    color: #fff;
}

.single-property .cta-bg p {
    opacity: 0.7;
}

.single-property .cta-bg-wrapper-outer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.single-property .cta-bg-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-property .cta-bg-contact a {
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10.649999618530273px);
}

.single-property .cta-bg-contact div {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #fff;
}

.single-property .cta-bg-contact .label {
    font-size: 14px;
    opacity: 0.7;
}

.single-property .cta-bg-contact .value {
    font-size: 20px;
    transition: color .3s ease;
}

.single-property .cta-bg-contact a:hover .value {
    color: #E16B3B;
}

.block-prev {
    padding: 64px 0;
    background-color: #5086B4;
}

.gallery-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 120px 0;
}

.gallery-content-wrapper .gallery-wrapper {
    display: flex;
    gap: 24px;
}

.gallery-content-wrapper .gallery-slider {
    width: calc(66.66666666% - 12px);
    position: relative;
}

.gallery-content-wrapper .swiper-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 8px 8px;
    background: rgba(34, 66, 84, 0.24);
    backdrop-filter: blur(12.300000190734863px);
    z-index: 9;
}

.gallery-content-wrapper .swiper-button-prev,
.gallery-content-wrapper .swiper-button-next,
.gallery-content-wrapper .swiper-pagination {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto !important;
    margin: 0;
    transform: none;
    width: auto;
    height: auto;
}

.gallery-content-wrapper .swiper-button-prev.disabled,
.gallery-content-wrapper .swiper-button-next.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.gallery-content-wrapper .swiper-button-prev,
.gallery-content-wrapper .swiper-button-next {
    border: 1px solid #fff;
    border-radius: 100%;
    width: 30px;
    aspect-ratio: 1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background .3s ease, border .3s ease;
}

.gallery-content-wrapper .swiper-button-prev:hover,
.gallery-content-wrapper .swiper-button-next:hover {
    background-color: #E16B3B;
    border-color: #E16B3B;
}

.gallery-content-wrapper .swiper-button-prev svg,
.gallery-content-wrapper .swiper-button-next svg {
    width: 16px;
    height: auto;
    aspect-ratio: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
    content: none;
}

.gallery-content-wrapper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-content-wrapper .swiper-pagination span.swiper-pagination-bullet {
    width: 12px;
    aspect-ratio: 1;
    height: auto;
    background-color: transparent;
    border: 1px solid #fff;
    transition: background .3s ease, border .3s ease;
    margin: 0;
    opacity: 1;
}

.gallery-content-wrapper .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #E16B3B;
    border-color: #E16B3B;
}

.gallery-content-wrapper .gallery-image {
    border-radius: 8px;
    overflow: hidden;
    line-height: 0.8;
    width: 100%;
}

.gallery-content-wrapper .gallery-image img {
    aspect-ratio: 792 / 500;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-content-wrapper .gallery-boxes {
    width: calc(33.33333333% - 12px);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gallery-content-wrapper .box-single {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0.8;
    width: calc(50% - 12px);
    flex: 1 auto;
    position: relative;
}

.gallery-content-wrapper .box-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(10, 29, 61, 0.56) 0%, rgba(10, 29, 61, 0.56) 100%);
    transition: opacity .3s ease;
    opacity: 0;
    pointer-events: none;
}

.gallery-content-wrapper .box-single .box-item-hvr {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content-wrapper .box-single .box-item-hvr span {
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 60px;
    border: 1px solid #fff;
}

.gallery-content-wrapper .box-single:nth-child(6) .box-item-hvr,
.gallery-content-wrapper .box-single:nth-child(6)::before,
.gallery-content-wrapper .box-single:hover .box-item-hvr,
.gallery-content-wrapper .box-single:hover::before {
    opacity: 1;
}

.gallery-content-wrapper .box-single:nth-child(n+7) {
    display: none;
}

.gallery-content-wrapper .box-single img {
    object-fit: cover;
    aspect-ratio: 180 / 150;
    width: 100%;
    height: auto;
}

.gallery-content-wrapper .description-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gallery-content-wrapper .description-inner h1,
.gallery-content-wrapper .description-inner h2,
.gallery-content-wrapper .description-inner h3,
.gallery-content-wrapper .description-inner h4,
.gallery-content-wrapper .description-inner h5,
.gallery-content-wrapper .description-inner h6 {
    color: #224254;
    padding-bottom: 16px;
}

.gallery-content-wrapper .description-inner h1:not(:first-child),
.gallery-content-wrapper .description-inner h2:not(:first-child),
.gallery-content-wrapper .description-inner h3:not(:first-child),
.gallery-content-wrapper .description-inner h4:not(:first-child),
.gallery-content-wrapper .description-inner h5:not(:first-child),
.gallery-content-wrapper .description-inner h6:not(:first-child) {
    padding-top: 16px;
}

.gallery-content-wrapper .description-inner p+p {
    padding-top: 16px;
}

.gallery-content-wrapper .description-inner p {
    padding-bottom: 16px;
}

.gallery-content-wrapper .description-features {
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
}

.gallery-content-wrapper .description-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    width: 100%;
}

.gallery-content-wrapper .description-features li {
    width: calc(50% - 8px);
    padding-left: 24px;
    position: relative;
    font-size: 18px;

}

.gallery-content-wrapper .description-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/feature-tick.svg);
}

.gallery-content-wrapper .description-wrapper h3 {
    font-size: 24px;
}

.gallery-content-wrapper .description-inner {
    width: calc(66.66666666% - 12px);
}

.gallery-content-wrapper .description-sidebar {
    width: calc(33.33333333% - 12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid rgba(166, 174, 187, 0.40);
    background: #FFF;
    padding: 24px;
    height: 100%;
    position: sticky;
    top: 100px;
}

.gallery-content-wrapper .sidebar-title {
    padding-left: 16px;
    border-left: 5px solid #E16B3B;
    font-size: 20px;
    color: #224254;
}

.gallery-content-wrapper .description-sidebar hr {
    background: rgba(166, 174, 187, 0.40);
    height: 1px;
    border: 0;
    width: 100%;
}

.gallery-content-wrapper .sidebar-upper-wrapper {
    padding: 16px;
    border-radius: 4px;
    background: #F4F8FB;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-content-wrapper .sidebar-lower-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-content-wrapper .sidebar-upper-item,
.gallery-content-wrapper .sidebar-lower-item {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.gallery-content-wrapper .sidebar-lower-item {
    font-size: 14px;
}

.gallery-content-wrapper .sidebar-upper-item.item-large,
.gallery-content-wrapper .sidebar-lower-item.item-large {
    font-size: 20px;
}

.gallery-content-wrapper .sidebar-lower-item>*:first-child {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gallery-content-wrapper .sidebar-lower-item>*:first-child svg {
    min-width: 16px;
    max-width: 16px;
    width: 100%;
}

.gallery-content-wrapper .sidebar-upper-item>*:last-child,
.gallery-content-wrapper .sidebar-lower-item>*:last-child {
    text-align: right;
    font-weight: 700;
    margin-left: auto;
}

.gallery-content-wrapper .sidebar-upper-item.item-large>*:last-child,
.gallery-content-wrapper .sidebar-lower-item.item-large>*:last-child {
    color: #224254;
}

.single-property .hero {
    aspect-ratio: 1440 / 625;
    max-height: 625px;
}

.single-property .hero-outer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
    height: 100%;
    justify-content: space-between;
}

.single-property .hero .hero-wrapper {
    padding: 32px;
    border-radius: 8px;
    background: rgba(22, 43, 54, 0.70);
    backdrop-filter: blur(18.899999618530273px);
    height: auto;
}

.single-property .hero .features-wrapper,
.single-property .badge-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px 16px;
    flex-wrap: wrap;
    color: #fff;
}

.single-property .hero span {
    opacity: 0.8;
}

.hero .item-id {
    margin-left: auto;
}

.single-property .hero .badge-item-wrapper {
    font-size: 14px;
}

.single-property .hero .badge {
    border-radius: 60px;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 1px 16px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.single-property .hero .badge-type-miete {
    color: #E16B3B;
    border-color: #E16B3B;
    background: rgba(225, 107, 59, 0.17);
}

.single-property .hero .badge-type-kauf {
    color: #5086B4;
    border-color: #5086B4;
    background: rgba(80, 134, 180, 0.17);
}

.single-property .hero .features-wrapper span {
    font-size: 18px;
}

.single-property .hero .features-wrapper div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.single-property .hero .features-wrapper svg {
    min-width: 24px;
    max-width: 24px;
    width: 100%;
}

@media (max-width:1366px) {
    .gallery-content-wrapper {
        padding: 96px 0;
    }

    .single-property .hero {
        aspect-ratio: auto;
    }
}

@media (max-width:1199px) {
    .block-prev {
        padding: 32px 0;
    }

    .block-prev .btn-wrapper {
        display: flex;
        justify-content: center;
    }

    .gallery-content-wrapper {
        padding: 64px 0;
    }
}

@media (max-width:991px) {
    .single-property .cta-bg .h1 {
        font-size: 24px;
    }

    .single-property .cta-bg-contact .value {
        font-size: 18px;
    }

    .gallery-content-wrapper .gallery-wrapper {
        flex-wrap: wrap;
    }

    .gallery-content-wrapper .description-wrapper {
        gap: 16px;
    }

    .gallery-content-wrapper .description-inner {
        font-size: 14px;
    }

    .gallery-content-wrapper .description-wrapper h3 {
        font-size: 18px;
    }

    .gallery-content-wrapper .description-features li {
        width: 100%;
        font-size: 16px;
    }

    .gallery-content-wrapper .description-sidebar,
    .gallery-content-wrapper .description-inner,
    .gallery-content-wrapper .gallery-boxes,
    .gallery-content-wrapper .gallery-slider {
        width: 100%;
    }

    .gallery-content-wrapper .gallery-boxes {
        gap: 16px;
    }

    .gallery-content-wrapper .box-single {
        max-width: calc(50% - 8px);
    }

    .gallery-content-wrapper .box-single img {
        aspect-ratio: 171 / 156;
    }

    .gallery-content-wrapper .description-sidebar {
        padding: 16px;
    }

    .single-property .hero .badge-item-wrapper {
        font-size: 12px;
    }

    .single-property .hero .features-wrapper span {
        font-size: 16px;
    }
}

@media (max-width:679px) {
    .gallery-content-wrapper .gallery-image img {
        aspect-ratio: 358 / 500;
    }

    .single-property .hero h1,
    .single-property .hero .h1 {
        font-size: 28px;
    }
}

@media (max-width:479px) {

    .single-property .cta-bg-contact,
    .single-property .cta-bg-contact a {
        width: 100%;
    }
}

@media (max-width:390px) {
    .single-property .hero-outer-wrapper {
        gap: 64px;
    }
}

/* single-post */

.pb-0{
	padding-bottom: 0!important;
}

a:where(:not(.wp-element-button)){
	text-decoration:none!important;
    color: #5184B5;
}

.cmplz-category-header .cmplz-always-active::after{
	content: none!important;
    display:none!important;
}