.nav-background {
    height: 250px;
    z-index: 5;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

.swiper-container {
  position: relative;
}

.swiper-container .back {
  background: rgba(13, 13, 13, 0.5);
  z-index: 4;
}

.basic-swipre-slider {
  width: 100%;
  height: 100vh;
}

.swiper-wrapper {
  width: 100%;
  height: 100vh;
}

.zoom-out-slider .swiper-slide {
  font-size: 18px;
  display: flex;
}

.zoom-out-slider .swiper-slide > .swiper-slide-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent no-repeat 50% 50%/cover;
}

.zoom-out-slider {
  width: 100%;
  height: 100vh;
}

.zoom-out-slider .swiper-slide .slide1 {
  transform-origin: 0 100%;
}

.zoom-out-slider .swiper-slide .slide2 {
  transform-origin: 100% 100%;
}

.zoom-out-slider .swiper-slide .slide3 {
  transform-origin: 100% 0;
}

.swiper-scale-effect .swiper-slide-cover {
  transition: 5s ease-out;
  transform: scale(1.05);
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1);
}

.slide-content {
  position: absolute;
  top: 65vh;
  right: 0px;
  left: 0px;
}

.slide-content h1 {
    color: #fff;
  z-index: 12;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .slide-content h1 {
    margin-bottom: 5px;
  }
}

.slide-content h2 {
    text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  font-size: 21px;
}
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 20px;
  }
}


@media (max-width: 992px) {
  .basic-swipre-slider {
    height: 77vh;
  }
  .zoom-out-slider {
    height: 77vh;
  }
  .swiper-wrapper {
    height: 77vh;
  }
  .slide-content {
    top: 25vh;
    margin: 0 20px;
  }
  .slide-content h1 {
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);
  }
}
.swiper-button-next, .swiper-button-prev {
  background-size: 18px 40px;
  margin-top: -10px;
}
@media (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev {
    background-size: 15px 20px;
  }
}

@media (max-width: 768px) {
  .swiper-button-prev {
    left: 0px;
  }
}

@media (max-width: 768px) {
  .swiper-button-next {
    right: 0px;
  }
}

.indicator {
  position: relative;
  text-align: center;
  width: 30px;
  height: 30px;
  margin-left: calc(50% - 15px);
  margin-top: -60px;
  z-index: 88;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .indicator {
    display: none;
  }
}

.indicator span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 3px solid #ccc;
  border-right: 3px solid #ccc;
  animation: animate 1s linear infinite;
}

.indicator span:nth-child(1) {
  top: -30px;
  left: -30px;
  animation-delay: 0s;
}

.indicator span:nth-child(2) {
  top: -15px;
  left: -15px;
  animation-delay: 0.2s;
}

@keyframes animate {
  0% {
    border-color: #ccc;
    transform: translate(0, 0);
  }
  20% {
    border-color: #fff;
    transform: translate(15px, 15px);
  }
  20.1%, 100% {
    border-color: #fff;
  }
}

/*****hero start*********/
.hero-arrow {
  height: 100vh;
  position: absolute;
  z-index: 10;
  left: calc(50% - 30px);
  top: 90vh;
}
@media (max-width: 768px) {
  .hero-arrow {
    display: none;
  }
  .hero .btn {
    margin: 5px;
  }
}

.arrow {
  width: 60px;
  height: 82px;
  position: sticky; /* don't forget set container to relative */
  left: calc(50% - 30px);
  margin-left: 0px;
  bottom: 10vh;
  z-index: 999;
}

/* set arrow styles */
.arrow path {
  stroke: #fff;
  stroke-width: 4px;
  fill: transparent;
  animation: down 2s infinite;
}

/* arrow keyframe animation */
@keyframes down {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* arrow animation delay */
.arrow path.a1 {
  animation-delay: -1s;
}

.arrow path.a2 {
  animation-delay: -0.5s;
}

.arrow path.a3 {
  animation-delay: 0s;
}

.hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero {
    min-height: 60vh;
    padding-bottom: 30px;
  }
}
.hero .hero-box {
  margin-top: 65vh;
}
@media (max-width: 991px) {
  .hero .hero-box {
    margin: 27vh 0px 10px 0px;
  }
}
.hero .hero-box h1 {
  color: #fff;
  margin-bottom: 25px;
  margin-top: 10px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
.hero .hero-box h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 400;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  margin-top: 5px;
  margin-bottom: 1px;
}
@media (max-width: 991px) {
  .hero .hero-box h2 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
  }
}

.hero .back {
  background: rgba(13, 13, 13, 0.45);
}
