#owl-slide {
  border: 10px solid #fff;
  border-radius: 5px;
  margin-top: 20px;
}
#owl-slide .item{
	overflow:hidden;
}
#owl-slide .item img{
	display: block;
}
.owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}
#owl-slide .owl-nav [class*='owl-'] {
	width: 32px;
  height: 32px;
  display: block;
  background: url(images/slide-home.png) no-repeat;
  position: absolute;
  top: calc(50% - 16px);
  cursor: pointer;
  text-indent: -999em;
  border-radius: 50%;
  background-position: 0% -8px;
  opacity: 0;
}
#owl-slide .owl-nav [class*='owl-'] i{ 
  font-size: 60px;
  line-height: 69px; 
}
#owl-slide:hover .owl-nav [class*='owl-']{
	opacity:1;
}
.owl-theme .owl-nav .disabled {
	opacity: 0.5;
	cursor: default;
}

.owl-theme .owl-dots {
	text-align: right;
  position: absolute;
  width: 100%;
  z-index: 15;
  bottom: 0;
}
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	margin: 0 6px;
}
.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border: 2px solid #fff;
  border-color: rgba(255,255,255,0.3);
  border-radius: 10px;
  text-align: left;
  text-indent: -9999px;
  overflow: hidden;
  background: rgba(0,0,0,0.4);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(255,255,255,0.4);
  border-color: #757575;
  border-color: rgba(0,0,0,0.4);
}
.owl-prev {
  left:0px;
}
.owl-next {
  right:0px;
}
#owl-slide .owl-nav .owl-prev{
  left: 10px;
}
#owl-slide .owl-nav .owl-next{
  background-position: 100% -8px;
  right: 10px;
}

/* Nội dung slide */
#owl-slide .carousel-caption{
	color: #fff;
    left: 15%;
    max-width:80%;
	box-sizing:border-box;
    position: absolute;
    top: 25%;
    width: 100%;
    z-index: 999;
}
#owl-slide .owl-item.active .carousel-caption-ct{
-webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}
.carousel-caption .large_text{
	font-size: 49px;
	color: rgb(45, 44, 64);
}
.carousel-caption .small-text{
    font-size: 13px;
    color: rgb(122, 121, 146);
}
.carousel-caption .tili-text{
	font-family: 'UVF-BreathePro';
	color: rgb(122, 121, 146);
	font-size: 20px;
    line-height: 1;
}
#owl-slide .owl-item.active .carousel-caption a.btn {    
    -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
   animation-delay: 0.5s;
   -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}
#owl-slide .owl-item .carousel-caption a.btn{
  margin-top: 30px; 
}

/* 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 
}

@-webkit-keyframes fadeInLeft {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
} 
@media only screen and (max-width: 1200px) {
  #owl-slide .item img{
    height: auto;
  }
}
@media only screen and (max-width: 992px) {
  .carousel-caption .large_text{
    font-size: 35px;
  }
  #owl-slide .owl-item .carousel-caption a.btn{
    margin-top: 10px;
  }
  .owl-prev { left: 0; }
}

@media only screen and (min-width: 992px) and (max-width: 1200px){
  #owl-slide .item img{
    height: 352px;
  }
}
@media only screen and (max-width: 767px) {
	#owl-slide .carousel-caption{display:none}
}
