.textimg > .columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.newslistitem {
    margin-bottom: 80px;
    overflow: hidden;
}

.textimg figure {
    position: relative;
}

.textimg figure figcaption {
    position: absolute;
    bottom: 0;
    padding: 8px 15px;
    width: 66.66%;
    right: 0;
    background-color: rgba(255, 255, 255, 0.4);
    color: #906646;
    font-size: 15px;
}

.gallery ul {
    margin-left: 0;
    padding-left: 0;
}

.gallery ul, .gallery ul li:before, .gallery img {
    display: none;
}

.gallery .link-bttn {
    margin-top: 0;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
}

@media screen and (max-width: 639px) {
    .textimg .imgwrap {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .textimg .textwrap {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 640px) {

    .textimg > .columns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .textimg section {
        width: calc(50% - 25px);
    }
}

