#accordion .card{
    border: none;
    border-radius: 5px;
    box-shadow: none;
    margin-bottom: 10px;
    background: transparent;
}
#accordion .card-header{
    padding: 0;
    border: none;
    border-radius: 5px;
    background: transparent;
    position: relative;
}
#accordion .card-header a{
    display: block;
    padding: 15px 20px;
    margin: 0;
    background: var(--primary-color1);
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    position: relative;
    text-transform: uppercase;
}
#accordion .card-header a.collapsed{ border: none; }
#accordion .card-header a:before,
#accordion .card-header a.collapsed:before{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    font-size: 25px;
    font-weight: 900;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 30px;
    transform: rotate(180deg);
    transition: all .4s cubic-bezier(0.080, 1.090, 0.320, 1.275);
}
#accordion .card-header a.collapsed:before{
    color: rgba(255,255,255,0.5);
    transform: rotate(0deg);
}
#accordion .card-body{
    padding: 20px 30px;
    background: #eee;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
    border-top: none;
    border-radius: 5px;
}

@media (max-width: 500px){
    .card-header a{
        font-size: 16px !important;
    }
}


#accordion1 .card{
    border: none;
    border-radius: 5px;
    box-shadow: none;
    margin-bottom: 10px;
    background: transparent;
}
#accordion1 .card-header{
    padding: 0;
    border: none;
    border-radius: 5px;
    background: transparent;
    position: relative;
}
#accordion1 .card-header a{
    display: block;
    padding: 15px 20px;
    margin: 0;
    background: var(--primary-color1);
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    position: relative;
}
#accordion1 .card-header a.collapsed{ border: none; }
#accordion1 .card-header a:before,
#accordion1 .card-header a.collapsed:before{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    font-size: 25px;
    font-weight: 900;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 30px;
    transform: rotate(180deg);
    transition: all .4s cubic-bezier(0.080, 1.090, 0.320, 1.275);
}
#accordion1 .card-header a.collapsed:before{
    color: rgba(255,255,255,0.5);
    transform: rotate(0deg);
}
#accordion1 .card-body{
    padding: 20px 30px;
    background: #eee;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
    border-top: none;
    border-radius: 5px;
}