section.block-framework,
section.block-framework:first-child,
section.block-framework:last-child{
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    background: linear-gradient(270deg, #6468F2 0%, #4BD1F1 100%);
    border-radius: 64px 0 65px 0;
    padding: 100px 0;
}
.block-framework .heading .title h1,
.block-framework .heading .title h2,
.block-framework .heading .title h3,
.block-framework .heading .title h4,
.block-framework .heading .title h5,
.block-framework .heading .title h6,
.block-framework .heading .title p{
    font-size: 44px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: -0.01em;
    color: var(--bg);
    text-align: center;
    margin-top: 0;
    margin-bottom: 56px;
}
.block-framework .heading .title h1 span,
.block-framework .heading .title h2 span,
.block-framework .heading .title h3 span,
.block-framework .heading .title h4 span,
.block-framework .heading .title h5 span,
.block-framework .heading .title h6 span,
.block-framework .heading .title p span {
    background: linear-gradient(270deg, #ADF17B 0%, #4BD1F1 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.grid-framework{
    display: grid;
    grid-template-columns: repeat(5, minmax(auto, 1fr));
    grid-gap: 24px;
    margin-left: 24px;
    margin-right: 24px;
}
.grid-framework .item-framework{
    position: relative;
}
.grid-framework .meta-framework{
    position: relative;
    z-index: 1;
    border-radius: 24px;
    padding: 12px;
    margin-top: 132px;
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(227, 227, 227, 0.7);
    box-shadow: 50px 50px 100px 0 rgba(1, 16, 39, 0.16);
}
.grid-framework .meta-framework .title{
    position: relative;
    background: linear-gradient(270deg, rgba(100, 104, 242, 0.3) 0%, rgba(75, 209, 241, 0.3) 100%);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    padding: 12px 32px 12px 8px;
    cursor: pointer;
}
.grid-framework .meta-framework .title::after{
    position: absolute;
    right: 8px;
    bottom: 8px;
    top: 8px;
    margin: auto;
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("./ic_framework.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.grid-framework .images-framework{
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 0;
}
.grid-framework .images-framework .image img{
    max-width: 182px;
}
.grid-framework .item-framework .item-element{
    display: none;
    padding: 24px 16px;
    background: rgba(249, 249, 251, 1);
    box-shadow: 50px 50px 100px 0 rgba(1, 16, 39, 0.16);
    border-radius: 16px;
    border: 1px solid rgba(227, 227, 227, 0.7);
    margin-top: 16px;
}
.grid-framework .meta-framework.open .item-element{
    display: block;
}
.grid-framework .item-framework .item-element p{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.01em;
}
.grid-framework .item-framework .item-element p.element-title{
    font-weight: 700;
    margin-bottom: 2px;
}
.block-framework .inner-framework .buttons{
    display: grid;
    max-width: 370px;
    margin: 56px auto 0;
}

/* Responsive */
@media only screen and (max-width: 980px) {
    section.block-framework, section.block-framework:first-child, section.block-framework:last-child{
        padding: 64px 0;
    }
    .block-framework .heading .title h1, .block-framework .heading .title h2, .block-framework .heading .title h3, .block-framework .heading .title h4, .block-framework .heading .title h5, .block-framework .heading .title h6, .block-framework .heading .title p{
        font-size: 32px;
        font-weight: 700;
        line-height: 36px;
    }
    .grid-framework {
        grid-template-columns: repeat(1, minmax(auto, 1fr));
        margin-left: 24px;
        margin-right: 24px;
    }
}