#inner-page-wrapper .container {
    width: 100%;
}

.section-heading {
    margin: 61px 0 50px;
}

.ip-properties-holder {
    position: relative;
    margin: 0 -15px;
}

.ip-properties-inner {
    display: flex;
    flex-wrap: wrap;
}

.ip-properties-list {
    width: 50%;
}

.ip-properties-list a {
    position: relative;
    display: block;
}

.ip-properties-photo {
    position: relative;
}

.ip-properties-photo canvas {
    display: block;
    width: 100%;
}

.ip-properties-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ip-properties-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 28px;
    color: #fff;
    z-index: 2;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ip-properties-list a:hover .ip-properties-content {
    opacity: 0;
}

.ip-properties-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background: rgb(222 190 149 / 70%);
    color: #000;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ip-properties-list a:hover .ip-properties-hover {
    opacity: 1;
}

.ip-properties-price {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-family-title);
    letter-spacing: 2.7px;
    margin: 0 0 12px;
}

.ip-properties-address {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.ip-properties-hover-inner {
    width: 100%;
}

.ip-properties-view {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 32px 0;
    border-top: 1px solid rgb(0 0 0 / 50%);
}

.ip-properties-specs span {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 49px;
    position: relative;
    letter-spacing: 3px;
}

.ip-properties-specs {
    font-size: 0;
    margin: 0 0 65px;
}

.ip-properties-specs span::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #000;
}

.ip-properties-specs span:last-child::after {
    display: none;
}

.ip-properties-hover .ip-properties-address {
    margin: 0 0 35px;
}

.ip-action-holder {
    position: relative;
    max-width: 290px;
    margin: 24px auto 0;
    padding: 35px 0;
}

.ip-action-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.ip-action-holder button {
    pointer-events: auto;
}

.ip-pagination-holder {
    max-width: max-content;
    margin: 0 auto;
    text-align: center;
}

.ip-pagination-holder ul > li {
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.ip-pagination-holder ul > li a {
    color: #000;
}

.ip-pagination-holder ul > li a {
    color: #6d7286;
    padding: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ip-pagination-holder ul > li a:hover {
    color: var(--secondary-color);
}

.ip-pagination-holder ul li.active a {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.ip-pagination-holder ul > li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 60%;
    background: rgb(0 0 0 / 50%);
}

.ip-pagination-holder ul > li:last-child::after {
    display: none;
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
@media only screen and (max-width: 1366px) {
} 
 
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */ 
@media only screen and (max-width: 1199px) {
    .ip-properties-price {
        font-size: 25px;
    }

    .ip-properties-address {
        font-size: 15px;
    }

    .ip-properties-view {
        padding: 22px 0;
    }

    .ip-properties-specs {
        margin: 0 0 25px;
    }
} 

/* iPad(portrait) | Galaxy Tab 4(portrait)  */ 
@media only screen and (max-width: 991px) {
    .ip-properties-list {
        width: 100%;
    }

    .ip-properties-price {
        font-size: 30px;
    }

    .ip-properties-address {
        font-size: 18px;
    }
} 

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */ 
@media only screen and (max-width: 767px) {
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */ 
@media only screen and (max-width: 480px) {
    .ip-properties-price {
        font-size: 25px;
    }

    .ip-properties-address {
        font-size: 15px;
    }

     .ip-properties-content {
        padding: 15px;
    }

    .ip-properties-view {
        padding: 5px 0;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .ip-properties-specs span {
        font-size: 14px;
        padding: 0 20px;
    }

    .ip-properties-specs {
        margin: 0 0 15px;
    }   

    .ip-properties-hover .ip-properties-address {
        margin: 0 0 15px;
    }
}
 

