/* reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    overflow-x: hidden;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
              content: '';
              content: none;
          }
table {
	  border-collapse: collapse;
	  border-spacing: 0;
}
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}
.clear-fix:before,
.clear-fix:after {
    content: "";
    display: table;
}

.clear-fix:after {
    clear: both;
}

/* Custom styles */
.main {
    position: relative;
    display: block;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 30px;
    color: #444;
}
.title {
    font: 400 36px 'Oswald', sans-serif;
    text-align: center;
    text-transform: uppercase;
 /*   margin-bottom: 30px; */
    /*padding: 0 20px;*/
}
.subtitle {
    font: 700 28px 'Roboto Slab', sans-serif;
    color: #a79328;
    padding-top: 10px;
    margin: 0 20px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    border-top: solid 2px #424242;
}
.subtitle2 {
    font: 400 20px 'Roboto Slab', sans-serif;
    color: #637d88;
    margin: 0 20px;
    margin-bottom: 5px;
}
.abstract {
   font: 400 16px 'Open Sans', sans-serif;
    margin-bottom: 40px;
    color: #222;
    padding: 0 20px;
    text-align: center;
}
.abstract2 {
    font: 400 16px 'Open Sans', sans-serif;
    margin-bottom: 40px;
    color: #222;
    padding: 0 20px;
}
.instructions {
    font: 400 14px 'Open Sans', sans-serif;
    margin-bottom: 10px;
    color: #222;
    padding: 0 20px;
}
.content {
    position: relative;
}
.flow {
    width: 33.333%;
    float: left;
}


.items {
    margin-bottom: 40px;
}

.item {
    position: relative;
    display: block;
    float: left;
    width: 180px;
    height: 200px;
    padding: 0 15px;
 /*   margin-bottom: 20px;*/
    cursor: pointer;
}

.tooltip .cross {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    display: none;
}

.item .label {
    position: absolute;
    top: 0;
    right: 15px;
    padding: 2px 6px;
    font: 400 12px 'Roboto', sans-serif;
    background-color: #EE1C25;
    color: #fff;
    white-space: nowrap;
}

.item .photo-wrap {
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
/*    border-radius: 200px;*/
    overflow: hidden;
}

.item .photo-wrap img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

.item .photo-wrap img:hover {
    filter: none;
}

.item .name {
    text-align: center;
    font: 500 16px/18px 'Roboto', sans-serif;
    color: #000;
    margin-bottom: 10px;
}
.item .place {
    text-align: center;
    font: 600 12px/15px 'Open Sans', sans-serif;
    color: #EE1C25;
}

.tooltip {
    position: absolute;
    top: 200px;
    left: 50px;
    z-index: 1001;
    width: 96%;
    max-width: 360px;
    min-height: 120px;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 1px 1px 6px 0px rgba(50, 50, 50, 0.8);

    font-family: 'Roboto', sans-serif;
    display: none;
}
.tooltip > div {
    margin-bottom: 5px;
}

.tooltip .header {
    margin-bottom: 7px;
    padding-bottom: 3px;
    border-bottom: solid 1px #424242;
    text-align: center;
}
.tooltip .name {
    font: 400 18px/20px 'Roboto', sans-serif;
    color: #333;
    margin-bottom: 5px;
}
.tooltip .place {
    font: 600 12px/15px 'Open Sans', sans-serif;
    color: #666;
}
.tooltip .label {
    font: 700 10px 'Exo 2', sans-serif;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 2px;
}
.tooltip .value {
    font: 400 13px 'Open Sans', sans-serif;
    color: #222;
}


@media only screen and (max-width: 600px) {
    .flow {
        width: 100%;
    }

    .item {
        float: none;
        margin: auto;
    }

    .tooltip .cross {
        width: 12px;
    }
    

}



