/*text*/
.text-2-col{
    -webkit-column-gap: 140px;
    -moz-column-gap: 140px;
    column-gap: 140px;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}
.h1, h1{
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 50px;
    line-height: 1.1;
}
.title-flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.title-flex h1,
.title-flex .h1{
    margin-bottom: 0;
}
.title-flex .date{
    white-space: nowrap;
    margin-left: 40px;
    flex-shrink: 0;
    font-size: 16px;
    color: #919191;
    padding-bottom: 6px;
}
.text {
    --flow-space: 2.5em;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}
.text strong,
.text b {
    font-weight: 700;
}
.text > * + *,
blockquote > * + * { 
    margin-top: var(--flow-space);
}
.text h1 + * {
/*    --flow-space: 3rem;*/
}
.text h2,
.h2 {
    --flow-space: 3rem;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}
.text h3 {
    --flow-space: 3rem;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}
.text blockquote,
.text blockquote + * {
    --flow-space: 3rem;
}
.text blockquote {
    padding: 30px;
    background: #e9e9e9;
}
.text a:not([class]) {
    color: var(--color-red);
    border-bottom: 1px solid var(--color-red);
}
.text a:not([class]):hover,
.text a:not([class]):active {
    color: var(--color-red);
    border-color: transparent;   
}
.text table {
    width: 100%;
    border-collapse: collapse;
}
.text th {
    font-weight: 700;
    text-align: left;
    border-bottom: 2px solid #ccc;
}
.text td {
    padding: 5px;
}
.text tr:nth-child(even) td {
    background: #e9e9e9;
}
.text iframe,
.text video {
    max-width: 100%;
    display: block;
    border: 0;
}
.container-16-9 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.container-16-9 iframe,
.container-16-9 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.text ul li,
.text ol li {
    position: relative;
    padding-left: 18px;
    line-height: 1.4;
}
.text li + li {
    margin-top: 12px;
}
.text ul li:after {
    content: '';
    border-radius: 50%;
    width: 6px;
    height: 6px;
    display: block;
    background: #141edd;
    position: absolute;
    left: 0;
    top: 10px;
}
.text ol {
    counter-reset: ol;
}
.text ol li{
    padding-left: 22px;
}
.text ol li::before {
    counter-increment: ol; 
    content: counter(ol)".";
    color: var(--color-primary);
    position: absolute;
    font-weight: 700;
    left: 0px;
    top: 2px;
}
.text ol li::after{
    display: none;
}
.article-footer{
    margin-top: 35px;
    display: flex;
    align-items: center;
}
.viewed{
    background: url(../svg/icon-eye.svg) no-repeat left center;
    padding-left: 35px;
    color: #4a4a4a;
    font-size: 16px;
}
@media only screen and (max-width: 1299px) {
    .text-2-col{
        -webkit-column-gap: 100px;
        -moz-column-gap: 100px;
        column-gap: 100px;
    }
}
@media only screen and (max-width: 999px) {
    .text-2-col{
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }
    .h1, h1 {
        font-size: 30px;    
        margin: 0 0 30px;
    }
    .title-flex {
        margin-bottom: 30px;
    }
    .text {
        --flow-space: 1.5em;
    }
}
@media only screen and (max-width: 599px) {
    .title-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .title-flex .date{
        margin-left: 0;
        margin-top: 12px;
    }
    .h1, h1 {
        font-size: 25px;    
    }
    .text h2 {
        font-size: 21px;
    }
    .text{
        font-size: 16px;
    }
}