/*секция с кнопками*/
.action-block {
    background: rgba(240, 241, 245, 0.8);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

@media screen and (min-width: 426px) {
    .action-block.page-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.action-block__bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.action-block::before {
    content: '';
    position: absolute;
    width: 202px;
    height: 202px;
    left: -3%;
    top: 25%;
    background: #009FC2;
    filter: blur(238px);
    border-radius: 50%;
    z-index: -1;
}

.action-block__bg::before {
    content: '';
    position: absolute;
    width: 744px;
    height: 744px;
    left: 67%;
    top: -10%;
    background: #01B8C4;
    opacity: 0.4;
    filter: blur(238px);
    border-radius: 50%;
}

.action-block__bg::after {
    content: '';
    position: absolute;
    width: 472px;
    height: 472px;
    left: 70%;
    top: -7%;
    background: #009FC2;
    filter: blur(238px);
    border-radius: 50%;
}

.action-block__row {
    justify-content: space-between;
}

.action-block__content:not(:first-child) {
    margin-top: 55px;
}

.action-block__title {
    margin-bottom: 16px;
}

.action-block__btns {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

@media screen and (max-width: 900px) {
    .action-block__img {
        display: none;
    }

    .action-block__col {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .action-block__btns {
        flex-direction: column;
    }
}