.slider {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}
.slider::before {
  content: "";
  display: block;
  padding-top: calc((550 / 1200) * 100%); /* Maintain the aspect ratio (550px / 1200px) */
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the slider area without distorting the image */
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #000;
    text-decoration: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}