/* Body
------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
	body {
	  background-color:  #ebeae9;
	  font-family: "poppins";
	  margin: 0;
	  box-sizing: border-box;
	}


html,body {
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 100%;
}




/* ====================================
Navigation
==================================== */

.overlay-navigation {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.2);
  display: none;
  opacity: 0;
}

nav,
nav ul {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

nav ul li {
  -webkit-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  display: none;
}

nav li a {
  position: relative;
  top: 46%;
  color: white;
  text-transform: uppercase;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 4px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0;
}


.overlay-navigation nav ul li a{
	color: white;
}
nav li a:before {
  content: '';
  width: 70px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

nav li a:after {
  content: attr(data-content);
  font-size: 0.6rem;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  opacity: 0;
  position: absolute;
  z-index: 100;
  color: white;
  display: block;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  bottom: -50px;
  text-transform: none;
  font-family: 'poppins', sans-serif;
  font-weight: 100;
  font-style: none;
  letter-spacing: 0;
}

nav li a:hover:before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

nav li a:hover:after {
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 1;
}

nav li:nth-of-type(1) {
  background-color: #595959
}

nav li:nth-of-type(2) {
  background-color: #4B4B4B
}

nav li:nth-of-type(3) {
  background-color: #323232
}

nav li:nth-of-type(4) {
  background-color: #262626
}

nav li:nth-of-type(5) {
  background-color: #1C1C1C
}

nav li:nth-of-type(6) {
  background-color: black
}


/* ====================================
Burger king
==================================== */

.open-overlay {
  position: absolute;
  right: 5rem;
  top: 3.2rem;
  z-index: 100;
  width: 34px;
  display: block;
  cursor: pointer;
  color:black;
}

.open-overlay span {
  display: block;
  height: 1px;
  background-color: black;
  cursor: pointer;
  margin-top: 8px;
}

.animate-top-bar {
  -webkit-animation: animate-top-bar .6s linear 1 both;
  animation: animate-top-bar .6s linear 1 both
}

.animate-bottom-bar {
  -webkit-animation: animate-bottom-bar .6s linear 1 both;
  animation: animate-bottom-bar .6s linear 1 both
}

.animate-middle-bar {
  -webkit-animation: animate-middle-bar .6s linear 1 both;
  animation: animate-middle-bar .6s linear 1 both
}

.animate-out-top-bar {
  -webkit-animation: animate-out-top-bar .6s linear 1 both;
  animation: animate-out-top-bar .6s linear 1 both
}

.animate-out-bottom-bar {
  -webkit-animation: animate-out-bottom-bar .6s linear 1 both;
  animation: animate-out-bottom-bar .6s linear 1 both
}

.animate-out-middle-bar {
  -webkit-animation: animate-out-middle-bar .6s linear 1 both;
  animation: animate-out-middle-bar .6s linear 1 both
}

/* ====================================
Animation keyframes
==================================== */

@keyframes animate-top-bar {
  0% {
    background-color: white;
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px)
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: white
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: white;
  }
}

@keyframes animate-bottom-bar {
  0% {
    background-color: white;
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px)
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: white;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: white;
  }
}

@keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: white;
  }
}

@keyframes animate-out-top-bar {
  0% {
    background-color: #29363B
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px)
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: white;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: white;
  }
}

@keyframes animate-out-bottom-bar {
  0% {
    background-color: #29363B
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px)
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #29363B;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: white;
  }
}

@keyframes animate-out-middle-bar {
  0% {
    background-color: #29363B
  }
  80% {
    background-color: #29363B;
  }
  100% {
    background-color: white;
  }
}

.home a {
  font-family: "Poppins", sans-serif;
  color: #222;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  position: absolute;
  z-index: 10;
  top: 50px;
  left: 50px;
  padding-bottom: 3px;
  border-bottom: 1px solid #222;
}

@media (max-width: 640px) {
  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  nav ul li {
    height: 20%;
  }
  nav ul li a {
    font-size: 11px;
  }
  nav li a:after {
    font-size: 0.6rem;
    bottom: -25px;
  }
  nav li a:hover:after {
    transform: translateY(0);
  }
  .open-overlay {
    right: 1rem;
  }
  nav li a:before {
    width: 25px;
  }
}



.nav {
  position: absolute;
  padding: 40px;
  margin-left: 42%;
  margin-top: 20px;
}

.nav2 {
  position: absolute;
  padding: 40px;
  margin-left: 20%;
  margin-top: 20px;
}

.nav a {
  display: inline;
  color: black;
  text-decoration: none;
  padding-right: 50px;

}
.nav2 a {
  display: inline;
  color: black;
  text-decoration: none;
  padding-right: 40px;

}

.nav a:hover {
  display: inline;
  color: grey;
  text-decoration: none;

}

.nav2 a:hover {
  display: inline;
  color: grey;
  text-decoration: none;

}

.nav a:active {
  display: inline;
  color: grey;
  text-decoration: none;

}

@media screen and (max-width: 1000px) {
  .nav {
    display:none;
  }
}

@media screen and (max-width: 1000px) {
  .nav2 {
    display:none;
  }
}



/* end of navigation */



.home {
  margin-top: none;
  width: 100%;
  position: static;
  background-color: #1C1C1C ;

}

.home a{
    position: absolute;
    z-index: 10;
    top: 50px;
    left: 30px;
  }


.home2 {
  margin-top: none;
  width: 100%;
  position: static;
  background-color: #4B4B4B;

}
.home2 a{
    position: absolute;
    z-index: 10;
    top: 50px;
    left: 30px;
  }

  .tekstbegin {
    float: left;
    margin-top: 400px;
    margin-left: 150px;
}



.nav link:hover{
  color:white;
  text-decoration: none;

}
.nav {
  position: absolute;
  padding: 40px;
  margin-left: 30%;
  margin-top: 20px;
}
.nav a {
  display: inline;
  color: black;
  text-decoration: none;
  padding-right: 50px;

}

.nav a:focus {
  color:white;
}

.nav a:hover {
  display: inline;
  color: grey;
  text-decoration: none;

}

a {
  color: black;
}

 a:hover {
  color: white;
  text-decoration: none;
}

a:focus {
  color:white;
}

.nav a:active {
  display: inline;
  color: grey;
  text-decoration: none;

}

@media screen and (max-width: 1000px) {
  .nav {
    display:none;
  }
}


.gallery-block.grid-gallery{
  padding-bottom: 60px;
  padding-top: 60px;
}

.gallery-block.grid-gallery .heading{
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block.grid-gallery .heading h2{
    font-weight: bold;
    font-size: 2.5rem;
    color: grey;
    text-transform: uppercase;
}
.gallery-block.grid-gallery .heading h3{
    font-weight: normal;
    font-size: 1.5rem;
    color: grey;
}

.gallery-block.grid-gallery a:hover{
  opacity: 0.8;
}

.gallery-block.grid-gallery .item img{
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

.gallery-block.grid-gallery .item{
  margin-bottom: 20px;
}

@media (min-width: 576px) {

  .gallery-block.grid-gallery .scale-on-hover:hover{
    transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
  }
}
