.article {
    padding-bottom: 120px;
}

.article-title-large {
    font-size: 48px;
}

.article-title-medium {
    font-size: 36px;
}

.article-text {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #535755;
}

.article-text:last-child{
    margin-bottom: 0;
}

.article-mb-1 {
    margin-bottom: 80px;
}
.article-mb-2 {
    margin-bottom: 40px;
}

.article-decore-wrapper{
    position: relative;
}

.article-decore-wrapper::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 528px;
    height: 48px;
    background: url("../images/decor-icon.svg") no-repeat;
}

.article-decore-wrapper-1::before{
    top: 100px;
    left: -350px;
}
.article-decore-wrapper-2::before{
    right: -350px;
    bottom: 136px;
}

.article-play-button{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #3596ED;
    cursor: pointer;
    transition:background-color .2s;
}

.article-play-button:hover{
    background-color: #3a9ef5;
}

.article-play-button:not(:disabled):active{
    background-color:#217ccc;
}

.article-img {
    width: 100%;
}

.article-list {
    margin-top: 0;
    padding-left: 0;
}

.article-item {
    position: relative;
    padding-left: 16px;
    
}
.article-item:not(:last-child){
    margin-bottom: 12px;
}

.article-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3596ed;
}


