/*  Slider Variante
.randboxes__randbox{
    position: relative;
    height:132px;
    background-size: cover;
    display: block;
}

.randboxes__randbox:hover{
}

.randboxes_randboxgradient{
    transition: background-color 0.4s ease;
    background-color: rgba(0,70,152,0.6);
    height:132px
}

.randboxes__randbox:hover .randboxes_randboxgradient{
    transition: background-color 0.4s ease;
    background-color: rgba(255,255,255,0.95);
    height:132px
}

.randboxes__randbox .number{
    position: absolute;
    right:9px;
    bottom:6px;
    color:#fff;
    font-family:'Archivo Narrow', sans-serif;
 font-weight:bold;
    font-size: 56px;
    letter-spacing: 0.5px;
    line-height: 0.75;
}

.randboxes__randbox .title{
    position: absolute;
    left:9px;
    bottom:6px;
    color:#fff;
    font-family:'Archivo Narrow', sans-serif;
 font-weight:bold;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
    width: 80%;
}

.randboxes__randbox:hover .title,
.randboxes__randbox:hover .number{
    color:rgb(0,70,152);
    transition: color 0.4s ease;
}

.randboxes__randbox .content{
    opacity: 0;
    color:#333;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    padding:6px 9px;
    transition: opacity 0.4s ease;
}

.randboxes__randbox:hover .content{
    transition: opacity 0.4s ease;
    opacity: 1;
}
*/

.randboxes__slidernext,
.randboxes__sliderprev{
    display: block;
    font-size: 48px;
    height:380px;
    line-height:380px;
    text-align: right;
    cursor: pointer;
}


.randboxes__slidernext{
    text-align: left;
}


.randboxes__cardcontent{
    background: #fff;
    border:1px solid #d6e1e8;
    margin-bottom: 1px;
    min-height: 380px;
    position: relative;
}


.lSAction>a {
    display: none !important;
}


/* Very Large Devices */
@media only screen and (min-width : 1200px){

}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px){

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px){
    .randboxes__cardcontent{
        min-height: 360px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px){

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 544px){

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px){

}