/* ================================
Intro
================================= */

#intro {
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  /* background-color: rgba(0, 0, 0, 0.3); */
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-content {
  text-align: center;
  background-color: rgba(0,0,0,0.3);
  width: 65%;
  padding: 40px;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#intro p {
  width: 70%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (max-width: 768px ) {
  #intro h2 {
    font-size: 36px;
  }
}

#intro .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#intro .carousel-inner .carousel-item,
#intro .carousel-inner .active.carousel-item-left,
#intro .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-inner .active,
#intro .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.9s;
}

#intro .carousel-inner .carousel-item-next,
#intro .carousel-inner .carousel-item-prev,
#intro .carousel-inner .active.carousel-item-left,
#intro .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  color: #fff;
  position: absolute;
  top: calc(50% - 15px);
  bottom: inherit;
  width: inherit;
  opacity: 1;
  z-index: 1000;
  background: rgba(0,0,0,0.3);
  padding: 5px;
}

#intro .carousel-control-prev {
  left: 20px;
}

#intro .carousel-control-next {
  right: 20px;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  height: 1em;
}

#intro .carousel-indicators {
  cursor: pointer;
}

#intro .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 3px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #fff;
}
#intro .newWindow{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 3px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #fff;
}
#intro .newWindow:hover {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-color: var(--primary-color);
}
#intro .btn-get-started:hover {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-color: var(--primary-color);
}
@media only screen and (max-width: 1200px){
  #intro p{
    width: 100%;
  }
}
@media only screen and (max-width: 900px){
  #intro h2 {
    font-size: 30px;
  }
  #intro .carousel-content{
    width: 80%;
  }
}
@media only screen and (max-width: 500px){
  #intro{
    height: 500px;
  }
  #intro .carousel-item {
    height: 500px;
  }
  #intro .carousel-content{
    background-color: rgba(0,0,0,0.3);
    padding: 20px;
    width: 100%;
  }
}
