article{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 100px 15px 50px 15px;}

    header h1{
        font-size: 32px;
        font-family: "Noto Sans", sans-serif;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        color: #09347c;}
    
    section{
        display: -webkit-flex;
        display: -moz-flex;
        display: -o-flex;
        display: -ms-flex;
        display: flex;

        direction: rtl;
        
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -o-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        
        -webkit-justify-content: space-around;
        -moz-justify-content: space-around;
        -o-justify-content: space-around;
        -ms-justify-content: space-around;
        justify-content: space-around;
        
        -webkit-align-items: center;
        -moz-align-items: center;
        -o-align-items: center;
        -ms-align-items: center;
        align-items: center;
        
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        
        -webkit-align-content: center;
        -moz-align-content: center;
        -o-align-content: center;
        align-content: center;}
        
        section figure{
            position: relative;
            padding: 0 5px 15px 5px;
            width: 20%;}

        @media screen and (max-width: 960px){
            section figure{width: 25%;}
        }
        @media screen and (max-width: 780px){
            section figure{width: 33.333%;}
        }
        @media screen and (max-width: 480px){
            section figure{width: 50%;}
        }
        @media screen and (max-width: 320px){
            section figure{width: 100%;}
        }

        figure img{max-width: 100%;}
        
        figure a.control{
            margin-left: 16px
        }

        figure a.control:last-child{
            margin-left: -16px
        }
