#differences {
    margin: 6px 0 15px 0;
}

#differences h3 {
    font-size: 33px;
    margin-top: 0;
    margin-bottom: 55px;
    line-height: 1.3em;
}

#differences h3 span {
    font-size: 97px;
}

.difference {
    max-width: 300px;
    height: 100%;
}


.difference .d-image {
    flex-basis: 100%;
    max-width: 200px;
    height: 98px;
    position: relative;
    margin-bottom: 29px;
}

.difference h5 {
    position: relative;
    font-size: 20px;
    line-height: 1.5em;
    margin-top: 5px;
    color:#000;
}

.difference h5::after {
    content: '';
    position: absolute;
    background-color: var(--yellow);
    height: 2px;
    width: 40px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.difference p {
    font-size: 15px;
    line-height: 21px;
    color: #000;
}


@media screen and (max-width: 1199px) {
    .difference+.difference {
        margin-left: 25px;
    }
}

@media screen and (max-width: 1199px) {

    .difference,
    .difference+.difference {
        margin: 15px 12.5px;
    }
}

@media screen and (max-width: 768px) {
    .difference {
        width: 100%;
        max-width: 240px;
        flex-basis: calc(50% - 25px);
    }
}

@media screen and (max-width: 567px) {
    #differences {
        padding: 25px 0 52px 0;
        margin: 0;
    }

    #differences h3 {
        font-size: 20px;
        line-height: 24px;
        margin: 0 auto 45px auto;
    }

    #differences h3 span {
        font-size: 72px;
        margin-top: 16px;
        display: block;
    }

    #differences .difference-list {
        gap: 22px;
    }

    #differences .difference {
        flex-basis: 100%;
        max-width: unset;
        margin: 0;
        text-align: left;
        align-items: flex-start;
    }

    .difference .d-image {
        flex-basis: 80px;
        align-items: flex-start;
        justify-content: flex-start;
        height: unset;
    }

    .difference .d-image img {
        height: auto;
        margin: 0;
    }

    .difference.d-1 .d-image img {
        width: 62px;
    }

    .difference.d-2 .d-image img {
        width: 62px;
    }

    .difference.d-3 .d-image img {
        width: 62px;
    }

    .difference.d-4 .d-image img {
        width: 62px;
    }

    .difference .d-text {
        padding-left: 10px;
        padding-right: 0;
        flex: 1;
        align-self: flex-start;
    }

    .difference h5 {
        font-size: 18px;
        margin: 0 0 10px 0;
        padding: 0
    }

    .difference h5::after {
        top: 30px;
        left: 1px;
        transform: none;
    }

    .difference h5 br {
        display: none;
    }

    .difference p {
        font-size: 13px;
        line-height: 19px;
    }

    .difference p br {
        display: none;
    }
}