jQuery(document).ready(function ($) { // Js for SVG /*header toggle*/ $("body").on("click", ".menu-btn", function (event) { $("body header").toggleClass("header-open"); }); $(".client-slider").slick({ infinite: true, autoplay: true, slidesToShow: 3, arrows: false, slidesToScroll: 1, dots: true, centerMode: false, speed: 1000, variableWidth: false, appendArrows: jQuery(".slider-buttons"), prevArrow: '', nextArrow: '', responsive: [ { breakpoint: 992, settings: { slidesToShow: 2, centerMode: true, centerPadding: '0px', } }, { breakpoint: 600, settings: { slidesToShow: 1, } } ] }); // Faq toggle js $(".accordion .faq-card:not(:first-of-type) .faq-content").css("display", "none"); $(".accordion .faq-btn").click(function () { $(this).toggleClass("faq-btn-active").parents('.faq-header').next().slideToggle(300); }); // faq acccordion toggle }); /*Ready function end*/