.phone a {
    font-size: 18px;
}

span.icon-phone {
    position: relative;
    top: 5px;
}

.accordion {
    background-color: #e0e0e0;
    padding: 50px 40px;
    margin-top: 50px;
    margin-bottom: 50px;

    h2 {
        font-weight: bold;
        margin: 0 0 10px;
    }

    p {
        margin: 0 0 10px;
    }
}

@media (max-width: 767px) {
    .accordion {
        padding: 30px 25px;
    }
}

.accordion__heading {
    margin-bottom: 15px;
}

.accordion__item:not(:last-child) {
    margin-bottom: 20px;
}

.accordion__item__heading {
    background: #e55551;
    color: #fff;
    padding: 10px 60px 10px 20px;
    cursor: pointer;
    position: relative;

    &:before,
    &:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 2px;
        right: 20px;
        background-color: #fff;
        transition: transform 0.3s ease-in-out;
    }

    &:before {
        width: 20px;
        height: 2px;
    }

    &:after {
        width: 2px;
        height: 20px;
        right: 29px
    }

    h3 {
        margin: 0;
        font-size: 20px;
    }

    &.is-active {
        &:before {
            transform: translateY(-50%) rotate(45deg);
        }

        &:after {
            transform: translateY(-50%) rotate(45deg);
        }
    }
}

.accordion__item__content {
    padding: 15px 20px;
    background-color: #fff;
    display: none;

    p {
        margin: 0;
    }

    p:not(:last-child) {
        margin-bottom: 10px;
    }
}