@import url(https://fonts.googleapis.com/css?family=Nunito);
@import url(https://fonts.googleapis.com/css?family=Nunito+Sans);


::-webkit-scrollbar, -moz-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track, -moz-scrollbar-track { 
	-webkit-box-shadow: inset 2 2 6px rgba(0,0,0,0.3); 
    border-radius: 1px; background-color: rgb(247, 245, 244); }
::-webkit-scrollbar-thumb, -moz-scrollbar-thumb { background-color: #555;}


.spinner {
    width: 100vw;
    height: 100vh;
    position: fixed;
    margin: 0 auto;
    z-index: 800;
    top: 0 !important;
    bottom: 0;
    background-color: #333;
}

.spinner.hide {
    display: none;
}

.spinner:before, .spinner:after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px dotted #fff;
    opacity: 0.6;
    position: absolute;
    bottom: 0;
    top: 0;
    animation: sk-bounce 2s linear infinite;
    margin: auto;
    left: 0;
    right: 0;
}

.spinner:after {
  animation-delay: -1s;
}


@keyframes sk-bounce {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.5);
  }
  60% {
    transform: scale(2);
    opacity: 0.5;
  }
  80% {
    transform: scale(2.5);
    opacity: 0.25;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}




body {   
    font-size: 9pt;
    margin: 0 0 0 0;
    padding: 0;
    overflow-x: hidden; 
    font-family: 'Merriweather', serif;
    font-family: 'Arima Madurai', cursive;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Lato', sans-serif;
    font-family: 'Source Sans Pro', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

img, span {
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

em {
    font-style: normal;
}


#main {
    width: 100vw;
    height: 100vh;
    float: left;
    position: relative;
    background: #f2f2f2;
}


#video {
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

video {
	position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
    width: 90%;
    height: 90%;
    margin: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

iframe .vp-sidedock, iframe .vp-controls {display: none !important;}

.vjs-vimeo iframe {
    height: 100vh !important;
}


#gus-video {
    height: 100vh;
}

#gus-video:before {
    content: "";
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.vjs-control-bar, .vjs-top-control-bar, .vp-controls {
    display: none !important;
}


.panel {
	height: 100%;
	width: 100%;
}


#logo {
    margin: auto;
    height: 250px;
    top: 0;
    bottom: 60px;
    position: absolute;
    left: 0;
    right: 0;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
    opacity: 0;
}

#logo.show,
#btn_site.show {
	opacity: 1;
	transition: all ease 0.5s;
}

#video.hide {
	display: none;
}

#main.background {
	background-color: #dddddd61;
    background-color: #f2f2f2;    
	transition: all ease 0.5s;
}

#bottom_line {
    width: 100vw;
    position: absolute;
    height: 80px;
    background: #f2f2f2;
    left: 0;
    bottom: 0;
    z-index: 200;
    box-shadow: -1px -1px 5px 0px #99999975;
    transition: all ease 0.1s;
}

#bottom_side {
    color: #808080;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    width: 100%;
    font-size: 9.5pt;
    margin-top: 10px;
}


#btn_site {
    position: fixed;
    bottom: 5px;
    width: 40px;
    padding: 10px;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    z-index: 300;
    opacity: 1;
    animation: MoveUpDown 2s linear infinite;
    transition: all ease 0.2s;
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 5px;
  }
  50% {
    bottom: 13px;
  }
}

#btn_site.hide,
#bottom_side.hide {
    opacity: 0;
    transition: all ease 0.1s;
}


#bottom_line.hide {
    height: 0px;
    transition: all ease 0.2s;
}

#bottom_line.phone.hide {
    display: none;
    transition: all ease 0.2s;
}

#bottom_line.phone {
    box-shadow: none;
}


#btn_site img {
    height: 17px;
    filter: invert(50%);
    margin: 10px auto 0;
}


#menu {
    position: fixed;
    top: -100px;
    top: 0;
    width: 100vw;
    background: white;
    height: 80px;
    box-shadow: 1px 1px 1px #b7b7b7;
    transition: all ease 1s;
    z-index: 340;
}

#menu.top {
    top: 0;
    transition: all ease 1s;
}

#menu_logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: 8px auto 0;
    width: 100px;
}

#menu img {
    float: left;
    width: 98px;
    margin: 12px 0 0 0;
}

#menu span {
    float: right;
    margin: 27px 50px 0;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: 600;
    color: #969695;
    font-size: 11pt;
}

ul#lang_menu {
    float: left;
    width: 100px;
    margin: 30px 0 0 50px;

}

#lang_menu li {
    float: left;
    margin: 0 5px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #969695;
    font-size: 11pt;    
}


#lang_menu li.mark {
    font-weight: 600;
}


.text {
     padding: 90px 15%;   
}




