/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/
@font-face {
    font-family: 'Futura Cyrillic';
    src: url('fonts/FuturaCyrillic-Demi.eot');
    src: url('fonts/FuturaCyrillic-Demi.eot?#iefix') format('embedded-opentype'),
        url('fonts/FuturaCyrillic-Demi.woff2') format('woff2'),
        url('fonts/FuturaCyrillic-Demi.woff') format('woff'),
        url('fonts/FuturaCyrillic-Demi.ttf') format('truetype'),
        url('fonts/FuturaCyrillic-Demi.svg#FuturaCyrillic-Demi') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic';
    src: url('fonts/FuturaCyrillicBook.eot');
    src: url('fonts/FuturaCyrillicBook.eot?#iefix') format('embedded-opentype'),
        url('fonts/FuturaCyrillicBook.woff2') format('woff2'),
        url('fonts/FuturaCyrillicBook.woff') format('woff'),
        url('fonts/FuturaCyrillicBook.ttf') format('truetype'),
        url('fonts/FuturaCyrillicBook.svg#FuturaCyrillicBook') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic';
    src: url('FuturaCyrillicHeavy.eot');
    src: url('FuturaCyrillicHeavy.eot?#iefix') format('embedded-opentype'),
        url('FuturaCyrillicHeavy.woff2') format('woff2'),
        url('FuturaCyrillicHeavy.ttf') format('truetype'),
        url('FuturaCyrillicHeavy.svg#FuturaCyrillicHeavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body{
    overflow-x: hidden;
}

body,
p,
.elementor-icon-list-text {
    font-family: 'Futura Cyrillic' !important;
    font-weight: 400 !important;
}

.futura-font,
.elementor-counter-number,
.elementor-counter-title,
.elementor-widget-counter .elementor-counter-number-wrapper {
    font-family: 'Futura Cyrillic' !important;
}

.search-box {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 34px;
}

.search-box input {
    flex: 1;
    height: 44px;
    padding: 0 0;
    border: none;
    border-bottom: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 2px;
    outline: none;
    font-family: 'Futura Cyrillic' !important;
    border-radius: 0;
}

.search-box input:focus{
    border-bottom-color:#ffffff ;
}

.search-box input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.search-box button {
    width: 125px;
    height: 44px;
    border: 1px solid #ffffff; border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: 'Futura Cyrillic' !important;
}

.search-box button:hover {
    background-color: #b1a57b; border-color: #b1a57b; color: #ffffff;
}

.btn-menu a{
    border: 1px solid #ffffff;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #315d7a;
    background: #ffffff;
    overflow: hidden;
}

.property-image {
    position: relative;
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.property-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sold-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 104px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #b8ad7e;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
}

.property-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-height: 128px;
    padding: 22px 10px 18px;
    text-align: center;
}

.property-content h3 {
    margin: 0 0 12px;

    color: #b8ad7e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
}

.property-content p {
    margin: 0;

    color: #173f5b;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.property-content p span {
    padding: 0 3px;
}


/* Tablet */
@media (max-width: 991px) {

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .property-image {
        height: 230px;
    }

}


/* Mobile */
@media (max-width: 600px) {

    .property-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .property-image {
        height: auto;
        aspect-ratio: 1.42 / 1;
    }

    .property-content {
        min-height: 125px;
    }

    .property-content h3 {
        font-size: 26px;
    }

}