@font-face {
	font-family: 'ProximaNovaRegular';
	src: local('ProximaNovaRegular'), url('fonts/ProximaNovaRegular.woff') format('woff');
}


body {
    background: #0d0d0d;
    color: #eee;
    text-align: center;
    font-family: 'ProximaNovaRegular', 'Futura';
    text-transform: uppercase;
}
h1, h2, h3, h4 {
    text-align: center;
}
h1.fixed-top, .logo {
    font-size: 25px;
}
.logo {
    position: absolute;
    top: 5%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 90%;
    z-index: 99;
    left: 50%;
}
.logo img {
    transition-duration: 0.5s;
    opacity: 0;
    animation: fadeIn 1s ease-in 0.5s;
    animation-fill-mode: forwards;
    max-height: 30vh;
	width: auto;
}
.logo.shrink img {
}
.header {
    position: fixed;
    background: #000 url('img/header.jpg') center bottom;
    background-size: cover;
	height: 100vh;
	width: 100%;
	top: 0;
}

.header .water {
  position: absolute;
  top:0%;
  left:0;
  right: 0;
  bottom: 0;
  background: transparent url('img/header.jpg') center bottom;
    background-size: cover;
  filter: url("#turbulence");
}


.perso {
    height: 100vh;
    text-align: center;
    top: 0;
    width: 100%;
}
.perso img {
    position: absolute;
    bottom: 0;
    max-height: 40vh;
    width: auto;
    right: 0;
    opacity: 0;
    animation: fadeIn 0.5s ease-in 1s;
    animation-fill-mode: forwards;
    max-width: 100vw;
}

.header-image {
    position: relative;
    animation: slideIn 0.7s, fadeIn 1s;
    z-index: -1;
}
.share-cta {
    /*
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    */
    opacity: 0;
    animation: fadeIn 0.5s ease-in 1s;
    animation-fill-mode: forwards;
    margin-top: 0%;
    z-index: 100;
    position: relative;
	backdrop-filter: blur(10px);
}

.container {
    opacity: 0;
    animation: fadeIn 0.5s ease-in 1.5s;
    animation-fill-mode: forwards;
	backdrop-filter: blur(10px);
	min-height: 100vh;
	margin-top: 100vh;
}

.footer {
    background: #000;
    font-size: 9px;
    font-family: 'Arial';
    padding: 7px;
    z-index: 9999;
    position: relative;
	text-transform: none;
}
.footer img {
    height: 20px;
    display: inline-block;
    width: auto;
    padding-top: 1px;
}

.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail {
    border-width: 3px !important;
    transition-duration: 0.5s;
}

.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail:hover {
    border-color: #ffffff;
}

.nGY2 .toolbar.toolbarBackground .ngbt {
    font-size: 1.5em;
    padding: 0;
    background: #fff;
    color: #000;
    border-radius: 999px;
    height: 40px;
    width: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.noshare .nGY2 .toolbar.toolbarBackground .ngbt {
    display: none;
}
.nGY2 .toolbarContainer {
    margin-bottom: 15px;
}

element.style {
}
[class^=nGY2Icon-] {
    margin-left: 0.3em;
    margin-right: 0.3em;
}
.nanogallery_viewertheme_dark_my_nanogallery .nGY2Viewer .toolbarBackground {
        
}


@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slideIn {
  0% {
    left: 200%;
  }

  100% {
    left: 0;
  }
}