*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
body, button, input, textarea{
  font-family: 'Raleway', sans-serif;
}
body{
  overflow-x: hidden;
  background-color: white;
}
.nav{
  background-color: transparent;
  z-index: 10;
  position: fixed;
  height: 80px;
  width: 100%;
  transition: .5s linear;
}
.nav.scrolled {
  background-color: #fff !important;
  transition: 200ms linear;
}
label.logo{
  color: white;
  font-size: 27px;
  line-height: 80px;
  padding: 0 20%;
  font-weight: bold;
  transition: .5s;
}
.logo img{
  margin-top: 20px;
  max-width: 150px;
  height: auto;
  cursor: pointer;
  transition: .5s ease;
}
.nav .nav-ul{
  float: right;
  margin-right: 20%;
  transition: .5s;
}
.nav .nav-ul .nav-li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
.nav .nav-ul .nav-li a{
  color: white;
  font-size: 15px;
  padding: 7px 13px;
  transition: .5s;
  outline: none;
}
.nav .nav-ul .nav-li a.active{
  color: #ec6324 !important;
}
.nav .nav-ul .nav-li a:hover, nav .nav-ul .nav-li a.active {
  color: #ec6324 !important;
}
.checkbtn{
  font-size: 25px;
  color: grey;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}

/* FIM NAVBAR */

.slideshow {
  z-index: -1;
  height: 40vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
  transition: .5s linear;
  animation: showInSmooth .5s linear;
}
.intro-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index:-1;
  opacity: 0;
  filter: brightness(70%);
  transition: opacity 2s linear-out;
}
.slideshow h1 {
  color: #d68b6b;
  font-size: 50px;
  font-weight: bold;
  transition: .5s linear;
  animation: show 1.5s linear;
}

/* FIM slideshow */

.contact{
  width: 100%;
  height: auto;
  background: #E1E1E1;
  text-align: center;
  padding-bottom: 75px;
}

.contact h2{
  padding-top: 75px;
  margin: auto;
  width: 80%;
  color: #d68b6b;
  font-size: 35px;
  animation: showIn 2s linear;
}

.contact p{
  margin: 25px auto;
  width: 80%;
  padding-bottom: 25px;
  font-weight: normal;
  font-size: 21px;
  color: #999;
  animation: showIn 2.25s linear;
}

.contact .formas{
  width: 60%;
  margin: 45px auto;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  transition: .5s;
}

.contact .formas i{
  margin: auto;
  margin: 30px auto;
  width: 160px;
  height: 160px;
  line-height: 160px;
  border: 2px solid #333;
  color: #333;
  border-radius: 50%;
  font-size: 65px;
  cursor: pointer;
  transition: .5s;
}

.contact .formas i:hover{
  /*transform: rotate(360deg);*/
  color: #ec6324;
  border: 2px solid #ec6324;
}

/* FIM SELECT FORM */

.email-form{
  width: 100%;
  height: auto;
  text-align: center;
  padding-bottom: 75px;
}

.email-form h2{
  margin: auto;
  padding-top: 75px;
  width: 80%;
  color: #d68b6b;
  font-size: 35px;
  animation: 2.75s showIn linear;
}

.email-form p{
  margin: 25px auto;
  width: 80%;
  font-weight: normal;
  padding-bottom: 25px;
  font-size: 21px;
  color: #999;
  animation: 3s showIn linear;
}

.form-wrapper{
  width: 40%;
  margin: auto;
}

.single-form{
  width: 100%;
  text-align: center;
  color: #666666;
}


.single-form input[type="text"],
.single-form input[type="email"],
.single-form textarea{
  border-radius: 2px;
  height: 50px;
  width: 95%;
  margin-top: 10px;
  font-size: 17px;
  border: none;
  padding: 6px 12px;
  outline: none;
  background: #F2F2F2;
  color: #686868;

  transition: .5s ease;
}

.single-form textarea{
  min-height: 150px;
  max-height: 150px;
}

.single-form button{
  background: #ec6324;
  border-radius: 2px;
  height: 50px;
  width: 45%;
  margin-top: 10px;
  padding: 6px 12px;
  outline: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 17px;
  transition: .5s ease;
}

.single-form button:hover{
  background: #c84b11;
}

.single-form input:focus,
 textarea:focus,
  .single-form input:hover,
   textarea:hover{
  background: #e6e6e6;
}

/* FIM FORM CONTATOS */

.mapa{
  background: #E1E1E1;
  padding-bottom: 0px !important;
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
  border: none;
}
.mapa h2{
  margin: auto;
  padding-top: 75px;
  width: 80%;
  color: #d68b6b;
  font-size: 35px;
  animation: 4.5s showIn linear;
}

.mapa p{
  margin: 25px auto;
  padding-bottom: 25px;
  width: 80%;
  font-weight: normal;
  font-size: 21px;
  color: #999;
  animation: 4.75s showIn linear;
}
.mapa iframe{
  width: 100%;
  height: 500px;
}

/* FIM MAPA */

.footer{
  text-align: center;
  margin:auto;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 80%;
  align-items: center;
  vertical-align: middle;
  height: auto;
  display: grid;
  grid-template-columns: 33% 33% 33%;
}
.footer-text p{
  text-align: left;
  padding-bottom: 10px;
  display: block;
  font-size: 15px;
  color: #999;
  transition: .5s;
}
.footer-text a{
  text-align: left;
  margin-left: auto;
  padding-bottom: 5px;
  display: block;
  font-size: 13px;
  color: #999;
  transition: .5s;
}
.footer-image img{
  max-width: 200px;
  height: auto;
}
.footer-credit p{
  text-align: right;
  display: block;
  font-size: 15px;
  color: #999;
  transition: .5s;
}
.footer-credit i{
  color: red;
}
.footer-text a:hover{
  color: black;
}

@keyframes showIn {
  0%{
    opacity: 0;
  }
  75%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@keyframes showInSmooth {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@keyframes show {
  0%{
    opacity: 0;
  }

  75%{
    opacity: 0;
    margin-left: 100px;
  }

  100%{
    opacity: 1;
    margin-left: 0px;
  }
}
@keyframes showInverted {
  0%{
    opacity: 0;
  }

  65%{
    opacity: 0;
    margin-left: -100px;
  }

  100%{
    opacity: 1;
    margin-left: 0px;
  }
}
@keyframes showUp {
  0%{
    opacity: 0;
  }

  75%{
    opacity: 0;
    margin-top: 100px;
  }

  100%{
    opacity: 1;
    margin-top: 30px;
  }
}
@keyframes goRight {
  0%{
    opacity: 0;
  }

  75%{
    opacity: 0;
    margin-left: -100px;
  }

  100%{
    opacity: 1;
    margin-left: 0px;
  }
}
