
@font-face{
    font-family: "Solido Compressed W00 Bold";
    src: url("fonts/f717d0e0b39e617d31af8a8208504f61.eot");
    src: url("fonts/f717d0e0b39e617d31af8a8208504f61.eot?#iefix")format("embedded-opentype"),
        url("fonts/f717d0e0b39e617d31af8a8208504f61.woff")format("woff"),
        url("fonts/f717d0e0b39e617d31af8a8208504f61.woff2")format("woff2"),
        url("fonts/f717d0e0b39e617d31af8a8208504f61.ttf")format("truetype"),
        url("fonts/f717d0e0b39e617d31af8a8208504f61.svg#Solido Compressed W00 Bold")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}
body {
    background: #ddd7c2 url('img/bg.jpg') no-repeat center center fixed; 
    background-size: cover;
    color: #000;
    text-align: center;
    font-family: 'Solido Compressed W00 Bold', 'Arial Black', 'Arial';
}
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('img/bg.jpg') no-repeat center center ;
    background-size: cover;
    z-index: -1;
}
h1, h2, h3, h4 {
    text-align: center;
    text-transform: uppercase;
}
h1.fixed-top, .logo {
    font-size: 25px;
}

.logo {
    /*
    position: fixed;
    position: absolute;
    top: 50%;
    left: 4%;
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 30%;*/
    
    position: fixed;
    width: 100%;
    top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.logo img {
    transition-duration: 0.5s;
    opacity: 0;
    animation: fadeIn 1s ease-in 0.5s;
    animation-fill-mode: forwards;
    width: auto;
    max-width: 80%;
	max-height: 50vh;
}
.logo.shrink img {
}
.header {
    position: fixed;
    pointer-events: none;
    width: 100%;
    top: 0;
    z-index: 99;
    animation: slideInTop 0.7s, fadeIn 1s;
}
.header-image {
    position: relative;
    z-index: -1;
}
.footer {
    background: #000;
    font-size: 9px;
    font-family: 'Arial';
    font-weight: normal;
    padding: 7px;
    color: #fff;
	opacity: 0;
    animation: fadeIn 0.5s ease-in 1.5s;
    animation-fill-mode: forwards;
}
.footer img {
    height: 20px;
    display: inline-block;
    width: auto;
    padding-top: 1px;
}
.header img {
    width: 100%;
}
.perso {
    height: 100vh;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
}
.perso img {
    position: absolute;
    bottom: 0vh;
    max-height: 70vh;
    width: auto;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    animation: fadeIn 0.5s ease-in 1s;
    animation-fill-mode: forwards;
    max-width: 100vw;
}
.share-cta {
    background: #f5cb04;
    opacity: 0;
    animation: fadeIn 0.5s ease-in 1s;
    animation-fill-mode: forwards;
    margin-top: 100vh;
    border: 10px solid transparent;
    padding: 20px;
    position: relative;
    margin: 100vh 5% 0;
    font-variant: small-caps;
    border-radius: 10px;
}
.share-cta:before {
    content: " ";
    background: #f5cb04;
    border: 3px solid #fff;
    border-radius: 10px;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    z-index: -1;
}

.container {
    opacity: 0;
    animation: fadeIn 0.5s ease-in 1.5s;
    animation-fill-mode: forwards;
    padding: 0 15vw;
    min-height: 70vh;
}

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

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

.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 {
        
}
.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail  { transform:rotate(3deg); }
.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail:nth-child(2n) { transform:rotate(-2deg); }
.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail:nth-child(3n) { transform:rotate(1deg); }
.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail:nth-child(4n) { transform:rotate(-3deg); }
.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail:nth-child(5n) { transform:rotate(-4deg); }
.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail:nth-child(6n) { transform:rotate(2deg); }
.nanogallery_gallerytheme_custom_my_nanogallery .nGY2GThumbnail:hover  { transform:rotate(0); }


@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slideInTop {
  0% {
    top: -200%;
  }

  100% {
    top: 0;
  }
}
@keyframes slideInBottom {
  0% {
    bottom: -200%;
  }

  100% {
    bottom: 0;
  }
}