document.documentElement.style.setProperty("--height-navbar", `${$('.navbar').outerHeight()}px`);
$('.hero .layout-main .nav-button .next').on('click', function (e) {
$('.hero .carousel').carousel('next')
})
$('.hero .layout-main .nav-button .prev').on('click', function (e) {
$('.hero .carousel').carousel('prev')
})
$('.hero .layout-main .nav-button.mobile .next').on('click', function (e) {
$('.hero .carousel.big').carousel('next')
})
$('.hero .layout-main .nav-button.mobile .prev').on('click', function (e) {
$('.hero .carousel.big').carousel('prev')
})
$('.hero .layout-main .carousel.big').on('slide.bs.carousel', function (e) {
if (e.direction == 'left') {
$('.hero .layout-main .carousel.big .carousel-indicators p span.current').text(e.to + 1)
$('.hero .layout-secondary .call-to-action .container-subtitle').remove()
$('.hero .layout-secondary .call-to-action').prepend(`
${$(`.hero .carousel.big .carousel-item:eq(${e.to})`).attr('data-subtitle')}
`)
} else {
$('.hero .layout-main .carousel.big .carousel-indicators p span.current').text(e.to + 1)
$('.hero .layout-secondary .call-to-action .container-subtitle').remove()
$('.hero .layout-secondary .call-to-action').prepend(`${$(`.hero .carousel.big .carousel-item:eq(${e.to})`).attr('data-subtitle')}
`)
}
})
$('.hero .layout-main .carousel.big').on('slid.bs.carousel', function (e) {
if (e.direction == 'left') {
$('.hero .layout-secondary .call-to-action .description').remove()
$('.hero .layout-secondary .call-to-action').append(
``
)
} else {
$('.hero .layout-secondary .call-to-action .description').remove()
$('.hero .layout-secondary .call-to-action').append(
``
)
}
})
$('.hero .layout-main .carousel.small').on('slide.bs.carousel', function (e) {
if (e.direction == 'left') {
$('.hero .layout-main .carousel.small .layout-tagline .title').remove()
$('.hero .layout-main .carousel.small .layout-tagline .subtitle').remove()
$('.hero .layout-main .carousel.small .layout-tagline .container-title-subtitle').append(`Elevating Your
`)
$('.hero .layout-main .carousel.small .layout-tagline .container-title-subtitle').append(`${$(`.hero .carousel.big .carousel-item:eq(${e.to})`).attr('data-subtitle')}
`)
} else {
$('.hero .layout-main .carousel.small .layout-tagline .title').remove()
$('.hero .layout-main .carousel.small .layout-tagline .subtitle').remove()
$('.hero .layout-main .carousel.small .layout-tagline .container-title-subtitle').append(`Elevating Your
`)
$('.hero .layout-main .carousel.small .layout-tagline .container-title-subtitle').append(`${$(`.hero .carousel.big .carousel-item:eq(${e.to})`).attr('data-subtitle')}
`)
}
})