    .UITabExt{
        background-color:#ffffff;
        padding:20px 0;
    }
    .UITabExt ul.tabs {
        margin: 0px;
        padding: 0px;
        list-style: none;
        text-align: center;
    }

        .UITabExt ul.tabs li {
            background: #e7eaec;
            color: #020101;
            display: inline-block;
            padding: 10px 15px;
            cursor: pointer;
            text-transform:uppercase;
            font-weight:400;
            font-size:15px;
            font-family:"Roboto", Arial;
            margin-bottom:15px;
            border: 1px solid #ddd;
        }

.UITabExt ul.tabs li.current {
    background: #de2525;
    color: #fff;
    border-color: #de2525;
    position: relative;
    box-shadow: none;
}
.UITabExt ul.tabs li.current:after {
    border-bottom: 8px solid transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 9px solid #de2525;
    bottom: -17px;
    content: "";
    display: block;
    left: 50%;
    margin-left: -8px;
    position: absolute;
}
    .UITabExt .tab-content {
        display: none;
        padding: 15px;
    }

        .UITabExt .tab-content.current {
            display: flex;
            justify-content: center;
            text-align: center;
            align-items: center;
            flex-direction: column;
        }

    .UITabExt  .readmore {
        color: #ffffff;
        background-color: #de2525;
        vertical-align: middle;
        font-size: 12px;
        line-height: 38px;
        padding: 0 20px;
        width: 90px;
        margin-top: 20px;
        display: none;
    }

.UITabExt blockquote {
    text-align: justify;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 20px;
}
        .UITabExt .readmore:hover {
            color: #ffffff;
            background-color: #2b98db;
            vertical-align: middle;
            font-size: 12px;
            line-height: 38px;
            padding: 0 20px;
            width: 90px;
            border: solid 1px #f7f7f7;

        }

    .UITabExt .title-article {
        font-size: 16px;
        text-transform: uppercase;
        line-height: 40px;
        font-family: 'Montserrat', Helvetica, Arial, sans-serif;
        font-weight: 600;
    }

    .UITabExt .summary {
        text-align: center;
    }
        @media (min-width: 576px) {
         .UITabExt .image{
            width:100px;
            height:100px;
        }
    }
    @media (min-width: 768px) {
    .UITabExt .image{
         width:200px;
            height:200px;
        }
    }
    @media (min-width: 992px) {
        .UITabExt .image{
            max-width: 100%;
            height: auto;
            width: 500px;
            object-fit: cover;
            margin-bottom: 20px;
        }
    }