.ntp-hero {
  position: relative;
  background-color: var(--ntp-black);
  color: var(--ntp-white);
  overflow: hidden;
  height: 100vh;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  z-index: 1;
}

.ntp-hero__video {
  height: 100vh;
  width: 100%;
  object-fit: contain;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.ntp-hero__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.ntp-hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  z-index: -2;
}

.ntp-hero__slider {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.ntp-hero__slide {
  position: relative;
  min-height: 480px;
  display: flex !important;
  align-items: center;
  background-size: cover;
  background-position: top right;
}

.ntp-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--ntp-black) 0%,
    var(--ntp-black) 35%,
    transparent 75%
  );
}

.ntp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--ntp-space-xl) 0;
}

.ntp-hero__eyebrow {
  display: block;
  color: var(--ntp-blue);
  font-weight: 600;
  font-size: var(--ntp-fs-small);
  margin-bottom: var(--ntp-space-xs);
}

.ntp-hero__title h1 {
  font-size: var(--ntp-fs-h1);
  font-family: var(--ntp-font-title);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--ntp-space-md);
}

.ntp-hero__title h1 strong {
  color: var(--ntp-blue);
  font-weight: 700;
}

.ntp-hero__buttons {
  margin-top: 24px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

@media (max-width: 767px) {
	.ntp-hero__buttons .btn {
		width: 100% !important;
	}
}

/* dots (slick) */
.ntp-hero .slick-dots {
  position: absolute;
  bottom: var(--ntp-space-md);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
}

.ntp-hero .slick-dots li button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0;
  padding: 0;
}

.ntp-hero .slick-dots li.slick-active button {
  background: var(--ntp-blue);
}

/* Plutajuća lokacija / 360 dugme */
.ntp-hero__floating {
  position: absolute;
  right: 16%;
  bottom: 70px;
  z-index: 99;
}

.ntp-hero__floating svg {
  max-width: 60px;
  height: auto;
}

.ntp-hero__pin {
  position: relative;
  width: 64px;
  height: 80px;
}

.ntp-hero__pin-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ntp-blue);
  border: 3px solid var(--ntp-white);
  color: var(--ntp-white);
  font-weight: 700;
  font-size: var(--ntp-fs-small);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntp-hero__pin-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ntp-blue);
  border: 2px solid var(--ntp-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntp-hero__pin-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--ntp-white);
}

@media (min-width: 991px) {
  .ntp-hero:has(.ntp-hero__video) {
    height: auto;
  }
  .ntp-hero__video {
    height: auto;
    position: relative;
  }

  .ntp-hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: -2;
  }
  
  .ntp-hero__video .container {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    left: 50%;
  }
}

@media (min-width: 768px) {
  .ntp-hero__content {
    padding: 90px 0 0;
  }
  .ntp-hero__slider .slick-track,
  .ntp-hero__slider .slick-list,
  .ntp-hero__slider .slick-track,
  .ntp-hero__slide {
    height: 100%;
  }

  .ntp-hero__floating {
    display: block;
  }

  .ntp-hero__floating {
    bottom: 120px;
  }

  .ntp-hero__floating svg {
    max-width: unset;
    height: auto;
    width: auto;
  }
}
