.slide-container{
max-width: 1240px;
width: 100%;
}

.slide-content{
margin: 0 40px;
overflow: hidden;
}
.card{
background-color: #F2F2F2;
display: grid;
}
.image-content,
.card-content{
display: flex;
flex-direction: column;
align-items: center;
}

.image-content{
position: relative;
}
.card-image{
position: relative;
height: 100%;
width: 100%;
display: flex;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
}

.swiper-navBtn{
  color: #000000;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #000000;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #000000;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #000000;
}

@media screen and (max-width: 768px) {
.slide-content{
margin: 0 10px;
}
.swiper-navBtn{
display: none;
}
}