@charset "UTF-8";
/* ------------- */
/* general rules */
/* ------------ */
body,
section,
header,
footer,
nav,
div,
h1,
h2,
h3,
h4,
p,
ul,
li,
button,
a,
span,
hr,
img{
    font-size: 100%;
    border: 0;
    margin: 0;
    padding: 0;
}
section{
    position: relative;
    padding: 50px 0;
}
h1,
h2,
h3,
h4{
    font-family: 'Oswald';
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    color: #FFFFFF;
}
h1{
    font-size: 2.25em;
}
h2{
    font-size: 2em;
}
h3{
    font-size: 1.75em;
}
h4{
    font-size: 1.5em;
}
p{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    color: #4A4A4A;
}
ul, li{
    list-style: none;
}
button{
    background: transparent;
    border-radius: 0;
    outline: none;
}
.main-title{
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 98;
}
.row{
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.wrapper-container{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* ------ */
/* header */
/* ------ */
header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
nav{
    width: 100%;
    padding: 10px 0;
}
nav .row{
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
nav.open{
    background: rgba(0,0,0, 0.9);
}
nav li{
    float: left;
    margin-left: 15px;
}
nav .languages a{
    font-size: 0.875em;
    color: #FFFFFF;
}
nav .languages a.active{
    color: #FDBA2C;
}
nav a{
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
}
/* mobile-icon */
nav .menu-open{
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
nav .menu-open #mobile-button{
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
}
nav .menu-open #mobile-button span{
    width: 30px;
    height: 2px;
    position: absolute;
    display: block;
    background: #FFFFFF;
    margin: 0 10px;
}
nav .menu-open #mobile-button .line-top{
    -moz-transform: translateY(-8px) rotate(0deg);
    -o-transform: translateY(-8px) rotate(0deg);
    -webkit-transform: translateY(-8px) rotate(0deg);
    -ms-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
nav .menu-open #mobile-button .line-bottom{
    -moz-transform: translateY(8px) rotate(0deg);
    -o-transform: translateY(8px) rotate(0deg);
    -webkit-transform: translateY(8px) rotate(0deg);
    -ms-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
nav .menu-open #mobile-button.open .line-top{
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
nav .menu-open #mobile-button.open .line-middle{
    opacity: 0;
}
nav .menu-open #mobile-button.open .line-bottom{
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
nav .menu-open span{
    font-size: 0.875em;
    margin-left: 5px;
}
/* menu */
header .menu{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 70px;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background: rgba(0,0,0, 0.95);
    padding: 0;
}
header .menu ul{
    width: 100%;
    max-width: 560px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -70px;
}
header .menu ul a{
    position: relative;
    display: block;
    font-family: 'Oswald';
    font-size: 1.5em;
    font-weight: 400px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    padding: 20px 0;
}
header .menu ul a:hover{
    color: #FDBA2C;
}
/* ------------------ */
/* section hero-index */
/* ------------------ */
#hero-index{
    width: 100%;
    height: 100%;
    position: relative;
    background: url(../images/hero-index.jpg);
    background-position: center center;
    background-size: cover;
    z-index: 96;
    padding: 0;
}
#hero-index h1{
    position: relative;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 1.5px;
    color: #FDBA2C;
    padding: 0 20px;
}
#hero-index h1 span{
    width: 26px;
    height: 51px;
    max-height: 30px;
    display: inline-block;
    background: url('../images/1span.svg');
    background-repeat: no-repeat;
    padding-right: 10px;
}
#hero-index h2{
    position: relative;
    font-family: 'Amatic SC';
    text-align: center;
    margin-top: 50px;
    padding: 0 20px;
}
/* animação pincelada */
#hero-index h1 .animation-brush1{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}
#hero-index h1 .animation-brush1 .animation-container{
    overflow: hidden;
}
#hero-index h1 .animation-brush1 .animation-container img{
    -ms-transform: translateX(-25%);
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
}
/* data */
#hero-index .date{
    max-width: 760px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}
#hero-index .date h2{
    font-family: 'Souce Sans Pro', sans-serif;
    font-size: 1.5em;
    font-weight: 300;
    padding: 0;
    margin: 0;
}
#hero-index .date h2.location{
    font-size: 1.25em;
    text-align: center;
    padding-top: 20px;
}

/* grid */
#hero-index .hero-grid{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.6);
    z-index: 97;
}
/* scroll-down animation */
#hero-index .scroll-down{
    position: absolute;
    bottom: 30px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 98;
}
#hero-index .scroll-down .arrow-down{
    width: 29px;
    height: 16px;
    display: block;
    background: url('../images/arrow-down.svg');
    -webkit-animation-name: arrow-down;
    animation-name: arrow-down;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
