/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background-color:#222;
  overflow: hidden;
  position: relative;
}




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

#hero .container {
  display: block;
    align-items: baseline;
    justify-content: center;
    position: absolute;
    bottom: 70px;
    top: 45%;
    left: 0;
    right: 0;
    background-color: #000000a3;
    color: white;
    border-radius: 5px;
    width: 50%;
   
}

#hero .carousel-content {
  background: rgba(28, 23, 21, 0.7);
  padding: 20px;
  color: #fff;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  border-top: 5px solid #f03c02;
  margin-bottom: 150px;
}

#hero  .container  h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;  
  text-align: center;
  padding-top: 18px;
}


#hero .container  h3{
	color: #fff;
  margin-bottom: 30px;
  font-size: 28px;  
  text-align:center;  
  }

#hero .btn-get-started {
  text-align:center;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f03c02;
}

#hero .btn-get-started:hover {
  background: #f03c02;
  color: #fff;
  text-decoration: none;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
}

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

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

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

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

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

#hero .carousel-indicators li {
  cursor: pointer;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
  
  
  
}

@media (max-width: 992px) {
	#hero .carousel-item { background-size: cover;}
	
	
  #hero {
    height: calc(100vh - 72px);
  }
  #hero .carousel-item {
    height: calc(100vh - 72px);
  }
  #hero .container {width:90%; bottom: 50px;}
  
  #hero .container h3 {font-size:16px;}
  
  #hero .container h2 {font-size:27px;}
}

@media (max-width: 768px) {
  #hero .carousel-content {
    margin: 0 40px 60px 40px;
  }
  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  #hero .carousel-content p {
    font-size: 15px;
  }
  #hero .container {width:90%; bottom: 50px;}
  
  #hero .container h3 {font-size:16px;}
  
  #hero .container h2 {font-size:27px;}
}


