/* CSS Reset*/

html {margin:0;padding:0;border:0;}body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline; list-style: none; }

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Alegreya", Georgia, Times, serif;
    font-style: italic;
    font-weight: 700;
    background: #000 url("body_bg.jpg") center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow-x: hidden;
}

.container {
    position: relative;
    margin: 0 auto;
    width: 792px;
    height: 901px;
    background: url("bg.png") no-repeat;
    background-position: top center;
    background-size: 792px auto;
    text-align: center;
}
.content {
    padding: 200px 0 0 10px;
    width: 370px;
    margin: 0 auto;
}

#logo { margin: 10px 0; }

.cf {
    clear: both;
}

h1 {
    font-size: 32px;
    line-height: 1.2em;
}

h2 {
    font-size: 24px;
    line-height: 1.2em;
    padding-bottom: 10px;
}

.line {
    width: 80px;
    height: 8px;
    background: #c8170e;
    margin: 15px auto;
}
.mandatari { padding: 10px 0; }
.mandatari > div {
    width: 33.33%;
    float: left;
    position: relative;
}
.mandatari img {
    border-radius: 100px;
    margin: 0 15px;
    border: 5px solid #77b4a3;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.mandatari img:hover {
    border-color: #c8170e;
}

.mandatari i {
    display: none;
    position: absolute;
    top: 10px;
    left: 36px;
    font-size: 63px;
    color: #c8170e;
}

.mandatari .wrong img {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}
.mandatari .wrong i {
    display: block;
}

p {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #666;
    padding: 5px 0;
 }

.flake {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}
.screen-2 { opacity: 0; position: relative; top: 200px; display: none; }
.screen-2 .text { display: none; }


@media only screen and (max-width: 792px) {
    .container {
        width: 100%;
    }
}