.page_article {
    width:100%;
}
.page_article h1 {
    color: var(--primary-background);
    padding: 40px 30px;
    font-weight: normal;
    font-size: 34px;
    justify-content: left;
    background: linear-gradient(133deg, var(--primary-color) 0%, #018c7f 100%);

    margin: 0;
}

.page_article .strip_21 {
    display:flex;
    align-items: center;
    width: 100%;
    
    * {
        /*border: 1px solid red; */
    }
    .strip21_img {
        flex:2;
        img { max-width: 100%; max-height: 343px;display: block;margin: auto;}
    }
    .strip21_text { 
        flex:1; 
        margin: 0;
        padding: 50px;
        max-width: 900px;

        h1 { 
            background: none;
           margin :0;
            color: var(--primary-color); 
            font-weight: bold;
            padding: 0;
        }
        h2 { 
            font-weight: bold; 
            margin: 0; 
            color: var(--secondary-color); 
        } 
    }
}

.partner_strip {
    background: #4bd2af;
    text-align:center;
    h1 {
        background:none; 
        text-align: center;
        padding: 15px 0 0 15px;
        font-weight: bold;
    }
    h2 {
        text-align: center;
        color: #00004b;
    }
    a:hover img {
        box-shadow : 0 0 15px rgb(0,0,0,40%);
    }
    img { 
        clip-path: circle(50%);
        background: var(--primary-background); 
        max-width: 180px; 
        margin: 30px; 
    }
}


.toc {
    background: #f6f6f6;
    margin: 30px 50px 0px;
    padding: 15px 30px;
    border-radius: 10px;    
    border-left: 5px solid var(--primary-color);

    li {
        list-style: none;    
        line-height: 25px;
        a {
            color:inherit;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }
    }
}


@media screen and (max-width: 768px) {
    .page_article .strip_21 {
        flex-direction: column;
    }
    .page_article .strip_21 .strip21_text {
        padding: 15px;
    }
    .toc {
        margin: 10px;
        padding: 15px;
    }
}
