//Accordion
accordion.each(function () {
var _this = $(this),
_thisItem = _this.children(),
_thisArrow = _this.find('.arrow-bot-anim'),
_thisTitle = _this.find('.accordion__title'),
_thisText = _this.find('.accordion__text');
_thisTitle.on('click', function () {
if ($(this).closest(_thisItem).hasClass('is-active')) {
$(this).find(_thisArrow).removeClass('is-active');
$(this).next().slideUp().closest(_thisItem).removeClass('is-active');
} else {
$(this).closest(_thisItem).siblings().filter('.is-active').each(function () {
$(this).removeClass('is-active').find(_thisText).slideUp();
$(this).find(_thisArrow).removeClass('is-active');
});
$(this).find(_thisArrow).addClass('is-active');
$(this).next().slideDown().closest(_thisItem).addClass('is-active');
}
});
});