/* Custom Stylesheet */
/**
 * Use this file to override Materialize files so you can update
 * the core Materialize files in the future
 *
 * Made By MaterializeCSS.com
 */


/**
 * Cria efeito Fade para transição
*/

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

 html {
  scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

nav ul a,
nav .brand-logo {
  color: #444;
}

p {
  line-height: 2rem;
}

.sidenav-trigger {
  color: #1976D2;
}

.parallax-container {
  min-height: 380px;
  line-height: 0;
  height: auto;
  color: rgba(255,255,255,.9);
}
  .parallax-container .section {
    width: 100%;
  }

@media only screen and (max-width : 992px) {
  .parallax-container .section {
    position: absolute;
    top: 40%;
  }
  #index-banner .section {
    top: 10%;
  }
}

@media only screen and (max-width : 600px) {
  #index-banner .section {
    top: 0;
  }
}

.icon-block {
  padding: 0 15px;
}
.icon-block .material-icons {
  font-size: inherit;
}

footer.page-footer {
  margin: 0;
}

.ion-icon-sidenav {
  font-size: 24px;
  position: relative;
  /* Adjust these values accordingly */
  top: 6px;
  right: 8px;
  color: #424242;
}

.ion-icon-footer {
  font-size: 18px;
  color: #FFFFFF;
  position: relative;
  /* Adjust these values accordingly */
  top: 4px;
  left: 4px;
}

/* Voltar ao topo*/
#toTop {
    height: 45px;
    width: 45px;
    display: none;
    position: fixed;
    bottom: 35px;
    right: 15px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #1976D2;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 1px 1px #1976D2;
    opacity: 0.8;
}

#toTop:hover {
  background-color: #FFFFFF;
  color: #1976D2;
  opacity: 0.9;
}

