.what-allows {
    margin: 120px 0;
}

.what-allows .features {
    display: flex;
    flex-direction: column;
    gap: 65px;
}

.what-allows .doesitfit-block h2 {
    margin-bottom: 61px;
}

.what-allows .feature {
    display: flex;
    align-items: center;
}

.what-allows .icon {
    width: 145px;
    height: 145px;
    margin-right: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-allows .icon img {
    width: 100%;
    height: auto;
}

.what-allows .description {
    display: flex;
    align-items: center;
    padding-left: 73px;
    flex: 1;
    position: relative;
}

.what-allows .description:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 90px;
    background: #333945;
}

.what-allows .description p {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .what-allows {
        margin: 100px 0 82px;
    }
    .what-allows .doesitfit-block h2 {
        margin-bottom: 35px;
    }
    .what-allows .feature {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .what-allows .icon {
        width: 59px;
        height: 59px;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .what-allows .description {
        display: flex;
        align-items: center;
        padding-top: 15px;
        padding-left: 0;
        flex: 1;
        position: relative;
        text-align: center;
    }
    .what-allows .description:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 1px;
        background: #333945;
    }
}