/* slider swiper stylish */

/* html,
body {
  position: relative;
  height: 100%;
} */

/* body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
} */

.swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
  
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  
  /* .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */
  
  /* slider swiper card stylish */
  
  .swiper .swiper-card {
      box-sizing: content-box;
      /* padding: 30px; */
      /* margin: 40px 30px; */
      margin: 40px 20px;
      box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
      background: #fff;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      text-align: center;
      transition: 0.3s;
    }
  
  /* slider swiper pagination stylish */
  
  .swiper .swiper-pagination {
      margin-top: 20px!important;
      position: relative;
    }
    .swiper .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: #fff;
      opacity: 1;
      /* border: 1px solid #4154f1; */
      border: 1px solid #6558A6 ;
    }
    .swiper .swiper-pagination .swiper-pagination-bullet-active {
      /* background-color: #4154f1; */
      background-color: #2584C6;
    }
    .swiper .swiper-slide {
      /* opacity: 0.3; */
      opacity: 1;
    }
    @media (max-width: 1199px) {
      .swiper .swiper-slide-active {
        opacity: 1;
      }
      .swiper .swiper-pagination {
        margin-top: 0;
      }
    }
    @media (min-width: 1200px) {
      .swiper .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
      }
    }