.myslider {
  height: auto;
  width: 800px;
  margin: 10px auto;
}
.myslider .item {
  height: auto;
  width: 100%;
}
.myslider .item img {
  height: auto;
  width: auto;
}
.owl-dots .owl-dot {
  margin: 0px 5px;
}
.owl-dots .owl-dot button {
  background: none;
  border: none;
  padding: 0;
  color: #555555;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  margin: 0 5px;
  
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.owl-dots .owl-dot button:focus {
  outline: none;
}
.owl-dots .owl-dot.active button {
  color: #db9cf7;
}
.owl-dots .owl-dot button:before{
  content: "";
  width: 10px;
  height: 10px;
  background: #db9cf7;
  position: absolute;
  border-radius: 50px;
  left: 0;
}
.owl-dot.active button:before{
  background: #2500f9;
}
.owl-carousel .owl-item img{
  width: auto !important;
}
@media (max-width:1024px){
  .myslider{
    width: 100%;
  }
}