.marketing-content-accordion-row{
    display: block;
    border-top: 1px solid #dedfdf;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 40px;
}

.marketing-content-accordion-header{
    padding: 20px 0;
    cursor: pointer;
}

.marketing-content-accordion-header.active{
    padding-bottom: 0;
}

.marketing-content-accordion-content{
    transform: scaleY(0);    
    transform-origin: top;
    transition: transform 0.26s ease;
    height: 0;
}

.marketing-content-accordion-header.active + .marketing-content-accordion-content{
    transform: scaleY(1);
    height: fit-content;
    padding: 10px 0px 15px;
}

.marketing-content-accordion-row:last-of-type{
    border-bottom: 1px solid #dedfdf;
}

.marketing-content-accordion-content p{
    margin-bottom: 0;
}

.marketing-content-accordion-button{
    height: 50px;
    width: 50px;
    position: absolute;
    right: 0;
    top: 7px;
}

.marketing-content-accordion-button .tcon{
    width: 100%;
    height: 100%;
    background-color: #3d5885;
    padding: 0;
    color: #fff;
    font-weight: 400;
    font-size: 3rem;
    transition: .5s all ease-out;
}

.marketing-content-accordion-button button.tcon-minus{
    background-color: unset;
    color: #3d5885;
    border: 0;
    transform: rotate(-180deg);
}

.marketing-content-accordion-button button.tcon-plus:before{
    content: '+';
}

.marketing-content-accordion-button button.tcon-minus:before{
    content: '\2013';
}

.marketing-content-accordion-button button.tcon-plus {
    transform: rotate(0deg);
}

.marketing-content-accordion-title{
    color: #3d5885;
    text-transform: uppercase;
    font-weight: 600;
} 

.marketing-content-accordion-title:hover{
    text-decoration: none;
    color: #6D6E70;
}
