.case_study_top {
    display: flex;
    height: 574px;
    padding: 16px 0px 0px 0px;
    background: #060620;
    position: relative;
}

.case_study_top_img {
    position: absolute;
    right: 0%;
    bottom: -5%;
    max-width: 50%;
}

.case_study_top_block {
    display: flex;
    align-self: stretch;
    position: relative;
}

.case_study_top_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    flex: 1 0 0;
}

.case_study_breadcrumbs {
    display: flex;
    align-items: center;
    gap: 4px;
    align-self: stretch;
}

.case_study_breadcrumbs_a {
    display: flex;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #11C6CC;
    font-family: 'Play', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.case_study_breadcrumbs_a:hover, case_study_breadcrumbs_a:hover svg path {
    color: #15F7FF;
    fill: #15F7FF;
    cursor: pointer;
}

.case_study_breadcrumbs_text {
    color: #3E4450;
    font-family: 'Play', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    cursor: default;
}

.case_study_top_text_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    align-self: stretch;
    z-index: 2;
}

.case_study_top_text_block_title {
    align-self: stretch;
    color: #11C6CC;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.case_study_top_text_block_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.case_study_top_text_block_text_svg {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    align-self: stretch;
    flex: 1 0 0;
    color: #F3FFFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.button-play-wrap {
    width: 50%;
    position: relative;
}

.case_study_top_block .button-play {
    display: none;
    position: absolute;
    top: 18%;
    left: 10%;
    width: 60px;
    height: 60px;
    padding: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #060620;
    animation: shadow-rotate 4s linear infinite;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.play-around {
    width: 76px;
    height: 76px;
    position: absolute;
    right: -8px;
    bottom: -8px;
    z-index: 1;
    animation: rotate-circle 4s linear infinite;
}

@keyframes rotate-circle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shadow-rotate {
    0%, 100% {
        box-shadow: -2px 1px 2px 0px #15F7FF, 2px 2px 2px 0px #155FFF;
    }

    25% {
        box-shadow: 0px -2px 2px 0px #15F7FF, 0px 2px 2px 0px #155FFF;
    }
    50% {
        box-shadow: 2px 1px 2px 0px #15F7FF, -2px 1px 2px 0px #155FFF;
    }
    75% {
        box-shadow: 0px 2px 2px 0px #15F7FF, 0px -2px 2px 0px #155FFF;
    }
}

.modal_video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;

}

.modal_video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal_video_content {
    position: relative;
    z-index: 1;
    max-width: 935px;
    width: 90%;
    height: auto;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(280deg, rgba(21, 247, 255, 0.00) 79.47%, #15F7FF 95.56%),
    linear-gradient(104deg, rgba(21, 95, 255, 0.00) 71.55%, #155FFF 97.06%);
}

.modal_video_content video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    background: #000;
}

.case_study_top_svg_arrow {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    animation: jumpArrowCaseStudy 1.6s ease-in-out infinite;
    z-index: 1;
}

@keyframes jumpArrowCaseStudy {
    0%, 100% {
        bottom: 3%;
    }
    50% {
        bottom: -6%;
    }
}

.case_study_posts {
    display: flex;
    padding: 68px 0px 56px 0px;
}

.case_study_posts .container {
    display: flex;
    flex-direction: column;
    gap: 112px;
}

.case_study_post_container {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    align-self: stretch;
}
.case_study_post_container.reverse {
    flex-direction: row-reverse;
}
.case_study_post_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
}

.case_study_post_title {
    align-self: stretch;
    color: #082666;
    font-family: 'Play', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.case_study_post_text_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.case_study_post_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    color: #3E4450;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.case_study_info_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.case_study_info_block_title {
    align-self: stretch;
    color: #0D3999;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.case_study_scaling_bottom_content {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.case_study_scaling_bottom_content_svg {
    width: 45px;
    height: 34px;
    transform: rotate(-5deg);
    aspect-ratio: 45/34;
}

.case_study_scaling_bottom_content_text {
    flex: 1 0 0;
    color: #3E4450;
    font-family: 'Proxima Nova',sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.case_study_scaling_bottom_content_svg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(3px 1px 6px rgba(21, 95, 255, 0.40))
    drop-shadow(-4px 1px 6px rgba(21, 247, 255, 0.40));
    transition: filter 0.5s ease;
}

.case_study_scaling_bottom_content:hover .case_study_scaling_bottom_content_svg svg {
    animation: shadowCycleScalingStudy 1.22s infinite;
}

