html{
  scroll-behavior: smooth;
}
.navbar{
  position: fixed;
  width: 100vw;
  padding: 0.5rem 1rem 0.5rem 1rem;
}


#header {
  background: #ffffff2c;
  color: white;
  transition: all 0.5s;
  z-index: 997;
  top: 40px;
}
#header.header-scrolled {
  top: 0;
  background-size: cover;
  background: rgba(250, 250, 250, 0.973);
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    padding: 15px 0;
    background: transparent;
  }
}
.header-inner-pages {
  background: rgba(0, 0, 0, 0.9) !important;
}
/*--------------------------------------------------------------
# Intro home
--------------------------------------------------------------*/
#intro-home {
  width: 100%;
  height: 70vh;
  position: relative;
  background-color: rgb(0, 0, 0);
  min-height: 25rem;
  overflow: hidden;
}
#intro-home video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#intro-home .container {
  position: relative;
  z-index: 2;
}
#intro-home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.5;
  z-index: 1;
}
#intro-home:before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#intro-home .container {
  padding-top: 70px;
}
#intro-home h1 {
  margin: 0 0 10px 0;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.719);
}

@media (min-width: 1024px) {
  #intro-home {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #intro-home {
    text-align: center;
  }
  #intro-home .container {
    padding-top: 40px;
  }
}


#intro-index{
  height: 60vh;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../img/intro-bgn02.jpg) no-repeat fixed bottom left;
  background-size: cover;
}
@media(max-width:772px){
  #intro-index{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url(../img/intro-bgn02.jpg) no-repeat scroll bottom left;
  }
}
.white-text{
  color: white;
  text-shadow: 2px 2px 5px black;
}
.btn-mc{
  background-color: #FFA41C;
  border: solid 1px black;
}
.btn-mc:hover{
  background-color: #ff9900;
  color: white;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.123);
}
.btn-dark:hover{
  background-color: rgb(201, 201, 201);
  color: black;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.123);
}