#banner {
    width: 100%;
    height: 100%;
    position: relative;

    .boximg {
        display: none;

        img {
            width: 100%;
            object-fit: cover;
        }
    }

    .boximg:first-child {
        display: block;
    }

    #left,
    #right {
        position: absolute;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
        opacity: 0;
    }

    #lefts,
    #rights {
        width: 60px;
        height: 60px;
        transition: all linear .3s;
        border-radius: 50%;
        text-align: center;
        line-height: 60px;
        font-size: 30px;
        cursor: pointer;
        background: rgba(255, 255, 255, .4);
        text-shadow: 0px 0px 10px #000;
    }

    #box:hover label {
        opacity: 1;
    }

    #left {
        left: 0;
    }

    #right {
        right: 0;
    }




    #more {
        position: absolute;
        width: 100%;
        text-align: center;
        left: 0;
        bottom: 10px;
    }

    #more span {
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #000;
        border-radius: 100%;
        cursor: pointer;
        margin-right: 5px;
    }

    #more span:hover {
        background: red;
    }

    #more span.active {
        background: red;
    }
}

#team {
    width: 100%;
    padding: 3rem 1rem 3rem 1rem;

    float: left;

    .teams {
        width: 100%;
        float: left;
        border-radius: 1rem;
        background-color: #fefefe;

        .teamkg2 {
            padding: 1rem 1rem;
            width: 100%;
            float: left;

            .teamkg2sa {
                width: 26%;
                float: left;

                .teamkg2satx1 {
                    cursor: pointer;

                    .teamkg2satx11 {
                        width: 100%;

                        img {
                            width: 100%;
                            object-fit: cover;
                            border-radius: 1rem;
                        }
                    }

                    .teamkg2satx12 {
                        font-weight: bold;
                        padding: 1rem 0;

                    }

                    .teamkg2satx13 {
                        font-size: 12px;
                        color: #969090;
                        text-indent: 2em;
                    }

                    &:hover {
                        color: #fa9d2b;
                    }
                }

                .teamkg2satx2 {
                    font-size: 13px;

                    ul {
                        li {
                            cursor: pointer;

                            &:hover {
                                color: #fa9d2b;
                            }
                        }
                    }
                }
            }

            .teamkg2sb {
                width: 37%;
                float: left;
                padding: 0 1rem 0 1rem;

                .teamkg2sb1 {
                    display: flex;
                    align-self: center;
                    justify-content: space-between;
                    padding-bottom: 1rem;
                    cursor: pointer;

                    &:hover .teamkg2sb12 .teamkg2sb12tx1 {
                        color: #fa9d2b;
                    }

                    .teamkg2sb11 {
                        width: 40%;
                        height: 100px;
                        overflow: hidden;
                        border-radius: 7px;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        img {
                            width: 100%;
                            object-fit: cover;
                            border-radius: 7px;
                        }
                    }

                    .teamkg2sb12 {
                        width: 60%;
                        padding-left: 1rem;
                        display: flex;
                        justify-content: center;
                        flex-direction: column;

                        .teamkg2sb12tx1 {
                            font-weight: bold;

                        }

                        .teamkg2sb12tx2 {
                            color: #969090;
                            font-size: 11px;
                            padding-top: 0.7rem;
                        }
                    }
                }
            }

            .teamkg2sc {
                width: 37%;
                float: left;
                padding: 0 1rem 0 1rem;

                .teamkg2sc1 {
                    font-size: 18px;
                    font-weight: bold;
                    padding-bottom: 1rem;
                }

                .teamkg2sc2 {
                    width: 100%;
                    height: 120px;
                    overflow: hidden;
                    border-radius: 1rem;

                    img {
                        width: 100%;
                        object-fit: cover;
                        border-radius: 1rem;
                    }
                }

                .teamkg2sc3 {
                    width: 100%;

                    .teamkg2sc3tx {
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        margin-top: 1rem;
                        cursor: pointer;

                        &:hover .teamkg2sc3tx1 .teamkg2sc3tx12 {
                            color: #fa9d2b;
                        }

                        .teamkg2sc3tx1 {
                            display: flex;
                            font-size: 13px;

                            .teamkg2sc3tx11 {
                                width: 18px;
                                height: 18px;
                                background-color: red;
                                border-radius: 50%;
                                color: #fefefe;
                                text-align: center;
                                line-height: 18px;
                            }

                            .teamkg2sc3tx12 {
                                margin-left: 5px;
                            }
                        }

                        .teamkg2sc3tx2 {
                            font-size: 11px;
                            color: #969090;
                        }
                    }
                }
            }
        }
    }

    @media screen and(max-width:995px) {
        .teams {
            .teamkg2 {
                .teamkg2sa {
                    .teamkg2satx1 {
                        .teamkg2satx12 {
                            font-size: 11px;
                            padding: 6px 0;
                        }

                        .teamkg2satx13 {
                            font-size: 10px;
                        }
                    }

                    .teamkg2satx2 {
                        font-size: 11px;
                    }
                }

                .teamkg2sb {
                    .teamkg2sb1 {
                        .teamkg2sb11 {
                            height: 80px;
                        }

                        .teamkg2sb12 {
                            .teamkg2sb12tx1 {
                                font-size: 11px;
                            }

                            .teamkg2sb12tx2 {
                                font-size: 10px;
                            }
                        }
                    }
                }

                .teamkg2sc {
                    .teamkg2sc1 {
                        font-size: 14px;
                    }

                    .teamkg2sc3 {
                        .teamkg2sc3tx {
                            margin-top: 6px;

                            .teamkg2sc3tx1 {
                                font-size: 10px;

                                .teamkg2sc3tx11 {
                                    width: 13px;
                                    height: 13px;
                                    line-height: 13px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and(max-width:790px) {
        .teams {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 16px;
                }

                .teamkg1tx2 {
                    font-size: 8px;
                }
            }

            .teamkg2 {
                .teamkg2sa {
                    .teamkg2satx1 {
                        .teamkg2satx12 {
                            font-size: 9px;
                            padding: 6px 0;
                        }

                        .teamkg2satx13 {
                            font-size: 8px;
                        }
                    }

                    .teamkg2satx2 {
                        font-size: 9px;
                    }
                }

                .teamkg2sb {
                    .teamkg2sb1 {
                        .teamkg2sb11 {
                            height: 70px;
                        }

                        .teamkg2sb12 {
                            .teamkg2sb12tx1 {
                                font-size: 9px;
                            }

                            .teamkg2sb12tx2 {
                                font-size: 8px;
                                padding: 0.2rem;
                            }
                        }
                    }
                }

                .teamkg2sc {
                    .teamkg2sc1 {
                        font-size: 12px;
                    }

                    .teamkg2sc2 {
                        height: 80px;
                    }

                    .teamkg2sc3 {
                        .teamkg2sc3tx {
                            margin-top: 4px;

                            .teamkg2sc3tx1 {
                                font-size: 8px;

                                .teamkg2sc3tx11 {
                                    width: 11px;
                                    height: 11px;
                                    line-height: 11px;
                                }
                            }

                            .teamkg2sc3tx2 {
                                font-size: 8px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and(max-width:648px) {
        .teams {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 15px;
                }

                .teamkg1tx2 {
                    font-size: 7px;
                }
            }

            .teamkg2 {
                .teamkg2sa {
                    .teamkg2satx1 {
                        .teamkg2satx12 {
                            font-size: 8px;
                            padding: 4px 0;
                        }

                        .teamkg2satx13 {
                            font-size: 7px;
                        }
                    }

                    .teamkg2satx2 {
                        font-size: 8px;
                    }
                }

                .teamkg2sb {
                    .teamkg2sb1 {
                        .teamkg2sb11 {
                            height: 65px;
                        }

                        .teamkg2sb12 {
                            .teamkg2sb12tx1 {
                                font-size: 8px;
                            }

                            .teamkg2sb12tx2 {
                                font-size: 7px;
                                padding: 0.2rem;
                            }
                        }
                    }
                }

                .teamkg2sc {
                    .teamkg2sc1 {
                        font-size: 11px;
                    }

                    .teamkg2sc2 {
                        height: 70px;
                    }

                    .teamkg2sc3 {
                        .teamkg2sc3tx {
                            margin-top: 3px;

                            .teamkg2sc3tx1 {
                                font-size: 7px;

                                .teamkg2sc3tx11 {
                                    width: 10px;
                                    height: 10px;
                                    line-height: 10px;
                                }
                            }

                            .teamkg2sc3tx2 {
                                font-size: 7px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and(max-width:570px) {
        .teams {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 18px;
                }

                .teamkg1tx2 {
                    font-size: 8px;
                }
            }

            .teamkg2 {
                .teamkg2sa {
                    display: none;
                }

                .teamkg2sb {
                    width: 50%;

                    .teamkg2sb1 {
                        padding-bottom: 0.6rem;

                        .teamkg2sb11 {
                            height: 63px;
                        }

                        .teamkg2sb12 {
                            .teamkg2sb12tx1 {
                                font-size: 7px;
                            }

                            .teamkg2sb12tx2 {
                                font-size: 6px;
                                padding: 0.2rem;
                            }
                        }
                    }
                }

                .teamkg2sc {
                    width: 50%;

                    .teamkg2sc1 {
                        font-size: 11px;
                    }

                    .teamkg2sc2 {
                        height: 90px;
                    }

                    .teamkg2sc3 {
                        .teamkg2sc3tx {
                            margin-top: 3px;

                            .teamkg2sc3tx1 {
                                font-size: 8px;

                                .teamkg2sc3tx11 {
                                    width: 10px;
                                    height: 10px;
                                    line-height: 10px;
                                    font-size: 8px;
                                }
                            }

                            .teamkg2sc3tx2 {
                                font-size: 7px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and(max-width:480px) {
        .teams {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 16px;
                }

                .teamkg1tx2 {
                    font-size: 8px;
                }
            }

            .teamkg2 {
                .teamkg2sc {
                    width: 50%;

                    .teamkg2sc1 {
                        font-size: 11px;
                    }

                    .teamkg2sc2 {
                        height: 90px;
                    }

                    .teamkg2sc3 {
                        .teamkg2sc3tx {
                            margin-top: 3px;

                            .teamkg2sc3tx1 {
                                font-size: 8px;

                                .teamkg2sc3tx11 {
                                    width: 10px;
                                    height: 10px;
                                    line-height: 10px;
                                    font-size: 8px;
                                }

                                .teamkg2sc3tx12 {
                                    font-size: 7px;
                                }
                            }

                            .teamkg2sc3tx2 {
                                font-size: 5px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and(max-width:440px) {
        .teams {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 14px;
                }

                .teamkg1tx2 {
                    font-size: 6px;
                }
            }

            .teamkg2 {
                .teamkg2sb {
                    width: 50%;

                    .teamkg2sb1 {
                        padding-bottom: 0.3rem;

                        .teamkg2sb11 {
                            height: 50px;
                        }

                        .teamkg2sb12 {
                            .teamkg2sb12tx1 {
                                font-size: 6px;
                            }

                            .teamkg2sb12tx2 {
                                font-size: 5px;
                                padding: 0.2rem;
                            }
                        }
                    }
                }

                .teamkg2sc {
                    width: 50%;

                    .teamkg2sc1 {
                        font-size: 11px;
                    }

                    .teamkg2sc2 {
                        height: 65px;
                    }

                    .teamkg2sc3 {
                        .teamkg2sc3tx {
                            margin-top: 3px;

                            .teamkg2sc3tx1 {
                                font-size: 7px;

                                .teamkg2sc3tx11 {
                                    width: 9px;
                                    height: 9px;
                                    line-height: 9px;
                                    font-size: 6px;
                                }
                            }

                            .teamkg2sc3tx2 {
                                font-size: 5px;
                            }
                        }
                    }
                }

            }

        }
    }
}

#about {
    width: 100%;
    padding: 3rem 0;
    float: left;

    .abouts {
        float: left;
        background-color: #fefefe;
        width: 100%;
        box-shadow: 0px 3px 10px #ebebeb;

        .teamkg1 {
            float: left;
        }

        .aboutbox {
            width: 100%;
            float: left;
            display: flex;
            margin-bottom: 2rem;

            .aboutboxx {
                width: 20%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                cursor: pointer;
                padding: 2rem 0;

                &:hover {
                    background-color: #eaeaea;
                }

                .aboutboxtoux {
                    width: 130px;
                    height: 130px;
                    border-radius: 50%;
                    background-color: #fefefe;
                    box-shadow: 0px 0px 25px #d6d5d5;

                    .aboutboxtouximg {
                        width: 100%;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        img {
                            width: 90%;
                            object-fit: cover;
                        }
                    }
                }

                .aboutboxtx {
                    margin-top: 1rem;

                    .aboutboxtx1 {
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        .aboutboxtx1 {
                            font-size: 14px;
                        }

                        .aboutboxtx12 {
                            width: 75px;
                            height: 18px;
                            border: 1px solid #fa9d2b;
                            border-radius: 4px;
                            font-size: 12px;
                            color: #fa9d2b;
                            text-align: center;
                            margin-left: 5px;
                        }
                    }

                    .aboutboxtx2 {
                        font-size: 12px;
                        color: #969090;
                        margin-top: 7px;
                    }
                }
            }
        }
    }

    @media screen and(max-width:690px) {
        .abouts {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 16px;
                }

                .teamkg1tx2 {
                    font-size: 8px;
                }
            }

            .aboutbox {
                .aboutboxx {
                    .aboutboxtoux {
                        width: 90px;
                        height: 90px;
                    }

                    .aboutboxtx {
                        .aboutboxtx1 {
                            .aboutboxtx11 {
                                font-size: 11px;
                            }

                            .aboutboxtx12 {
                                font-size: 10px;
                                width: 60px;
                                height: 14px;
                                line-height: 14px;
                            }
                        }

                        .aboutboxtx2 {
                            font-size: 10px;
                        }
                    }
                }
            }
        }
    }

    @media screen and(max-width:520px) {
        .abouts {
            .aboutbox {
                flex-direction: column;

                .aboutboxx {
                    flex-direction: row;
                    width: 100%;
                    height: 110px;
                    justify-content: flex-start;
                    border-bottom: 1px solid #ebebeb;

                    .aboutboxtoux {
                        width: 90px;
                        height: 90px;
                    }

                    .aboutboxtx {
                        margin-top: 0px;
                        height: 100px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: self-end;
                        width: 150px;

                        .aboutboxtx1 {
                            .aboutboxtx11 {
                                font-size: 11px;
                            }

                            .aboutboxtx12 {
                                font-size: 10px;
                                width: 60px;
                                height: 14px;
                                line-height: 14px;
                            }
                        }

                        .aboutboxtx2 {
                            font-size: 10px;
                            padding-bottom: 0px;
                        }
                    }
                }
            }
        }
    }
}

#abus {
    width: 100%;
    padding: 0 1rem;
    float: left;

    .abuss {
        width: 100%;

        .abusas1 {
            width: 60%;
            float: left;

            .abuss1 {
                width: 100%;
                display: flex;
                border-bottom: 1px dotted #969090;
                padding-bottom: 2rem;

                .abuss11 {
                    width: 40%;
                    border-radius: 1rem;
                    float: left;

                    img {
                        width: 100%;
                        object-fit: cover;
                        border-radius: 1rem;
                    }
                }

                .abuss12 {
                    width: 60%;
                    margin-left: 1rem;

                    .abuss12tx1 {   
                        .abuss12tx11 {
                            width: 20px;
                            height: 20px;
                            font-size: 14px;
                            color: #fefefe;
                            background-color: #19ee36;
                            text-align: center;
                            line-height: 20px;
                            border-radius: 3px;
                            float: left;
                            margin-right: 3px;
                        }

                        .abuss12tx12 {
                            font-size: 14px;
                            cursor: pointer;
                            &:hover{
                                color: #fa9d2b;
                            }
                        }
                    }

                    .abuss12tx2 {
                        float: left;

                        .abuss12tx21 {
                            width: 20px;
                            height: 20px;
                            font-size: 14px;
                            color: #fefefe;
                            background-color: #fa9d2b;
                            text-align: center;
                            line-height: 20px;
                            border-radius: 3px;
                            float: left;


                        }

                        .abuss12tx22 {
                            font-size: 12px;
                            color: #969090;
                            margin-left: 4px;
                            margin-left: 23px;
                        }
                    }
                }
            }

            .abuss2 {
                width: 100%;
                margin-top: 2rem;
                display: flex;
                flex-wrap: wrap;

                .abuss2kg {
                    width: 50%;
                    display: flex;
                    align-items: center;
                    padding: 1rem 0;

                    .abuss2kgtoux {
                        width: 60px;

                        img {
                            width: 100%;
                            object-fit: cover;
                        }
                    }

                    .abuss2kgtx {
                        margin-left: 1rem;

                        .abuss2kgtx1 {
                            .abuss2kgtx11 {
                                width: 20px;
                                height: 20px;
                                font-size: 14px;
                                color: #fefefe;
                                background-color: #19ee36;
                                text-align: center;
                                line-height: 20px;
                                border-radius: 3px;
                                float: left;
                                margin-right: 3px;

                            }

                            .abuss2kgtx12 {
                                font-size: 14px;
                                cursor: pointer;
                                &:hover{
                                    color: #fa9d2b;
                                }

                            }
                        }

                        .abuss2kgtx2 {
                            font-size: 12px;
                            color: #969090;
                        }
                    }
                }
            }
        }

        .abusas2 {
            width: 40%;
            float: left;
            padding-left: 1.5rem;

            .abusas21 {
                width: 100%;
                font-size: 17px;
                font-weight: bold;
            }

            .abusas22 {
                display: flex;
                align-items: center;
                flex-direction: column;

                .abusas22kg {
                    width: 100%;
                    display: flex;
                    margin-top: 2rem;

                    .abusas22kgimg {
                        width: 45%;

                        img {
                            width: 100%;
                            object-fit: cover;
                            border-radius: 1rem;
                        }
                    }

                    .abusas22kgtx {
                        width: 55%;
                        margin-left: 1rem;
                        display: flex;
                        justify-content: center;
                        flex-direction: column;

                        .abusas22kgtx1 {
                            display: flex;

                            .abusas22kgtx11 {
                                width: 20px;
                                height: 20px;
                                font-size: 14px;
                                color: #fefefe;
                                background-color: #19ee36;
                                text-align: center;
                                line-height: 20px;
                                border-radius: 3px;
                                margin-right: 3px;
                            }

                            .abusas22kgtx12 {
                                font-size: 14px;
                                cursor: pointer;
                                &:hover{
                                    color: #fa9d2b;
                                }
                            }
                        }

                        .abusas22kgtx2 {
                            float: left;

                            .abusas22kgtx21 {
                                width: 20px;
                                height: 20px;
                                font-size: 14px;
                                color: #fefefe;
                                background-color: #fa9d2b;
                                text-align: center;
                                line-height: 20px;
                                border-radius: 3px;
                                float: left;
                            }

                            .abusas22kgtx22 {
                                font-size: 12px;
                                color: #969090;
                                margin-left: 23px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width:810px) {
        .abuss {
            .abusas1 {
                .abuss1 {
                    .abuss12 {
                        .abuss12tx1 {
                            margin-bottom: 3px;

                            .abuss12tx11 {
                                width: 16px;
                                height: 16px;
                                font-size: 11px;
                                line-height: 16px;
                            }

                            .abuss12tx12 {
                                font-size: 11px;
                            }
                        }

                        .abuss12tx2 {
                            .abuss12tx21 {
                                width: 16px;
                                height: 16px;
                                font-size: 11px;
                                line-height: 16px;
                            }

                            .abuss12tx22 {
                                font-size: 9px;
                                margin-left: 20px;
                            }
                        }
                    }
                }

                .abuss2 {
                    .abuss2kg {
                        .abuss2kgtx {
                            .abuss2kgtx1 {
                                .abuss2kgtx11 {
                                    width: 16px;
                                    height: 16px;
                                    font-size: 11px;
                                    line-height: 16px;
                                }

                                .abuss2kgtx12 {
                                    font-size: 11px;
                                }
                            }

                            .abuss2kgtx2 {
                                font-size: 9px;
                            }
                        }
                    }
                }
            }

            .abusas2 {
                .abusas21 {
                    font-size: 14px;
                }

                .abusas22 {
                    .abusas22kg {
                        margin-top: 1.5rem;
                        .abusas22kgtx {
                            .abusas22kgtx1 {
                                .abusas22kgtx11 {
                                    width: 16px;
                                    height: 16px;
                                    font-size: 11px;
                                    line-height: 16px;
                                }
                                .abusas22kgtx12{
                                    font-size: 11px;
                                }
                            }
                            .abusas22kgtx2{
                                .abusas22kgtx21{
                                    width: 16px;
                                    height: 16px;
                                    font-size: 11px;
                                    line-height: 16px;  
                                }
                                .abusas22kgtx22{
                                    font-size: 9px;
                                    margin-left: 20px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width:640px) {
        .abuss {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 16px;
                }

                .teamkg1tx2 {
                    font-size: 8px;
                }
            }
            .abusas2 {
                .abusas21 {
                    font-size: 14px;
                }

                .abusas22 {
                    .abusas22kg {
                        flex-direction: column;
                        margin-top: 1rem;
                        .abusas22kgimg{
                            width: 100%;
                        }
                        .abusas22kgtx {
                            width: 100%;
                            .abusas22kgtx1 {
                                margin-top: 5px;
                                .abusas22kgtx11 {
                                    width: 16px;
                                    height: 16px;
                                    font-size: 11px;
                                    line-height: 16px;
                                }
                                .abusas22kgtx12{
                                    font-size: 11px;
                                }
                            }
                            .abusas22kgtx2{
                                .abusas22kgtx21{
                                    width: 16px;
                                    height: 16px;
                                    font-size: 11px;
                                    line-height: 16px;  
                                }
                                .abusas22kgtx22{
                                    font-size: 9px;
                                    margin-left: 20px;
                                }
                            }
                        }
                    }
                    .ss3{
                        display: none;
                    }
                }
            }
        }
    }
    @media screen and (max-width:520px) {
        .abuss {
            .abusas1{
                width: 100%;
            }
            .abusas2 {
                display: none;
            }
        }
    }

}

#tuku{
    width: 100%;
    padding: 2rem 1rem 0 1rem;
    float: left;
    .tukubox{
        width: 100%;
        float: left;
        .tukubox1{
            width: 100%;
            display: flex;
            justify-content: space-between;
            overflow: hidden;
            flex-wrap: wrap;
            float: left;
            .tukukg1{
                width: 24.5%;
                margin-bottom: 0.7rem;
                overflow: hidden;
                cursor: pointer;
                img{
                    width: 100%;
                    object-fit: contain;
                }
                &:hover img{
                    transform: scale(1.1);
                }
            }
        }
    }
    @media screen and(max-width:730px) {
        
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 16px;
                }

                .teamkg1tx2 {
                    font-size: 8px;
                }
            }
        
    }

    @media screen and(max-width:520px) {
        .tukubox{
            .tukubox1{
                .tukukg1{
                    width: 49.2%;
                }
            }
        }
    
}

}