/*-----------------------------------------------------------------------------------*/
/*  reset
/*-----------------------------------------------------------------------------------*/

*
{
    margin: 0;
    padding: 0;

    border: 0;
}

table
{
    border-spacing: 0;
    border-collapse: collapse;
}

/*-----------------------------------------------------------------------------------*/
/*  utility
/*-----------------------------------------------------------------------------------*/

.soon
{
    text-decoration: line-through;
}

.hide
{
    display: none;

    -webkit-transition: background 1s;
            transition: background 1s;
}

.under
{
    z-index: -1000;

    -webkit-transition: background 1s;
            transition: background 1s;
}

.invisible
{
    -webkit-transition: background 1s;
            transition: background 1s;

    opacity: 0;
}

.fr
{
    float: right;
}

.fl
{
    float: left;
}

/*-----------------------------------------------------------------------------------*/
/*  font face
/*-----------------------------------------------------------------------------------*/

@font-face
{
    font-family: 'Beirut Trial Poster';
    font-weight: 400;
    font-style: normal;

    src: url('../../lib/font/beirut/BeirutTrial_Poster.eot'); /* IE9 Compat Modes */
    src: url('../../lib/font/beirut/BeirutTrial_Poster.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../lib/font/beirut/BeirutTrial_Poster.woff') format('woff'), /* Modern Browsers */
    url('../../lib/font/beirut/BeirutTrial_Poster.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../../lib/font/beirut/BeirutTrial_Poster.svg#80587eeb1b7f21b33106f8a683335bb7') format('svg'); /* Legacy iOS */
}

/*-----------------------------------------------------------------------------------*/
/*  body & pages
/*-----------------------------------------------------------------------------------*/

body
{
    font-family: 'Apercu Regular', Calibri, Roboto, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size-adjust: .508;
    line-height: 1.4;

    margin: 0;

    transition: background 1s;
    transition: background 1s;

    color: #000;
    background-color: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility

    -webkit-transition: background 1s;
}

.sketch
{
    background-color: transparent; /*!important @sketch */
}

canvas
{
    position: fixed;
    top:0px;
    left:0px;
    z-index: -1;
}

.page
{
    padding: 10px 10px;

    -webkit-transition: background 1s;
            transition: background 1s;
}

.footer
{
    padding-bottom: 10em;
}

/*-----------------------------------------------------------------------------------*/
/*  selection & links
/*-----------------------------------------------------------------------------------*/

::selection
{
    color: #e74c3c;
    background: transparent;
}

a
{
    text-decoration: none;

    color: #000;
}

a:hover
{
    text-decoration: underline;
}

a + img
{
    position: absolute;

    display: none;
}

a:hover + img
{
    top: 30%;
    left: 10%;

    display: block;

    max-width: 100%;
    max-height: 30%;
}

html:hover + img
{
    top: 30%;
    left: 10%;

    display: none;

    max-width: 100%;
    max-height: 30%;
}

/*-----------------------------------------------------------------------------------*/
/*  section
/*-----------------------------------------------------------------------------------*/

.section
{
    display: table;

    width: 100%;
    height: 100vh;
   
    /*test*/
/*  margin: 1px 1px;
    background-color: silver;*/
}

.section-content
{
    display: table-cell;

    text-align: center;
    vertical-align: middle;
}

.container
{
    display: table;

    padding-bottom: 10em;
}

/*-----------------------------------------------------------------------------------*/
/*  typography
/*-----------------------------------------------------------------------------------*/

h1
{
    font-family: 'Raisonne Demibold', 'Century Gothic', Verdana, sans-serif;
    font-size: 6rem;
    font-weight: 600;
    font-style: normal;
    font-size-adjust: .5;

    text-align: center;
}

h3
{
    font-family: 'Apercu Medium', Calibri, Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    font-style: normal;
    font-size-adjust: .508;

    text-align: left;
    text-decoration: underline;
}

p
{
    text-align: left;
    letter-spacing: 1px;
    word-spacing: 1px;
}

b
{
    font-family: 'Apercu Medium', Calibri, Roboto, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size-adjust: .508;
}

/*-----------------------------------------------------------------------------------*/
/*  identity
/*-----------------------------------------------------------------------------------*/

.identity-box
{
    background-color: #fffffa; /*!important @sketch */
    width: 100%;
    height: 41px;
    position: fixed;
    z-index: 999;
    bottom: 0px;
    left: 0px;
}


.identity
{
    position: fixed;
    z-index: 999;
    bottom: 10px;
    left: 10px;
}

.name
{
    font-family: 'Beirut Trial Poster', sans-serif;
    font-weight: 400;
}

/*-----------------------------------------------------------------------------------*/
/*  menu
/*-----------------------------------------------------------------------------------*/

