@import url('https://fonts.googleapis.com/css?family=Exo+2&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');

*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  font: 15px/1.5 Arial, Helvetica,sans-serif;
  padding:0;
  margin:0;
  background-color:#f4f4f4;
  scroll-behavior: smooth;
  height: 200vh;
}

/**/
header{
  height: 90px;
  background: #35424a;
  border-bottom:#fc7700 3px solid;
}

.inner-width{
  max-width: 90%;
  padding: 0 10px;
  margin: auto;
}

.logo{
  float: left;
  padding: 5px 0;
  color: #fc7700;
  font-size: 30px;
  line-height: 80px;
  font-weight: bold;
  -webkit-text-stroke-width: .8px;
-webkit-text-stroke-color: #000;
}


.navigation-menu{
  float: right;
  display: flex;
  align-items: center;
  min-height: 90px;
  z-index: 20;
}

.navigation-menu a{
  color: #ddd;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 4px;
  transition: .3s linear;
}

.navigation-menu a:hover{
  background: #fff;
  color: #2f3640;
  transform: scale(1.1);
}

.navigation-menu i{
  margin-right: 8px;
  font-size: 16px;
  color: #fc7700;
}

.box-geral{
  width: 100%;
}

.menu-toggle-btn{
  float: right;
  height: 90px;
  line-height: 90px !important;
  color: #fff;
  font-size: 26px;
  display: none !important;
  cursor: pointer;
}
.img-page{
  background: url(bg1.jpg) no-repeat;
  background-size: cover;
  height: 100vh;  
  background-attachment: fixed;
  color: #000;
  width: 100%;

}


.home-btns{
  width: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.wistia_responsive_padding {
  width: 50%;
  margin: auto;
  box-shadow: 20px #35424a;
  margin-top: 140px;
}

section img{
  margin-left: auto;
  margin-right: auto;
  margin-top: 15%;
  width: 350px;
  height: 250px;
  
}



.btn-bg{
  background-color: #35424a98;
  border: 2px solid #fc7700;
  padding: 15px 40px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Poppins' , sans-serif;
  font-weight: 500;
  font-size: 17px;
  border-radius: 15px;
  transition: all .5s ease;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.btn-bg:hover{
  background-color: #35424ad5;
  color: #fc7700;
  padding: 18px 50px;
  
}


.btn-start{
  background-color: #35424aa8;
  color: #ccc;
  border: 1px solid #fc7700;
  font-size: 18px;
  border-radius: 4px;
  transition: .6s;
  overflow: hidden;
}

.btn-start:focus{
  outline: none;
}

.btn-start:before{
  content: '';
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.884);
  width: 60px;
  height: 100%;
  left: 0;
  top: 0;
  opacity: .5s;
  filter: blur(30px);
  transform: translateX(-130px) skew(-15deg);
}

.btn-start:after{
  content: '';
  display: block;
  position: absolute;
  background: rgba(255,255,255,.2);
  width: 20px;
  height: 100%;
  left: 30px;
  top: 0;
  opacity: 0;
  filter: blur(30px);
  transform: translate(-100px) scaleX(-15deg);
}

.btn-start:hover{
  background: #fc7700;
  cursor: pointer;
  color: #fff;
}

.btn-start:hover:before{
  transform: translateX(300px) skewX(-15deg);
  opacity: .8;
  transition: .7s;
}

.btn-start:hover:after{
  transform: translateX(300px) skewX(-15deg);
  opacity: 1;
  transition: .7s;
}



.video-section{
  width: 100%;
  height: 100vh;
  background-image: url(./wallpaper-video.jpg);
  background-attachment: fixed;
  display: flex;
}




@keyframes slideIn{
  from{

  }
  to{
    transform: translateX(0);
  }
}



/* Media Queries */



@media screen and (max-width:700px) {
  .img-page{
    background: url(bg1.jpg) no-repeat;
    background-size: cover;

  }
  
  .colunas-footer{
    width: 100%;
}

  .img-page{
    height: 500px;  
    background-attachment: fixed;
    color: #000;
    width: 100%;
  }
  .home-btns{
    width: 100%;
    margin: auto;
    height: 500px;
    display: flex;
    flex-direction: column;
  }

  .home-btns img{
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    width: 200px;
    height: 160px;
  }

  section img{
    margin-left: 15%;
    margin-top: 40%;
    width: 240px;
    height: 200px;
  }

  .btn-bg{
    padding: 10px 20px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Poppins' , sans-serif;
    font-weight: 500;
    font-size: 17px;
    border-radius: 5px;
    transition: all .5s ease;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  
  .btn-bg:hover{
    background-color: #35424ad5;
    color: #fc7700;
    padding: 18px 30px;
    
  }
  

  .video-section{
    width: 100%;
    height: 70vh;
  }

  .wistia_responsive_padding{
    width: 90%;
  }

}