@charset "utf-8";
/* CSS Document */

/*--/slider--*/
.zs-enabled {
  position: relative
}

.zs-enabled .zs-slideshow,
.zs-enabled .zs-slides,
.zs-enabled .zs-slide {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden
}

.zs-enabled .zs-slideshow .zs-slides .zs-slide {
  background: transparent none no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2)
}

.zs-enabled .zs-slideshow .zs-slides .zs-slide.active {
  visibility: visible;
  opacity: 1
}

.zs-enabled .zs-slideshow .zs-bullets {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

.zs-enabled .zs-slideshow .zs-bullets .zs-bullet {
  display: inline-block;
  cursor: pointer;
  border: 2px solid #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 8px;
  background-color: #fff;
}

.zs-enabled .zs-slideshow .zs-bullets .zs-bullet.active {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.zs-enabled .zs-slideshow:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: transparent none repeat 0 0;
}

.zs-enabled.overlay-plain .zs-slideshow:after {
  background-image: url(plain.png);
}

.zs-enabled.overlay-dots .zs-slideshow:after {
  background-image: url(dots.png);
}

.zs-enabled .zs-slideshow:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: transparent none repeat 0 0;
}

.zs-enabled.overlay-dots .zs-slideshow:after {
  background: url(../images/dots.png);
}

#demo-1 {
  position: absolute;
  /* can either be relative, absolute or fixed. If position is not set (i.e. static), it would be set to "relative" by script */
  overflow: hidden;
  /* to bound the empty top space created by inner element's top margin */
  width: 100%;
  min-height: 100%;
  display: grid;
  align-items: center;
}

.demo-inner-content {
  position: relative;
  z-index: 2;
  text-align: left;}

.banner-infhny {
  text-align: left;
  max-width: 100%;}

.demo-inner-content h3 {
  font-size: 54px;
  line-height: 64px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.demo-inner-content h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  outline: none;
  width: 100%;
  font-size: 16px;
  line-height: 25px;
  padding: 12px 15px 12px 12px;
  color: #555;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #fff;
  height: 56px;
}

.book-form select {
  background: #fff url(../images/down.png) no-repeat 92% 52%;
  -webkit-appearance: none;
}

.booking-form input[type="date"] {
  background: #fff url(../images/date.png) 92% 50% no-repeat;
  -webkit-appearance: none;
}

@media (max-width:800px) {
  .demo-inner-content h3 {
    font-size: 54px;
  }

  .demo-inner-content span {
    font-size: 16px;
  }

  #demo-1 {
    min-height: 600px;
  }
}

@media (max-width:767px) {
  .demo-inner-content h3 {
    font-size: 50px;
  }

  .demo-inner-content span {
    font-size: 16px;
  }
}

@media (max-width:736px) {
  .demo-inner-content h3 {
    font-size: 50px;
    line-height: 60px;
  }

  #demo-1 {
    min-height: 560px;
  }

}

@media (max-width:640px) {
  .demo-inner-content h3 {
    font-size: 46px;
    line-height: 56px;
  }

  #demo-1 {
    min-height: 500px;
  }

  .demo-inner-content h6 {
    font-size: 17px;
  }
}

@media (max-width:600px) {
  .demo-inner-content h3 {
    font-size: 34px;
    line-height: 44px;
  }

  #demo-1 {
    min-height: 440px;
    padding: 6em 0;
  }

  .demo-inner-content span {
    font-size: 14px;
  }

  .demo-inner-content p {
    font-size: 14px;
    margin-top: 14px;
  }

  .bottom-btn .btn {
    display: block;
    width: 100%;
  }
}

@media (max-width:440px) {
  .demo-inner-content h3 {
    font-size: 38px;
    line-height:46px;
  }
}

@media (max-width:380px) {
  .demo-inner-content h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

/*--//slider--*/