@import url("https://fonts.googleapis.com/css?family=Montserrat:600");
.header__main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  text-align: left;
}
.logo{
  display: inline-block;
  position: fixed;
  top: 80px;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
}
/* .text-wrapper{
  width: 100%;
  position: absolute;
  z-index: 10;
  top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.dev{
  margin: 10px;
  text-align: center;
}
.mark{
  margin: 10px;
  text-align: center;
} */

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: absolute;
  width: 100%;
}
.slide .slide__bg {
  opacity: 1;
}
.slide .slide__image {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  transition-delay: 0.5s;
  -webkit-filter: blur(0) drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.35));
          filter: blur(0) drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.35));
}

.slide__bg {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(2);
          transform: translate(-50%, -50%) scale(2);
  -webkit-filter: blur(50px);
          filter: blur(50px);
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}

.slide__images {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 50vh;
  margin: 0 20px;
}

.slide__image {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out 0s;
  -webkit-filter: blur(50px) drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.596));
          filter: blur(50px) drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.644));
  will-change: transform, opacity, filter;
}
.slide__image svg {
  display: block;
}
.slide__image--left {
  -webkit-transform: translate(0.75%, -10px);
          transform: translate(0.75%, -10px);

          animation: shadow-pulse 3s 50ms infinite;
}

.slide__image--right {
  top: 5vmin;
  -webkit-transform: translate(-0.75%, 10px);
          transform: translate(-0.75%, 10px);
          animation: shadow-pulse 3s 300ms infinite;
}

.slider__pagination {
  position: absolute;
  bottom: 7vh;
  width: 100%;
  text-align: center;
}

.button {
  position: relative;
  display: inline-block;
  width: 30vw;
  max-width: 380px;
  padding: 20px 45px;
  border: 2px solid #fff;
  line-height: 1;
  font: 600 12px 'Montserrat', sans-serif;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  transition: all 0.25s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;

  white-space: nowrap;
  background-color: rgba(51, 51, 51, .35);
  
}
.button:hover {
  color: #333;
  background-color: white;
}

@keyframes shadow-pulse
{
  0% {
    transform: scale(1);
}
50% {
    transform: scale(1.1);
}
100% {
    transform: scale(1);
}
}

@media only screen and (max-height: 800px) {
  .slide__images {
    height: 50vh;
  }
}
