.realwork-hero {
  padding-bottom: 70px;
}

@media (max-width: 1439px){
  .realwork-hero {
    padding-bottom: 130px;
  }
}

@media (max-width: 799px) {
  .realwork-hero {
    padding-bottom: 56px;
  }
}

.realwork-hero .slick-track {
  display: flex;
  height: 100%;
}

.realwork-hero-slider-inner,
.realwork-hero-slider .slider,
.realwork-hero-slider .slick-list,
.realwork-hero-slider .slick-track {
  height: 100%;
}

.realwork-hero-top {
  position: relative;
}

.realwork-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.realwork-hero-slider .slider-item {
  overflow: hidden;
  border-radius: 30px;
  height: 100%;
}

.container .content .realwork-hero-slider .slider-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.realwork-hero-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 684px;
  z-index: 1;
  position: relative;
}

@media (max-width: 1279px) {
  .realwork-hero-info {
    height: 736px;
  }
}

@media (max-width: 799px) {
  .realwork-hero-info {
    padding: 16px;
    height: 346px;
  }
}

.realwork-hero-text {
  padding: 30px;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.realwork-hero-tags {
  display: flex;
  gap: 14px;
}

@media (max-width: 799px) {
  .realwork-hero-tags {
    flex-direction: column;
    align-items: flex-start;
  }
}

.realwork-hero-tag {
  font-size: 20px;
  line-height: 87%;
  text-transform: uppercase;
  font-family: 'URLKHM Display' !important;
  padding: 12px 24px;
  border-radius: 99px;
}

@media (max-width: 799px) {
  .realwork-hero-tag {
    font-size: 16px;
  }
}

.realwork-hero-tag-white {
  background-color: white;
  color: #000CB5;
}

.realwork-hero-tag-blue {
  background-color: #000CB5;
  color: white;
}

.realwork-hero-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 799px) {
  .realwork-hero-bottom {
    flex-direction: column;
  }
}

.realwork-hero .slick-slide img {
  transform: scale(1);
  transition: transform 4s linear;
}

.realwork-hero .slick-slide.slick-active img {
  transform: scale(1.03);
}