.at-highlight {
  position: relative;
  margin: 0 1.5vw;
  padding-bottom: 25px;
}
.at-highlight::before,
.at-highlight::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 25px;
  pointer-events: none;
  z-index: 1;
}
.at-highlight::before {
  background: linear-gradient(to top,rgba(0,0,0,.8) 0,transparent 30%);
  /*transition: .2s background ease-in-out;*/
}
/*.at-highlight:hover::before {
  background-color: rgba(0,0,0,.2);
}*/
.at-highlight::after {
  transition: .35s opacity;
  background: linear-gradient(45deg,rgba(66 190 222 / 50%) 25%,transparent 80%);
  opacity: 0;
}
.at-highlight:hover::after {
  opacity: 1;
}
.at-highlight__title-wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 25px;
  right: 25px;
  /*top: 0;*/
  bottom: 75px;
  padding: 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
  transition: .35s border, .35s padding;
  z-index: 2;
}
.at-highlight:hover .at-highlight__title-wrapper {
  padding: 0 0 15px 0;
  /*border-color: #fff;*/
}
.at-highlight__title {
  font-size: 1.8em;
  color: #fff;
  text-align: center;
  margin: auto 0 0;
}
.at-highlight__title a {
  color: #fff;
  text-decoration: none;
}
.at-highlight__title a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.at-highlight__media {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
}
.at-highlight__img {
  will-change: transform;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .35s -webkit-transform;
  -ms-transition: .35s -ms-transform;
  transition: .35s transform;
}
.at-highlight:hover .at-highlight__img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.at-highlight__media::before,
.at-highlight__media::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.at-highlight__media::before {
  background-color: rgba(239,160,76,.2);
}
.at-highlight__media::after {
  background: linear-gradient(55deg,transparent 50%,rgba(110,235,243,.4) 100%);
}
.at-highlight__link {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: center;
  z-index: 2;
}
.at-highlight__button {
  display: inline-block;
  margin: 0;
}
.at-highlight:hover .at-highlight__button {
  background: #72d0e8;
}

.at-highlight-wrapper--static .owl-carousel--highlight .owl-item--dummy {
  display: none;
}



@media screen and (max-width: 680px) {
  .at-highlight {
    margin: 0;
  }
  .at-highlight-wrapper .owl-item.active {
    z-index: 1;
  }
  .at-highlight-wrapper .owl-item {
    will-change: transform;
    -webkit-transition: .3s -webkit-transform ease-in-out;
    -ms-transition: .3s -ms-transform ease-in-out;
    transition: .3s transform ease-in-out;
  }
  .at-highlight-wrapper .owl-item:not(.active) {
    -webkit-transform: scale(.96);
    -ms-transform: scale(.96);
    transform: scale(.96);
  }
  .at-highlight-wrapper .owl-item.active {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}