@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


.container-swiper {
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 1140px;
    height: 400px;
}

.swiper {
    display: flex;
    width: 100%;
    height: 100%;
}

.swiper-slide {

    width: 270px !important;
    height: 359px !important;
    text-align: center;
    font-size: 18px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #DFE4E7;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 20%);
    transition: .3s ease;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide:hover {
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 20%);
    cursor: pointer;
}

.card {
    display: flex;
    height: 100%;
    width: 100% ;
    min-width: none;
    /*border: 2px solid #DFE4E7;*/
    flex-direction: column;
}

.card-image {
    height: 160px;
    width: 100% ;
    object-fit: cover ;
}

.card-image .img-inmueble {
    border-radius: 8px 8px 0 0 ;
    width: 100% ;
    height: 100% ;
}

.card-info {
    padding: 16px 16px 4px;
    max-height: 192px;
}

.card-price {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #5d6f7e;
    margin: 8px 0 0;
    text-align: justify;
}

.card-price-big {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #434f5b;
}

.card-location {
    display: flex;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #434f5b;
    margin: 8px 0;
    height: 32px;
}

.card-direction {
    display: flex;
    flex-direction: row;
    margin: 4px 0;
    height: 32px;
    align-items: center;
    padding: 4px 0;
}

.card-target {
    font-family: "Open Sans",sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #434f5b;
    flex-direction: row;
    margin-top: 12px;
    height: 32px;
    overflow: hidden;
    text-align: start;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
}

.specs .specs-data .span-data {
    color: #434F5B;
}

.specs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-height: 30px;
}

.specs .specs-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #DFE4E7;
    padding: 0 8px;
    margin: 0;
}

.specs .specs-data .span-data {
        font-family: 'Open Sans', sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 10px;
        line-height: 16px;
        text-align: center;
        color: #293038;
        padding: 7px 0;
        white-space: nowrap;
}

.specs .specs-data:last-child {
    border-right: none;
}

.swiper-button-prev {
    left: -5px !important;
    background-image:none !important;
}

.swiper-button-next {
    right: -5px !important;
    background-image:none !important;
}

.swiper-button-next::after{
    content: url('./arrow-right.svg');
}

.swiper-button-prev::after{
    content: url('./arrow-left.svg');
}




@media ( min-width: 960px ) {
    .swiper-button-prev {
        left: -35px !important;
        background-image:none !important;
    }
    .swiper-button-next {
        right: -42px !important;
        background-image:none !important;
    }


}

/* class button */
.container-button {
    display: flex;
    margin: 10px 20px 0 0;
    width: 100%;
    justify-content: center;
}

.slider-button {
    margin: 0 auto;
    background-color: #6FB453;
    font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
}

.slider-button:hover {
    background-color: #67a74d;
}

.slider-button:active {
    background-color: #5f9b47;
}