body{
    position: relative;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    overflow-y: hidden;
}

.glideContainer{
    display: block;
    width: 100%;
    position: relative;
}

.jobs-item{
padding: 30px 10px;
display: flex;
justify-content: center;
}

.jobs-inner{
    width: 260px;
    background: #fff;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 260px;
    height: 210px;
    border-radius: 10px;
    flex-direction: column;
    padding: 10px 20px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 3px 25px rgba(0,0,0,.16);
    position: relative;
}

.jobs-logo{
    text-align: center;
}
.jobs-logo{
    margin: 0 auto;
    width: 95px;
    padding-top: 5px;
    height: 45px;
}
.jobs-logo img{
    width: 95px;
    height: 45px;
    display: inline-block;
    object-fit: contain;
}

.jobs-title{
    font-size:19px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.jobs-distance,
.jobs-locations{
    font-size: 12px;
}

.jobs-actions{
    margin-top: 15px;
}
.jobs-actions a{
    border-radius: 5px;
    background: #0187c7;
    padding: 8px 35px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.btn-arrow{
    position: absolute;
    left: 0;
    width: 20px;
    background: #d8e3e8;
    bottom: 0;
    top:0;
    border: none;
    height: 220px;
    margin: auto 0;
}

.btn-arrow.btn-arrow--forward{
    left: initial;
    right: 0;
   
}
.btn-arrow--back:after{
    position: absolute;
    content: '';
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; 
    border-right:10px solid #fff; 
    left: 0;
    right: 0;
    margin: auto;
}

.btn-arrow--forward:after{
    position: absolute;
    content: '';
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; 
    border-left:10px solid #fff; 
    left: 0;
    right: 0;
    margin: auto;
}

.btn-arrow.btn-arrow--forward:focus{
    outline: none;
}

.btn-arrow.btn-arrow--back:focus{
    outline: none;
}

.jobs-actions a:hover{
    background: #2EBAF2;
}