At a Glance
200 nights of Northern Lights
2-month long Polar Night
190,000 reindeer
Home of Santa Claus
Embrace the thick snow and plummeting temperatures beyond the Arctic Circle at Kakslauttanen, nearby Urho Kekkonen, one of Finland’s largest national parks. Home of the original and iconic glass igloo, here you can simply gaze up and admire the stunning night sky and vivid flashes of colour it may bring, all while keeping deliciously warm within the thermal glass rooms.
Those with young families may want to be closer to Rovaniemi, the capital city of Lapland and home to the jolly man in red (though the location of his private residence remains a secret). Here you will find the Arctic TreeHouse Hotel, situated on the Arctic Circle, where treetop cabins with panoramic windows frame the night sky.
The Arctic Light Hotel in the heart of Lapland-Rovaniemi (a WWF partner and protector of polar bears), means that a visit to Santa Claus Village is only a 15-minute drive away, while pristine, white landscapes are still within easy reach. But there’s nothing like venturing off the beaten track to hunt the aurora on a clear starry night out in nature. Chase the lights on snowmobile through forests and up fells, visit a husky farm for a ride in the wilderness, slowly take in your surroundings on a horseback ride or seek out the spectacle on a Northern Lights hike.
However you wish to admire this natural phenomenon, experience the best of Finnish hospitality with a tailor-made journey.
In partnership with Visit Finland.
// Replace the Salesforce submission with Kentico data submission
$(‘#newsletter-form-‘ + 46 + ‘ form’).on(‘submit’, function (event) {
event.preventDefault();
let formData = {
//Title: $(‘#salutation’).val(), // Replace with the actual ID of the Title input field
FirstName: $(‘#first_name’).val(), // Replace with the actual ID of the FirstName input field
LastName: $(‘#last_name’).val(), // Replace with the actual ID of the LastName input field
Email: $(‘#email’).val(), // Replace with the actual ID of the Email input field
Country: $(‘#country’).val(), // Replace with the actual ID of the Country input field
};
console.log(“formData: “, formData);
$.ajax({
url: “/NewsletterForm/Submit”, // Update with your actual controller and action
method: “POST”,
data: formData,
success: function (data) {
// Handle success, e.g., display a success message
console.log(“Form submitted successfully!”);
console.log(“Returned JSON:”, data); // Log the returned JSON data
$(‘#newsletter-form-‘ + 46 + ‘ .title’).hide();
Cookies.set(‘NewsletterDismissed’, true, { path: ‘/’ });
setTimeout(function () {
$(‘#newsletter-popup’).removeClass(‘active’);
$(‘body’).removeClass(‘mask’);
}, 2000);
window.location.replace(“/en-gb/thank-you-for-signing-up-to-our-newsletter”);
},
error: function (error) {
// Handle error, e.g., display an error message
console.log(‘Error submitting form:’, error);
}
});
});