



/* ++++++++++++++++    my hamburgher code +++++++++++++++++ */


.c-hamburger {
    border: medium none;
    box-shadow: none;
    cursor: pointer;
    display: block;
    float: right;
    font-size: 0;
    height: 44px;
    margin: 19px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-indent: -9999px;
    transition: background 0.3s ease 0s;
    width: 30px;
    margin-top: 18px;
    border-radius:2px;
}
.c-hamburger:focus {
    outline: medium none;
}
.c-hamburger span {
    background: ghostwhite none repeat scroll 0 0;
    display: block;
    height: 2px;
    left: 4px;
    padding: 0;
    position: absolute;
    right: -4px;
    top: 21px;
}
.c-hamburger span::before, .c-hamburger span::after {
    background-color: #333;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    width: 77%;
}
.c-hamburger span::before {
    top: 14px;
}
.c-hamburger span::after {
    bottom: -18px;
}
.c-hamburger--htx {
    background-color: ghostwhite;
}
.c-hamburger--htx span {
    transition: background 0s ease 0.3s;
}
.c-hamburger--htx span::before, .c-hamburger--htx span::after {
    transition-delay: 0.3s, 0s;
    transition-duration: 0.3s, 0.3s;
}
.c-hamburger--htx span::before {
    transition-property: top, transform;
}
.c-hamburger--htx span::after {
    transition-property: bottom, transform;
}
.c-hamburger--htx.is-active {
    background-color: rgb(197, 179, 88);
}
.c-hamburger--htx.is-active span {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}
.c-hamburger--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg);
}
.c-hamburger--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}
.c-hamburger--htx.is-active span::before, .c-hamburger--htx.is-active span::after {
    transition-delay: 0s, 0.3s;
}










/*  +++++++++++++++++++  COOKIE LAW  +++++++++++++++++++  */


#cookie-box-content {
    color: #777;
    font-family: "oswald",sans-serif;
    font-size: 13px;
    font-weight: lighter;
    letter-spacing: 2px;
    margin-top: 0px !important;
    max-width: 250px;
    
}

#cookie-box-content:hover {

    color: rgb(197, 179, 88);
    transition-duration: 1s;
  
   
}

#cookieChoiceInfo {           /* Imposto le proprietà del banner/dialog box e caratteri del messaggio */
  background-color: rgb(129, 107, 37);     
         
  font-size: 16px;  
  font-family:  'Oswald', sans-serif;
  font-weight: 300;        
  color: #101010;                /* il colore dei caratteri è grigio chiaro (#DDD) */
  padding: 10px;              /* lo spazio intorno al messaggio (sopra, sotto e di lato) quindi il bordo dista 10 pixel */  
  opacity: 1.0;                /* questa proprietà modifica la trasparenza del banner/dialogbox */
}
#cookieInfoLink {                      
  color: #f9f9f9;                /* il testo del link che aprire la pagina della cookie policy è rosso (#E00)  */
  text-decoration: underline; /* questa proprietà indica che il testo del link è sottolineato  */
}
#cookieInfoLink:hover {       /* la parola hover, vicino al selettore, indica che le proprietà seguenti verranno applicate... */
                              /* ... al link che conduce alla cookie policy solo quando il mouse ci passa sopra  */
  color: #F44;                /* il testo del link in questo caso diventa di un rosso più chiaro al passaggio del mouse...  */
  test-decoration: none;       /*   .... e allo stesso tempo il testo non sarà più sottolineato            */
}

#cookieChoiceDismiss {        /* Impostiamo per il link "accetto/ok/chiudi" le proprietà per renderlo... */
            
  background-color: rgb(129, 107, 37);     /* lo sfondo è verde (#0A0) */
  color: #FFF;                /* Il colore del testo è bianco (#FFF) */
  text-decoration: none;      /* Il testo non è sottolineato         */
  font-weight: 600;           /* Il testo è in grassetto             */
  font-size: 10px;
  padding: 3px 10px;          /* Imposto lo spazio tra i caratteri e il bordo del pulsante 2pixel sopra e sotto e 10px ai lati */
  border-radius:  2px;        /* Lo sfondo del pulsante ha i bordi arrotondati con un raggio di 3 pixel */
}
#cookieChoiceDismiss:hover {  /* Passando il mouse sopra il pulsante, questo cambia colore in verde chiaro. */
  color: #282828; 
  transition-duration: 1s  ;


}

/*  +++++++++++++++++++  PARALLAX  +++++++++++++++++++  */


