#help {
    background-color: #fff;
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

#help h1 {
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
}

#help .symbol1 {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 50px;
    height: 50px;
}

#help .symbol2 {
    position: absolute;
    top: 15%;
    right: 0;
    width: 100px;
    height: 100px;
    transform: translateX(50%);
}

#help .symbol3 {
    position: absolute;
    top: 25%;
    left: 5%;
    width: 75px;
}

#help .symbol4 {
    position: absolute;
    bottom: 5%;
    left: 3%;
    width: 15px;
}

#help .symbol5 {
    position: relative;
}

#help .symbol51 {
    width: 100%;
}

#help .symbol52 {
    position: absolute;
    top: 34%;
    left: 15%;
    width: 7%;
}

#help .symbol6 {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 50px;
    height: 50px
}

#help .nav {
    margin-top: 50px;
    margin-bottom: 50px;
}

#help .nav .nav-link {
    color: #666666;
    border: solid 1px #666666;
    background: none;
    margin: 0 5px;
    font-weight: 700;
}

#help .nav .nav-link.active, #help .nav .nav-link:hover {
    background: #ca6673;
    background: -webkit-linear-gradient(-90deg, rgba(202, 102, 115, 1) 0%, rgba(145, 119, 199, 1) 50%, rgba(71, 150, 227, 1) 100%);
    background: -moz-linear-gradient(-90deg, rgba(202, 102, 115, 1) 0%, rgba(145, 119, 199, 1) 50%, rgba(71, 150, 227, 1) 100%);
    background: linear-gradient(-90deg, rgba(202, 102, 115, 1) 0%, rgba(145, 119, 199, 1) 50%, rgba(71, 150, 227, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#CA6673", endColorstr="#4796E3", GradientType=0);
    color: #fff;
    border-color: transparent;
}

#help h3 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #355BDC;
    margin: 0;
    position: relative;
    padding-left: 45px;
}

#help h3 span.no {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: solid 2px #4f4d4e;
    color: #4f4d4e;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

#help h3 span.plusminus {
    color: #355BDC;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

#help h3 span.plusminus .fa-circle-minus {
    display: none;
}

#help p {
    color: #000000;
    margin: 0;
    font-size: 1rem;
}
#help .inner{
    display: none;
    margin-top: 20px;
    padding-left: 45px;
}


#help .item {
    background-color: #eaeaea;
    padding: 20px;
    margin-top: 15px;
    border-radius: 30px;
    cursor: pointer;
}

#help .item.active {
    background: #dff1f5;
}

#help .item.active h3 {
    padding-bottom: 20px;
}

#help .item.active h3:after {
    position: absolute;
    bottom: 0;
    left: 45px;
    right: 0;
    height: 1px;
    background-color: #4f4d4e;
    content: ""
}

#help .item.active .inner {
    display: block;
}

#help .item.active h3 span.no {
    margin-top: -10px;
}

#help .item.active h3 span.plusminus {
    margin-top: -10px;
}

#help .item.active h3 span.plusminus .fa-circle-minus {
    display: block;
}

#help .item.active h3 span.plusminus .fa-circle-plus {
    display: none;
}
#help .item:hover {
    background: #dff1f5;
}
#help .item:hover span.plusminus{
    /* color: #e84435; */
}
@media (orientation: portrait) {
    #help h1{
        font-size: 1.5rem;
    }
    #help .nav .nav-link{
        margin-top: 5px;
    }
    #help h3{
        font-size: 1rem;
        padding-right:30px
    }
    #help p{
        font-size: .8rem;
    }
}