/* ==========================================================================
   Bricks - grid, tipografia base e largura da pagina
   ========================================================================== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    color: #333333;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.42857;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h1 { font-size: 41px; }

h2 { font-size: 34px; }

h3 { font-size: 28px; }

h4 { font-size: 20px; }

h5 { font-size: 16px; }

h6 { font-size: 14px; }

.bricks--page {
    width: 100%;
}

.bricks--section {
    width: 100%;
}

.bricks--section > div {
    margin-left: auto;
    margin-right: auto;
}

.bricks--row {
    display: flex;
    flex-flow: column nowrap;
}

.bricks--column > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bricks--component-box {
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .bricks--row {
        flex-flow: row nowrap;
    }
}

.bricks--component-video div {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    line-height: 0;
    box-sizing: border-box;
}

.bricks--component-video div iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bricks--section > div {
    max-width: 960px;
}
