.main-slider {
  width: 100%;
  position: relative;
}
.item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 500px;
}
.slider-content {
  width: 700px;
  text-align: center;
  z-index: 1;
}
.item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 5%);
}
.slider-content h1 {
  font-family: "Montserrat", Sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}
.slider-content p {
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 30px 0;
}
.slider-content a {
  width: 260px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none !important;
  background-color: #ff8d00;
  color: #fff;
  border-radius: 3px;
  margin: 0 auto;
}
.slider-content a:hover {
  color: #fff;
}
.slider-content a svg {
  fill: #fff;
  width: 20px;
  height: 20px;
  margin: 0 10px 2px 0;
}
.banner-prev {
  position: absolute;
  width: 50px;
  top: 45%;
  left: 20px;
  cursor: pointer;
  z-index: 1;
}
.banner-next {
  position: absolute;
  width: 50px;
  top: 45%;
  right: 20px;
  cursor: pointer;
  z-index: 1;
}


@media (max-width: 767px) {
  .slider-content h1 {
    font-size: 32px;
  }
  .slider-content p {
    font-size: 16px;
  }
  .banner-prev {
    position: absolute;
    width: 50px;
    top: 86%;
    left: 20px;
    cursor: pointer;
    z-index: 1;
  }
  .banner-next {
    position: absolute;
    width: 50px;
    top: 86%;
    right: 20px;
    cursor: pointer;
    z-index: 1;
  }
}