/*
 * Denoréaz Thomas
 */


@font-face {
    font-family: 'GillSans';
    src: url('../fonts/GillSans.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GillSans';
    src: url('../fonts/GillSans.ttf')  format('truetype'), url('../fonts/GillSans.svg#GillSans') format('svg');
    font-weight: normal;
    font-style: normal;
}

html, body {
    font-family: GillSans;
    font-size: 16px;
    color: black;
    height:100%;
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

a {
    color: black;
}

a:hover {
    color: #002bc0;
}

a.button {
    color: black;
    text-decoration: none;
}

a.button:hover {
    color: white;
    text-decoration: none;
}

body {
	position: relative;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#content {
    margin-top: 95px;
}

#copyright {
    color: grey;
    padding-bottom: 30px;
}

#copyright a {
    color: grey;
}

#menu-react {
    position: fixed;
    top: 0;
    width:100%;
    margin-top: 20px;
    margin-bottom: 0px;
    z-index: 9999;
}

.button {
    background-color: white;
    font-size: 18px;
    padding-left: 5px;
    padding-right: 0px;
    border-color: black;
    border-width: 2px;
    border-style: solid;
}

.blank-button {
    z-index: 98;
    padding: 0;
}

.blank-blank {
    background-color: white;
    border-color: white;
    border-width: 2px;
    border-style: solid;
    height: 31px;
    margin-top: -4px;
    margin-right: -4px;
    margin-left: -2000px;
}

.sim-button {
    text-align: center;
    cursor: pointer;
}
.button8 {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.button8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    opacity: 1;
    color: white;
    background-color: #002bc0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.button8:hover {
    color: white;
    background-color: transparent;
}
.button8:hover::before {
    opacity: 1;
    width: 100%;
    z-index: -10;
}
.button8on {
    color: white;
    background-color: #002bc0;
}

.button#title {
    font-weight: 500;
    font-size: 24px;
    text-align: left;
    color: #002bc0;
    z-index: 99;
}

.button#facebook {
    text-align: left;
    margin-top: 9px;
    z-index: 99;
}

.button#infos {
    text-align: left;
    margin-top: -2px;
    z-index: 99;
}

.button#facebook-xs {
    text-align: left;
    margin-top: -2px;
    border-left-width: 1px;
    z-index: 99;
}

.button#infos-xs {
    text-align: left;
    margin-top: -2px;
    border-right-width: 1px;
    z-index: 99;
}

#infos-titles {
    background-color: white;
    font-size: 18px;
    margin-top: -2px;
    z-index: 95;
    overflow: hidden;
}

.infos-title {
    background-color: white;
    padding-left: 5px;
    padding-right: 0px;
    border-color: black;
    border-width: 2px;
    border-style: solid;
}

#infos-list {
    background-color: white;
    padding-top: 165px;
    margin-top: -150px;
    padding-right: 15px;
    padding-left: 15px;
}

#infos-list div {
    padding-left: 0px;
    padding-bottom: 15px;
}

#infos-list-xs {
    background-color: white;
    padding-top: 165px;
    margin-top: -150px;
    padding-right: 15px;
    padding-left: 15px;
    height: 1500px;
}

#infos-list-xs div {
    padding-left: 0px;
    padding-bottom: 0px;
}

#infos-list-xs .infos-title {
    margin-top: 7px;
}

#infos-list-xs .arrow-down {
    margin-left: 4px;
}

#infos-list-xs .arrow-down::before {
    margin-top: 3px;
    margin-bottom: -3px;
    overflow: hidden;
}

#infos-list .row {
    margin-right: 0;
    margin-left: 0;
}

.expo-date .title {
    margin: 0;
}

.expo-date .description {
    color: lightgray;
    margin: 0;
    margin-top: -2px;
}

/*
 * Info Title Animation
 */

.info-title-enter {
    transform-origin: left center;
    transform: translateX(-120%);
    overflow: hidden;
}

.info-title-enter.info-title-enter-active {
    transform: none;
    transition: all 1s ease-in;
}

.info-title-leave {
    transform-origin: left center;
    transform: none;
    overflow: hidden;
}

.info-title-leave.info-title-leave-active {
    transform: translateX(-120%);

    transition: all .5s ease-out;

    transition-delay: .25s;
}

.info-list-enter {
    visibility: hidden;
    max-height: 0;
    padding-top: 0px;
    margin-top: 0px;
    overflow: hidden;
}

.info-list-enter.info-list-enter-active {
    visibility: visible;
    max-height: 500px;

    padding-top: 150px;
    margin-top: -150px;

    transition: all .5s ease-in;

    transition-delay: 1s;
}

.info-list-leave {
    max-height: 500px;
    overflow: hidden;
    padding-top: 150px;
    margin-top: -150px;
}

.info-list-leave.info-list-leave-active {
    max-height: 0;
    padding-top: 0px;
    margin-top: 0px;
    transition: all .25s ease-out;
}

.info-list-xs-enter {
    max-height: 0;
    padding-top: 0px;
    margin-top: 0px;
    overflow: hidden;
}

.info-list-xs-enter.info-list-xs-enter-active {
    max-height: 1500px;

    padding-top: 150px;
    margin-top: -150px;

    transition: all .5s ease-in;
}

.info-list-xs-leave {
    max-height: 1500px;
    padding-top: 150px;
    margin-top: -150px;
    overflow: hidden;
}

.info-list-xs-leave.info-list-xs-leave-active {
    max-height: 0;
    padding-top: 0px;
    margin-top: 0px;
    transition: all .25s ease-out;
}










/*
 * Paintings
 */

#paintings-react {
    padding: 0;
    overflow-x: hidden;
}

.grid-item {
    padding-right: 0px;
    padding-left: 0px;
}

.painting .picture {
    margin-bottom: 10px;
    margin-right: 10px;
}

.painting .picture-xs {
    margin-bottom: 10px;
    margin-right: 0px;
}

.painting .caption {
    position: absolute;
    background-color: white;
}

.painting .caption .content {
    padding-right: 20px;
    padding-bottom: 20px;
}

.painting .caption .content .title {
    background-color: white;
    padding-left: 5px;
    border-color: black;
    border-width: 2px;
    border-style: solid;
    width: 200px;
}

.painting .caption .content .description {
}

.painting .caption-xs {
    position: absolute;
    background-color: white;
    width: 100%;
}

.painting .caption-xs .content {
    padding-right: 20px;
    padding-bottom: 20px;
}

.painting .caption-xs .content .title {
    background-color: white;
    padding-left: 5px;
    border-color: black;
    border-width: 2px;
    border-style: solid;
    width: 300px;
}

.painting .caption-xs .content .description {
    width: 400px;
}

/*
 * React Painting Animation
 */
.paintings-appear,
.paintings-enter {
    opacity: 0.01;
}

.paintings-appear.painting-appear-active,
.paintings-enter.painting-enter-active {
    opacity: 1;
    -webkit-transition: all .5s ease-in;
       -moz-transition: all .5s ease-in;
            transition: all .5s ease-in;
}

.painting-caption-enter {
    overflow: hidden;
    max-height: 0;
}

.painting-caption-enter.painting-caption-enter-active {
    max-height: 200px;
    -webkit-transition: all .5s ease-in;
       -moz-transition: all .5s ease-in;
            transition: all .5s ease-in;
}

.painting-caption-leave {
    max-height: 200px;
    overflow: hidden;
}

.painting-caption-leave.painting-caption-leave-active {
    max-height: 0;
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
            transition: all .25s ease-out;
}