.custom-container {
    max-width: 90%;
    margin: 0 auto;
    display: block;
    padding: 0 15px;
    width: 100%;
}

.home--listings {
    background: var(--accent-color);
    color: #fff;
}

.home--listings .title span em {
    background: var(--accent-color);
}

.home--listings .single-grid a {
    color: #fff;
}

footer {
    background-image: url(/wp-content/uploads/2025/10/grainy-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.grainy--bg {
    background-image: url(/wp-content/uploads/2025/10/grainy-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hover--cerulean:hover {
    background: var(--cerulean);
}

.single-grid .img .hover--logo img {
    width: 150px;
    height: 150px;
}

.single-grid .hover--logo {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    transition: var(--trans);
}

.home--listings .single-grid a:hover .hover--logo {
    opacity: 1;
}

.new-dev-label {
    position: absolute;
    min-width: 100px;
    top: 15px;
    left: 20px;
    text-align: center;
    background: #17253f;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    z-index: 9;
}

.new-dev-label p {
    font-size: 16px;
    text-transform: uppercase;
    color: #a97c50;
    margin: 0;
}

.new-dev-ctn {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    outline: 1px solid #ced4da;
    outline-offset: -1px;
    transition: outline 0.3s linear;
}

.new-dev-img {
    width: 100%;
    height: 350px;
}

.new-dev-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-dev-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 8px 20px;
}

.new-dev-info-top {
    flex-grow: 1;
}

.new-dev-price span {
    font-size: 16px;
    line-height: 1;
    color: #17253f;
    margin: 0;
}

.new-dev-price p {
    font-size: 21px;
    line-height: 1;
    color: #17253f;
    margin: 0;
}

.new-dev-name p {
    font-size: 18px;
    line-height: 1;
    color: #000;
    margin: 0;
}

.new-dev-address {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.new-dev-details {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: solid 1px rgba(0, 0, 0, 0.6);
}

.new-dev-details-ctn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 8px;
}

.new-dev-address p,
.new-dev-details p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: var(--bronze);
    margin: 0;
}

.new-dev-address i {
    font-size: 14px;
    color: var(--bronze);
    margin: 0;
}

.new-dev-details i {
    font-size: 12px;
    color: var(--bronze);
    margin: 0;
}

.new-dev-details .green-circle i {
    color: #008000;
}

.new-dev-details .orange-circle i {
    color: #ffa500;
}

.new-dev-details .red-circle i {
    color: #e60e16;
}

.new-dev-img .hover--logo img {
    width: 150px;
    height: 150px;
}

.new-dev-img .hover--logo {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    z-index: 3;
    opacity: 0;
    transition: var(--trans);
}

.new-dev-ctn:hover .hover--logo {
    opacity: 1;
}

img.invert {
    filter: invert(1);
}

footer .agency--logo {
    max-width: 200px;
}

footer .logo {
    max-width: 150px;
    margin-right: 40px;
}

#multi-step-form {
    color: #fff;
    padding: 40px;
    background-image: url(/wp-content/uploads/2025/10/bg-grainy.jpg);
    background-position: center center;
    background-repeat: repeat;
}

@media screen and (min-width: 577px) {
    #multi-step-form .fw-choice.fw-input-container {
        display: inline-block;
        width: 49%;
        margin-bottom: 0;
    }
}

#multi-step-form .msf-h3 {
    display: block;
}

.default-page #multi-step-form [data-type="fw-text"] .fw-input-container label {
    margin-top: 0 !important;
}

#slider .swiper-thumbs img {
    height: 70px;
}

.swiper-slide-thumb-active {
    filter: brightness(0.5);
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bronze);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

#loader img {
    width: 100px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle-border {
    position: relative;
    width: 200px;
    height: 200px;
}
/* .circle-border img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
} */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}
.progress {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 6;
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    animation: draw 1s linear forwards;
}
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.video-container.mobile {
    display: none;
}

@media screen and (max-width: 576px) {
    .header .logo img {
        max-height: 35px;
        margin-top: 3px;
    }
}