.case_study_scaling_bottom_content:hover .case_study_scaling_bottom_content_text {
    cursor: default;
    transform: translateY(-2px);
}

@keyframes shadowCycleScalingStudy {
    0% {
        filter:
                drop-shadow(3px 0px 6px rgba(21, 95, 255, 0.4))
                drop-shadow(-3px 0px 6px rgba(21, 247, 255, 0.4));
    }
    25% {
        filter:
                drop-shadow(0px 3px 6px rgba(21, 95, 255, 0.4))
                drop-shadow(0px -3px 6px rgba(21, 247, 255, 0.4));
    }
    50% {
        filter:
                drop-shadow(-3px 0px 6px rgba(21, 95, 255, 0.4))
                drop-shadow(3px 0px 6px rgba(21, 247, 255, 0.4));
    }
    75% {
        filter:
                drop-shadow(0px -3px 6px rgba(21, 95, 255, 0.4))
                drop-shadow(0px 3px 6px rgba(21, 247, 255, 0.4));
    }
    100% {
        filter:
                drop-shadow(3px 0px 6px rgba(21, 95, 255, 0.4))
                drop-shadow(-3px 0px 6px rgba(21, 247, 255, 0.4));
    }
}

.case_study_info_final_text {
    align-self: stretch;
    color: #3E4450;
    font-family: 'Proxima Nova',sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.case_study_img_post {
    transition: all 0.4s ease ;
    transform: scale(1.3);
}

.case_study_image_container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: #060620;
    border-radius: 16px;
}

.case_study_image_container_mob {
    display: none;
}

.case_study_post_container:not(.reverse) .case_study_image_container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 185px solid white;
    border-right: 175px solid transparent;
}

.case_study_post_container.reverse .case_study_image_container::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 185px solid white;
    border-left: 175px solid transparent;
}

.case_study_post_container:not(.reverse) .case_study_image_button {
    position: absolute;
    bottom: -100px;
    left: 2%;
    transition: bottom 0.3s ease;
    display: flex;
    padding: 12px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    color: #0D9499;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.case_study_post_container.reverse .case_study_image_button {
    position: absolute;
    bottom: -100px;
    right: 2%;
    transition: bottom 0.3s ease;
    display: flex;
    padding: 12px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    color: #0D9499;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.case_study_post_container.reverse .case_study_image_button:hover, .case_study_post_container:not(.reverse) .case_study_image_button:hover, .case_study_image_button:hover svg path {
    cursor: pointer;
    color: #15F7FF;
    fill: #15F7FF;
}

.case_study_image_container:hover .case_study_image_button {
    bottom: 10px;
    z-index: 1;
}

.case_study_image_container:hover .case_study_img_post {
    transform: scale(1);
}

.case_study_image_container {
    height: 478px;
    width: 40%;
}

.case_study_profit {
    display: flex;
    padding: 56px 0px;
    background: #060620;
}

