body {
    margin: 0;
}

.wrapper {
    width: 100%;
    height: 200px;
    position: relative;
    cursor: pointer;
    display: block;
}

@-webkit-keyframes slide {
    from{
        background-position:0;
    }
    to{
        background-position:-860px;
    }
}

.promo {
    width: 25%;
    height: 200px;
    float: left;
    background-size: cover;
    position: relative;
    box-sizing: border-box;
    border-right: 2px solid #f7f7f7;
}

.world_map{
    width: 100%;
    background-size: cover;
    height: 200px;
    background-image: url('../img/inf_opt.gif');
    font-family: 'Open sans', serif;
    font-size: 33px;
    padding: 40px 24px 0 10px;
    box-sizing: border-box;
    /*text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);*/
    text-align: center;
    color: white;
    font-weight: 700;
    line-height: 30px;
}

.label {

    color: white;
    padding: 5px 17px;
    font-size: 15px;
    text-transform: uppercase;
    text-shadow: none;
    margin-left: 41px;
    margin-top: 36px;
    position: absolute;
    line-height: 14px;
    background: #df3741;
    border: 2px solid #df3741;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.article {
    height: 200px;
    width: 25%;
    box-sizing: border-box;
    border-right: 2px solid #f7f7f7;
    /*background-color: rgba(37, 70, 140, 0.99);*/
    float: right;
    background-size: cover;
    background-position: center;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
}


.article:nth-of-type(3) {
    border-left: 2px solid white;
    border-right: 2px solid white;
}

.gradient_fill {
    height: 100%;
    width: 100%;
    position: absolute;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.85);
    opacity: 0.7;
}

.title {
    font-family: 'Titillium Web',sans-serif;
    -webkit-box-orient: vertical!important;
    font-size: 1.1em;
    line-height: 1.3em;
    text-align: left;
    bottom: 0;
    color: white;
    float: left;
    height: 200px;
    
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
    background-size: cover;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.1);
    background-image: url(../img/overlay.png);
    background-size: cover;
    position: relative;
}

.title:hover{
    background-color: rgba(0, 0, 0, 0.4);
}

.title-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px 13px 13px 13px;
}


.rubric {
    color: white;
    background: transparent;
    border: 2px solid #df3741;
    font-family: 'Titillium Web',sans-serif;
    padding: 1px 7px;
    margin-left: 12px;
    text-transform: uppercase;
    text-shadow: none;
    display: initial;
    position: absolute;
    top: 14px;
    font-weight: 700;
    font-size: 12px;
    z-index: 10;
    line-height: 14px;
}



@media all and (max-width: 868px) {

    .a2 {
        display: none!important;
    }

    .article {
        width: 33.3%;
    }

    .promo {
        width: 33.3%;
    }

}