/* Accordion Style*/
input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

/* Accordion styles */
.accordions {
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
    padding: 0 15px;
}

.accordion {
    width: 100%;
    color: #fff;
    overflow: hidden;
    margin-bottom: 20px;
    background: #00a8c6;
}

.accordion-wrapper h2 {
    margin: 30px 0 30px;
}

.accordion-wrapper:first-child h2 {
    margin: 20px 0 30px;
}

.accordion-content p {
    font-weight: normal;
    color: #000;
    font-size: 13px;
}

.accordion-label {
    display: flex;
    justify-content: space-between;
    padding: 18px 30px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    position: relative;
}

.accordion-label::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 25px;
    width: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    transition: all 0.35s;
}

.accordion-content {
    max-height: 0;
    padding: 0 15px;
    color: #2c3e50;
    background: #fff;
    transition: padding 0.35s, max-height 0.35s;
    border-bottom: 1px solid #00a8c6;
    border-top: 0;
    font-weight: 700;
    font-size: 16px;
}

input:checked+.accordion-label::after {
    transform: rotate(180deg);
}

input:checked~.accordion-content {
    max-height: 2000px;
    padding: 30px 15px;
}


ol {
    margin: 0;
}

@media screen and (max-width: 575px) {
    .accordion-label {
        padding: 15px 45px 15px 10px;
    }
    .accordion-content {
        padding: 0 20px;
    }
    input:checked~.accordion-content {
        padding: 15px 20px;
    }
    .accordion-label::after {
        right: 10px;
    }
}