section.featured-properties-carousel {
    padding: 50px 0;
}
section.featured-properties-carousel.overlap-top-with-section {
    margin-top: -160px;
    position: relative;
}
.property-slider {
    position: relative;
}
.property-slider > .property-slider-ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.property-slider-each {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #CCCCCC;
    background-color: #fff;
}
.property-slider-each.featured-post{
    padding: 0;
}
.property-slider-each.featured-post .property-slider-each-content{
    padding: 20px;
}
.property-slider-each h2 {
    float: left;
    width: 70%;
    padding-right: 1%;
}
.property-slider-each .property-slider-each-content p {
    width: 65%;
}
.property-slider-each a.link-button {
    /*float: right;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;*/
    line-height: 1.2em;
    white-space: nowrap;
}
.property-slider-each-img {
    width: 100%;
    height: 220px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}
ul[number_of_slides="2"] .property-slider-each-img {
    height: 300px;
}
ul[number_of_slides="1"] .property-slider-each-img {
    height: 450px;
}
.property-slider-each-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    transform: scale(1);
}
.property-slider-each-img:hover img{
    transform: scale(1.05);
}
.property-slider-each-content {
    /*float: left;*/
    width: 100%;
    /*position: relative;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1 0;
}
.property-slider .lSSlideOuter .lSPager.lSpg>li a {
    width: 15px;
    height: 15px;
    background-color: #CCCCCC;
}
.property-slider .lSSlideOuter .lSPager.lSpg>li.active a,
.property-slider .lSSlideOuter .lSPager.lSpg>li:hover a {
    background-color: #000;
}
.property-slider .lSSlideOuter .lSPager.lSpg {
    margin-top: 20px !important;
}
.property-slider .lSSlideOuter .lSPager.lSpg>li {
    padding: 0 8px;
}

.property-prev,
.property-next {
    background-image: url(../../images/left-arrow.svg);
    background-position: center;
    height: 23px;
    width: 20px;
    position: absolute;
    left: -4%;
    top: 45%;
    background-repeat: no-repeat;
    cursor: pointer;
}
.property-next {
    background-image: url(../../images/right-arrow.svg);
    left: auto;
    right: -4%;
}

section.featured-properties-carousel.hide-controls .property-prev, 
section.featured-properties-carousel.hide-controls .property-next {
    display: none;
}
section.featured-properties-carousel.hide-pager .property-slider .lSSlideOuter .lSPager.lSpg {
    display: none;
}


/* slick slider additional settings start */
.property-slider .slick-slide {
    margin: 0 10px;
}
.property-slider .slick-list {
    margin: 0 -10px;
}
section.featured-properties-carousel.hide-pager ul.slick-dots {
    display: none !important;
}
/* slick slider additional settings end */



.player-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    overflow: hidden;
}
.player-container .playbutton:hover {
    cursor: pointer;
}
.player-container .playbutton {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    width: 100px;
    display: block;
}
.player-container video {
    width: calc(100%);
    height: calc(100%);
    object-fit: cover;
}



@media only screen and ( max-width: 1199px) {
    .property-slider-each h2 {
        width: 68%;
    }
}

@media only screen and ( max-width: 768px) {
    .property-prev, .property-next{
        display: none;
    }
    .property-slider-each h2 {
        width: 100%;
        padding-right: 0;
        font-size: 18px;
    }
    .property-slider-each a.link-button {
        transform: none;
        position: static;
    }
    .property-slider .lSSlideOuter .lSPager.lSpg>li a {
        width: 12px;
        height: 12px;
    }
    .property-slider .lSSlideOuter .lSPager.lSpg>li {
        padding: 0 5px;
    }
    .property-slider .lSSlideOuter .lSPager.lSpg {
        margin-top: 10px !important;
    }
    section.featured-properties-carousel.overlap-top-with-section {
        margin-top: -120px;
    }
    section.featured-properties-carousel {
        padding: 30px 0;
    }
    ul[number_of_slides="2"] .property-slider-each-img {
        height: 220px;
    }
    ul[number_of_slides="1"] .property-slider-each-img {
        height: 220px;
    }
    section.featured-properties-carousel.hide-pager .property-slider .lSSlideOuter .lSPager.lSpg {
        display: block;
    }    
    section.featured-properties-carousel.hide-pager ul.slick-dots {
        display: block !important;
    }
}

@media only screen and ( max-width: 468px) {
    .property-slider-each-img {
        height: 165px;
    }
}



/* RTL Styling Start */
body.rtl .property-slider-each h2 {
    float: right;
    margin-left: 1%;
    padding-right: 0;
}
body.rtl .property-slider-each a.link-button {
    right: auto;
    left: 0;
}