
/* real-estate-blogs */
.full_layout .slick-list.draggable {
    overflow: initial;
}

 .RE-blog-post-img {
    border: 9px solid #FFF;
    background: lightgray;
    border-radius: 12px;
    height: 271px;
    position: relative;
    transition: 0.3s;
}

 .real-estate-blog-post:hover .RE-blog-post-img {
    box-shadow: -2px 11px 17px 1px #0000000d;
}

 .RE-blog-post-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 .RE-blog-post-date {
    display: flex;
    width: 70px;
    padding: 10px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: -38px;
    border-radius: 12px;
    background: #FFF;
    transition: var(--transition);
    box-shadow: 0px 6px 15px 0px #404f680d;
}

 .real-estate-blog-post:hover .RE-blog-post-date{
  transform: translatey(-5px);
}

 .RE-blog-post-date p {
    margin: 0;
    color: var(--primary-font-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
}

 .RE-blog-post-date span {
    color: var(--primary-font-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

 .RE-blog-post-content {
    padding: 17px 20px 17px 0;
}
 .RE-blog-post-content a h2:hover{
    color: var(--a-hover-color);
    transition: var(--transition);
}
 .RE-blog-post-content p {
    color: var(--primary-font-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 5px;
}

 .RE-blog-post-content a {
    text-decoration: none;
}

 .RE-blog-post-content a h2 {
    color: var(--primary-font-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
}

 .RE-blog-slider-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;
    margin-top: 10px;
}

 .RE-blog-slider-arrows span {
    background: #FFFFFF;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333333;
    font-size: 14px;
    cursor: pointer;
}

 .RE-blog-slider-arrows span:hover {
    box-shadow: 0px 5px 20px 0px #0000001a;
}

 .RE-blog-slider-arrows span.prev-arrow2.slick-arrow.slick-disabled {
    color: #BABABA;
}

 .RE-blog-slider-arrows .next-arrow2.slick-arrow.slick-disabled {
    color: #BABABA;
}

@media (max-width: 767px) {
     .RE-blog-post-date {
        width: 60px;
    }

     .RE-blog-post-date span {
        font-size: 18px;
    }

     .RE-blog-post-date p {
        font-size: 12px;
    }

     .RE-blog-post-date p {
        font-size: 14px;
    }
}

 .RE-blog-post-img img {
    height: 100%;
    object-fit: cover;
}
 .real-estate-blog-post {
    padding: 0 10px;
}