﻿.accordion-header {
    background-color: #053154;
    color: #FFFFFF;
    cursor: pointer;
    font-weight: bold;
    line-height: 60px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    padding-left: 10px;
}

    .accordion-header:after {
        content: '\203A';
        font-size: 30px;
        font-weight: bold;
        color: #FFFFFF;
        float: right;
        margin-right: 10px;
    }

    .accordion-header.active:after {
        transform: rotate(90deg);
    }

    .accordion-header:hover {
        background-color: #2b4f5d;
    }

.accordion-body {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .accordion-body.active {
        display: block;
    }
