.homepage {
    margin-top: 60px;
}
.slick-slider {
    width: 100%;
    max-height: 700px;
    background-color: var(--black);
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.slide {
    position: relative;
    width: 100%;
    height: 400px;
    color: white;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}
.slide-content {
    width: 33.33%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
.slide-image-large {
    width: 66.66%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-image-large img {
    max-width: 100%;
    max-height: 80%;
}
.slide-bg {
    background-size: cover;
    background-position: center;
}
.slide-bg .slide-content {
    background: rgba(0, 0, 0, 0.5);
}
/* RESETUJ :before */
.slick-prev:before,
.slick-next:before {
  display: none;
}
.slick-prev,
.slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.slick-prev {
  left: 10px;
  background-image: url('../assets/img/homepage/left-arrow.svg');
}
.slick-next {
  right: 10px;
  background-image: url('../assets/img/homepage/right-arrow.svg');
}
.slick-prev:hover,
.slick-next:hover {
  filter: brightness(1.1);
}
.slick-dots {
  position: absolute;
  bottom: 30px; /* Podesi po potrebi */
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 20;
  padding: 0;
  margin: 0;
  list-style: none;
}
.slick-dots li {
  width: 70px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.slick-dots li.slick-active {
  background-color: var(--primary-color);
}
/* Second section */
.second-section-home {
    background: linear-gradient(0deg, rgba(134, 186, 226, 1) 0%, rgba(4, 31, 86, 1) 100%);
    text-align: center;
    min-height: 4300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: relative;
    z-index: 3;
    /* margin-top: -20px; */
}
.home-cloud-parallax-1 {
    position: absolute;
    top: 50px;
    left: 30%;
    z-index: 2;
}
.home-cloud-parallax-2 {
    position: absolute;
    top: 400px;
    right: 0;
    z-index: 2;
}
.home-cloud-parallax-3 {
    position: absolute;
    top: 700px;
    left: 150px;
    z-index: -1;
}
.home-cloud-parallax-4 {
    position: absolute;
    top: 1800px;
    right: 0;
    z-index: 4;
}
.home-cloud-parallax-5 {
    position: absolute;
    top: 1850px;
    left: 0;
    z-index: 4;
}
.home-cloud-parallax-7 {
    position: relative;
    z-index: 4;
    width: 100%;
}
.second-section-parallax-text p {
    /* font-size: 20px; */
    font-weight: 400;
    color: var(--white);
    /* line-height: 1.5; */
    margin: 30px 0 0 0;
}
.second-section-parallax-text h2 {
    color: var(--white);
    line-height: 1.1;
    margin: 15px 0 30px 0;
}
.parallax-image-holder-home {
    background-image: url("../assets/img/homepage/snow-dune.webp");
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
    height: 600px;
    width: 100%;
    position: sticky;
    z-index: 1;
    top: 670px;
    /* CLS optimizacija - contain layout style za background slike */
    contain: layout style;
}
.parallax-image-home {
    background-image: url("../assets/img/homepage/planina.webp");
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: 700px;
    width: 100%;
    position: sticky;
    z-index: 3;
    top: 572px;
    /* CLS optimizacija - contain layout style za background slike */
    contain: layout style;
}
.second-section-parallax-text {
    margin-top: -250px;
    text-align: center;
    max-width: 700px;
    z-index: 2;
    padding: 0 20px;
    /* CLS optimizacija - minimalno containment */
    contain: layout;
}
.home-cloud-parallax-6 {
    width: 60%;
    text-align: center;
    margin-top: 20px;
}
.card-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 4;
    color: #73737300;
}
.frosted-card {
    width: 140px;
    padding: 15px 8px;
    border: 1px solid var(--white);
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(115, 115, 115, 0.2) 0%, rgb(255, 255, 255, 0.3) 70%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.frosted-card h3 {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
}
.frosted-card img {
    margin-bottom: 30px;
    width: auto;
}
.frosted-icon {
    display: none;
    width: auto;
}
.frosted-mobile-icon {
    display: block;
    width: auto;
}
/* Third section */
.third-section-home {
    width: 100%;
    background-color: var(--gray-100);
    margin-top: -800px;
    position: relative;
    z-index: 10; 
}
.section-title {
    text-align: center;
    margin-top: 140px;
    margin-bottom: 8px;
}
.second-section-card {
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.second-section-card h3 {
    position: relative;
    margin-bottom: 12px;
    z-index: 10;
}
.second-section-card p {
    position: relative;
    z-index: 10;
}
.img-hover-container {
    cursor: pointer;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.img-hover-container .hover-img {
    position: absolute;
    margin-top: 50px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.img-hover-container:hover .hover-img {
    opacity: 1;
}
.section-button {
    margin-top: 80px;
    margin-bottom: 112px;
    width: 100%;
    text-align: center;
}
.fifth-section-home {
    position: relative;
    height: 400vh;
    overflow: visible;
}
.sticky-bg {
    position: sticky;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    background: url('../assets/img/homepage/room-mob.webp') center/cover no-repeat;
    z-index: 1;
}
.scrolling-image {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background: url('../assets/img/homepage/trees-mob.webp') center/cover no-repeat;
    z-index: 4;
    pointer-events: none;
}
.sixth-section-home {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    min-height: 100vh;
    z-index: 4;
    margin-top: -200vh;
    text-align: center;
}
.sixth-section-home h2 {
    color: var(--white);
    text-align: center;
    padding-top: 200px;
    font-weight: 300;
    margin-bottom: 50px;
}
.sixth-section-home h3 {
    text-align: center;
    padding-top: 100px;
    font-weight: 300;
    margin-bottom: 30px;
}
.sixth-section-home img {
    padding: 0 20px;
}
.infinite-cayron {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 360px;
    margin-top: -200px;
    z-index: 5;
    opacity: 0.5;
}
.cayron-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 40s linear infinite;
}
.cayron-group {
    display: flex;
}
.cayron-group span {
    display: inline-block;
    font-size: 220px;
    font-weight: 900;
    color: var(--white);
    margin-right: 32px;
    text-transform: uppercase;
    white-space: nowrap;
}
.cayron-group span strong {
    color: var(--primary-color);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Seventh section */
.seventh-section-home {
    background: url('../assets/img/homepage/mapa-mob.jpg') center/cover no-repeat;
    position: relative;
    /* min-height: 100vh; */
    min-height: calc(100vh - 60px);
    z-index: 4;
    margin-top: 0;
    text-align: center;
}
.seventh-section-home h2 {
    font-size: 36px;
    line-height: 40px;
    color: var(--white);
    text-align: center;
    padding-top: 50px;
    z-index: 2;
}
.seventh-section-home p {
    color: var(--white);
    font-weight: 400;
    margin-top: 16px;
}
.locations-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 3px solid var(--white);
  border-radius: 9999px;
  background-color: transparent;
  color: var(--white);
  padding: 15px 40px;
  font-weight: 700;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.locations-button-icon {
  height: 35px;
  width: 35px;
  transition: transform 0.5s ease;
}
.locations-button-text {
  transition: transform 0.5s ease;
}
.locations-button:hover {
  color: var(--white);
}
.locations-button:hover .locations-button-text {
  transform: translateX(6px);
}
.locations-button:hover .locations-button-icon {
  transform: scaleX(-1);
}
.locations-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}
.locations-button:active {
  transform: scale(0.97);
}
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgb(0, 212, 233);
    pointer-events: none;
    /* z-index: 2; */
    overflow: visible;
}
.circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 233, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    animation: pulse-animation 2s infinite;
    z-index: -1;
}

@keyframes pulse-animation {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
}
/* Veličine i pozicije za svaki krug */
.circle-1 { width: 15px; height: 15px; top: 80%; left: 7%; }
.circle-2 { width: 35px; height: 35px; top: 45%; left: 15%; }
.circle-3 { width: 10px; height: 10px; top: 6%; left: 35%; }
.circle-4 { width: 15px; height: 15px; top: 93%; left: 36%; }
.circle-5 { width: 8px;  height: 8px;  top: 45%; left: 75%; }
.circle-6 { display: none; width: 18px; height: 18px; top: 50%; left: 85%; }
.circle-7 { width: 30px; height: 30px; top: 75%; left: 60%; }
.circle-8 { display: none; width: 15px; height: 15px; top: 32%; left: 80%; }
.circle-9 { display: none; width: 25px; height: 25px; top: 35%; left: 60%; }
/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 321px) {
    .sixth-section-home img {
        padding: 0;
    }
    .second-section-parallax-text {
        padding: 0;
    }
    .seventh-section-home p {
        font-size: 16px;
    }
}
/* XS - <576px  */
@media (max-width: 576px) {
    .home-cloud-parallax-1,
    /* .home-cloud-parallax-2, */
    .home-cloud-parallax-3,
    .home-cloud-parallax-4,
    .home-cloud-parallax-5 {
        display: none;
    }
    .home-cloud-parallax-2 {
        height: 230px;
        top: 10px;
    }
    /* .home-cloud-parallax-4 {
        height: 300px;
        top: 1200px;
    } */
    .slick-slider {
        height: 100%;
    }
    .second-section-home {
        min-height: 2240px;
        justify-content: flex-start;
    }
    .parallax-image-home {
        margin-top: 100px;
        height: 150px;
        top: 84%;
    }
    .parallax-image-holder-home {
        margin-top: 100px;
        height: 150px;
        top: 84%;
    }
    .scrolling-image {
        /* top: 14%; */
        width: 100%;
        height: 100vh;
        background: url('../assets/img/homepage/trees-mob.webp') center/cover no-repeat;
    }
    .locations-button {
        margin-top: 15px;
    }
}
/* SM - ≥576px */
@media (min-width: 576px) {
    .home-cloud-parallax-1 {
        top: 50px;
        left: 10%;
    }
    .home-cloud-parallax-2 {
        height: 230px;
    }
    .home-cloud-parallax-4 {
        height: 300px;
        top: 1200px;
    }
    .slick-slider {
        height: calc(100vh - 60px);
        height: 400px;
    }
    .second-section-home {
        min-height: 2800px;
        justify-content: flex-start;
    }
    .parallax-image-home {
        margin-top: 250px;
        height: 200px;
        top: 81%;
    }
    .parallax-image-holder-home {
        margin-top: 250px;
        height: 200px;
        top: 81%;
    }
    .card-row {
        padding: 0 70px;
    }
    .scrolling-image {
        /* top: 15%; */
        width: 100%;
        height: 100vh;
        /* background: url('../assets/img/homepage/trees-europe.png') center/contain no-repeat; */
    }
    .locations-button {
        margin-top: 15px;
    }
}
@media (min-width: 320px) and (max-width: 389px) and (min-height: 600px) {
    .circle-1 { width: 15px; height: 15px; top: 80%; left: 25%; }
    .circle-2 { width: 35px; height: 35px; top: 42%; left: 9%; }
    .circle-3 { width: 10px; height: 10px; top: 15%; left: 13%; }
    .circle-4 { width: 15px; height: 15px; top: 93%; left: 25%; }
    .locations-button {
        margin-top: -14px;
    }
}
@media (min-width: 320px) and (max-width: 389px) and (min-height: 650px) {
    .circle-3 { width: 10px; height: 10px; top: 15%; left: 8%; }
     .locations-button {
        margin-top: 0px;
    }
}
@media (min-width: 320px) and (max-width: 389px) and (min-height: 700px) {
    .circle-3 { width: 10px; height: 10px; top: 15%; left: 9%; }
    .locations-button {
        margin-top: 15px;
    }
}
@media (min-width: 320px) and (max-width: 389px) and (min-height: 750px) {
    .circle-3 { width: 10px; height: 10px; top: 18%; left: 9%; }
}
@media (min-width: 320px) and (max-width: 389px) and (min-height: 800px) {
    .circle-2 { width: 35px; height: 35px; top: 43%; left: 9%; }
    .circle-3 { width: 10px; height: 10px; top: 18%; left: 9%; }
}
@media (min-width: 320px) and (max-width: 389px) and (min-height: 850px) {
    .circle-3 { width: 10px; height: 10px; top: 18%; left: 9%; }
}
@media (min-width: 375px) and (max-width: 767px) and (min-height: 650px) {
    .circle-1 { width: 15px; height: 15px; top: 80%; left: 24%; }
    .circle-2 { width: 35px; height: 35px; top: 42%; left: 10%; } 
    .circle-3 { width: 10px; height: 10px; top: 18%; left: 12%; }
      .locations-button {
        margin-top: 15px;
    }
}
@media (min-width: 375px) and (max-width: 767px) and (min-height: 700px) {
    .locations-button {
        margin-top: 15px;
    }
}
@media (min-width: 375px) and (max-width: 767px) and (min-height: 800px) {
    .circle-3 { width: 10px; height: 10px; top: 15%; left: 5%; }
}
@media (min-width: 390px) and (max-width: 767px) and (min-height: 800px) { 
    .circle-2 { width: 35px; height: 35px; top: 43%; left: 10%; } 
    .circle-3 { width: 10px; height: 10px; top: 15%; left: 5%; } 
    .locations-button {
        margin-top: 15px;
    }
}
@media (min-width: 390px) and (max-width: 767px) and (min-height: 850px) {
    .circle-3 { width: 10px; height: 10px; top: 15%; left: 5%; }  
}
@media (min-width: 390px) and (max-width: 767px) and (min-height: 900px) {
    .circle-2 { width: 35px; height: 35px; top: 44%; left: 10%; } 
    .circle-3 { width: 10px; height: 10px; top: 15%; left: 5%; }
    .locations-button {
        margin-top: 20px;
    }
    .seventh-section-home h2 {
        padding-top: 90px;
    }
}
/* MD - ≥768px */
@media (min-width: 768px) {
    .home-cloud-parallax-2 {
        height: 230px;
        right: 100px;
    }
    .home-cloud-parallax-4 {
        height: 300px;
        top: 1200px;
    }
    .home-cloud-parallax-6 {
        display: none;
    }
    .card-row {
        margin-top: 230px;
    }
    .frosted-card {
        width: 210px;
        padding: 20px 12px;
        border: 1px solid var(--white);
        border-radius: 20px;
        background: linear-gradient(0deg, rgba(115, 115, 115, 0.2) 0%, rgb(255, 255, 255, 0.3) 70%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .frosted-icon {
        display: block;
    }
    .frosted-mobile-icon {
        display: none;
    }
    .frosted-card h3 {
        font-size: 22px;
        line-height: 1.2;
    }
    .second-section-home {
        /* min-height: 2900px; */
        justify-content: flex-start;
    }
    .parallax-image-home {
        margin-top: 250px;
        height: 250px;
        top: 80%;
    }
    .parallax-image-holder-home {
        margin-top: 250px;
        height: 250px;
        top: 80%;
    }
    .card-row {
        padding: 0 70px;
    }
    .sticky-bg {
        position: sticky;
        top: 60px;
        width: 100%;
        height: calc(100vh - 60px);
        background: url('../assets/img/homepage/room.webp') center/cover no-repeat;
        z-index: 1;
    }
    .scrolling-image {
        /* top: 23%; */
        width: 100%;
        height: 100vh;
        background: url('../assets/img/homepage/trees-mob.webp') center/cover no-repeat;
    }
    .seventh-section-home {
        background: url('../assets/img/homepage/mapa-md.webp') center/cover no-repeat;
    }
    .locations-button {
        margin-top: 20px;
    }
    .circle-1 { top: 70%; left: 10%; }
    .circle-3 { top: 6%; left: 15%; }
    .circle-7 { width: 30px; height: 30px; top: 90%; left: 90%; }
    .infinite-cayron {
        margin-top: -300px;
    }
    .cayron-group span {
        font-size: 180px;  
    }
    .home-cloud-parallax-7 {
        display: none;
    }
    .sixth-section-home h3 {
        padding-top: 150px;
    }
}
/* LG - ≥992px */
@media (min-width: 992px) {
    .slide {
        position: relative;
        width: 100%;
        height: 400px;
        max-height: calc(100svh - 60px);
        color: white;
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }
    .slick-slider {
        height: calc(100vh - 60px);
        height: auto;
    }
    .second-section-home {
        min-height: 2800px;
        justify-content: flex-start;
        margin-top: 0;
    }
    .second-section-card h3 {
        margin-top: -70px;
    }
    .parallax-image-home {
        margin-top: 250px;
        height: 320px;
        top: 62%;
    }
    .parallax-image-holder-home {
        margin-top: 250px;
        height: 320px;
        top: 75%;
    }
    .circle-3 { top: 3%; left: 35%;}
    .circle-6 { display: block; }
    .circle-7 { width: 30px; height: 30px; top: 80%; left: 90%; }
    .circle-8 { display: block; }
    .circle-9 { display: block; }
    .sixth-section-home img {
        width: 460px;
    }
    .img-hover-container .hover-img {
        opacity: 0;
        margin-top: 0;
    }
    .cayron-group span {
        font-size: 200px;  
    }
}
/* XL - ≥1200px */
@media (min-width: 1200px) {
.parallax-image-holder-home {
        margin-top: 90px;
        height: 260px;
        top: 410px;
    }
    .parallax-image-home {
        margin-top: 0;
        height: 380px;
        top: 287px;
    }
    .home-cloud-parallax-1 {
        top: 50px;
        left: 30%;
    }
    .home-cloud-parallax-2 {
        top: 400px;
        right: 0;
    }
    .home-cloud-parallax-3 {
        top: 700px;
        left: 150px;
    }
    .home-cloud-parallax-4 {
        top: 1450px;
        right: 0;
    }
    .home-cloud-parallax-5 {
        top: 1500px;
        left: 0;
    }
    .scrolling-image {
        top: 0;
        height: 100vh;
        background: url('../assets/img/homepage/trees-europe.webp') center/cover no-repeat;
    }
    .sixth-section-home {
        z-index: 3;
    }
    .seventh-section-home h2 {
        padding-top: 40px;
    }
    .cayron-track {
        animation: scroll-left 40s linear infinite;
    }
    .cayron-group span {
        margin-right: 60px;
        font-size: 200px;  
    }
    .infinite-cayron {
        margin-top: -250px;
    }
}

/* Pretpostavimo da bookmark bar oduzima oko 60px visine */

/* 1. Cilja ekrane širine >= 1280px I (visine do 1024px, ali efektivno ~964px sa barom) */
/* Ako je puna visina 1024px, sa barom je ~964px. Ovo je za "velike" visine. */
@media (min-width: 1280px) and (max-height: 964px) { /* Prethodno 1024px */
    .parallax-image-holder-home {
        top: 75%;
    }
    .parallax-image-home {
        top: 61%;
    }
}

/* 2. Cilja ekrane širine >= 1280px I (visine do 960px, ali efektivno ~900px sa barom) */
/* Ako je puna visina 960px, sa barom je ~900px. Ovo je za "srednje" visine. */
@media (min-width: 1280px) and (max-height: 900px) { /* Prethodno 960px */
    .parallax-image-holder-home {
        top: 75%;
    }
    .parallax-image-home {
        top: 58%;
    }
}

/* 3. Cilja ekrane širine >= 1280px I (visine do 800px, ali efektivno ~740px sa barom) */
/* Ako je puna visina 800px, sa barom je ~740px. Ovo je za "manje" visine. */
@media (min-width: 1280px) and (max-height: 740px) { /* Prethodno 800px */
    .parallax-image-holder-home {
        top: 66%;
    }
    .parallax-image-home {
        top: 43%;
    }
}
/* XXL - ≥1400px */
@media (min-width: 1400px) {
    .second-section-home {
        min-height: 3200px;
    }
    .slick-slider {
        max-height: 700px;
    }
    .parallax-image-home {
        margin-top: 0;
        height: 460px;
        top: 300px;
    }
    .parallax-image-holder-home {
        margin-top: 90px;
        height: 270px;
        top: 500px;
    }
    .seventh-section-home h2 {
        padding-top: 50px;
    }
    .locations-button {
        margin-top: 10px;
    }
    .seventh-section-home h2 {
        font-size: 48px;
        line-height: 50px;
    }
    .sixth-section-home h3 {
        padding-top: 120px;
    }
    .seventh-section-home {
        background: url('../assets/img/homepage/mapa.webp') center/cover no-repeat;
    }
    .cayron-group span {
        font-size: 280px;  
    }
    .infinite-cayron {
        margin-top: -440px;
    }
}
@media (min-width: 1400px) and (max-height: 1050px) {
    .parallax-image-holder-home {
        top: 74%;
    }
    .parallax-image-home {
        top: 50%;
    }
}
@media (min-width: 1440px) and (max-height: 900px) {
    .parallax-image-holder-home {
        top: 69%;
    }
    .parallax-image-home {
        top: 41%;
    }
}
@media (min-width: 1500px) {
    .parallax-image-home {
        margin-top: 0;
        height: 55vh;
        top: 45vh;
    }
    .parallax-image-holder-home {
        margin-top: 90px;
        height: 35vh;
        top: 69vh;
    }
}
@media (min-width: 1600px) {
    .parallax-image-home {
        margin-top: 0;
        height: 460px;
        top: 300px;
    }
    .parallax-image-holder-home {
        margin-top: 90px;
        height: 270px;
        top: 500px;
    }
}
/* @media (min-width: 1600px) and (max-height: 900px) {
    .parallax-image-holder-home {
        top: 69%;
    }
    .parallax-image-home {
        top: 41%;
    }
}
@media (min-width: 1600px) and (max-height: 1200px) {
    .parallax-image-holder-home {
        top: 79%;
    }
    .parallax-image-home {
        top: 57%;
    }
}
@media (min-width: 1680px) and (max-height: 1050px) {
    .parallax-image-holder-home {
        top: 75%;
    }
    .parallax-image-home {
        top: 51%;
    }
} */
 /* 1. Najširi opseg visine: za širinu >= 1600px i visinu do ~1200px (efektivno 1140px sa barom) */
@media (min-width: 1600px) and (max-height: 1140px) {
    .parallax-image-holder-home {
        top: 79%;
    }
    .parallax-image-home {
        top: 57%;
    }
}

/* 2. Srednji opseg visine: za širinu >= 1680px i visinu do ~1050px (efektivno 990px sa barom) */
/* PAŽNJA: Ovaj ima veću min-width, pa će se primeniti SAMO ako je širina >= 1680px */
@media (min-width: 1680px) and (max-height: 990px) {
    .parallax-image-holder-home {
        top: 75%;
    }
    .parallax-image-home {
        top: 51%;
    }
}

/* 3. Najuži opseg visine: za širinu >= 1600px i visinu do ~900px (efektivno 840px sa barom) */
/* PAŽNJA: Ovaj će se primeniti za širine od 1600px do 1679px, i za širine od 1680px naviše ako prethodni upit nije aktiviran. */
@media (min-width: 1600px) and (max-height: 840px) {
    .parallax-image-holder-home {
        top: 69%;
    }
    .parallax-image-home {
        top: 41%;
    }
}
@media (min-width: 1700px) {
    .parallax-image-holder-home {
        top: 83%;
    }
    .parallax-image-home {
        top: 64%;
    }
}
@media (min-width: 1920px) {
    .parallax-image-holder-home {
        margin-top: 320px;
        height: 410px;
        top: 720px;
    }
    .parallax-image-home {
        margin-top: 0;
        height: 700px;
        top: 650px;
    }
    .second-section-home {
        min-height: 3600px;
    }
    .slick-slider {
        height: 700px;
    }
    .seventh-section-home h2 {
        font-size: 72px;
        line-height: 72px;
        padding-top: 100px;
    }
    .locations-button {
        margin-top: 6px;
    }
    .sixth-section-home h3 {
        padding-top: 200px;
    }
    .sixth-section-home img {
        width: auto;
    }
}
@media (min-width: 1920px) and (min-height: 900px){ /*za 1080px visine*/
    .parallax-image-holder-home {
        margin-top: 320px;
        height: 410px;
        top: 62%;
    }
    .parallax-image-home {
        top: 45%;
    }
}
@media (min-width: 1920px) and (min-height: 1000px){ /*za 1200px visine*/
    .parallax-image-holder-home {
        margin-top: 320px;
        height: 410px;
        top: 710px;
    }
    .locations-button {
        margin-top: 40px;
    }
}
@media (min-width: 1920px) and (min-height: 1250px){ /*za 1440px visine*/
    .parallax-image-holder-home {
        top: 73%;
    }
    .parallax-image-home {
        top: 48%;
    }
}
@media (min-width: 2048px) {
    .parallax-image-holder-home {
        top: 624px;
    }
}
@media (min-width: 2560px) {
    .parallax-image-holder-home {
        margin-top: 320px;
        height: 520px;
        top: 850px;
    }
    .parallax-image-home {       
        top: 650px;
    }
     .seventh-section-home h2 {        
        padding-top: 200px;
    }
}

@media (min-width: 1024px) {
    .slide {
        height: 500px;
    }
}
@media (min-width: 1200px) {
    .slide {
        height: 700px
    }
}