/* PROJEKAT TOP */
.single-project-campari {
    background: #fff;
    padding: 130px 0 55px;
    color: #111;
}

.single-project-campari .container {
    max-width: 1180px;
}

.single-project-campari .back-projects {
    display: inline-block;
    color: #555;
    text-decoration: none;
    margin-bottom: 24px;
    font-size: 14px;
}

.single-project-campari .back-projects:hover {
    color: #D20000;
}

.single-project-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 34px;
    align-items: start;
}

.project-left {
    min-width: 0;
}

.project-sidebar {
    background: #fff;
    border:1px solid #e7e7e794;
    border-radius: 8px;
    padding: 24px 0 0;
    position: sticky;
    top: 120px;
}

.project-sidebar-label {
    display: block;
    color: #D20000;
    font-size: 14px;
	padding:0 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-sidebar h1 {
    color: #111;
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 8px;
    font-weight: 700;
	padding:0 15px;
}

.project-sidebar-location {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
	padding:0 15px;
}

.project-sidebar-location img {
    width: 14px;
}

.project-available-box {
    background: #16c766;
    color: #fff;
    border-radius: 5px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 700;
       margin: 0 15px;
}

.project-sidebar-meta {
    border-bottom: 0;
}

.project-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 14px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
}

.project-meta-row span {
    color: #555;
	font-weight: 600;
}

.project-meta-row strong {
    color: #111;
    font-weight: 400;
    text-align: right;
}

.project-price-box {
    background: #3f3f3f;
    color: #fff;
    margin-top: 0;
    padding: 18px 16px;
}

.project-price-box span {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    margin-bottom: 4px;
}

.project-price-box strong {
    display: block;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.project-sidebar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 43px;
    background: #fff;
    color: #D20000;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
	margin:10px;
	margin-bottom:0;
    text-align: center;
}
.box-down-price {
	    background: #3C3C3C;
    padding-bottom: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.project-sidebar-button::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url('https://dev.campariinternational.rs/wp-content/uploads/2026/06/Icon-6.png') center/contain no-repeat;
}

.project-sidebar-button:hover {
    background: #D20000;
    color: #fff;
}

.project-sidebar-button:hover::before {
    filter: brightness(0) invert(1);
}

/* Gallery ostaje ista funkcionalno, samo bela verzija */
.single-project-campari .gallery-main {
    border-radius: 7px;
    overflow: hidden;
}

.single-project-campari .gallery-main img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    display: block;
}

.single-project-campari .gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.single-project-campari .gallery-thumb {
    flex: 0 0 112px;
    max-width: 112px;
    border-radius: 4px;
    border: 2px solid transparent;
    overflow: hidden;
    opacity: .8;
}

.single-project-campari .gallery-thumb.active {
    border-color: #D20000;
    opacity: 1;
}

.single-project-campari .gallery-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

.project-about-section {
    margin-top: 28px;
}

.project-about-section h3,
.project-features-campari h3 {
    color: #111;
    font-size: 22px;
    margin: 0 0 18px;
    font-weight: 700;
}

.project-about-text {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

.project-about-text p {
    margin-bottom: 16px;
}

.project-features-campari {
    margin-top: 38px;
}

.project-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.project-feature-item {
    min-height: 54px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 7px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 13px;
    line-height: 1.35;
}

.project-feature-item img {
    object-fit: contain;
}

@media (max-width: 991px) {
    .single-project-campari {
        padding: 105px 0 45px;
    }

    .single-project-top {
        grid-template-columns: 1fr;
    }

    .project-sidebar {
        position: static;
        order: 2;
    }

    .single-project-campari .gallery-main img {
        height: 360px;
    }

    .project-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .single-project-campari {
        padding: 92px 0 38px;
    }

    .project-sidebar {
        padding: 20px 0 0;
    }

    .project-sidebar h1 {
        font-size: 24px;
    }

    .single-project-campari .gallery-main img {
        height: 270px;
    }

    .single-project-campari .gallery-thumbs {
        display: none;
    }

    .project-features-grid {
        grid-template-columns: 1fr;
    }
}
/* PROJEKAT TOP END */

/* APARTMENT TOP CAMAPRI */
.single-apartment-section {
    background: #fff;
    padding: 130px 0 90px;
}

.single-apartment-section > .container {
    max-width: 1180px;
}

.back-apartments {
    display: inline-block;
    color: #555;
    text-decoration: none;
    margin-bottom: 24px;
    font-size: 14px;
}

.back-apartments:hover {
    color: #D20000;
}

.single-apartment-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 34px;
    align-items: start;
}

.apartment-gallery {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.single-apartment-section .gallery-main {
    border-radius: 7px;
    overflow: hidden;
}

.single-apartment-section .gallery-main img {
    width: 100%;
    height: 410px;
    object-fit: contain;
    display: block;
}

.single-apartment-section .gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    overflow: visible;
}

