.b7ms{
  --b7-accent:#f47b20;
  --b7-card-w:300px;
  --b7-card-h:620px;
  --b7-media-h:320px;
  --b7-radius:28px;
  --b7-media-radius:20px;
  --b7-inactive-opacity:.28;
  --b7-inactive-scale:.88;
  position:relative;
  width:100%;
  overflow:hidden;
  padding:34px 0 30px;
  border-radius:30px;
}
.b7ms .swiper{
  overflow:visible;
}
.b7ms-slide{
  width:var(--b7-card-w);
  height:auto;
  display:flex;
  justify-content:center;
  transition:opacity .35s ease, transform .35s ease;
  opacity:var(--b7-inactive-opacity);
  transform:scale(var(--b7-inactive-scale));
}
.b7ms-slide.swiper-slide-active,
.b7ms-slide.swiper-slide-duplicate-active{
  opacity:1;
  transform:scale(1);
}
.b7ms-card{
  width:100%;
  min-height:auto;
  height:auto;
  border-radius:var(--b7-radius);
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  box-sizing:border-box;
  transition:transform .35s ease, box-shadow .35s ease, opacity .35s ease;
}
.b7ms-media-wrap{
  width:100%;
  height:var(--b7-media-h);
  border-radius:var(--b7-media-radius);
  overflow:hidden;
  flex:0 0 auto;
  background:#ececec;
}
.b7ms-media{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.b7ms-content{
  padding:18px 10px 10px;
  text-align:center;
}
.b7ms-card{
  justify-content:flex-start;
}
.b7ms-badge{
  font-size:12px;
  letter-spacing:.12em;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:8px;
}
.b7ms-title{
  font-size:24px;
  line-height:1.2;
  margin:0 0 10px;
  font-weight:700;
}
.b7ms-desc{
  font-size:15px;
  line-height:1.7;
  max-width:92%;
  margin:0 auto 10px;
}
.b7ms-pagination{
  position:relative;
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:18px;
}
.b7ms-dot,
.b7ms .swiper-pagination-bullet{
  width:8px;
  height:8px;
  margin:0 !important;
  border-radius:999px;
  background:#cfcfcf;
  opacity:1;
  transition:all .25s ease;
}
.b7ms-dot.swiper-pagination-bullet-active,
.b7ms .swiper-pagination-bullet-active{
  width:26px;
  border-radius:999px;
  background:var(--b7-accent);
}
.b7ms video.b7ms-media{ background:#000; }

@media (max-width: 1024px){
  .b7ms{ padding:18px 0 20px; }
}
@media (max-width: 767px){
  .b7ms{
    border-radius:20px;
  }
  .b7ms-title{ font-size:22px; }
  .b7ms-desc{ font-size:14px; }
}
