/********************************************/
/*                 PROMO ITEM               */
/********************************************/

#promo_item {
    background-color: #f3f3f3;
    margin-bottom: 3rem;
}
.promo_item_img {
    background: #f3f3f3;
    position: relative;
    max-width: 500px;
    overflow: hidden;
    height: 450px;
    z-index: 5;
}
.promo_item_img img {
    /*-webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    left: 50%;
    top: 50%;
    width:auto;
    max-width: initial;*/
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, 0%);
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    left: 50%;
    top: 0;
    width: auto;
    max-width: initial;
}
.promo_item_content {
    padding: 35px 0 0 15px;
    margin-left: -15px;
    position: relative;
}
.promo_item_content:after,
.promo_item_content:before {
    background-color: rgba(48, 48, 48, 0.2);
    background-color: #e0e0e0;
    position: absolute;
    bottom: 15px;
    content: "";
    height: 1px;
}
.promo_item_content:after {
    width: 100%;
    left: 0%;
}
.promo_item_content:before {
    right: 100%;
    width: 100%;
}
.promo_item_content h2 {
    font-family: 'robotobold';
    line-height: 1.2857;
    margin: 0 auto 15px;
    font-size: 28px;
}
.promo_item_content p {
    font-family: 'robotolight';
    margin-bottom: 10px;
    line-height: 1.375;
    font-size: 16px;
}
.promo_type {
    position: relative;
    padding-top: 20px;
    min-height: 54px;
}
.promo_type span {
    font-family: 'robotolight';
    background-color: #e7e7e7;
    background-color: #e0e0e0;
    position: relative;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1;
    color: #999;
    float: left;
    z-index: 3;
}
.promo_type .btn {
    position: relative;
    float: right;
    z-index: 3;
}

@media (min-width: 768px) and (max-width: 991px) {
    .promo_item_content h2 {
        font-size: 24px;
    }
    .promo_item_content p {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .promo_item_img {
        margin: 0 auto;
    }
    .promo_item_img img{
        position: relative;
        max-width: 500px;
        height: 100%;
    }
    .promo_item_content {
        text-align: center;
        max-width: 500px;
        padding-left: 0;
        margin: 0 auto;
    }
    .promo_item_content:before {
        display: none;
    }
}
@media screen and (max-width: 519px) {
    .promo_item_img img{
        max-width: 100%;
    }
    .promo_item_content h2 {
        font-size: 24px;
    }
    .promo_item_content p {
        font-size: 14px;
    }
    .promo_type span {
        margin-bottom: 20px;
        display: block;
        float: none;
    }
    .promo_type .btn {
        position: relative;
        float: none;
        z-index: 3;
    }
}