.slide-container{
  margin-top: 50px;
  max-width: 1300px;
  height: 550px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.slide-content{
  margin: 0 50px;
  overflow: hidden;
  height: 500px;
}

.swiper-navBtn{
  color: #242021;
  transition: color 0.2s;
}
.swiper-navBtn:hover{
  color: #FCBC04;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 40px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}

.swiper-navBtn {
  margin-top: -50px;
}

.swiper-pagination-bullet{
  background-color: #685E61;
  /* background-color: #f5d679; */
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #242021;
  /* background-color: #FCBC04; */
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}