header {
  margin-top: 56px;
}
header .item {
  height: 500px;
  position: relative;
}
@media (max-width: 767px) {
  header .item {
    height: 360px;
  }
}
header .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .item .cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 65%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 36px;
}
header .item .cover .header-content {
  padding: 0 24px 0 40px;
  max-width: 680px;
}
header .item .cover .header-content .line {
  display: none;
}
.news-badge {
  display: inline-block;
  background: #f9f228;
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  vertical-align: middle;
}
header .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
header .item .cover .header-content h1 {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.2;
  color: #fff;
}
header .item .cover .header-content h4 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}
.btn-header-cta {
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: 3px;
}
header .item .mobile-cover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
  padding: 32px 16px 16px;
}
header .item .mobile-cover h5 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 6px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
header .item .mobile-cover p {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
header .owl-item.active .btn-header-cta {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.6s;
}
header .owl-item.active .news-badge {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.2s;
}
header .owl-item.active h1,
header .owl-item.active h2 {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.2s;
}
header .owl-item.active h4 {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
header .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.29) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
header .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
header .owl-nav .owl-prev:focus {
  outline: 0;
}
header .owl-nav .owl-prev:hover {
  background: #000 !important;
}
header .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
header .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
header .owl-nav .owl-next:focus {
  outline: 0;
}
header .owl-nav .owl-next:hover {
  background: #000 !important;
}
header:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
header:hover .owl-next {
  right: 0px;
  opacity: 1;
}
