// floating
$(document).ready(function () {
if (window.matchMedia('(max-width: 767px)').matches) {
var topBtn = $('.floating_btnBox');
topBtn.hide();
$(window).scroll(function () {
if ($(this).scrollTop() > 300) {
topBtn.fadeIn();
} else {
topBtn.fadeOut();
}
});
}
});
// accordion
$(function () {
$('.accordion_one .ac_header').click(function () {
$(this).next('.ac_inner').slideToggle();
$(this).toggleClass("open");
});
});