/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
    /*margin-top: -15px;*/
  /*float: left;*/
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  height:100%
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
    /*max-height: 450px;*/
    /*min-height:640px;*/
    height:100%;
}
.imgslide.owl-carousel .owl-stage-outer {
    z-index: 2;
}

.owl-nav.disabled{display:none !important}
.business_others_item .owl-nav.disabled {
    display: block !important;
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}


.imgslide.owl-carousel.owl-loaded {
    /*padding-inline-start: 20px;
    padding-inline-end: 20px;*/
    padding: 0 2%;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  height:100%;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  /*width: 98%;*/
  margin:0 auto;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
    cursor:pointer;
    z-index:10;
}
 .homebanner .owl-dots .owl-dot span {
        width: 10px;
        height:10px;
        margin: 5px 10px;
        border-radius:50%;
        display: block;
        background:#fff;
        -webkit-backface-visibility: visible;
        -webkit-transition: opacity 200ms ease;
        -moz-transition: opacity 200ms ease;
        -ms-transition: opacity 200ms ease;
        -o-transition: opacity 200ms ease;
        transition: opacity 200ms ease;
        cursor:pointer;
    }

  .homebanner .owl-dots {
    position:absolute;
    display:block;
    text-align:center;
    width:100%;
    height:20px;
    bottom:50px;
    right:0%;
    z-index:5;
    margin:0px auto;
}

.homebanner .owl-dots .owl-dot.active span, .homebanner .owl-dots .owl-dot:hover span {
    width: 10px;
    height: 10px;
    background: #000;
    cursor: pointer;
}

.home_news_body .owl-dots .owl-dot span {
    width: 5px;
    height: 150px;
    margin: 5px 0px;
    display: block;
    background: #ccc;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    cursor: pointer;
}

.home_news_body .owl-dots {
    position: absolute;
    display: block;
    text-align: center;
    width: 5px;
    height: 100%;
  top:30px;
    left:0;
    z-index: 5;
}

    .home_news_body .owl-dots .owl-dot.active span, .home_news_body .owl-dots .owl-dot:hover span {
        width: 5px;
        height: 150px;
        background: #000;
        cursor: pointer;
    }

.business_others_item .owl-prev {
    background: url(../../images/arrow_prev.png);
    background-size: 100%;
    width: 30px;
    height: 55px;
    display: block;
    position: absolute;
    top: 30%;
    left: 0%;
    cursor: pointer;
}
.business_others_item .owl-next {
    background: url(../../images/arrow_next.png);
    background-size: 100%;
    width: 30px;
    height: 55px;
    display: block;
    position: absolute;
    top: 30%;
    right: 0%;
    cursor: pointer;
}
.business_others_item .owl-prev:hover {
    background: url(../../images/arrow_prev_h.png);
    background-size: 100%;
    cursor:pointer;
}

.business_others_item .owl-next:hover {
    background: url(../../images/arrow_next_h.png);
    background-size: 100%;
    cursor: pointer;
}




@media only screen and (min-width: 1367px) {

  .homebanner .owl-dots .owl-dot span {
        width: 0.714vw;
        height:0.714vw;
        margin: 0.357vw 0.714vw;
    }

  .homebanner .owl-dots {
    height:1.429vw;
    bottom:3.571vw;
}

.homebanner .owl-dots .owl-dot.active span, .homebanner .owl-dots .owl-dot:hover span {
    width: 0.714vw;
    height: 0.714vw;
}
    .home_news_body .owl-dots .owl-dot span {
        width: 0.366vw;
        height: 10.973vw;
        margin: 0.366vw 0.732vw;
    }

    .home_news_body .owl-dots {
        width: 0.732vw;
        top: 2.195vw;
    }

        .home_news_body .owl-dots .owl-dot.active span, .home_news_body .owl-dots .owl-dot:hover span {
            width: 0.366vw;
            height: 10.973vw;
        }
    .business_others_item .owl-prev, .business_others_item .owl-next {
        width: 2.195vw;
        height: 4.058vw;
    }


}


@media (max-width: 1279px) {
  .home_product.owl-theme .owl-nav .owl-prev {
    left: -4%;
}

.home_product.owl-theme .owl-nav .owl-next {
    right: 53%;
}

 .home_count.owl-theme .owl-nav .owl-prev {
    left: -11%;
}

.home_count.owl-theme .owl-nav .owl-next {
    right: -11%;
}

   

}

