.section-articles{
    width: 100%;
    margin-bottom: 80px;
}

.section-articles .h2{
    width: 100%;
    display: block;
    font-weight: normal;
    font-size: 28px;
    line-height: 36px;
    color: #182B48;
    padding-left: 8px;
    margin: 0 0 16px 0;
}

.section-articles .nav-tabs{
    padding: 0 8px;
    border-bottom: none;
}

.section-articles .nav-tabs > li{
    width: fit-content;
    margin-right: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.section-articles .nav-tabs > li:last-child{
    margin-right: 0;
}

.section-articles .nav-tabs > li:before{
    content: " ";
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: transparent;
    height: 2px;
    width: 2px;
    display: block;
    margin: 0;
    position: absolute;
    bottom: -2px;
    right: -1px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.section-articles .nav-tabs > li:after{
    content: " ";
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: transparent;
    height: 2px;
    width: 2px;
    display: block;
    margin: 0;
    position: absolute;
    bottom: -2px;
    left: -1px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.section-articles .nav-tabs > li.active{
    border-bottom: 2px solid #276EF1;
}

.section-articles .nav-tabs > li.active:before,
.section-articles .nav-tabs > li.active:after{
    background-color: #276EF1;
}

.section-articles .nav-tabs > li > a{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #40576D;
    border: none;
    padding: 0;
    margin: 0;
}

.section-articles .nav-tabs > li.active > a,
.section-articles .nav-tabs > li.active > a:hover,
.section-articles .nav-tabs > li.active > a:focus{
    color: #276EF1;
    border: none;
}

.section-articles .tab-content{
    margin: 8px 0 24px 0;
}

.section-articles .tab-pane{
    margin-top: 0;
}

.tab-content-items{
    width: 100%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: Calc(47.64% - 4px) Calc(52.36% - 4px);
    grid-column-gap: 8px;
}

.tab-content-items-right{
    width: 100%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: Calc(50% - 4px) Calc(50% - 4px);
    grid-column-gap: 8px;
}

.tab-content-item,
.tab-content-item-img{
    position: relative;
}

.tab-content-item-img a{
    width: 100%;
    height: 100%;
    min-height: 343px;
    display: block;
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.tab-content-item-img:before{
    content: '';
    width: 100%;
    height: 166px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(180deg, rgba(24, 43, 72, 0) 0%, rgba(24, 43, 72, 0.4) 44.79%, rgba(24, 43, 72, 0.96) 100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.tab-content-item:hover .tab-content-item-img:before{
    height: 100%;
    border-radius: 8px;
}

.tab-content-item-info{
    width: Calc(100% - 32px);
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.tab-content-item-info-date{
    width: 100%;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #EAEDEE;
    margin-bottom: 8px;
}

.tab-content-item-info-title{
    width: 100%;
    height: auto;
    max-height: 48px;
    overflow: hidden;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.tab-content-item-info-title a,
.tab-content-item-info-title a:hover{
    color: inherit;
}

.section-articles .btnAll_1_center{
    width: 242px;
    height: 40px;
    background: transparent;
    border: 1px solid #D4E2FC;
    border-radius: 80px;
    display: block;
    margin: 0 auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.section-articles .btnAll_1_center a{
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #276EF1;
}

.section-articles .btnAll_1_center:hover{
    background: #D4E2FC;
}

@media (max-width: 1199px){

    .section-articles .h2{
        padding: 0;
    }
}

@media (max-width: 991px){

    .tab-content-items{
        grid-template-rows: 343px 240px;
        grid-template-columns: 100%;
        grid-column-gap: unset;
        grid-row-gap: 8px;
    }

    .tab-content-items-right .tab-content-item-img a{
        min-height: 240px;
    }
}

@media (max-width: 768px){

    .section-articles{
        margin-bottom: 40px;
    }

    .section-articles .h2{
        margin: 0 0 8px 0;
    }
}

@media (max-width: 480px){

    .section-articles .h2{
        margin: 0 0 32px 0;
    }

    .section-articles .tab-content{
        margin: 24px 0;
    }

    .section-articles .nav-tabs{
        padding: 0;
    }

    .tab-content-items{
        grid-template-rows: auto auto;
        grid-row-gap: 16px;
    }

    .tab-content-item-img:before{
        display: none;
    }

    .tab-content-item-img a{
        min-height: 248px;
    }

    .tab-content-items-right .tab-content-item-img a{
        min-height: 176px;
    }

    .tab-content-item-info{
        width: 100%;
        position: relative;
        bottom: unset;
        left: unset;
        margin-top: 8px;
    }

    .tab-content-item-info-date{
        color: #7F8F98;
        margin-bottom: 0;
    }

    .tab-content-item-info-title{
        font-size: 16px;
        color: #40576D;
    }

}