Just need some help

Just need some help

I would like to know what is wrong and why is the toggle action not working? 


<div id="dropdown-1" class="dropdown dropdown-processed">
<div id="free-evaluation" class="container gray-row" style="background-color: #e6e6e6;">
<div class="wrapper wk-row">
<div class="wk-col-2 text-center">
<span class="wk-icon-filled-wrench" style="font-size: 5.5rem;padding-top:20px"></span>
</div>
<div class="wk-col-10">
<h3>Expert Service – We understand the needs of Your Trust Tax Department</h3>
        <p>Our knowledgeable team of dedicated professionals is available to help you navigate Trust US™ and maximize the capabilities of Trust US for your organization.</p><br>
  <a class="orangeArrBtn dropdown-link">Learn More</a>
  <div class="dropdown-container" style="display: none;">
<p><strong>Service you expect<br></strong> While you are completing 1099s and returns during tax season, or preparing quarterly estimate payments, our team of experienced professionals can help you resolve virtually any question that may arise. Whether related to specific software functionality or questions about form completion and tax compliance, we can draw on our years of experience in the industry to quickly find you the answer you need.</p>
<p><strong>Training and Support<br></strong>Prior to tax season, we will assist you with the installation of the product, and make sure it is operating effectively in your environment. We will work directly with you and your trust accounting vendor to understand any user defined fields or custom applications within the data to make sure that everything maps correctly. We will customize training to suit your needs, whether it is with online Webinars or onsite classroom-style training. Our training experts will walk you and your staff through the basics of getting started, navigating the forms, and working with all aspects of the <strong>Trust US</strong> system.</p>
<p><strong>Answers and Assistance<br></strong>We want to help you get the most out of <strong>Trust US</strong> – we will work with you and your team to make sure they are getting the most out of the features and functionality of <strong>Trust US</strong> including custom reports, batch edits and form defaults.</p>
  </div>
</div>
</div>
</div>
</div>

<script>

$(document).ready(function(){

 $(".dropdown-link").click(function(){
 $(".dropdown-container").slideUp('slow')
 $(this).closest('.dropdown').find('.dropdown-container').slideDown('slow');
 
 });

});
</script>