/* Announcement Bar */
.announcement {
  float: left;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  background-color: #D2BE9E;
  color: #0c1c24;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 0;
  font-family: AzoSansMedium;
  z-index: 99999;
  overflow: hidden;
  font-size: 12px;
}

@keyframes test {
  from {
    scale: 1;
  }
  to {
    scale: 1.5;
  }
}
.heromob {
  display: block;
}
.herodesk {
  display: none;
}
.hero-container {
  position: absolute;
  top: 0;
  color: #fff;
  width: 100%;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index:1;
}
.hero-title {
  position: relative;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index; 3;
}

.carouselExampleFade {
  height: 500px;
  overflow: hidden;
}
.carousel-item {
  width: 100%;
  height: 500px;
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover;
}
.carousel-item.active {
  animation-name: test;
  animation-duration: 40s;
  animation-fill-mode: forwards;
}
span.register {
  display:none;
}
.breadcrumb-container {
  display: none;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 65px;
  font-size: 12px;
}
.breadcrumb-container a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb-container a:hover {
  color: #d2be9e;
}
.breadcrumb-container span {
  margin: 0 15px;
}
.hero-title .master-wrap {
  max-width: 720px !important;
  margin-top: 60px;
}
.home-cta-container {
  position: absolute;
  height: 85px;
  width: 200px;
  bottom: 50px;
  color: #fff;
  left: calc(50% - 100px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: AzoSansRegular;
  font-size: 12px;
  z-index: 2;
  text-decoration: none;
  color: #fff;
}
.home-cta-container .home-arrow {
  position: absolute;
  left: calc(50% - 10px);
  width: 20px;
  animation: downarrow 1.5s linear infinite;
  -webkit-animation: downarrow 1.5s linear infinite;
}
@keyframes downarrow {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 25px);
    opacity: 0;
  }
}

@-webkit-keyframes downarrow {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 25px);
    opacity: 0;
  }
}

@media only screen and (min-width: 420px) {
  span.register {
    display:contents;
  }
}
 
@media only screen and (min-width: 720px) {
  .heromob {
    display: none;
  }
  .herodesk {
    display: block;
  }
  .breadcrumb-container {
    display: block;
  }
  .home-cta-container {
    font-size: 15px;
  }
  .announcement {
    font-size: 13px;
  }
}