@charset "UTF-8";
/* CSS Document */

.proximity-dates{
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", "Lucida Grande", sans-serif;
}

.slider-cards-container{
    position: relative;
    background-color: transparent;
}

.slider-cards-container .header{
    margin-bottom: 34px;
    padding: 0 80px;
    width: 100%;

}

.h_tittle{
    color: #0077b9;
    font-size: 28px;
    font-weight: 400;
}

.cards-container{
    padding: 0 80px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.cards-blk{
    position: relative;
    overflow: visible;
    margin: 0 auto;

    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    transform: translate3d(0px, 0px, 0px);
}

.card-wrapper{
    margin-right: 20px;
}



.card-elm{
    width: 265px;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    flex: auto;
    flex-shrink: 0;
    flex-grow: 0;
    border: none;
    height: 100%;
    position: relative;
    transition-property: transform;
    border-radius: 8px;
    background-color: #f5f5f5;
    cursor: pointer;
    overflow: hidden;
    transition: transform .2s cubic-bezier(.235,0,.05,.95);;
    z-index: 0;

    height: 355px;
}

.card-elm:hover{
    box-shadow: 0 2rem 5rem 0 rgba(0,0,0,.15);
    transform: perspective(1px) scale3d(1.01,1.01,1) translateZ(0) !important;
    transition: opacity .3s cubic-bezier(.38,.41,.27,1);
    z-index: 0;
}

.card-bg-img{
    width: 100%;
    height: 100%;
}

.card-bg-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-gradient{
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65%;
    background-image: linear-gradient( to bottom, transparent, rgba(0, 0, 0, 0.06) 50px );
}

.card-elm .card-title{
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(50% + 20px);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 0 38px;
    line-height: 31px;
}

.card-elm .btm_l{
    position: absolute;
    z-index: 2;
    left: 40px;
    bottom: 40px;
    width: calc(50% - 40px);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 6px;
}

.card-elm .btm_r{
    position: absolute;
    z-index: 2;
    right: 40px;
    bottom: 40px;
    width: calc(50% - 40px);
    line-height: 22px;
    text-align: right;
   
}

.card-elm .btm_r .btm_r-btn{
    display: inline-block;
    text-align: center;
    padding: 2px 12px;
    border: 3px solid #fff;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: transparent;
}

.card-elm:hover .btm_r .btm_r-btn{
    background-color: #1079E3;
    border-color: #1079E3;
    transition: border-color .2s cubic-bezier(.235,0,.05,.95),background-color .2s cubic-bezier(.235,0,.05,.95);
}