.single-apartment-section .gallery-thumb {
    flex: 0 0 calc((100% - 42px) / 4);
    max-width: calc((100% - 42px) / 4);
    border-radius: 4px;
    border: 2px solid transparent;
    opacity: .85;
    overflow: hidden;
}

.single-apartment-section .gallery-thumb.active {
    border-color: #D20000;
    opacity: 1;
}

.single-apartment-section .gallery-thumb img {
    width: 100%;
    height: 78px;
    object-fit: contain;
    display: block;
}

.apartment-detail-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 24px 0 0;
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.apartment-detail-label {
    display: block;
    color: #D20000;
    font-size: 14px;
    font-weight: 700;
    padding: 0 15px;
    margin-bottom: 8px;
}

.apartment-detail-card h1 {
    color: #111;
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 8px;
    font-weight: 700;
    padding: 0 15px;
}

.apartment-detail-card .apartment-single-location {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 0 15px;
}

.apartment-detail-card .apartment-single-location img {
    width: 14px;
}

.apartment-available-box {
    background: #16c766;
    color: #fff;
    border-radius: 5px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 700;
    margin: 0 15px 0;
    text-align: center;
}

.apartment-detail-table {
    margin-top: 12px;
}

.apartment-detail-table div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 14px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
}

.apartment-detail-table span {
    color: #555;
    font-weight: 600;
}

.apartment-detail-table strong {
    color: #111;
    font-weight: 400;
    text-align: right;
}

.apartment-dark-info {
    background: #3C3C3C;
    color: #fff;
    padding: 16px 15px 18px;
}

.apartment-dark-info .apartment-description {
    margin: 0;
}

.apartment-dark-info .apartment-description h3 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 15px;
}

.apartment-dark-info .apartment-description p {
    color: rgba(255,255,255,.88);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.apartment-detail-card .apartment-cta {
    background: #fff;
    color: #D20000 !important;
    border-radius: 5px;
    min-height: 43px;
    height: auto;
    margin: 10px;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.apartment-detail-card .apartment-cta:hover {
    background: #D20000;
    color: #fff !important;
}

.apartment-detail-card .apartment-cta:hover::before {
    filter: brightness(0) invert(1);
}

.apartment-features-campari {
    margin-top: 42px;
}

.apartment-features-campari h3 {
    color: #111;
    font-size: 22px;
    margin: 0 0 18px;
    font-weight: 700;
}

.apartment-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.apartment-feature-item {
    min-height: 54px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 7px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 13px;
    line-height: 1.35;
}

.apartment-feature-item img {
    object-fit: contain;
}
.single-apartment-section .gallery-main {
    position: relative;
}

.single-apartment-section .gallery-main .apartment-status {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 8px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.single-apartment-section .gallery-main .apartment-status.dostupno {
    background: #13c75b;
}

.single-apartment-section .gallery-main .apartment-status.rezervisano {
    background: #f5b400;
}

.single-apartment-section .gallery-main .apartment-status.prodato {
    background: #6b7280;
}

@media (max-width: 575px) {
    .single-apartment-section .gallery-main .apartment-status {
        top: 14px;
        right: 14px;
        font-size: 12px;
        padding: 7px 14px;
    }
}
@media (max-width: 991px) {
    .single-apartment-section {
        padding: 105px 0 70px;
    }

    .single-apartment-top {
        grid-template-columns: 1fr;
    }

    .apartment-detail-card {
        position: static;
        order: 2;
    }

    .single-apartment-section .gallery-main img {
        height: 360px;
    }

    .apartment-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .single-apartment-section {
        padding: 92px 0 60px;
    }

    .apartment-detail-card {
        padding: 20px 0 0;
    }

    .apartment-detail-card h1 {
        font-size: 24px;
    }

    .single-apartment-section .gallery-main img {
        height: 270px;
    }

    .single-apartment-section .gallery-thumbs {
        display: none;
    }

    .apartment-features-grid {
        grid-template-columns: 1fr;
    }
}
/* APARTMENT TOP CAMAPRI END */

/* novi css */
.project-gallery {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.project-info {
    min-width: 0;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    padding-bottom: 6px;
    scroll-behavior: smooth;
}

.gallery-thumb {
    flex: 0 0 calc((100% - 30px) / 4);
    max-width: calc((100% - 30px) / 4);
}

.gallery-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.project-gallery {
    position: relative;
}

.gallery-arrow {
    display: flex;
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.55);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}
.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: rgba(255,255,255,.06);
    border-radius: 20px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.22);
    border-radius: 20px;
    transition: .3s ease;
}

.gallery-thumbs::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,.38);
}
.gallery-thumbs {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.25) rgba(255,255,255,.05);
}
.gallery-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
    padding: 0;
}

