/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
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;
}

.clear {
    float: none;
    clear: both;
}


html, body {
	
	background: #000;
	width: 100%;
	height: 100%;
	font-family: 'Nunito Sans', sans-serif;
}

/******** background */


div#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.5);
    transition: all 1.3s;
}

div#background.animated {
	transform: scale(1);
}
div#background-right, div#background-left {
    width: 50%;
    height: 100%;
}

div#background-right img, div#background-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div#background-right {
    position: absolute;
    right: -50%;
    top: 0;
}

div#background-left {
    position: absolute;
    left: -50%;
    top: 0;
}


/****
div#background-overlay {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.31);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
*/

/**** content */


div#title-album {
    text-align: center;
}

div#title-album img {
    width: 200px;
    margin-left: 7px;
    margin-top: 10px;
    opacity: 0;
    transform: scale(1.5);
    transition: all 2s;
}

div#title-album img.animated {
	
	opacity: 1;
    transform: scale(1);
	
}



div#wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

div#content {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

div#wrapper {}

h1 {
    width: 100%;
    text-align: center;
    font-size: 40px;
}

h2 {
    width: 100%;
    text-align: center;
    font-size: 40px;
}

div#links-wrapper {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

#links .title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

a#contact-link {
    color: #000;
    
    display: block;
}

#links .title.contact-link {
	margin: 20px 0 0 0;
}

div#links {
    width: 380px;
    background: rgba(255,255,255,0.8);
    text-align: left;
    padding: 20px;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 14px 14px 52px rgba(0,0,0,0.63);
    box-sizing: border-box;
    display: none;
}

.link-box a {
    text-decoration: none;
    color: #000;
}

.link-box {
    margin: 10px 0;
    padding: 0 10px;
}


.link-box span.logo {
    width: 20px;
    display: inline-block;
}

.link-box span.logo img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}


div#video-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

#video {
		
	text-align: center;
	display: none;
	position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
	
}


#video iframe,
#video object,
#video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 }
 
 .lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}

.ligthtbox-inside {
    width: 750px;
    height: 700px;
    margin: -350px auto 0 auto;
    padding: 50px;
    background: #FFF;
    top: 50%;
    box-sizing: border-box;
    position: relative;
}

.close-lightbox {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    border-radius: 30px;
    font-size: 30px;
    cursor: pointer;
    width: 30px;
    background: #FFF;
    padding: 10px;
    height: 30px;
    text-align: center;
    text-decoration: none;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    box-sizing: border-box;
    border: 0;
    display: block;
    font-size: 18px;
    border: 1px solid #d4d4d4;
}

textarea {
    min-height: 200px;
}

input[type="submit"] {
    border: 0;
    background: #FFF;
    padding: 6px 15px;
    color: #000;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    font-weight: lighter;
    border: 1px solid #d4d4d4;
}

button.g-recaptcha {
    border: 0;
    background: #FFF;
    padding: 6px 15px;
    color: #000;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    font-weight: lighter;
    border: 1px solid #d4d4d4;
}


.message {
    background: #06ce3a;
    margin: 5px 0;
    padding: 10px;
    width: 50%;
    text-align: center;
}

.message.message-error {
    background: #d73636;
}

#lightbox-contact .message {
    
    display: none;
}

.form-loading {
    height: 50px;
    display: none;
}

.form-loading img {
    max-height: 100%;
    width: auto;
}


@media screen and (max-width: 767px) {
	

	.ligthtbox-inside {
        width: 100%;
        padding: 20px;
        margin: 0;
        top: 0;
        overflow: auto;
        height: 100%
    }
    
   
    .close-lightbox {
        right: 10px;
        top: 10px;
    }
    
    textarea {
        min-height: 120px;
    }
	
}