.case_study_profit_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.case_study_profit_text_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.case_study_profit_text_block_title {
    align-self: stretch;
    color: #11C6CC;
    font-family: 'Play', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.case_study_profit_text_block_text {
    align-self: stretch;
    color: #C4C5C9;
    font-family: 'Proxima Nova',sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.case_study_profit_content_cards {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
}

.case_study_profit_content_card {
    display: flex;
    padding: 12px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 8px;
    background: #060620;
    box-shadow: 2px 2px 4px 0px rgba(21, 247, 255, 0.08), 4px 4px 55px 0px rgba(0, 0, 0, 0.34);
    transition: box-shadow 0.3s ease;
}

.case_study_profit_content_card:hover {
    animation: moveShadow 2s linear infinite;
}

@keyframes moveShadow {
    0% {
        box-shadow:
                -4px 0 4px 0 rgba(21, 95, 255, 0.12),
                0 4px 12px 0 rgba(21, 247, 255, 0.34);
        transform: translate(-2px, 2px);
    }
    25% {
        box-shadow:
                0 -4px 4px 0 rgba(21, 95, 255, 0.12),
                -4px 0 12px 0 rgba(21, 247, 255, 0.34);
        transform: translate(-2px, -2px);
    }
    50% {
        box-shadow:
                4px 0 4px 0 rgba(21, 95, 255, 0.12),
                0 -4px 12px 0 rgba(21, 247, 255, 0.34);
        transform: translate(2px, -2px);
    }
    75% {
        box-shadow:
                0 4px 4px 0 rgba(21, 95, 255, 0.12),
                4px 0 12px 0 rgba(21, 247, 255, 0.34);
        transform: translate(2px, 2px);
    }
    100% {
        box-shadow:
                -4px 0 4px 0 rgba(21, 95, 255, 0.12),
                0 4px 12px 0 rgba(21, 247, 255, 0.34);
        transform: translate(-2px, 2px);
    }
}


.case_study_profit_content_card_text_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.case_study_profit_content_card_title {
    align-self: stretch;
    color: #15F7FF;
    font-family: 'Proxima Nova',sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.case_study_profit_content_card_text {
    align-self: stretch;
    color: #F3FFFF;
    font-family: 'Proxima Nova',sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

@media only screen and (max-width: 1200px) {
    .case_study_top_text_block_title {
        font-size: 40px;
    }

    .case_study_top_text_block_text_svg {
        font-size: 14px;
    }

    .case_study_img_post {
        transform: scale(1);
    }

    .case_study_scaling_bottom_content {
        pointer-events: none;
    }

    .case_study_posts {
        padding: 44px 0px 32px 0px;
    }

    .case_study_top_img {
        bottom: -2%;
        width: 49%;
    }

    .case_study_post_title {
        font-size: 28px;
    }

    .case_study_post_text, .case_study_scaling_bottom_content_text {
        font-size: 16px;
    }

    .case_study_post_content {
        gap: 16px;
    }

    .case_study_post_container {
        gap: 32px;
    }

    .case_study_post_text_block {
        gap: 12px;
    }

    .case_study_info_block {
        gap: 8px;
    }

    .case_study_post_container:not(.reverse) .case_study_image_button {
        left: 2%;
        bottom: 10px;
        z-index: 1;
        font-size: 22px;
    }

    .case_study_post_container.reverse .case_study_image_button {
        right: 2%;
        bottom: 10px;
        z-index: 1;
        font-size: 22px;
    }

    .case_study_info_final_text {
        font-size: 16px;
        padding-top: 8px;
    }

    .case_study_profit {
        padding: 32px 0px;
        pointer-events: none;
    }

    .case_study_profit_text_block_title {
        font-size: 28px;
    }

    .case_study_profit_content_card_title, .case_study_profit_content_card_text {
        font-size: 16px;
    }

    .case_study_profit_text_block, .case_study_profit_content_cards {
        gap: 24px;
    }

    .case_study_profit_content_card {
        flex: 1 0 calc(50% - 12px);
        box-sizing: border-box;
    }

    .case_study_top_text_block {
        gap: 32px;
    }

    .case_study_top_content {
        gap: 20px;
    }
}

@media only screen and (max-width: 767.98px) {
    .case_study_top_img {
        display: none;
    }

    .case_study_top {
        padding: 12px 0px;
        height: 514px;
    }

    .case_study_posts {
        padding: 32px 0px;
    }

    .case_study_top_text_block_title {
        font-size: 32px;
    }

    .case_study_top_content {
        gap: 12px;
    }

    .case_study_image_container {
        display: none;
        height: 300px;
        width: 100%;
        justify-content: center;
    }

    .case_study_image_container_mob {
        display: flex;
    }
}

@media only screen and (max-width: 575.98px) {
    .case_study_post_title {
        font-size: 24px;
    }

    .case_study_post_content {
        gap: 20px;
    }

    .case_study_post_text_block {
        gap: 16px;
    }

    .case_study_post_container:not(.reverse) .case_study_image_button, .case_study_post_container.reverse .case_study_image_button {
        font-size: 14px;
    }

    .case_study_image_button svg {
        width: 14px;
        height: 11px;
    }
    .case_study_image_button.solutions-btn {
        font-size: 12px;
    }

    .case_study_post_container:not(.reverse) .case_study_image_container::after {
        border-bottom: 115px solid white;
        border-right: 115px solid transparent;
    }

    .case_study_post_container.reverse .case_study_image_container::after {
        border-bottom: 115px solid white;
        border-left: 115px solid transparent;
    }

    .case_study_info_block_title {
        font-size: 20px;
    }

    .case_study_posts .container {
        gap: 64px;
    }

    .case_study_profit_content_card {
        flex: 1 0 calc(100%);
        box-shadow: -4px -4px 4px 0px rgba(21, 95, 255, 0.12), 0px 4px 12px 0px rgba(21, 247, 255, 0.34);
    }

    .case_study_profit_text_block_title {
        font-size: 24px;
    }

    .case_study_profit_text_block, .case_study_profit_content_cards {
        gap: 20px;
    }

    .case_study_profit_block, .case_study_profit_content_card {
        gap: 16px;
    }



}