/* aordion faq */
.tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    color: #fff;
    overflow: hidden;
}
.tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.tab label {
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    background: #fff;
    font-weight: bold;
    line-height: 3;
    cursor: pointer;
    background-color: #ffc800;
}
.tab a {
    color: black;
    font-size: 19px;
    text-decoration: none;
}

.tab-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s;
    -o-transition: max-height 0.35s;
    transition: max-height 0.35s;
    color: #000;
}

.tab-content p {
    margin: 2em;
}

.tab input:checked ~ .tab-content {
    max-height: 100%;
}
.tab label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3;
    text-align: center;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}
.tab input[type="checkbox"] + label::after {
    content: "+";
}
.tab input[type="radio"] + label::after {
    content: "\25BC";
}
.tab input[type="checkbox"]:checked + label::after {
    transform: rotate(315deg);
}
.tab input[type="radio"]:checked + label::after {
    transform: rotateX(180deg);
}