.widgets {
    max-width: 21.625rem;
    flex-grow: 1;
}

.widget-app {
    padding: 1.75rem;
    background-color: #F6F8F9;
    border-radius: 1.6875rem;
}

.widget__title {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    color: #363636;
}

.widget__title::after {
    content: '';
    display: block;
    max-width: 5.25rem;
    margin-bottom: 2rem;
    background-color: #33CC00;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1.1rem;
    width: 100%;
    height: 1px;
}

.widget-app__text {
    font-weight: 400;
    font-size: 1.3125rem;
    text-align: center;
    color: #363636;
}
.widget-app__text span {
    font-weight: 700;
}

.widget-app__imgs {
    margin-top: 1.75rem;
    position: relative;
    height: 19rem;
    text-align: center;
}
.widget-app__imgs img {
    width: 7.875rem;
    height: 16.875rem;
}
.widget-app__imgs > :first-child {
    bottom: 0;
    left: 2rem;
}
.widget-app__imgs > :last-child {
    top: 0;
    right: 2rem;
}

.widget-app__btns {
    margin-top: 0.125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.widget-app__btns > :last-child {
    margin-top: 1.125rem;
}

@media (max-width: 767px) {
    .widgets {
        max-width: 100% !important;
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
    }
}