/* 1. BASE
--------------------------------------------------------- */

body, html {
    height: 100%;
    background: rgb(241, 242, 246);
}

img{
    max-width: 100% !important;
    height: auto;
    display: inline-block;
}

a {
    color: #ed1f24;
}

.wrapper {
    overflow: hidden;
}

/* 2. SECTION
--------------------------------------------------------- */
section {
    padding: 30px 30px 30px 70px;
    -webkit-transition: transform 200ms ease-in;
    transition: transform 200ms ease-in;
}
    section li {
        margin: 0 0 10px;
    }
    section article {
        position: relative;
    }
        section article .circles { 
            /* --- */ 
        }
            section article .circles.top {
                position: absolute;
                right: 0px;
                top: 0px;
            }
            section article .circles.bottom {
                text-align: right;
            }
            section article .circles a {
                display: inline-block;
                margin: 0px 4px;
            }
                section article .circles a img {
                    height: 60px;
                    width: auto;
                }
    
@media (min-width: 1140px) {
    section article {
        max-width: 960px;
        margin: 0 auto;
    }    
}

/* 3. NAVIGATION
--------------------------------------------------------- */
nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        margin: 0 0 0 -250px;
        transition: margin 200ms ease-in;
-webkit-transition: margin 200ms ease-in;
}
    nav ul {
        width: 250px;
        height: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        background: #323232;
        overflow-y: auto;
        overflow-x: hidden;
    }
        nav ul li {
            margin: 0;
        }
            nav ul li.brand {
                text-align: center;
            }
                nav ul li.brand a {
                    padding: 20px 0px;    
                }
                    nav ul li.brand a:hover {
                        background: transparent;   
                    }                

            nav ul li a {
                color: #fff;
                font-size: 1em;
                text-decoration: none;
                display: block;
                padding: 12px 15px;
                font-weight: 300;
                letter-spacing: 2px;
                border-bottom: 1px solid rgba(255, 255, 255, .05);
                transition: all 0.3s;
        -webkit-transition: all 0.3s;
            }
                nav ul li a:hover,
                nav ul li.active a {
                    background: rgba(0, 0, 0, .2);
                    color: #ed1f24;
                }
    
    nav .langs {
        position: absolute;
        bottom: 16px;
        background: #323232;
        width: 100%;
        padding: 4px 20px;
        line-height: 0;
    }
        nav .langs a {
            display: inline-block;
            margin: 0px 2px;
            -webkit-filter: grayscale(1);
            filter: grayscale(1);
            transition: all 0.3s;
    -webkit-transition: all 0.3s;
        }
            nav .langs a img {
                width: 45px;
                height: 45px;
                display: inline-block;
            }
            nav .langs a:hover {
                filter: grayscale(0); 
        -webkit-filter: grayscale(0);           
            }
            
            
    @media (max-height: 520px) {
        nav ul {
            height: calc(100% - 52px);
        }
        
        nav .langs {
            bottom: 0;
        }
    }

label[for="nav-toggle"] {
        display: block;
        background: #ed1f24;
        width: 42px;
        height: 42px;
        color: #fff;
        text-align: center;
        font-size: 28px;
        line-height: 45px;
        position: fixed;
        top: 10px;
        left: 10px;
        transition: left 200ms ease-in;
-webkit-transition: left 200ms ease-in;
        z-index: 500;
        cursor: pointer;
}

#nav-toggle {
    display: none;
}
    #nav-toggle:checked ~ nav {
        margin: 0;
    }
    #nav-toggle:checked ~ label[for="nav-toggle"] {
        left: 260px;
    }
    #nav-toggle:checked ~ section {
        transform: translate3d(260px, 0, 0);
-webkit-transform: translate3d(260px, 0, 0);
    }

@media (min-width: 1024px) {
    nav {
        margin: 0;        
    }
    
    label[for="nav-toggle"] {
        display: none;
    }
    
    section {
        transition: none;
-webkit-transition: none;
        transform: translate3d(260px, 0, 0); 
-webkit-transform: translate3d(260px, 0, 0);
        width: calc(100% - 260px);
        padding: 30px 30px 30px 30px;
    }
}

/* 4. GALLERY
--------------------------------------------------------- */
.gallery {
    text-align: center;
}

/* 5. STANDS
--------------------------------------------------------- */
.stands .column {
    text-align: center;
}
    .stands .column .download {
        text-align: center;
        text-transform: uppercase;
    }
        .stands .column .download a:before {
            content: "\f15b";
            font-family: 'FontAwesome';
            margin-right: 6px;
        }    

@media (min-width: 40rem)
{
    .stands .column:nth-of-type(1)
    {
        text-align: right;
    }
    .stands .column:nth-of-type(2)
    {
        text-align: center;
    }
    .stands .column:nth-of-type(3)
    {
        text-align: left;
    }
}
