.owl-dot {
  display: none !important;
}
#owl-slide .item{
  overflow:hidden;
}
#owl-slide .item img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  max-height: 500px;
  width: 100%;
}
.owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #FFF;
  font-size: 14px;
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 60px;
  background: rgba(0,0,0,.5);
  top: calc(50% - 30px);
  opacity: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.owl-theme .owl-nav [class*="owl-"] span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  font-size: 24px;
  color: #fff;
  position: relative;
}

.owl-theme:hover .owl-nav [class*='owl-'] {
  opacity: 0.6;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.owl-theme .owl-nav [class*='owl-']:hover {
  opacity:1;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
   left: 50%;
  list-style: outside none none;
  margin-left: -30%;
  padding-left: 0;
  position: absolute;
  width: 60%;
  z-index: 15;
  bottom:0;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    border-radius: 30px; 
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791; 
}
.owl-prev {
  left: 0;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.owl-next {
  right:0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
}

/* Nội dung slide */
#owl-slide .carousel-caption{
  color: #fff;
    left: 10%;
    max-width:80%;
  -webkit-box-sizing:border-box;
          box-sizing:border-box;
    position: absolute;
    text-align: center;
    top: 25%;
    width: 100%;
    z-index: 9999;
}
.carousel-caption .large_text{
  font-size: 40px;
  margin-bottom: 10px;
    margin-top: 20px;
  -webkit-animation: 2s ease 0s normal none 1 running fadeInLeft;
          animation: 2s ease 0s normal none 1 running fadeInLeft;
  text-transform:uppercase;
  text-shadow:1px 1px 1px #000000;
}
.carousel-caption .small-text{
    font-size: 18px;
    line-height: 25px;
  text-shadow:1px 1px 1px #000;
  -webkit-animation: 2s ease 0s normal none 1 running fadeInRight;
          animation: 2s ease 0s normal none 1 running fadeInRight;
}
/* Feel free to change duration  */ 
.animated  {
  -webkit-animation-duration : 1000 ms  ;
  animation-duration : 1000 ms  ;
  -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}  
/* .owl-animated-out - only for current item */ 
/* This is very important class. Use z-index if you want move Out item above In item */ 
.owl-animated-out {
  z-index : 1 
   }
/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */ 
.owl-animated-in {
  z-index : 0 
}
@media only screen and (max-width: 767px) {
  #owl-slide .carousel-caption{display:none}
}
@media only screen and (max-width: 640px) {
  #owl-slide .item img {
    height: 200px;
  } 
}
