/* Stories css */
.align-items-center {
    align-items: center;
}

.stories-container .story-item-box {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.text-right {
    text-align: right;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.image-column, .text-column {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.image-column, .text-column {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
/* .stories-container {
    background-color: #2c2c2c;
    color: #fff;
    padding: 70px 0;
    margin-bottom: 0;
} */
.stories-container {
    background-color: #fff;
    color: #222;
    padding: 70px 0;
    margin-bottom: 0;
    border-bottom: 5px solid #f5f5f5;
}

.container {
    max-width: 90%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    margin: 0 auto;
}

.stories-container .title {
    font-size: 40px;
    padding: 8px 0;
    margin: 0 0 30px;
    /* border-bottom: 1px solid #444; */
    border-bottom: 1px solid #d4d4d4;
    text-align: center;
    position: relative;
}

.stories-container .title::before {
    content: '';
    width: 75px;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -2px;
    background: #ac2024;
    -o-transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
}

.story-title {
    line-height: 1.8;
}

.story-description p {
    text-transform: none;
    line-height: 25px;
    color: #909090;
    font-family: 'Lato', sans-serif;
    margin-top: 20px;
}

.stories-container .box-wrapper {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: 1px 1px 5px #eee;
}

.box-wrapper img {
    margin-bottom: 20px;
}

.box-wrapper p {
    margin-top: 10px;
}

.stories-container .col-12 {
    display: flex;
}

.justify-content-center {
    justify-content: center !important;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    padding: 0 15px;
}

.mb-30px {
    margin-bottom: 30px;
}

.image-column {
    text-align: center;
}
.image-column img {
    max-height: 130px;
}

@media (min-width:768px) {
    .image-column {
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }

    .text-column {
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1201px) {
    .container {
        max-width: 1200px;
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

/***** RESPONSIVE GRIDS ******/
@media all and (min-width: 768px) and (max-width: 1200px) {

    .image-column {
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }

    .text-column {
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }
}