/* INTRO */
#intro {
    background-repeat: no-repeat;
    background-color: #f2f2f2 !important;
    background-image: url('Images/matt-artz-353291-unsplash.jpeg');
    background-size: cover;
    background-position: center;
    background-blend-mode: color-dodge;
}

@supports (-ms-ime-align:auto) {
        #intro {
        background-image: url('Images/matt-artz-353291.jpg') !important;

    }
}

#intro .text {
    height: 140px;
    max-width: none;
    font-size: 1.7em;
    font-weight: 100;
    line-height: 1.5em;
}


/* GALERIA */


#gallery.container {
    width: 80%;
    height: 60vh;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
  /*
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  */
}

#gallery.container label {
  position: absolute;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
}


#gallery.container [class*='item'] {
  width: calc(25% - 6px);
  height: calc(33% - 6px);
  margin: 3px;
  background: url();
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out;
  filter: saturate(0);
  z-index: 0;
}


#gallery.container [class*='item']:hover {
  filter: saturate(1);
  z-index: 1;
}


#gallery.container [class*='item']:nth-of-type(1) {
  top: 0;
  left: 0;
}

#gallery.container [class*='item']:nth-of-type(2) {
  top: 0;
  left: 25%;
}

#gallery.container [class*='item']:nth-of-type(3) {
  top: 0;
  left: 50%;
}

#gallery.container [class*='item']:nth-of-type(4) {
  top: 0%;
  left: 75%;
}



#gallery.container [class*='item']:nth-of-type(5) {
  top: 33%;
  left: 0%;
}

#gallery.container [class*='item']:nth-of-type(6) {
  top: 33%;
  left: 25%;
}

#gallery.container [class*='item']:nth-of-type(7) {
  top: 33%;
  left: 50%;
}

#gallery.container [class*='item']:nth-of-type(8) {
  top: 33%;
  left: 75%;
}


#gallery.container [class*='item']:nth-of-type(9) {
  top: 66%;
  left: 0%;
}

#gallery.container [class*='item']:nth-of-type(10) {
  top: 66%;
  left: 25%;
}

#gallery.container [class*='item']:nth-of-type(11) {
  top: 66%;
  left: 50%;
}

#gallery.container [class*='item']:nth-of-type(12) {
  top: 66%;
  left: 75%;
}



#gallery.container input {
  display: none;
}

#gallery.container input:checked + [class*='item'] {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}













#concept {
    background-color: rgb(242, 242, 242) !important;
    background-image: url('Images/alexander-andrews-290794-unsplash.jpeg');
    background-size: cover;
    background-position: center;
}

#concept .text {
    font-size: 1.65em;
    font-weight: 100;
    line-height: 1.4em;
    max-width: 60%;
    position: absolute;
    left: initial;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: right;
    height: 320px;
    color: white ;
    background: rgba(255, 255, 255, 0.03);
    padding: 90px 5% 90px 35%;
}








#sustain {
    background-color: #f2f2f2 !important;
    background-image: url('Images/marianne-krohn-703840-unsplash.jpeg');
    background-size: 120%;
    background-position: center;
    background-blend-mode: luminosity;
    background-position: center bottom;
}

#sustain .text {
    height: 220px;
    background: rgba(224, 224, 224, 0.1);
    font-size: 1.65em;
    font-weight: 100;
    line-height: 1.4em;
    max-width: 50%;
    position: absolute;
    left: initial;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: left;
    padding: 90px 46% 90px 6%;
}




#contacts_section {
     background-color:#fff;
}

#contacts {
    position: absolute;
    width: 620px;
    height: 180px;
    margin: calc((100vh - 250px)/ 2) calc((100vw - 620px)/ 2);
    color: #000;
}

.contact_box {
    float: left;
    width: 180px;
    margin: 0 40px 0 0;
}

.contact_box:last-child {
	margin-right: 0;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 100px;
    background: #fff;
    border-top: 1px dotted #96969591;
    margin: 0;
    z-index: 200;
}

#footer div {
    float: left;
    height: 100%;
    width: 245px;
    margin: 0 calc((100vw - 245px) / 2);
}

#footer div a {
    float: left;
    height: 100%;
    width: 100%;
}

#footer img {
    float: left;
    width: 108px;
    margin: 32px 25px 0;
}


#footer span {
    float: left;
    margin: 43px 0 0 0;
    font-style: normal;
    letter-spacing: 1px;
    font-weight: 600;
    color: #969695;
    font-size: 11pt;
}





.title {
    font-weight: 800;
    float: left;
    font-size: 18pt;
    clear: both;
    width: 100%;
    margin: 0 0 20px 0;
}

.info {
    font-size: 11pt;
    line-height: 17.5pt;
    letter-spacing: 0.2pt;
    font-weight: 300;
}

.text {
    font-size: 2em;
    font-weight: 100;
    line-height: 1.5em;
    max-width: 80%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.text em {
    font-weight: 900;
}



#bottom_line.phone {
    display: none;
}

