@charset "UTF-8";
/*!
 * Accordion v2.7.2
 * Simple accordion created in pure Javascript.
 * https://github.com/michu2k/Accordion
 *
 * Copyright 2017-2019 Michał Strumpf
 * Published under MIT License
 */
body{
    font: 0;
}

.ac {
    margin-top: 10px;
    padding: 0px;
    /* border: 1px solid #382e7b; */
    background-color: #fff;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font: 0;
    z-index: 1;
}

.ac > .ac-title {
    font: normal 15px 'Raleway', sans-serif;
    letter-spacing: .5px;
    border: 0px solid #382e7b;
    color: white;
    background-color: #382e7b;
    padding: 10px 30px 10px 10px;
    margin: 0;
    text-decoration: none;
    display: block;
    cursor: pointer;
    position: relative;
    transition: background-color 0.15s;
}

.ac > .ac-title:hover {
    background-color: #A00770;
    transition: background-color 0.15s;
}

.ac > .ac-title::after {
  content: '+';
  text-align: center;
  width: 15px;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
}

.ac > .ac-content {
    overflow: hidden;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    padding: 0px;
    margin: 0px;
    font-size: 0;
}


.ac.js-enabled > .ac-content {
  visibility: hidden;
}

.ac.is-active > .ac-content {
  visibility: visible;
}

.ac.is-active > .ac-title::after {
  content: '\2013';
}

.ac_row_container{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #382e7b;
}

.more_info_p {
    display: block;
    font: 14px 'Raleway', sans-serif;
    color: black;
    line-height: 1.3;
    padding: 0px 10px 0px 10px;
}

.more_info_p a {
    display: inline;
    font: bold 14px 'Raleway', sans-serif;
    color: #A00770;
    text-decoration: none;
    transition: color 0.15s;
}

.more_info_p a:hover {
    color: #4aa5dc;
    transition: color 0.15s;
}

.benefits_section{
    display: inline-block;
    width: 30%;
    font-size: 0;
    vertical-align: top;
}

.applies_to_section{
    display: inline-block;
    width: 70%;
    font-size: 0;
    vertical-align: top;
}

.benefits_section > h2, .applies_to_section > h2 {
    font: bold 14px 'Raleway', sans-serif;
    text-align: left;
    color:  #382e7b;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ac_first_h2, .ac_first_h2 {
    display: block;
    margin: 0px 0px 0px 0px;
    padding: 10px 10px 10px 10px;
}

.ac_mobile_h2 {
    display: none;
    margin: 0px 0px 0px 0px;
    padding: 10px 10px 5px 10px;
}

.benefits_section > p, .applies_to_section > p {
    display: block;
    font: 14px 'Raleway', sans-serif;
    color: black;
    line-height: 1.3;
    margin: 0;  
}

.benefits_section > p{
    padding: 15px 20px 15px 10px;
}

.applies_to_section > p {
    padding: 15px 10px 15px 10px;
}

.applies_to_section > ul {
    display: block;
    font: 14px 'Raleway', sans-serif;
    color: black;
    line-height: 1.2;
    margin: -10px 0px 0px 0px;  
    padding: 0px 10px 15px 26px;
}

.applies_to_section > ul > li {
    margin: 0px 0px 5px 0px;
}


@media only screen and (max-width: 900px) {
    .benefits_section{
        width: 40%;
    }

    .applies_to_section{
        width: 60%;
    }
}

@media only screen and (max-width: 500px) {
    .benefits_section{
        width: 100%;
    }

    .applies_to_section{
        width: 100%;
    }
    
    .benefits_section > h2, .applies_to_section > h2 {
        text-align: left;
    }
    
    .ac_first_h2, .ac_first_h2 {
        display: none;
    }

    .ac_mobile_h2 {
        display: block;
        margin: 0px 0px 0px 0px;
        padding: 15px 10px 0px 10px;
    }
    
    .benefits_section > p{
        padding: 5px 20px 0px 10px;
    }

    .applies_to_section > p {
        padding: 5px 10px 15px 10px;
    }
}
