@import url('http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css');
.tab {
    padding-top: 50px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    width: 100%;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-weight: 300;
    color: #888;
    -webkit-font-smoothing: antialiased;
  }
.accordion-item{
  color: #2b69a6;
}
  .tabs {
    display: table;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
  }
  .tabs li {
    float: left;
    line-height: 38px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: auto;
  }
  .tabs a {
    background-color: #eff0f2;
    border-bottom: 1px solid #fff;
    color: #888;
    font-weight: 500;
    display: block;
    letter-spacing: 0;
    outline: none;
    padding: 0 20px;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-bottom: 2px solid #2b69a6;
  }

  .tabs_item {
    display: none;
    padding: 30px 0;
  }
  .tabs_item h4 {
    font-weight: bold;
    color: #2b69a6;
    font-size: 20px;
  }
  .tabs_item:first-child {
    display: block;
  }

  .current a {
    color: #fff;
    background: #2b69a6;
  }


/* ==================================================================== */
h3 {
    font-size: 1.75rem;
    color: #2b69a6;
    padding: 1.3rem;
    margin: 0;
  }

  .accordion a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border-bottom: 1px solid #e5e5e5;
  }

  .accordion a:hover,
  .accordion a:hover::after {
    cursor: pointer;
    color: #2b69a6;
  }

  .accordion a:hover::after {
    border: 1px solid #2b69a6;
  }

  .accordion a.active {
    color: #2b69a6;
    border-bottom: 1px solid #2b69a6;
  }

  .accordion a::after {
    font-family: 'Ionicons';
    content: '\f218';
    position: absolute;
    float: right;
    right: 1rem;
    font-size: 1rem;
    color: #7288a2;
    padding: 5px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #7288a2;
    text-align: center;
  }

  .accordion a.active::after {
    font-family: 'Ionicons';
    content: '\f209';
    color: #2b69a6;
    border: 1px solid #2b69a6;
  }

  .accordion .content {
    opacity: 0;
    padding: 0 1rem;
    max-height: 0;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
    clear: both;
    -webkit-transition: all 0.2s ease 0.15s;
    -o-transition: all 0.2s ease 0.15s;
    transition: all 0.2s ease 0.15s;
  }

  .accordion .content p {
    font-size: 1rem;
    font-weight: 300;
  }

  .accordion .content.active {
    opacity: 1;
    padding: 1rem;
    max-height: 100%;
    -webkit-transition: all 0.35s ease 0.15s;
    -o-transition: all 0.35s ease 0.15s;
    transition: all 0.35s ease 0.15s;
  }
