.empc-widget{
  padding:90px 0 80px;
  font-family:Arial,Helvetica,sans-serif;
  color:#173649;
  overflow:hidden;
}
.empc-widget *{box-sizing:border-box;}
.empc-widget-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:34px;
}
.empc-widget-label{
  color:#ed1c24;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin-bottom:10px;
}
.empc-widget-title{
  color:#173649;
  margin:0;
  font-size:44px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-1px;
}
.empc-widget-arrows{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}
.empc-carousel-arrow{
  width:36px;
  height:36px;
  border:1px solid #b8c2c8;
  background:#fff;
  color:#173649;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s;
}
.empc-carousel-arrow:hover{
  background:#173649;
  border-color:#173649;
  color:#fff;
}
.empc-viewport{
  overflow:hidden;
  width:100%;
}
.empc-track{
  display:flex;
  gap:var(--empc-gap,28px);
  transition:transform .45s ease;
  will-change:transform;
}
.empc-slide{
  flex:0 0 calc((100% - (var(--empc-gap,28px) * (var(--empc-per-view,3) - 1))) / var(--empc-per-view,3));
  min-width:0;
}
.empc-card{
  position:relative;
  display:block;
  height:var(--empc-height,250px);
  overflow:hidden;
  border-radius:3px;
  background:#173649 center/cover no-repeat;
  box-shadow:0 16px 34px rgba(8,34,50,.14);
  color:#fff;
  text-decoration:none!important;
}
.empc-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(4,20,31,.05),rgba(4,20,31,.95));
  z-index:1;
}
.empc-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:inherit;
  z-index:0;
  transition:transform .45s ease;
}
.empc-card:hover:after{
  transform:scale(1.07);
}
.empc-card-content{
  position:absolute;
  left:26px;
  right:26px;
  bottom:24px;
  z-index:2;
}
.empc-card h3{
  margin:0 0 6px;
  color:#fff;
  font-size:23px;
  line-height:1.14;
  font-weight:900;
}
.empc-card span{
  display:block;
  color:#e8eef1;
  font-size:13px;
  margin-bottom:14px;
}
.empc-card strong{
  color:#fff;
  font-size:13px;
  font-weight:900;
}
.empc-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:25px;
}
.empc-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  border:0;
  padding:0;
  background:#cbd2d6;
  cursor:pointer;
}
.empc-dot.is-active{
  background:#ed1c24;
}
@media(max-width:767px){
  .empc-widget{padding:60px 0;}
  .empc-widget-head{display:block;}
  .empc-widget-title{font-size:34px;}
  .empc-widget-arrows{margin-top:22px;}
  .empc-card{height:280px;}
}