#hero-index .scroll-down .text,
#hero-index .scroll-down .mouse{
    display: none;
}
/* ------------ */
/* header pages */
/* ------------ */
#header-pages{
    width: 100%;
    height: 300px;
    position: relative;
    background: url('../images/hero-index.jpg');
    background-position: center center;
    background-size: cover;
    padding: 0;
}
#header-pages .hero-grid{
    width: 100%;
    height: 300px;
    background-color: rgba(0,0,0, 0.6);
}
#header-pages h3{
    font-weight: 400;
    text-align: center;
    letter-spacing: 2px;
    color: #FDBA2C;
    margin: 0;
    padding-top: 100px;
}
#header-pages h3 span{
    width: 26px;
    height: 51px;
    max-height: 35px;
    display: inline-block;
    background: url('../images/1span.svg');
    background-repeat: no-repeat;
    padding-right: 10px;
}
#header-pages h4 span{
    width: 590px;
    height: 43px;
    display: block;
    background: url('../images/hero-indexh2.svg');
    background-repeat: no-repeat;
    margin-top: 30px;
    padding: 0;
}
/* ---------------- */
/* sections content */
/* ---------------- */
#main h2{
    position: relative;
    font-family: 'Source Sans Pro';
    font-weight: 300;
    text-transform: none;
    color: #FDBA2C;
}
#main h2 span{
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
}
#main h2 span img{
    max-height: 50px;
}
#main h3{
    font-family: 'Source Sans Pro';
    font-weight: 300;
    text-transform: none;
    color: #FDBA2C;
}
#main p span{
    font-size: 1em;
    font-weight: bold;
    font-style: normal;
    color: #FDBA2C;
    padding-right: 5px;
}
#main p{
    position: relative;
}
#main p.list{
    padding: 5px 0;
}
#main p.data{
    font-family: 'Oswald', sans-serif;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #4B4B4B;
    padding-top: 10px;
}
#main p a{
    font-weight: 400;
    word-wrap: break-word;
    color: #4A4A4A;
}
/* table */
#main table td{
    font-family: 'Oswald';
    font-weight: 400;
    letter-spacing: 1px;
    color: #4B4B4B;
    padding: 8px 0;
}
#main table td.data{
    font-family: 'Source Sans Pro';
    font-weight: 300;
    letter-spacing: 0;
    color: #9B9B9B;
    padding-right: 50px;
}
#main table td span{
    font-family: 'Amatic SC';
    font-size: 1.5em;
    color: #FDBA2C;
}
/* ------ */
/* footer */
/* ------ */
footer{
    background-color: #F7F7F7;
}
footer p{
    font-family: 'Source Sans Pro';
    font-size: 0.875em;
    font-weight: 300;
    color: #9B9B9B;
}
footer p.info{
    font-size: 1em;
}
footer p a{
    color: #FDBA2C;
}
footer p span{
    font-weight: 400;
    color: #FDBA2C;
}
footer .contacts{
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 50px 0 10px 0;
}
footer .contacts .flex-item{
    max-width: 50%;
}
footer .logos{
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 50px 0;
}
footer .logos a{
    position: relative;
}
footer .logos a span{
    position: absolute;
    top: -35px;
    left: 0;
    font-family: 'Source Sans Pro';
    font-size: 0.875em;
    font-weight: 300;
    color: #9B9B9B;
}
footer .logos img{
    max-height: 60px;
    margin-right: 50px;
}
/* -------------------- */
/* media queries tablet */
/* -------------------- */
@media only screen and (min-width: 767px){
    /* ------------- */
    /* general rules */
    /* ------------ */
    h1{
        font-size: 4em;
    }
    h2{
        font-size: 3em;
    }
    h3{
        font-size: 2.25em;
    }
    h4{
        font-size: 2em;
    }
    p{
        font-size: 1em;
    }
    /* ------------------ */
    /* section hero-index */
    /* ------------------ */
    #hero-index h1{
        letter-spacing: 3px;
    }
    #hero-index h1 span{
        max-height: none;
        padding-right: 20px;
    }
    #hero-index h1 .animation-brush1{
        top: -50%;
    }
    #hero-index h1 .animation-brush1 .animation-container img{
        -moz-transform: translateX(-5%);
        -o-transform: translateX(-5%);
        -webkit-transform: translateX(-5%);
        -ms-transform: translateX(-5%);
        transform: translateX(-5%);
    }
    #hero-index h2 span{
        width: 590px;
        height: 43px;
        background: url(../images/hero-indexh2.svg);
    }
    /* scroll-down animation */
    #hero-index .scroll-down{
        bottom: 50px;
    }
}
/* -------------------- */
/* media queries tablet */
/* -------------------- */
@media only screen and (min-width: 1060px){
    /* ------------- */
    /* general rules */
    /* ------------ */
    section{
        padding: 100px 0;
    }
    /* scroll-down animation */
    #hero-index .scroll-down{
        max-width: 50px;
    }
    #hero-index .scroll-down .arrow-down{
        display: none;
    }
    #hero-index .scroll-down .text{
        display: block;
        font-family: 'Oswald';
        font-size: 0.875em;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #FDBA2C;
        margin-bottom: 10px;
    }
    #hero-index .scroll-down .mouse{
        width: 18px;
        height: 30px;
        position: relative;
        display: block;
        border: 2px solid #FFFFFF;
        border-radius: 10px;
        margin: 0 auto;
    }
    #hero-index .scroll-down .mouse .wheel{
        width: 4px;
        height: 4px;
        position: absolute;
        top: 7px;
        left: 50%;
        display: block;
        background: #FFFFFF;
        border-radius: 2px;
        transform: translateX(-50%);
        -webkit-animation-name: wheel;
        animation-name: wheel;
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        margin-left: -2px;
    }
    /* ---------------- */
    /* sections content */
    /* ---------------- */
    #main h2 span{
        margin-right: 50px;
    }
    #main h2 span img{
        max-height: 80px;
    }
}
/* ---------- */
/* animations */
/* ---------- */
@keyframes wheel{
    from{
        transform: translateY(0);
        opacity: 1;
    }
    to{
        transform: translateY(5px);
        opacity: 0;
    }
}
@keyframes arrow-down{
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(16px);
    }
}