@media only screen and (max-width: 960px) {
    .owl-carousel .owl-item img.home_count {
        height: 785px;
        display: none;
    }
       .homegeneralslider.owl-theme .owl-nav {
    position: absolute;
    top: 20vw;
left:2%;
}

.homegeneralslider2.owl-theme .owl-nav {
    position: absolute;
    top: 20vw;
left:85%;
}

     .homenews.owl-theme  .owl-nav .owl-prev {
    left:-3%;
}

    .homenews.owl-theme .owl-nav .owl-next {
    right:-3%;
}

    .homeevents .owl-dots{margin:0 auto 20px auto}
        .homeevents .owl-dots .owl-dot span {
            list-style: none;
            width: 12px;
            height: 12px;
            margin-right: 10px;
            float: left;
            cursor: pointer;
            background: #ee492f;
            display: block;
            border-radius: 12px;
            -webkit-backface-visibility: visible;
            -webkit-transition: opacity 200ms ease;
            -moz-transition: opacity 200ms ease;
            -ms-transition: opacity 200ms ease;
            -o-transition: opacity 200ms ease;
            transition: opacity 200ms ease;
        }

        .homeevents .owl-dots .owl-dot.active span, .homeevents .owl-dots .owl-dot:hover span {
            background: #f18346;
            cursor: pointer;
        }

    #owl-room.owl-carousel .owl-item img {
  width: 98%;
}
    .findrooms.owl-theme .owl-nav .owl-prev {
        left: -4%;
    }
    .findrooms.owl-theme .owl-nav .owl-next {
        right: -4%;
    }
    .home_news_body .owl-dots {
        top: 20%;
        left: -2%;
    }
    .business_others_item .owl-next {
        background: url(../../images/arrow_next.png);
        background-size: 100%;
        width: 20px;
        height: 35px;
        display: block;
        position: absolute;
        top: 30%;
        right: -4%;
    }
    .business_others_item .owl-prev {
        background: url(../../images/arrow_prev.png);
        background-size: 100%;
        width: 20px;
        height: 35px;
        display: block;
        position: absolute;
        top: 30%;
        left: -3%;
    }
    }
@media only screen and (max-width: 767px) {

 .home_product.owl-theme .owl-nav .owl-prev {
    left: -5%;
    top:18%;
}

.home_product.owl-theme .owl-nav .owl-next {
    right: -5%;
    top:18%;
}
.home_count.owl-carousel .owl-item img {
  display: block;
  width: 40px;
  margin:0 auto;
  -webkit-transform-style: preserve-3d;
}

 .home_count.owl-theme .owl-nav .owl-prev {
    background: url(../../images/arrow_trleft.png) no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}


.home_count.owl-theme .owl-nav .owl-next {
    background: url(../../images/arrow_trright.png) no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}

.home_count.owl-theme .owl-nav .owl-prev:hover {
    background: url(../../images/arrow_trleft_ov.png) no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.home_count.owl-theme .owl-nav .owl-next:hover {
    background: url(../../images/arrow_trright_ov.png) no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    .home_news_body .owl-dots .owl-dot span {
        width: 150px;
        height: 5px;
        margin: 30px 5px 0;
    }
    .home_news_body .owl-dots .owl-dot.active span, .home_news_body .owl-dots .owl-dot:hover span {
        width: 150px;
        height: 5px;
    }
    .home_news_body .owl-dots {
        position: relative;
        width: 100%;
        left:0;
    }
    }
@media (max-width: 640px) {
    .imgslide .owl-nav .owl-prev {
        left: 2%;
    }

    .imgslide .owl-nav .owl-next {
        right: 2%;
    }
 .eventbanner .owl-dots .owl-dot span, .eventbanner .owl-dots .owl-dot.active span, .eventbanner .owl-dots .owl-dot:hover span  {
        width: 60px;
    }

 .eventbanner .owl-dots .owl-dot span {
    width: 60px;
    height: 4px;
    margin: 0px 3px;
    display: block;
    background: #dcdad7;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    cursor: pointer;
}

 .eventbanner .owl-dots{margin:0 auto 20px auto}
    .homebanner .owl-dots {
        bottom: 12px;
    }
}
@media (max-width: 480px) {
   
}
/***********************************************HOME NEWS SLIDER**********************************************************************/
