FAQ 2

<style type="text/css"><!--
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

* {
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-o-box-sizing:border-box;
box-sizing:border-box;
}

#shopify-section-1613425975662b3696 {
// background:#ACBECE;
}

#shopify-section-1613425975662b3696 .page-section
max-width: 1200px;
}

.acc-container {
width:100%;
margin:30px auto 0 auto;
-webkit-border-radius:8px;
-moz-border-radius:8px;
-o-border-radius:8px;
border-radius:8px;
overflow:hidden;
}

.acc-btn {
width:100%;
margin:0 auto;
padding:20px 25px;
cursor:pointer;
background:#34495E;
background:#FFFFFF;
border-top:1px solid #999999;
color:#000000;
}

.acc-content {
height:0px;
width:100%;
margin:0 auto;
overflow:hidden;
background:#FFFFFF;
}

.acc-content-inner {
padding:30px;
}

.open {
height: auto;
}

.acc-container h4 {
/* font:700 20px/26px 'Lato', sans-serif; */
/* color:#000000;*/
margin-bottom:0;
}

.acc-container p {
/* font:400 16px/24px 'Lato', sans-serif; */
color:#000000;
}

.selected {
color:#ffffff;
}


.acc-btn.selected {
background:#000000;
color:#ffffff;
}
--></style>
<div class="acc-container">
<div class="acc-btn selected">
<h4 class="selected">How does your hair removal system differ from other products?</h4>
</div>
<div class="acc-content open">
<div class="acc-content-inner">
<p>Our products are natural, have no harsh chemicals, no parabens, no methylparabens, no animal products, and remove hair to the root, eliminating ingrown hairs and exfoliating the skin in it’s entirety.</p>
</div>
</div>

</div>
<script>// <![CDATA[
$(document).ready(function(){
var animTime = 300,
clickPolice = false;

$(document).on('touchstart click', '.acc-btn', function(){
if(!clickPolice){
clickPolice = true;

var currIndex = $(this).index('.acc-btn'),
targetHeight = $('.acc-content-inner').eq(currIndex).outerHeight();

$('.acc-btn h4').removeClass('selected');
$(this).find('h4').addClass('selected');

$('.acc-btn').removeClass('selected');
$(this).addClass('selected');

$('.acc-content').stop().animate({ height: 0 }, animTime);
$('.acc-content').eq(currIndex).stop().animate({ height: targetHeight }, animTime);

setTimeout(function(){ clickPolice = false; }, animTime);
}

});

});
// ]]></script>