.ova-boxes-list .boxes-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .ova-boxes-list .boxes-wrapper {
    flex-direction: column;
  }
  .ova-boxes-list .boxes-wrapper .item {
    width: 100%;
  }
  .ova-boxes-list .boxes-wrapper .dot {
    margin: 30px 0;
  }
}
.ova-boxes-list .boxes-wrapper .item {
  background-color: #473273;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(149, 65, 255, 0.2);
}
.ova-boxes-list .boxes-wrapper .item .box-date {
  padding: 12px;
  background-color: #382463;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-boxes-list .boxes-wrapper .item .box-date span {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #EFF0FC;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-boxes-list .boxes-wrapper .item .box-content {
  padding: 12px;
}
.ova-boxes-list .boxes-wrapper .item .box-content .title {
  margin: 0;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-boxes-list .boxes-wrapper .item .box-content .description {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #C5B5D6;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-boxes-list .boxes-wrapper .item:hover .box-date {
  background-color: #9545FA;
}
.ova-boxes-list .boxes-wrapper .dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  background: linear-gradient(180deg, #5E8BFF 0%, #9541FF 100%);
  border-radius: 50%;
}