.gallery-arrow img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.gallery-arrow:hover {
    background: #000000bd;
    transform: translateY(-50%) scale(1.06);
	color:#fff;
}

.gallery-prev {
    left: 16px;
}

.gallery-next {
    right: 16px;
}

.gallery-prev img {
    transform: rotate(180deg);
}
.apartment-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4A5565;
    font-size: 13px;
}

.apartment-location img {
    object-fit: contain;
}
.apartment-bottom strong {
    color: #D20000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.apartment-bottom strong img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: .3s ease;
}

.apartment-card:hover .apartment-bottom strong img {
    transform: translateX(3px);
}
.apartment-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.apartment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,.16);
}
.js-main-image {
    transition: opacity .25s ease;
}

.js-main-image.is-changing {
    opacity: 0;
}
.project-contact-button a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #D20000;
    color: #fff;
    text-decoration: none;
    height: 50px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 18px;
}

.project-contact-button a::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url('https://dmdmconstruction.rs/wp-content/uploads/2026/06/Upit.svg') no-repeat center;
    background-size: contain;
    margin-right: 10px;
}
.project-contact-button {
	padding-bottom: 15px;
}
.postid-236  .zavrseno-holder span, .postid-366 .zavrseno-holder span{
	display:none;
}
.apartment-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.apartment-card-top h3 {
    margin: 0;
}

.apartment-numbers-badge {
    background: rgba(210, 0, 0, 0.08);
    color: #D20000;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 30px;
    white-space: nowrap;
}

.apartment-numbers-badge strong {
    font-weight: 700;
}

@media (max-width: 991px) {
    .single-project-hero {
        padding-top: 100px;
    }

    .single-project-top {
        grid-template-columns: 1fr;
    }

    .project-info h1 {
        font-size: 34px;
    }

    .gallery-main img {
        height: 360px;
    }

    .gallery-thumbs {
        display: none;
    }

    .project-gallery {
        position: relative;
    }

    .gallery-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: rgba(0,0,0,.55);
        color: #fff;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .project-info-boxes,
    .project-about-box,
    .project-features {
        max-width: 100%;
    }

    .apartments-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
	button.photos-arrow.photos-prev, button.photos-arrow.photos-next {
		display:none;
	}
}
@media (max-width: 767px) {
	.postid-160 .apartments-grid{
	grid-template-columns: repeat(1, 1fr)
}
}

@media (max-width: 575px) {
    .gallery-main img {
        height: 280px;
    }

    .project-apartments h2 {
        font-size: 30px;
    }

    .apartment-image {
        height: 220px;
    }

    .apartment-meta {
        flex-wrap: wrap;
    }
	.project-contact-button a {
		    font-size: 14px;
	}
}
/* PROJEKAT END */

/* TIPOVI STANOVA */
/* SINGLE APARTMENT */
.single-apartment-section {
    background: #fff;
    padding: 120px 0 90px;
}

.back-apartments {
    display: inline-block;
    color: #4A5565;
    text-decoration: none;
    margin-bottom: 35px;
    font-size: 14px;
}
a.back-apartments {
	color:#4A5565;
}
.single-apartment-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.apartment-gallery {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.single-apartment-info h1 {
    font-size: 36px;
    margin: 18px 0 22px;
    color: #0A0A0A;
}

.apartment-single-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4A5565;
    font-size: 14px;
}

.apartment-single-location img {
    width: 14px;
}

.apartment-price {
    font-size: 30px;
    margin-bottom: 18px;
    color: #0A0A0A;
}

.apartment-price span {
    color: #D20000;
}


.apartment-single-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f8f8f8;
    border-radius: 10px;
    padding: 14px;
    gap: 12px;
    margin-bottom: 25px;
}
@media only screen and (min-width: 1200px) {
   .apartment-single-meta {
    grid-template-columns: repeat(4, 1fr)!important;

}
}
.apartment-single-meta div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 10px;
    align-items: center;
}

.apartment-single-meta img {
    grid-row: span 2;
    width: 42px;
    height: 42px;
}

.apartment-single-meta span {
    color: #6b7280;
    font-size: 13px;
}

.apartment-single-meta strong {
    color: #111;
    font-size: 15px;
}

.apartment-description h3,
.apartment-features h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111;
}

.apartment-description {
    margin-bottom: 25px;
}

.apartment-description p {
    color: #4A5565;
    line-height: 1.7;
    margin: 0;
}

.apartment-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 45px;
}

.apartment-features li {
    break-inside: avoid;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #4A5565;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 10px;
}

.apartment-features li img {
    width: 13px;
    margin-top: 4px;
}

