.it_banner{
    .it_banner_content {
        .it_banner_desc {
            br {
                display: none;
            }
        }
    }
}

.it_content_3 {
    display: grid;
    grid-template-columns: 50% 50%;

    .it_content_img_3 {
        display: flex;
        flex-direction: row;
        justify-content: center;

        .it_3_article {
            width: 900px;
            transform: translate(-60px, -180px);
        }

        /* .it_3_img {
            width: 26.25rem;
            height: fit-content;
        } */
    }
    .it_3_text{
        .so_box {
            .so_box_title {
                width: 100%;
                height: 60px;
                border-radius: 10px;
                font-size: 24px;
                padding-left: 25px;
                color: #ffffff;
                background: linear-gradient(90deg, #25BFB6 1%, #41E596 80%);
                position: relative;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                cursor: pointer;
                transition: margin-bottom 0.15s ease;
            }

            .so_box_title:hover {  
                color: #25BFB6;
                border: 1px solid #25BFB6;
                background: #fff;
            }

            .so_box_desc {
                z-index: -1;
                position: absolute;
                color: #25BFB6;
                border: 1px solid #25BFB6;
                background: #fff;
                width: 100%;
                padding-inline: 25px;
                border-radius: 10px;
                font-size: 24px;
                height: 60px;
                overflow: hidden;
            }

            .expanded {
                height: auto;
            }
        }
    }
}

.it_content_2 {
    .it_2_text:hover {
        cursor: default;
        background: linear-gradient(to right, #25bfb6, #32d0a7, #3ddf9a, #41e596);
        border-color: linear-gradient(to right, #25bfb6, #32d0a7, #3ddf9a, #41e596);
    }
}

@media (max-width: 995px) {
    .it_banner{
        .it_banner_content {
            .it_banner_desc {
                br {
                    display: none;
                }
            }
        }
    }
}