.mySlidesImage{
  height:400px;
  width:100%;
  object-fit: fill;
  border-style: thin; color: #48484848; background-color: #48484848;
}

.dot{
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #616161;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: white;
}

@media screen and (max-width:800px) {
  .mySlidesImage{
    height:300px;
      width:100%;
      object-fit: fill;
  }

  .dot{
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #616161;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: white;
  }

}

@media screen and (max-width:420px) {
  .mySlidesImage{
    height:200px;
    width:100%;
    object-fit: fill;
  }

  .dot{
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: 0 2px;
    background-color: #616161;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: white;
  }
}
