 /************************************************************************************
RESET
*************************************************************************************/

html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
  margin: 0;
  padding: 0;
}

img, fieldset {
  border: 0;
  max-width: 100%;
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, form, header, hgroup, menu, nav, section { 
    display: block;
} 

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/************************************************************************************
GENERAL
*************************************************************************************/

@-webkit-keyframes fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}

body { 
  background: #333;
  font: 100% 'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #999; 
  text-align: center; 
  -webkit-animation: fadein 1.5s ease-in .1s both;
  animation: fadein 1.5s ease-in .1s both;
}



a { 
  text-decoration: none;
  color: #f48e9a;
}

p {
  max-width: 900px;
  font-size: 120%;
  font-style: italic;
  line-height: 150%;
  letter-spacing: 1px;
  margin: 0 auto;
  padding: 0 5%;
}

h1 {
  font-size: 300%;
  font-weight: 600;
  margin: 0 auto;
}

/************************************************************************************
MENU
*************************************************************************************/

#menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  animation-name: fade-in;
  animation-duration: 5s;
}

@keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity:1;}
}

#menu li {
  display: inline-block;
  width: 30px;
  height: 22px;
  margin: 10px 8px 0;
}

#menu li .st0 {
  fill: transparent;
  stroke: #F48E9B;
  stroke-miterlimit: 10;
  transition: 1s;
}

#menu li:hover .st0,
#menu .active .st0  {
  fill: #f48e9a;
  stroke: #292929;
}


.close {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  margin: 15px;
}

.st1 {
  fill: #292929;
  stroke: #f48e9a;
}



/************************************************************************************
CONTENT
*************************************************************************************/

.logo {
  width: 265px;
  height: auto;
  margin: 0 auto;
}

.frame {
  position: relative;
  max-width: 500px;
  margin: 10px auto 0;
}

.six {
  max-width: 600px;
}

.four {
  max-width: 400px;
}

.three {
  max-width: 360px;
}

#gallery p {
  font-size: 100%;
  font-style: normal;
}

.small {
  display: none;
}

.grey {
  background-color: #252727;
}

.contact a:hover {
  border-bottom: 1px solid #8ff2e9;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-size: 80%;
  font-style: normal;
}

.zoomed img {
 
  max-width: 200%;

}

.close a {
  display: block;
  width: 30px;
  height: 30px;
}

/************************************************************************************
MEDIA QUERIES
*************************************************************************************/

@media screen and (max-width: 1024px) {

  p {
    font-size: 100%;
    line-height: 120%;
  }

  #gallery p {
    margin-top: 5px;
  }

  .small {
    display: inline-block;
  }

  .big {
    display: none;
  }

  .three, .four {
    max-width: 70%;
    margin: 0 auto;
    padding-top: 20px;
  }

  .footer {
    font-size: 70%;
  }
  
}

@media screen and (max-width: 900px) {

    .fp-controlArrow.fp-prev {
        left: 30px;
    }
    .fp-controlArrow.fp-next {
        right: 30px;
    }   
}  

@media screen and (max-width: 700px) {

  .frame {
    margin: 5%;
  }

  .three, .four {
    margin: 0 auto;
  }

    #gallery p {
    font-size: 85%;
  }

  .fp-controlArrow {
    display: none; 
  }
    
}  


    



