.accordion .accordion-item {
    border-bottom: 1px solid #ececec;
    border-top: none;
    border-left: none;
    border-right: none;
}
.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #2c3436;
}
.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}
.accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: #041e42;
}
.accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color: #041e42;
    border: 1px solid #041e42;
}
.accordion button .accordion-title {
    word-break: break-word;
    display: block;
    width: 94%;
}
.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: -27px;
    right: 5px;
    width: 22px;
    height: 22px;
    border: 1px solid #636e72;
    border-radius: 22px;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: #2c3436;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: #2c3436;
}
.accordion button[aria-expanded='true'] {
    color: #041e42;
}
.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 100%;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content p {
    font-size: 14px;
    font-weight: 300;
    margin: 2em 0;
}


@media screen and (max-width: 425px)
{
    .accordion button .icon
    {
        top: 3px;
    }

    .about__section
    {
        margin-top: 0px;
    }
}