.menu
{
    position: fixed;
    z-index: 1000;
    top: 0;

    display: none;
    overflow-y: scroll;

    width: 100%;
    height: 100%;

    background-color: #1e1e1e;
}

.menu-container
{
    padding: 10px 10px;
    width: 50%;
    margin-bottom: 1em;
}

.menu-elements
{
    font-family: 'Apercu Medium', Calibri, Roboto, sans-serif;
    font-size: 4rem;
    font-weight: 600;
    font-style: normal;
    font-size-adjust: .508;

    margin-right: 10px;
}

a.menu-elements
{
    color: #b4b4b4;
}

/*-----------------------------------------------------------------------------------*/
/*  ui
/*-----------------------------------------------------------------------------------*/

.menu-link
{
    position: fixed;
    z-index: 999;
    top: 10px;
    right: 10px;
}

.back
{
    position: fixed;
    bottom: 10px;

    padding-left: 10px;
}

.share-toggle
{
    position: fixed;
    right: 0;
    bottom: 10px;

    padding-right: 10px;
}

.share-actions
{
    position: fixed;
    right: 0;
    bottom: 10px;

    padding-right: 10px;
}

.ui-light
{
    -webkit-transition: background 1s;
            transition: background 1s;

    color: #b4b4b4;
}

.ui-white
{
    -webkit-transition: background 1s;
            transition: background 1s;

    color: #fff;
}

/*-----------------------------------------------------------------------------------*/
/*  type group
/*-----------------------------------------------------------------------------------*/

.type-group
{
    font-size: 1.1rem;

    float: left;

    margin: 10px 10px 20px 10px;

    width: 200px;
}

.type-group:hover
{
    color: #e74c3c; /*!important @sketch — color: #e74c3c;*/
}

.type-title
{
    padding-bottom: 10px;
}

/*-----------------------------------------------------------------------------------*/
/*  projects
/*-----------------------------------------------------------------------------------*/

.project-title
{
    margin: 0 20%;
}

.project-text
{
    font-family: 'Apercu Regular', Calibri, Roboto, sans-serif;
    font-size: .8rem;
    font-weight: normal;
    font-style: normal;
    font-size-adjust: .508;
    line-height: 2;

    padding-top: 10em;
    padding-bottom: 10em;
}

/*-----------------------------------------------------------------------------------*/
/*  gallery
/*-----------------------------------------------------------------------------------*/

.gallery-element
{
    max-width: 85%;
    max-height: 85vh;
}

.video-content
{
    margin-left: 10%;
    margin-right: 10%;
}

.caption-description
{
    display: none;
}

.caption-display
{
    font-family: 'Apercu Mono Regular', 'Andale Mono', monospace;
 
    font-weight: normal;
    font-style: normal;
    font-size-adjust: .5;
    line-height: 1.6rem;

    position: fixed;
    bottom: 10px;
    left: 10px;

    width: 66.66667%;

    color: #b4b4b4;
}

/*-----------------------------------------------------------------------------------*/
/*  pages colors
/*-----------------------------------------------------------------------------------*/

.bg-white
{
    background-color: #fff;
}

.bg-dark
{
    -webkit-transition: background 1s;
            transition: background 1s;

    background-color: #1e1e1e;
}

.bg-green
{
    background-color: #2ecc71;
}

.bg-red
{
    background-color: #e74c3c;
}

.bg-yellow
{
    background-color: #f1c40f;
}

/*-----------------------------------------------------------------------------------*/
/*  pages
/*-----------------------------------------------------------------------------------*/


.projects-list
{
    /*width: 1000px;*/
}

.contacts-text
{
    font-family: 'Apercu Light', Calibri, Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 200;
    font-style: normal;
    font-size-adjust: .508;
    line-height: 1.4;

    display: table;
    
    padding-top: 1em;
    width: 100%;
    height: 100vh;
}

.info-text
{
    font-family: 'Apercu Light', Calibri, Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 200;
    font-style: normal;
    font-size-adjust: .508;
    line-height: 1.4;

    display: table;

    padding-top: 1em;
    width: 100%;
    height: 100vh;

    color: #fff;
}

.credits-text
{
    font-family: 'Apercu Regular', Calibri, Roboto, sans-serif;
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    font-size-adjust: .508;
    line-height: 2;

    display: table;

    padding-top: 1em;
    width: 100%;
    height: 100vh;
}

/*-----------------------------------------------------------------------------------*/
/*  table
/*-----------------------------------------------------------------------------------*/

table
{
    font-size: .8rem;
    line-height: 2;

    width: 90%;
}

.table-title
{
    padding: 1em 0;

    border-bottom: 1px #1e1e1e solid;
}

.table-title-under
{
    padding-top: 1em;
}