@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  /* position: relative; */
  /* width: 100vw;  */
  /* height: 100vh; */
  overflow: hidden;
  
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 500px;
  border-radius: 40px;
  margin-bottom: 30px;
  transition: all 0.7s ease-in;
}

.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active {
  right: 300px;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.text {
  position: relative;
  z-index: 10;
}


.text h2 {
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
  transition: all 0.5s ease-in;
}
.text h3 {
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
  transition: all 0.5s ease-in;
}
.text p {
  color: white;
}

.social {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  align-items: center;
}
.social li {
  list-style: none;
}
.social li a {
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover {
  transform: scale(0.5) translateY(-15px);
}

.reblestudiogif {
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  pointer-events: none;
  position: sticky;
  transition: all 0.4s ease-in-out;
  /* padding: 0 20px 20px 0; */
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}


@media (max-width: 991px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }
  .text h2 {
    font-size: 3em;
  }
  .text h3 {
    font-size: 2em;
  }
  .logo {
    width: 250px;
  }
  .reblestudiogif {
    width: 70px;
    max-width: 70px;
    height: 70px;

  }

.slide-in-container.button.button-1,
.slide-in-container.button.button-1:visited,
.slide-in-container.button.button-1:hover,
.slide-in-container.button.button-1:active {
    color: orange !important;
    border: 2px solid orange !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.slide-in-container.button.button-1:hover {
    background-color: orange;
    color: white !important;
}
}
