@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK&display=swap');
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans HK', sans-serif;
  background: #fff;
}
.slider {
  /* margin-bottom: 30px; */
  position: relative;
}
.slider .owl-item.active.center .slider-card {
  transform: scaleX(0.85) scaleY(0.55) ;
  opacity: 1;
  background: transparent; /* fallback for old browsers */
  background: transparent; /* Chrome 10-25, Safari 5.1-6 */
  background: transparent; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
}
.slider-card {
  background: #fff;
  padding: 0px 0px;
  margin: 0px 40px 40px 40px;
  border-radius: 5px;
  /* box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%); */
  transform: scalex(0.5) scaleY(0.5);
  opacity: 0.5;
  object-fit: cover;

  transition: all 0.3s;
}
.slider-card img {
  border-radius: 0px 0px 0px 0px;
  height: 100vh;
  
}
.owl-item.active img{
  object-fit: cover;
 
}
.owl-item.active.center img{
  object-fit: fill;
transform: scalex(2) ;
}
.slider{
 /* padding-top: 10%; */
}
.owl-nav .owl-prev {
  position: absolute;
  top: calc(50% - 25px);
  left: 60px;
  opacity: 1;
  font-size: 20px !important;
  z-index: 1;
}
.owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 25px);
  right: 60px;
  opacity: 1;
  font-size: 20px !important;
  z-index: 1;
}
.owl-dots {
  text-align: center;
}
.owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #ccc !important;
  margin-left: 3px;
  margin-right: 3px;
  outline: none;
}
.owl-dots .owl-dot.active {
  background: #f44336 !important;
}