.parallax-window {
  min-height: 700px;
  background: transparent;
}





/* +++++++++++++++++++  FADEIN BOX ++++++++++++++++++++++++++  */



/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }

.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fade-in.one {
-webkit-animation-delay: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}

.fade-in.two {
-webkit-animation-delay: 1.2s;
-moz-animation-delay:1.2s;
animation-delay: 1.2s;
}

.fade-in.three {
-webkit-animation-delay: 1.6s;
-moz-animation-delay: 1.6s;
animation-delay: 1.6s;
}

.fade-in.four {
-webkit-animation-delay: 2s;
-moz-animation-delay: 2s;
animation-delay: 2s;
}

.fade-in.five {
-webkit-animation-delay: 2.4s;
-moz-animation-delay: 2.4s;
animation-delay: 2.4s;
}

.fade-in.six {
-webkit-animation-delay: 2.8s;
-moz-animation-delay: 2.8s;
animation-delay: 2.8s;
}



/*---make a basic box ---*/
.box{
width: 100px;
height: 100px;
position: relative;
margin: 10px;
color: white;
padding: 40px;  
float: left;
border: 1px solid #fff;
background: #27a5d2;
border-radius: 10px;
}



















/* +++++++++++++++++++  SLIDER ++++++++++++++++++++++++++  */

.slider {

  margin: 0 auto;
  max-width: 100%;
}

.slide_viewer {
  height: 450px;
  overflow: hidden;
  position: relative;
}


.slide_group {

  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
}

.slide:first-child {
  display: block;
}



.slide:nth-of-type(1) {
  background: #f8f8ff;
  background-image: url(../);
  background-position: center;
  background-repeat: no-repeat;
}




.slide:nth-of-type(3) {
  background: #f8f8ff;
  background-image: url(../);
  background-position: center;
  background-repeat: no-repeat;
}

.slide:nth-of-type(5) {
  background: #f8f8ff;
   background-image: url(../);
   background-position: center;
   background-repeat: no-repeat;
}

.slide:nth-of-type(4) {
  background: #f8f8ff;
  background-image: url(../);
  background-position: center;
   background-repeat: no-repeat;
}

.slide:nth-of-type(6) {
  background: #f8f8ff;
  background-image: url(../);
  background-position: center;
   background-repeat: no-repeat;
}

.slide:nth-of-type(2) {
  background: #f8f8ff;
  background-image: url(../);
  background-position: center;
   background-repeat: no-repeat;
}


.slide_buttons {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

a.slide_btn {
  color: #adadad;
  font-size: 30px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide_btn.active, .slide_btn:hover {
  color: #be9c30;
  cursor: pointer;
}

.directional_nav {
  height: 100px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  top: -340px;
}

.previous_btn {
  bottom: 0;
  left: 100px;
  margin: auto;
  position: absolute;
  top: 0;
}

.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 100px;
  top: 0;
}

.previous_btn, .next_btn {
  cursor: pointer;
  height: 65px;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 65px;
}

.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .previous_btn {
    left: 50px;
  }
  .next_btn {
    right: 50px;
  }
}














/*bounce*/

/*    ++++++++++++++  Animazione arrow   +++++++++++++++++++   */

@import url(http://weloveiconfonts.com/api/?family=fontawesome); 



.fa {
 
 width: 60px;
 display: block;
 text-align: center;
 color: rgb (197, 179, 88);
 font:normal 45px 'FontAwesome';
 line-height:60px;
 text-rendering: auto;
 -webkit-font-smoothing: antialiased;
 padding-top: 65%;
}

.fa-angle-double-down:before {

	content: url(../pics/goldel_arrow.png);
}

.bounce {
    position: absolute;
    bottom: 30px;
    left: 50% ;
    width: 60px;
    height: 60px ;
    margin-left:-30px;
    border: 0px solid rgb(197, 179, 88);
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    border-radius:50%;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}
 
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateX(0);} 
    40% {-webkit-transform: translateX(-30px);}
    60% {-webkit-transform: translateX(-15px);}
}
 
@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-moz-transform: translateX(0);}
    40% {-moz-transform: translateX(-30px);}
    60% {-moz-transform: translateX(-15px);}
}
 
@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-o-transform: translateX(0);}
    40% {-o-transform: translateX(-30px);}
    60% {-o-transform: translateX(-15px);}
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
    40% {transform: translateX(-30px);}
    60% {transform: translateX(-15px);}
}


/**/

