@import url('global.css');

body{
    /* height: 100vh; */
    /* height: calc(100vh - 70px); */
}

.app_wrapper{
    background-image:
        url('../source/img/app/aibg.png'),
        linear-gradient(to bottom, #fff 35%, #cfbae1 82%);

    background-repeat: no-repeat,no-repeat;
    background-position:
        left bottom,
        0 0;

    background-size: 30% ,cover;

    z-index: 0;
    height: calc(100vh - 60px - 70px);
    padding: 0px;

}

.app_wrapper .content{
    padding: 5% 0 5% 30%;
    width: 80%;

    display: flex;
}

.content_txt{
    width: 80%;
    margin: 50px 0px 0 10px;
}

.content_txt h1{
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.58;
    color: #3c6e71;

    position: relative;
    z-index: 0;
}

.content_txt h1:before{
    position: absolute;
    left: -28%;
    top: -79%;
    
    content: '';

    width: 150px;
    height: 150px;

    background-image: url('../source/img/app/tag.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    z-index: -1;
}

.content_txt h2{
    height: 59px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.48;
    color: #3c6e71;
}

.content_txt ul{
    padding-left: 25px;
    list-style: circle;

    margin: 25px 0;
}

.content_txt li{
    font-size: 16px;
    line-height: 1.6;
    color: #6d7676;
}

.content_txt .button{
    margin-top: 60px;
    display: flex;
}

.content_txt .button a{
    flex-direction: column;
    margin-right: 20px;

    display: block;
    width: 150px;

    padding: 10px 10px;
    border-radius: 6px;
    background-color: #3c6e71;
    color: #fff;

    text-decoration: none;
    text-align: center;

    font-weight: 500;
    font-size: 1.25rem;
}

.content_txt .button a:last-child{
    background-color: #ffff;
    border: dashed 1px #3c6e71;
    color: #3c6e71;
}

.content_txt .button a:hover{
    background-color: #264748;;
}

.content_txt .button a:last-child:hover{
    background-color: #daf5f7;
}

.app_img{
    width: 100%;
    margin-top: 5px;
}

.app_img img{
    display: block;
    width: 35%;

    clip-path: inset(0% 0.5px 0% 0% round 45px);
}



@media screen and (max-width: 428px){

    body{
    }

    .app_wrapper{
        background-color: rgb(237, 229, 244);
        background-image:
            url('../source/img/app/aibg.png');
        background-repeat: no-repeat;
        background-position:
            left bottom;
        background-size: 50%;
        z-index: 0;
        padding: 0px 0 155px 0;
    }

    .app_wrapper .content{
        padding: 15px;
        margin: 0 auto;
        width: 80%;

        display: flex;
        flex-direction: column-reverse;
    }

    .content_txt{
        width: 100%;
        margin: 25px 0px;
        text-align: center;
    }

    .content_txt h1{
        text-indent: 1em;
        font-size: 32px;
        font-weight: 900;
        line-height: 1.58;
        color: #3c6e71;
        /* position: relative; */
        z-index: 0;
    }

    .content_txt h1:before{
        position: absolute;
        left: -10%;
        top: -40%;
        content: '';
        width: 100px;
        height: 100px;
        background-image: url('../source/img/app/tag.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        z-index: -1;
    }

    .content_txt h2{
        height: auto;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.48;
        color: #3c6e71;
    }

    .content_txt ul{
        text-align: left;
        padding: 0 20px 0 50px;
        list-style: circle;
        margin: 25px 0;
    }

    .content_txt li{
        font-size: 16px;
        line-height: 1.6;
        color: #6d7676;
    }

    .content_txt .button{
        margin-top: 0px;
        display: flex;
        flex-direction: column;
        padding-left: 30px;
    }

    .content_txt .button a{
        flex-direction: column;
        margin: 5px 15px;
        display: block;
        width: auto;
        padding: 10px 10px;
        border-radius: 6px;
        background-color: #3c6e71;
        color: #fff;
        text-decoration: none;
        text-align: center;
        font-weight: 500;
        font-size: 16px;
    }

    .content_txt .button a:last-child{
        background-color: #ffff;
        border: dashed 1px #3c6e71;
        color: #3c6e71;
    }

    .content_txt .button a:hover{
        background-color: #264748;;
    }

    .content_txt .button a:last-child:hover{
        background-color: #daf5f7;
    }

    .app_img{
        width: 80%;
        margin: 5px auto;
    }

    .app_img img{
        display: block;
        width: 100%;

        clip-path: inset(0% 0.5px 0% 0% round 35px);
    }

    .app_wrapper{
        height: auto;   
    }
}