$(function() { const swiper = new Swiper(".swiper", { slidesPerView: 2.5, spaceBetween: "10px", freeMode: true, grabCursor: true, navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev", }, breakpoints: { 736: { slidesPerView: 7, spaceBetween: "15px", }, }, }); updateTopWrapHeight(); $(window).resize(function() { updateTopWrapHeight(); }); function updateTopWrapHeight() { var headerHeight = $('header').height(); if ($(window).height() <= 1450) { $('#interview_top').css('min-height', 'calc(100vh - ' + headerHeight + 'px)'); } } });