.lead__wrapper:after {
    content: none;
}

/*Accordion*/

.trigger__container {
    overflow: hidden;
    height: 110px;
    box-shadow: 0 -0.75rem 0.75rem 0 rgba(0, 0, 0, 0.5);
}

.trigger {
    position: relative;
    width: 100%;
    height: 110px;
    z-index: 500;
    cursor: pointer;
}

.text__block {
    margin-top: -110px;
}

.index {
    height: 0.2rem;
    margin-top: 0.1rem;
    background-color: black;
}

.index.go {
    animation-name: index-bar;
    animation-duration: 1s;
    transform-origin: left;
}

.trigger__container h4 {
    margin-top: 0.3rem;
}

@keyframes index-bar {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scale(1);
    }
}