.apartment-cta {
    margin-top: 24px;
    background: #D20000;
    color: #fff!important;
    height: 52px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.apartment-cta:hover {
	background: #c70000;
}
    
.similar-apartments {
    margin-top: 85px;
}

.similar-apartments h2 {
    font-size: 28px;
    margin-bottom: 28px;
}

.similar-apartments h2 span {
    color: #D20000;
}

.similar-apartments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.similar-apartment-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.similar-apartment-card > img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.similar-apartment-content {
    padding: 18px;
}

.similar-apartment-content h3 {
    margin: 0 0 10px;
    color: #111;
}

.similar-apartment-content div {
    display: flex;
    justify-content: space-between;
    color: #4A5565;
    font-size: 13px;
    margin-bottom: 14px;
}

.similar-apartment-content strong {
    color: #D20000;
    font-size: 18px;
}
.single-apartment-section .gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
    overflow: visible;
}

.single-apartment-section .gallery-thumb {
    width: 100%;
    max-width: none;
    flex: unset;
}

.single-apartment-section .gallery-thumb img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    display: block;
}

.single-apartment-section .gallery-main img {
    height: 430px;
}
.apartment-cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #D20000;
    color: #fff;
    text-decoration: none;
    height: 54px;
    border-radius: 8px;
    font-weight: 600;
    padding: 0 24px;
}

.apartment-cta::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url('https://dev.campariinternational.rs/wp-content/uploads/2026/06/Icon-6.png') no-repeat center;
    background-size: contain;
    margin-right: 10px;
}
.apartment-photos-section {
    margin-top: 70px;
}

.apartment-photos-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.apartment-photos-section h2 span {
    color: #D20000;
}

/* .apartment-photos-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-behavior: smooth;
} */

.apartment-photos-slider::-webkit-scrollbar {
    height: 6px;
}

.apartment-photos-slider::-webkit-scrollbar-thumb {
    background: #D20000;
    border-radius: 30px;
}

.apartment-photo-item {
    min-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.apartment-photo-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.apartment-photos-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: default;
}

.apartment-photo-item img {
    pointer-events: none;
    user-select: none;
}

@media (min-width: 992px) {

    .apartment-photos-slider {
        scrollbar-width: none;
    }

    .apartment-photos-slider::-webkit-scrollbar {
        display: none;
    }

    .photos-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 0;
        background: rgba(0,0,0,.72);
        backdrop-filter: blur(6px);
        z-index: 5;
        cursor: pointer;

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

        transition: .25s ease;
    }

    .photos-arrow:hover {
         background: #000000bd;
    transform: translateY(-50%) scale(1.06);
    color: #fff;
    }

    .photos-prev {
        left: 18px;
    }

    .photos-next {
        right: 18px;
    }

    .photos-arrow img {
        width: 16px;
    }

    .photos-prev img {
        transform: rotate(180deg);
    }

    .apartment-photos-wrapper {
        position: relative;
    }
}
@media (max-width: 767px) {

    .apartment-photo-item {
        min-width: 88%;
    }

    .apartment-photo-item img {
        height: 260px;
    }

    .apartment-photos-section h2 {
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    .single-apartment-section {
        padding: 100px 0 70px;
    }

    .single-apartment-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apartment-features ul {
        columns: 1;
    }
}

@media (max-width: 575px) {
    .single-apartment-info h1 {
        font-size: 30px;
    }

    .apartment-price {
        font-size: 24px;
    }

    .apartment-single-meta {
        grid-template-columns: 1fr;
    }

    .similar-apartments-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {

    .single-apartment-section .gallery-thumbs {
        display: none;
    }

    .single-apartment-section .gallery-main img {
        height: 320px;
    }

    .single-apartment-section .gallery-arrow {
        display: flex;
    }

}
/* SINGLE APARTMENT END */


.project-apartments .apartments-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 42px !important;
}

.project-apartments .apartment-card {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
    background: #fff !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 18px -6px rgba(0,0,0,.12) !important;
}

.project-apartments .apartment-image {
    position: relative !important;
    overflow: hidden !important;
    height: 260px !important;
}

.project-apartments .apartment-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.project-apartments .apartment-content {
    padding: 22px 24px !important;
}

.project-apartments .apartment-meta {
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    border-bottom: 1px solid #e5e7eb !important;
    padding-bottom: 18px !important;
    margin-bottom: 20px !important;
}

.project-apartments .apartment-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
.apartment-meta img {
    margin-right: 5px;
    vertical-align: middle;
}
.apartment-bottom span {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}
.project-apartments h2 {
    text-align: center;
    font-size: 38px;
    margin: 0 0 10px;
}
.project-apartments > .container > p {
    text-align: center;
    color: #4A5565;
    font-size: 17px;
    margin-bottom: 45px;
}
@media (max-width: 991px) {
    .project-apartments .apartments-grid {
        grid-template-columns: 1fr !important;
    }
	.project-apartments h2 {
    font-size: 27px;
}
}