@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600);


.parallax {
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-around;
  position: relative;
  width: 100%;
}
.parallax section {
  width: 100%;
  height: 100vh;
  flex: 1;
  display: flex;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.parallax section:nth-child(1) .image {
  background-image: url(../img/parallax1.jpg);
}
.parallax section .image {
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 500;
  opacity: 0.4;
}
.parallax section .stuff {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
  max-width: 70%;
  justify-content: center;
  text-align: center;
  z-index: 1000;
  color: #fff;
  margin: 0 auto;
  font-size: 26px;
  position: relative;
}
.parallax section .stuff h2 {
  margin: 0px;
}
.parallax section .stuff:before, .parallax section .stuff:after {
  width: 100%;
  height: 1px;
  display: block;
  background-color: #fff;
  content: "";
  margin: 30px 0;
}
.whatsapp {
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}

.whatsapp-icon {
  margin-top:13px;
}