.hero-v11 .item .slide-bg,
.hero-v11 {
  height: 620px;
}
@media (min-width: 768px){
  .hero-v11 .item .slide-bg,
  .hero-v11 {
    height: 80vh;
  }    
}
.hero-v11.hero-subpage .item ,
.hero-v11.hero-subpage .item .slide-bg,
.hero-v11.hero-subpage {
  height: 560px;
}
/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@-moz-keyframes zoom {
  from {
    -moz-transform: scale(1, 1);
  }

  to {
    -moz-transform: scale(1.2, 1.2);
  }
}

@-o-keyframes zoom {
  from {
    -o-transform: scale(1, 1);
  }

  to {
    -o-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.2, 1.2);
  }
}
.hero-v11 .item .slide-bg {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}
.hero-v11.hero-subpage .item .slide-bg {
  -webkit-animation: none;
  animation: none;
}
.hero-v11 .item .caption-holder {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.hero-v11 .item .caption-holder h1 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 25px;
  text-shadow: 4px 6px 13px rgba(0,0,0,0.8);
}
.hero-v11 .item .caption-holder p {
  padding-right: 20%;
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  text-shadow: 4px 6px 13px rgba(0,0,0,0.8);
}
@media (min-width: 768px){
  .hero-v11 .item .caption-holder h1 {
    font-size: 52px;
  }   
}
.hero-v11 .table-cell {
  position: relative;
  z-index: 1;
}

.hero-v11 .carousel .carousel-indicator {
  position: absolute;
  right: 80px;
  width: auto;
  top: 50%;
  transform: translateY(-50%);
}
.hero-v11 .carousel .carousel-indicator .carousel-indicators {
  position: absolute;
  right: auto;
  left: 0;
  width: auto;
  height: auto !important;
  top: 50%;
  bottom: inherit;
  margin: 0;
  padding: 30px 0;
  display: block;
  transform: translateY(-50%);
}
.hero-v11 .carousel .carousel-indicators li {
  display: block;
  height: 32px;
  width: 32px;
  margin: 10px 5px;
  border: 6px solid #ff8700;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: transparent;
  position: relative;
  z-index: 1;
  opacity: 0.5;
}
.hero-v11 .carousel .carousel-indicators li.active {
  opacity: 1;
}
.hero-v11 .carousel .carousel-indicators li::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: #ff8700;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .hero-v11 .carousel .carousel-indicator {
    display: none; /* Hide the element on mobile screens */
}
  .hero-v11 .carousel .carousel-indicator .carousel-indicators {
    display: none; /* Hide the element on mobile screens */
}
  .hero-v11 .carousel .carousel-indicator .carousel-indicators li {
    display: none; /* Hide the element on mobile screens */
}
}
.slide-down {
  opacity: 0;
  -webkit-animation: slide-down 1s cubic-bezier(0.4, 0, 0.2, 1) 500ms forwards;
}
.slide-up {
  opacity: 0;
  -webkit-animation: slide-up 1s cubic-bezier(0.4, 0, 0.2, 1) 500ms forwards;
}
.slide-in {
  opacity: 0;
  -webkit-animation: slide-in 1s cubic-bezier(0.4, 0, 0.2, 1) 500ms forwards;
}
@-webkit-keyframes slide-down {
    0% { -webkit-transform: translateY(-200%); opacity: 1 }
    100% { -webkit-transform: translateY(0); opacity: 1  }
}
@-webkit-keyframes slide-up {
    0% { -webkit-transform: translateY(100%); opacity: 1 }
    100% { -webkit-transform: translateY(0); opacity: 1  }
}
@-webkit-keyframes slide-in {
    0% { -webkit-transform: translateX(200%); opacity: 1 }
    100% { -webkit-transform: translateX(0); opacity: 1  }
}
.hero-v11.hero-subpage .caption-holder .slide-up .btn-theme{
  margin: 10px;
}
.hero-v11.hero-subpage .caption-holder .slide-up .btn-white.btn-theme{
  margin: 10px;
}
@media (min-width:576px){
  .hero-v11.hero-subpage .caption-holder .slide-up .btn-white.btn-theme{
    margin-left: 20px;
  }
}