Desert Explorer
Experiencing an 18 day journey through the Namibian national parks will undoubtedly leave you with memories that will last a lifetime. Begin in Windhoek, home to the stunning ‘Olive Exclusive Boutique Hotel’ where the balance between modern and traditional architecture provides a real unique experience. A safari through places such as the Kalahari Desert, Fish River Canyon and The Giants Playground will take you within touching distance of some of the most naturally beautiful places in Africa, whilst also giving you the opportunity to see the majestic Big 5 in their natural habitat.
From Bush to Beach in Tanzania
Tanzania is a perfect place to get a taste of the wild. Why visit one, or even two nature reserves, when there are five of the best-known reserves within the whole of Africa located within Tanzania? During this trip you will be taken around the country stopping at the aforementioned five nature reserves, ensuring you get the incredible opportunity to witness Africa’s most famous animals in their natural habitats. Whether it be leopards, lions, rhinos or elephants you will see them all – during one of the privately guided journeys through the reserves or from the comfort of your hotel. Finish your time in Tanzania with a trip to the breath-taking Zanzibar Island which is home to several beautiful sandy beaches, allowing you to indulge in some relaxation on the beach after some serious adventure.
The Wonders of Botswana and Zambia
Escape to Botswana and Zambia for the adventure of a lifetime, spending 13 days exploring the vast landscape of these two African countries. Take in the beauty of the Kalahari Game Reserve, where you will be able to see Elephants bathing in the river before heading to Livingstone in Zambia. Zambia offers you the chance to really immerse yourself in some traditional culture, such as their vibrant markets and traditional village life.
// Replace the Salesforce submission with Kentico data submission
$(‘#newsletter-form-‘ + 93 + ‘ 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-‘ + 93 + ‘ .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);
}
});
});