#cCube_codeSamples {
    background-color: #f7f6f9;
    padding: 140px 0 40px 0;
    overflow: hidden;
}

.cCube_codeSamples_frame {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.cCube_codeSamples_frame_title {
    font-size: 32px;
    font-weight: 700;
}

.cCube_codeSamples_frame_subtitle {
    max-width: 767px;
    font-family: 'RadikalTrial-Light', system-ui;
    font-weight: 400;
    font-size: 16px;
    /* font-size: 20px; */
    line-height: 1.5em;
    text-align: center;
    color: #768093;
}

.cCube_codeSamples_wrapper_block {
    position: relative;
    padding: 60px 20px;
}

.cCube_codeSamples_wrapper_block_line_bg {
    background-image: url("../images/code-samples/line.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cCube_codeSamples_block {
    display: flex;
    position: relative;
    justify-content: space-evenly;
    gap: 24px 48px;
}

.cCube_codeSamples_block_image_wrapper {
    position: relative;
}

.cCube_codeSamples_blue_rectangel {
    position: relative;
    background: #cfe3ea;
    border-radius: 8px;
    width: 486px;
    height: 440px;
    z-index: 9;
}

.cCube_codeSamples_block_image_wrapper > .cCube_codeSamples_block_image {
    position: absolute;
    z-index: 10;
}

.cCube_codeSamples_block_image_wrapper > .cCube_codeSamples_block_image_left {
    top: 24px;
    left: 24px;
}

.cCube_codeSamples_block_image_wrapper > .cCube_codeSamples_block_image_right {
    top: 24px;
    right: 24px;
}

.cCube_codeSamples_block_image_puzzle {
    position: absolute;
    top: 0;
    left: -348px;
}

.cCube_codeSamples_block_info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 11;
    max-width: 420px;
}

.cCube_codeSamples_block_info_title {
    color: #222222;
    font-family: "RadikalTrial-Bold", sans-serif;
    font-weight: 700;
    position: relative;
    font-size: 24px;
    line-height: 1.5em;
}

.cCube_codeSamples_block_info_subtitle {
    color: #768093;
    text-align: center;
    font-family: "RadikalTrial-Regular", sans-serif;
    font-size: 24px;
    font-weight: 400;
    position: relative;
}

.cCube_codeSamples_block_info_platforms {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cCube_codeSamples_platform_button {
    display: flex;
    align-items: center;
    background: #f7f6f9;
    border-radius: 8px;
    border-style: solid;
    border-color: #2f99ae;
    border-width: 2px;
    padding: 8px 16px;
    flex-shrink: 0;
    position: relative;
    text-decoration: none;
}

.cCube_codeSamples_platform_button_title {
    color: #2f99ae;
    text-align: left;
    font-family: "RadikalTrial-Medium", sans-serif;
    font-size: 16px;
    font-weight: 500;
}


@media screen and (max-width: 768px) {
    #cCube_codeSamples {
        padding: 90px 0 30px 0;
    }

    .cCube_codeSamples_block {
        gap: 24px;
    }

    .cCube_codeSamples_blue_rectangel {
        background: #cfe3ea;
        border-radius: 8px;
        width: 386px;
        height: 340px;
    }
    
    .cCube_codeSamples_block_image_wrapper>img {
        position: absolute;
        top: 24px;
        left: 24px;
        width: 386px;
        height: 340px;
    }

    .cCube_codeSamples_block_info {
        align-items: center;
    }

    .cCube_codeSamples_block_info_title {
        text-align: center;
    }

    .cCube_codeSamples_block_with_image_left {
        flex-wrap: wrap-reverse;
    }
    
    .cCube_codeSamples_block_with_image_right {
        flex-wrap: wrap;
    }

    .cCube_codeSamples_block_info_platforms {
        justify-content: center;
    }
}

@media screen and (max-width: 500px) {
    .cCube_codeSamples_wrapper_block {
        padding: 40px 0;
    }

    .cCube_codeSamples_blue_rectangel {
        background: #cfe3ea;
        border-radius: 8px;
        width: 286px;
        height: 240px;
    }

    .cCube_codeSamples_block_image_wrapper>img {
        position: absolute;
        top: 24px;
        left: 24px;
        width: 286px;
        height: 240px;
    }

    .cCube_codeSamples_block_info {
        gap: 12px;
    }
    
    .cCube_codeSamples_platform_button {
        flex-basis: 30%;
        padding: 8px 16px;
    }
}