.notice_box_2
{
    border-radius: 50px;
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 6fr;
    box-shadow: 0 5px 15px 0 rgba(82, 19, 210, 0.5);
}
.notice_box_2 .icon
{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0344b3;
    font-size: 50px;
    background-color: #ffffff;
}
.notice_box_2 .content
{
    background-color: transparent;
    background-image: linear-gradient(150deg, #0344b3 0%, #5213d2 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}
.notice_box_2 .content .title {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
}
.notice_box_2 .content .sub-title {
    color: #ffffff;
}
.notice_box_2 .content .link
{
    padding: 10px 30px;
    border-radius: 30px;
    color: #0344b3;
    background-color: #ffffff;
}

@media screen and (max-width: 767px){
    .notice_box_2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .notice_box_2 > div,
    .notice_box_2 .content > div,
    .notice_box_2 .content a {
        width: 100%;
    }
    .notice_box_2 .icon {
        padding: 10px;
        min-height: 100px;
    }
    .notice_box_2 .content {
        flex-wrap: wrap;
    }
    .notice_box_2 .content {
        flex-wrap: wrap;
        gap: 15px;
    }
}