*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 100;
}

html{
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #14151A;
    /*background-color: #000;*/
  color: #fff;

}

.main{
    background-image: url('images/section-211.jpg');
}

.philosophy{
    background-image: url('images/tradition2.jpeg');  
}

.process{
    background-image: url('images/process2.jpg');   
}

.taste{
    background-image: url('images/aroma.jpg');   
}

.policy{
    background-image: url('images/bar.jpeg');   
}

.contact{
    background-image: url('images/window.jpg');   
}

header{
  position: relative;

  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  opacity: 0;

  animation-name: header-reveal;
  animation-duration: 1s;
  animation-delay: .75s;
  -webkit-animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(.59,.02,.47,1);
}

header h4{
  margin-left: 6px;
  /*margin-top: 35%;*/
}
header h1{
  font-size: 4em;
  line-height: 1.2em;
}

#myNav{
  display: none;
}

a{
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

@keyframes header-reveal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dark_overlay{

  /*top: 0; */
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,.46);
}







.button-gold{
  border: 1px solid #bd926b;
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 100;
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  background-color: transparent;
  transition: all .15s linear;
  margin-top: 40px;
}



.button-gold:hover{
  cursor: pointer;
  background-color: #bd926b;
}

@keyframes button-fadein {
  0% {
    opacity: 0;

  }


  100% {
    opacity: 1;

  }
}












/* MENU */

.navigation{
  position: absolute;
  z-index: 100;
  width: 100%;
  left: 0;
  right: 0;
  top: 50px;
  height: 90px;
}

.logo{
  position: absolute;
  top: -10px;
  left: -50px;

  background-image: url("images/logo2.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  /*background-position: 0 10px;*/
  width: 140px;
  height: 129px;
  z-index: 100;
  opacity: 1;
      animation-name: text-reveal;
  animation-duration: .83s;
  animation-delay: 4.55s;
  -webkit-animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(.59,.02,.47,1);
  transition: all .15s linear;

}

.mobile_menu{
  display: none;
}

.menu{
  opacity: 1;
  position: absolute;
  top: 25px;
  right: -50px;
  font-weight: 100;
  letter-spacing: 1px;

    animation-name: text-reveal;
  animation-duration: .83s;
  animation-delay: 4.60s;
  -webkit-animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(.59,.02,.47,1);
  transition: all .15s linear;
}

.menu ul {
  position: initial;
  list-style-type: none;
}

.menu li{
  display: inline;
  margin-left: 50px;
}

.menu a{
  color: #fff;
  font-size: 13px;
  letter-spacing: 3px;
    text-decoration: none;
  position: relative;
  font-weight: 100;
  line-height: 30px;
  /*letter-spacing: 1px;*/
  /*color: #fff;*/
  text-transform: uppercase;

}

.link-menu:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  opacity: 0;
  border-bottom: 1px solid #bd926b;
  transition: 0.2s cubic-bezier(.59,.02,.47,1); 
}

.link-menu:hover:after {
  width: 100%;
  opacity: 1;
  bottom: -5px;
}

/*a {
  text-decoration: none;
  position: relative;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}
*/



/*SECTIONS*/

.section-height{
  height: 650px;
}

.section-1{
  background-image: url('images/bg2.jpg');
  background-size: cover;
  overflow: hidden;
}

.section-2{
  background-image: url('images/window.jpg');
  background-size: cover;
  overflow: hidden;
}

.section-3{
  /*background-color: #14151A;*/
  background-image: url('images/castle.jpeg');
  background-size: cover;
  overflow: hidden;
}

.section-4{
  background-image: url('images/istock12.jpg');
  background-size: cover;
  overflow: hidden; 
  margin-top: 50px;
  margin-bottom: 50px;  
}


.display-inline-block{
  display: inline-block;
}


footer{
  background-color: #14151A;
}

footer svg{
  margin-top: -5px;
  margin-left: 15px;

}

footer h4{
  font-size: .75em;

}

footer a{
  text-decoration: none;
}

footer a:visited{
  text-transform: none;
  text-decoration: none;
  color: #fff !important;
}

footer img{
    transition: .25s all ease;
}

footer img:hover{
  transform: translateY(-7px);
}

/*INSTAGRAM */

#instafeed{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;  
}

#instafeed img{
  width: 200px;
  min-width: 50px;
  height: auto;
  object-fit: cover; 
  transition: .45s all ease;
  opacity: .5;

}

#instafeed img:hover{
    transform: scale(1.1,1.1);
    opacity: 1;
}
/*TERMS AND CONDITIONS*/

.terms h1{
  margin-bottom: 20px;
}

.terms h2{
  margin-top: 100px;
  margin-bottom: 20px;
 }

 .terms h3{
  margin-bottom: 30px;
}
 }

ul {
  margin-top: 100px;
  list-style-type: none;
    font-size: 1.1em;
  line-height: 1.675em;
  letter-spacing: 1px;
}


li{
  margin-left: 100px;
  font-size: 1.1em;
  line-height: 1.675em;
  letter-spacing: 1px;
}



a svg #social-icon-facebook, #social-icon-instagram {
  transition: .25s all ease;
}
a svg:hover #social-icon-facebook,
a svg:hover #social-icon-instagram { 
  fill: #bd926b;
}

/*GRID*/

.grid-text{
  height: 500px;
  background-color: rgba(20,21,26,.975); 
  padding:50px;
}

.grid-image-left{
  position: absolute;
  z-index: -100;
  left: 0;
  top: -100px;
  width: 60%;
}

.grid-image-right{
  position: absolute;
  z-index: -100;
  right: 0;
  top: -100px;
  width: 60%;
}

.grid-image-cover{
  height: 700px;
  object-fit: cover;
}

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