@charset "utf-8";

.skill__main__movie video {
    width: 100%;
    background-color: #000000;
    height: 100vh;
    position: relative;
}

.skill__tip__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

section {
    width: 100%;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right__pic {
    width: 100%;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.skill__pic__left,
.skill__pic__right,
.skill__content {
    width: 50%;
}

.skill__pic__left img {
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
}

.skill__pic__right img {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
}

.skill__content .skill__content__wrap {
    width: 75%;
    margin: 0 auto;
    padding: 10px;
}

.skill__content .skill__content__wrap h2 {
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #0072b4 0%, #7bc0be 72%, #afebea 100%);
    background: -webkit-linear-gradient(-90deg, #0072b4 0%, #7bc0be 72%, #afebea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skill__content .skill__content__wrap ul {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.skill__content .skill__content__wrap ul li {
    width: 50%;
    line-height: 3;
    font-size: 20px;
}

@media screen and (max-width : 960px) {
    .skill__content .skill__content__wrap h2 {
        font-size: 25px;
        text-align: center;
        font-weight: bold;
        margin-bottom: 20px;
        background: linear-gradient(180deg, #0072b4 0%, #7bc0be 72%, #afebea 100%);
        background: -webkit-linear-gradient(-90deg, #0072b4 0%, #7bc0be 72%, #afebea 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .skill__content .skill__content__wrap ul {
        width: 95%;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }

    .skill__content .skill__content__wrap ul li {
        width: 50%;
        line-height: 1.8;
        font-size: 14px;
    }
}

@media screen and (max-width : 450px) {
    section {
        width: 100%;
        margin: 80px auto;
        display: block;
    }

    .right__pic {
        width: 100%;
        margin: 80px auto;
        display: block;
    }

    .skill__content .skill__content__wrap {
        width: 90%;
        margin: 0 auto;
        padding: 10px;
    }    

    .skill__pic__left,
    .skill__pic__right,
    .skill__content {
        width: 100%;
    }

    .skill__content .skill__content__wrap ul {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }    

    .skill__content .skill__content__wrap ul li {
        width: 45%;
        line-height: 1.8;
        font-size: 14px;
    }

}