.page-action{
    background-color: var(--color-header-link);
    padding: 60px 0;
    box-sizing: border-box;
}
.page-action__wrapp{
    flex-direction: column;
}
.page-action__body{
    
}
.page-action__desc{
    margin-bottom: 20px;
}
.page-action__img{
    position: relative;
    padding: 0 0 70% 0;
}
.page-action__img img{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.page-action__column{
    background-color: var(--color-white);
    box-shadow: 0px 60px 80px -20px rgba(154, 156, 165, 0.25), 0px 30px 24px -1px rgba(154, 156, 165, 0.05), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 4px 4px -4px rgba(30, 33, 44, 0.03);
    border-radius: 4px;
    padding: 22px;
    box-sizing: border-box;
    margin-bottom: 20px;
    transform: scale(0);
    transition: .7s ease all;
}
.page-action__column._active{
    transform: scale(1);
    transition: .7s ease all;
}
.page-action__column:last-child{
    margin-bottom: 0;
}
.page-action__title{
    flex: 1 1 auto;
    margin-top: 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
}
.page-action__date{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--color-f3f3);
    margin-top: 35px;
    display: flex;
    align-items: center;
}
.page-action__date::before{
    content:'';
    width: 30px;
    height: 30px;
    background: url('../images/actions/icons/01.svg') no-repeat center / cover;
    margin-right: 8px;
}

@media(min-width:1000px){
    .page-action{
        padding: 130px 0;
        font-family:var(--font-family-ubuthu);
    }
    .page-action__body{
        display: flex;
        justify-content: space-between;
    }
    .page-action__wrapp{
        display: flex;
        flex: 1 1 auto;
        flex-direction: row;
        gap: 45px;
    }
    .page-action__desc{
        margin-right: 73px;
        flex: 0 0 310px;
        text-align: left;
        margin-bottom: 0;
    }
    .page-action .container-content{
        align-items: flex-start;
    }
    .page-action .content-page__info-large{
        font-size: 22px;
        font-weight: var(--semiBold);
        font-family:sans-serif;
    }
    .page-action__column{
        flex: 0 1 50%;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

}