/*Block 1 (private-top)*/
.block22__wrap {
    position: relative;
    margin-bottom: 50px;
    padding: 20px 0;
    overflow: hidden;
}

.block22 .block22__top {
    flex-direction: row;
    margin-bottom: 40px;
}

.block22 .left_block {}

.block22 .left_block .title {
    margin-bottom: 30px;
}

.block22 .left_block .desc {
    margin-bottom: 30px;
}

.block22 .left_block,
.block22 .right_block {
    width: calc((100% - 20px) / 2);
}


.block22 .right_block .image {
    min-width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.block22 .right_block .image:before {
    width: 100%;
    display: block;
    content: "";
}

.block22 .right_block .image img {
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.block22__bottom {}

.block22__bottom .items {
    flex-direction: row;
    gap: 70px;
}

.block22__bottom .item {
    width: calc((100% - 70px) / 2);
    flex-direction: row;
    gap: 30px;
}

.block22__bottom .item .right-block .title {
    color: var(--color-link);
    margin-bottom: 10px;
}


@media (max-width: 820px) {}

@media (max-width: 440px) {

    .block22 .left_block,
    .block22 .right_block {
        width: 100%;
    }

    .block22 .block22__top {
        flex-direction: column;
    }

    .block22 .left_block .title {
        text-align: center;
    }

    .block22 .left_block .desc {
        text-align: center;
    }

    .block22 .left_block .link {
        text-align: center;
    }

    .block22__bottom .items {
        flex-direction: column;
        gap: 30px;
    }

    .block22__bottom .item {
        width: 100%;
    }
}