:root {
    --green: #e056fd;
    --text-color: #999DA2;
    --default-transition: all 0.25s ease;
    --light-white: #ececec;
    --padding-height: 50px;
    --cloud: #ecf0f1;
    --dark-green: #27ae60;
}
html, body {
    width: 100%;
    max-width: 100%;
}
body {
    font-family: 'Helvetica', sans-serif;
    background-color: #FFF;
    text-align: center;
    color: #000;
    position: relative;
    margin: 0;
    padding-bottom: 6rem;
}
/* Footer Styles */
footer {
    background-color: #3a3a3a;
    color: #FFF;
    position: absolute;
    right: 0;
    left: 0;
    padding: 1.2rem;
    max-width: 100%;
}
footer a {
    text-decoration: none;
    color: #e056fd;
}
footer a:hover {
    text-decoration: none;
    color: #d046ed;
}
footer ul {
    margin: 0;
    padding: 0;
    overflow: hidden;
    letter-spacing: 1px;
    list-style-type: none;
    text-align: left;
}

@media only screen and (min-width: 700px) {
    footer .copyright {
        width: 35%;
        margin: auto;
        text-align: left;
    }
}
@media only screen and (max-width: 700px) {
    footer .copyright {
        width: 80%;
        margin: auto;
        margin-top: 10px;
        text-align: left;
    }
}
footer #year {
    text-align: left;
}
@media only screen and (min-width: 700px) {
    footer .grid {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 35%;
        margin: auto;
        text-align: left;
    }
}
@media only screen and (max-width: 700px) {
    footer .grid {
        width: 80%;
        margin: auto;
        text-align: left;
    }
}
footer .fab, footer .fas {
    font-size: 24px;
    margin-right: 5px;
}
.fa-check {
    margin-left: 10px;
    color: var(--green);
}
.fa-twitter {
    color: #00acee!important;
    text-decoration: none;
}
.fa-instagram {
    color: #E1306C!important;
    text-decoration: none;
}
.fa-envelope {
    color: #bdc3c7!important;
    text-decoration: none;
}
.fa-telegram {
    color: #0088CC!important;
    text-decoration: none;
}
.fa-external-link {
    color: #fff!important;
    text-decoration: none;
}
.fa-youtube:hover, .fa-instagram:hover, .fa-github:hover, .fa-twitch:hover, .fa-twitter:hover, .fa-discord:hover, .fa-telegram:hover, .fa-file-contract:hover, .fa-external-link:hover {
    filter: brightness(85%);
}
.accordion {
    background-color: #fff;
    color: #6C6F73;
    cursor: pointer;
    padding: 18px;
    width: 650px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: var(--default-transition);
    -webkit-transition: var(--default-transition);
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px 0 hsl(0deg 0% 0% / 20%);
}
.accordion.active, .accordion:hover {
    background-color: var(--green);
    color: #fff;
}
.accordion:hover > i, .active > i {
    color: #fff;
}
.accordion.active {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.panel {
    padding: 0 18px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.2s ease-out;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;

    visibility: hidden;
    opacity: 0;
    max-height: 0;
}
.visible {
    visibility: visible;
    opacity: 1;
    max-height: 100%;
}
@media screen and (min-width: 700px) {
    .panel {
        width: 614px;
    }
}
@media screen and (max-width: 700px) {
    .accordion {
        width: 100%;
    }
}
.panel .ol {
    margin-top: 10px!important;
}
.panel p.complete {
    margin-top: -5px;
} 
.panel p.complete::before {
    content: '';
    padding-left: 10px;
    border-left: 2px solid #fff;
    height: 50%;
    left: 0;
    top: 25%;
}
.panel p.complete::before {
    border-left: 2px solid var(--green);
}