/*--------------------------------------------------
----------------------------------------------------
ACCORDION
----------------------------------------------------
--------------------------------------------------*/

.fugu-accordion {
    list-style: none;
    padding: 0;
    background-color: #0c0c0c;
}
.fugu-acc-item {
    border: 2px solid #212121;
}
.fugu-acc-title {
    color: #ffffff;
    font-size: 23px;
    padding: 40px 60px 40px 40px;
    position: relative;
    font-weight: 600;
    cursor: pointer;
}
.fugu-acc-title:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
}
.fugu-acc-item.active .fugu-acc-title:after {
    transform: translateY(-50%) rotate(-180deg);
}
.fugu-acc-content {
    display: none;
    color: #dddddd;
    padding: 40px;
    border-top: 2px solid #212121;
}