.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.section-inner {
    background-color: #f0f0f0;
    padding-bottom: 35px;
    margin-bottom: 60px;
}

.section-inner .breadcrumbs {
    margin-top: 18px;
    margin-bottom: 0px;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.section-inner .breadcrumbs,
.section-inner .breadcrumbs a {
    color: #969696 !important;
}

.section-inner .breadcrumbs a:hover {
    text-decoration: none;
}

.section-inner .breadcrumbs .separator {
    padding: 0px 8px;
}

.route_train_link {
    color: #ed111f;
    display: inline-block;
    margin-left: 30px;
    text-decoration-style: dotted;
}

.route_train_link:hover {
    text-decoration: underline;
}

.section-inner h1 {
    text-align: left;
    font-size: 36px;
    color: #000;
    padding-top: 50px;
}

.headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 70px;
}

.headline h2 {
    margin-bottom: 0;
}

.view-all {
    display: inline-block;
}

.view-all a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ed111f;
    text-decoration: underline;
    padding-right: 20px;
    position: relative;
}

.view-all a:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 3px;
    width: 10px;
    height: 10px;
    border-right: 3px solid #ed111f;
    border-bottom: 3px solid #ed111f;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.blogs {
    margin-top: 55px;
    margin-bottom: 55px;
}

.blogs .blog_title {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px 15px -15px;
}

.blog-list .col {
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333333333%;
    flex: 0 0 33.333333333333%;
    max-width: 33.333333333333%;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.blog-item {
    position: relative;
    overflow: hidden;
}

.blog-item:after {
    content: '';
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    top: 40px;
    left: 30px;
    z-index: 100;
    -webkit-transform: translateX(-100px) rotate(-45deg);
    -ms-transform: translateX(-100px) rotate(-45deg);
    transform: translateX(-100px) rotate(-45deg);
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.blog-item:hover:after {
    -webkit-transform: translateX(0) rotate(-45deg);
    -ms-transform: translateX(0) rotate(-45deg);
    transform: translateX(0) rotate(-45deg);
}

.blog-item img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: top;
    width: 100%;
    flex-grow: 0;
    height: auto;
}

.blog-item a {
    display: block;
    position: relative;
    color: #fff;
    overflow: hidden;
    display: flex;
    height: 240px;
}

.blog-item a:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.blog-item a:before {
    content: '';
    display: block;
    position: absolute;
    width: 600px;
    height: 100%;
    left: -400%;
    top: 0;
    background-color: #ed111f;
    -webkit-transform: skew(-45deg);
    -ms-transform: skew(-45deg);
    transform: skew(-45deg);
    z-index: 20;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-item a:hover:after {
    background-color: rgba(0, 0, 0, 0.6);
}

.blog-item a:hover:before {
    left: -330px;
}

.blog-item>span {
    display: block;
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    top: auto;
    max-height: 100%;
    max-width: 100%;
    text-transform: uppercase;
    z-index: 30;
    color: #fff;
    pointer-events: none;

    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
    max-height: 84px;
    overflow: hidden;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.blog-item .date_time {
    display: block;
    margin-bottom: 4px;
}

.blog-item .date_time .date {
    font-size: 14px;
    color: #ed111f;
    transition-delay: .2s;
}

.blog-item .date_time .time {
    font-size: 14px;
    color: #b5b5b5;
    transition-delay: .2s;
}

.blog-item:hover .date_time .date {
    color: #fff;
    transition-delay: .3s;
}

.blog-item:hover .date_time .time {
    color: #fff;
    transition-delay: .3s;
}

.published_at {
    margin: 20px 0 0;
    text-align: right;
    font-size: 16px;
    color: #b5b5b5;
}

.published_at .date {
    color: #ed111f
}


.news_post_image {
    margin-top: 30px;
}

.news_post_image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.load-more {
    text-align: center;
}

.load-more a {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    color: #000;
    padding: 17px 15px;
    width: 158px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    background-color: #ed111f;
    transition: .3s;
    color: #fff;
    border-radius: 5px;
}

.load-more a:hover {
    background-color: #b8151f !important;
}



@media (max-width: 1199px) {
    .blog-list {
        margin: 0 -10px 0 -10px;
    }

    .blog-list .col {
        padding: 0 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .headline {
        margin-bottom: 40px;
    }

    .blog-list .col {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 577px) {
    .blog-list {
        display: block;
    }

    .blog-list .col {
        max-width: 100%;
        width: 100%;
    }
}
