.slider-container-all{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -150px;
  position: relative;
}
.slide-container{
  max-width: 1440px;
  width: 80%;
  padding: 40px 0;
  margin: 0 auto;
}
.slide-content{
  margin: 0;
}
.card{
  background-color: #FFF;
}
.swiper-slide:nth-child(odd){
  background-color: rgb(72,105,152);
}
.swiper-slide:nth-child(even){
  margin-top: -50px;
}
.swiper-slide:nth-child(odd) .card-content h2{
  color: rgb(255,255,255);
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.card-content h2{
  padding: 0;
  margin: 0;
  font: normal 1.4rem/1.4rem 'Futura Medium', sans-serif;
  text-transform: uppercase;
}
.image-content{
  padding:25px 0;
}
.image-content img{
  width: 100%;
  max-width: 120px;
  height: auto;
}
.link-content a {
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 50px;
  background: #d9d9d9;
  margin-top: 25px;
  position: relative;
}
.link-content a:hover {
  background: #999;
  color: #fff;
}
.link-content a::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.link-content a:hover::before {
  opacity: 1;
  bottom: 10px;
}

.swiper-navBtn{
  color: rgb(72,105,152);
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #ccc;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 20px;
}
.swiper-button-prev{
  left: 20px;
}
.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #4070F4;
}

@media screen and (max-width: 950px) {
  .swiper-slide:nth-child(even) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}
