We’re always on the lookout for exciting collaborations! As passionate adventurers and explorers of Croatia, we’ve worked with awesome brands like Merrell, Fjällräven, and Alpine Nation, and we love teaming up with those who share our love for the outdoors and travel.
Whether you’re a brand with cool gear, a tourism board looking to highlight stunning spots or someone with a unique project idea—let’s chat! We believe the best partnerships come from genuine connections and shared adventures. Together, we can create fun, inspiring content that gets people excited to explore the beauty of Croatia and beyond. Drop us a message, and let’s see what we can create together!
This website uses cookies to ensure proper functionality, analyze traffic, and provide related services, including affiliate links. You can accept all cookies or reject those that are not necessary. Cookie policy
// Funkcija za postavljanje kolačića
function setCookie(name, value, days) {
let expires = "";
if (days) {
let date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + "; path=/" + expires;
}
// Kada korisnik prihvati sve kolačiće
function acceptCookies() {
setCookie("cookiesAccepted", "true", 365);
document.querySelector(".elementor-popup-modal").style.display = "none";
}
// Kada korisnik odbije sve osim nužnih
function declineCookies() {
setCookie("cookiesAccepted", "false", 365);
document.querySelector(".elementor-popup-modal").style.display = "none";
}
// Provjeri je li korisnik već dao pristanak
window.onload = function() {
if (document.cookie.indexOf("cookiesAccepted") !== -1) {
document.querySelector(".elementor-popup-modal").style.display = "none";
}
};