/* Generic Hero Style */

.shly-hero{
    position: relative;
}

.shly-hero .carousel-inner > .item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease-in-out;
}


.shly-hero .carousel-inner > .item.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}


.shly-hero .hero-caption {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s
}

.shly-hero .image-wrapper {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s;
  border: 10px solid #7591C0;
}

.shly-hero .carousel-inner > .item.active .hero-caption,
.shly-hero .carousel-inner > .item.active .image-wrapper {
  opacity: 1;
  transform: translateX(0);
    transition-delay: var(--delay, 0s);
}

.shly-hero .hero-caption p{
 color: #fff;
}

.shly-hero .hero-caption h1, .shly-hero .hero-caption h2 {
    margin-top: 0;
    font-size: 40px;
    color: white;
}
.shly-hero .hero-caption h2 span.over {
    font-size: 30px;
    color: #ffffff;
    font-weight: 100;
    text-transform: uppercase;
}

/* Carousel Indicators Styling */
.shly-hero .carousel-indicators {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  width: auto;
  padding-left: 0;
  margin-left: 0;
  text-align: center;
  list-style: none;
  display: flex;
  gap: 15px;
}

.shly-hero .carousel-indicators li {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  /* border-radius: 50%; */
  transition: all 0.3s ease;
}

.shly-hero .carousel-indicators li:hover {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.shly-hero .carousel-indicators li.active {
  background-color: #27519d;
  border-color: #ffffff;
  transform: scale(1.2);
}
@media screen and (min-width: 768px) {
    .shly-hero .hero-caption h1, .shly-hero .hero-caption h2 {
        font-size: 55px;
    }
}


.sh-overlay-bg {
    height:100%;
    width:100%;
    background-color:rgba(0,0,0,.5);
    padding:70px;
}
@media (max-width:767px){
    .sh-overlay-bg {
        padding: 50px 10px;
    }
}




/* Generic Hero Style

.shly-hero{
    position: relative;
}

.shly-hero .carousel-inner > .item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease-in-out;
}


.shly-hero .carousel-inner > .item.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}


.shly-hero .hero-caption {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s
}

.shly-hero .image-wrapper {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s;
  border: 10px solid #7591C0;
}

.shly-hero .carousel-inner > .item.active .hero-caption,
.shly-hero .carousel-inner > .item.active .image-wrapper {
  opacity: 1;
  transform: translateX(0);
    transition-delay: var(--delay, 0s);
}

.shly-hero .hero-caption p{
 color: #fff;
}

.shly-hero .hero-caption h1, .shly-hero .hero-caption h2 {
    margin-top: 0;
    font-size: 40px;
    color: white;
}
.shly-hero .hero-caption h2 span.over {
    font-size: 30px;
    color: #ffffff;
    font-weight: 100;
    text-transform: uppercase;
}
.shly-hero .carousel-indicators {
  display: none;
}
@media screen and (min-width: 768px) {
    .shly-hero .hero-caption h1, .shly-hero .hero-caption h2 {
        font-size: 55px;
    }
}


.sh-overlay-bg {
    height:100%;
    width:100%;
    background-color:rgba(0,0,0,.5);
    padding:70px;
}
@media (max-width:767px){
    .sh-overlay-bg {
        padding: 50px 10px;
    }
}



 */