@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@200;300;400;500;600;700;800&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

a img {
    border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

a,
button {
    display: inline-block;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*將連結、底線、刪除線重置*/

a,
ins,
del {
    text-decoration: none;
}

.en {
    font-family: 'Open Sans', sans-serif;
}

.ch {
    font-family: 'Noto Sans TC', sans-serif;
}

/*消除個瀏覽器*/

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix .clearfloat {
    clear: both;
    font-size: 0;
    height: 0;
    line-height: 0;
}


body {
    font-family: 'Open Sans', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    /*  letter-spacing: 1px; */
    font-weight: 400;
    letter-spacing: 0.4px;
    background-color: #d8d7d5;
    color: #555555;


}

#load {
    /*   width:100%;
    height:100%;
    position:fixed;
    z-index:9999; */

}

p,
.wrapper p {
    font-weight: 400;
}

* {
    font-family: 'Open Sans', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

/*float*/

.left {
    float: left;
}

.right {
    float: right;
}



img,
a>img {
    display: block;
    height: auto;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.container {
    position: relative;
}

.section {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.kv-section {
    background-image: url('../images/top-bg_01.jpg');
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    min-height: 800px;
    padding: 0px 0px 50px;
}

.s-logo {
    max-width: 480px;
    margin: 0px auto;
    padding-top: 120px;
}

.go-logo {
    max-width: 520px;
    margin: 20px auto 0px;
}

.kv-title {
    position: relative;
    min-height: 200px;

}

.kv-title img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;

}

.kv-shoes {
    position: relative;
    z-index: 2;
    min-height: 550px;
    transform: translateX(-1000px);
}

.shoesin {
    animation-name: shoesin-keyframes;
    animation-duration: 400ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes shoesin-keyframes {
    0% {
        transform: translateX(-1000px);
    }

    100% {
        transform: translateX(0px);
    }
}

.kv-shoes img {
    animation-name: kv-shoes-keyframes;
    animation-duration: 8636ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    margin: 0 auto;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

@keyframes kv-shoes-keyframes {
    0% {
        transform: rotateZ(-20deg);
    }

    50% {
        transform: rotateZ(02deg);
    }

    100% {
        transform: rotateZ(-20deg);
    }
}




.aos-animate .title-out {
    animation-name: title-out-opacity-keyframes;
    animation-duration: 1950ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes title-out-opacity-keyframes {
    0% {
        opacity: 1;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
        transform: scale(.6, .6);
    }

    95% {
        opacity: 1;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }

    100% {
        opacity: 0;
        transform: scale(1, 1);
    }
}

.aos-animate .title-in {
    animation-name: title-in-opacity-keyframes;
    animation-duration: 1920ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes title-in-opacity-keyframes {
    0% {
        opacity: 0;
    }

    92% {
        opacity: 0;
        /* animation-timing-function: cubic-bezier(.25, .25, .75, .75); */
    }

    100% {
        opacity: 1;
    }
}


.kv-start {
    /*    background-image: url('../images/g-bg1.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
}


.kv-title h1 {
    height: 0px;
    text-indent: -9999px;
}

.kv-start {
    overflow: hidden;
    padding-top: 150px;
    margin-top: -100px;
    position: relative;
}

.kv-man {
    margin-top: -80%;
    margin-right: 12%;
    position: relative;
    z-index: 5;
    width: 55%;
    /* background-color: #000; */
    float: right;
}

.red-box {
    /*  background-image: url('../images/man-bg.png');
 background-repeat: no-repeat;
 background-position: center 20%;
 background-size: 100%; */
    top: 180px;
    position: relative;

}

.start-logo {
    position: absolute;
    top: 200px;
    left: 7%;
    width: 35%;
}

.kv-start .name {
    position: absolute;
    top: 55%;
    right: 8%;
    color: #fff;
    font-size: 21px;
    text-align: left;
}

.kv-start .name span {
    display: block;
    font-size: 2rem;
    font-weight: 500;
}

.start-text {
    position: absolute;
    top: 580px;
    left: 5%;
    width: 35%;
}

/* =====running-section==== */
.running-section {
    clear: both;
    margin-top: -8%;
}

.run-banner {
    position: relative;
}

.run-title {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    margin: 0 auto;
}



.run-title_B {}

.run-title_B img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

.run1 {
    transform: translate(1000px, -40px);
}

.run1-in {

    animation-name: run1-in-opacity-keyframes;
    animation-duration: 1000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes run1-in-opacity-keyframes {
    0% {
        transform: translate(1000px, -40px);
    }

    20% {
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.rundown {
    animation-name: run-down-opacity-keyframes;
    animation-duration: 1500ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    width: 100%;
    height: auto;

}

@keyframes run-down-opacity-keyframes {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.runup {
    animation-name: run-up-opacity-keyframes;
    animation-duration: 1500ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    width: 100%;
    height: auto;

}

@keyframes run-up-opacity-keyframes {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}


.run2 {
    transform: translate(1000px, -40px);
}

.run2-in {

    animation-name: run2-in-opacity-keyframes;
    animation-duration: 1000ms;
    animation-delay: 300ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes run2-in-opacity-keyframes {
    0% {
        transform: translate(1000px, -40px);
    }

    20% {
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}


.run3 {
    transform: translate(1000px, -40px);
}

.run3-in {

    animation-name: run3-in-opacity-keyframes;
    animation-duration: 1000ms;
    animation-delay: 600ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes run3-in-opacity-keyframes {
    0% {
        transform: translate(1000px, -40px);
    }

    20% {
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.run4 {
    transform: translate(1000px, -40px);
}

.run4-in {

    animation-name: run4-in-opacity-keyframes;
    animation-duration: 1000ms;
    animation-delay: 900ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes run4-in-opacity-keyframes {
    0% {
        transform: translate(1000px, -40px);
    }

    20% {
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.run5 {
    transform: translate(1000px, -40px);
}

.run5-in {
    animation-name: run5-in-opacity-keyframes;
    animation-duration: 1000ms;
    animation-delay: 1200ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes run5-in-opacity-keyframes {
    0% {
        transform: translate(1000px, -40px);
    }

    20% {
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}




.run-text {
    margin-top: -80px;
    padding-right: 30px;
    box-sizing: border-box;
    width: 90%;
    float: right;
}

.text-t {
    margin-bottom: 20px;
}

.text-t img {
    margin-right: 0px;

}

.run-t2 {
    margin-bottom: 30px;
}

.run-shoes {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d8d7d5+0,ffffff+79 */
    background: linear-gradient(to bottom, #d8d7d5 0%, #ffffff 79%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    position: relative;
    /*  background-image: url('../images/light-shoes_03.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0px 0px; */

    clear: both;
    padding-bottom: 80px;
}

.run-box {
    min-height: 350px;
    padding: 80px 0px;
    margin: 50px auto;
}

.run-box img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

.light-A {
    animation-name: light-A-opacity-keyframes;
    animation-duration: 1000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes light-A-opacity-keyframes {
    0% {
        opacity: 0;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }
}

.eco-text p,
.arc-text p {
    font-size: 40px;
    color: #555555;
    text-align: center;
    line-height: 1.3;
    font-weight: 400;
    margin-top: 30px;
}

/* ===arc-section=== */
.arc-section {
    background-image: url('../images/g-bg1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px 200px;
}

.arc-text {
    margin-bottom: 50px;
}

.arc-shoes {
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 1;

}

.arc-shoes:after {
    content: "";
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fffcfc+0,ffffff+75,ffffff+75&1+0,0+75 */
    background: radial-gradient(ellipse at center, rgba(255, 252, 252, 1) 0%, rgba(255, 255, 255, 0) 75%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    height: 400px;
    border-radius: 100px;
    display: block;
    position: absolute;
    width: 80%;
    z-index: -1;
    margin: 0 auto;
    top: 0px;
    right: 0px;
    left: 0px;

}

.arc-s1 {
    position: relative;
    width: 45%;
}

.arc-s2 {
    position: relative;
    width: 55%;
    right: 3%;

}

.arc-s1 img.light-A {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

.arc-s-t {
    text-align: center;
    line-height: 1.5;
    font-size: 24px;
}

.arc-s-t .sp {
    font-weight: 500;
    color: #000;

}

.arc-s-t2 {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    margin-top: -88px;
}

.sp-box {
    width: 30%;
}

.arc-slider-box {
    margin-top: 50px;
    clear: both;
}

.arc-slider-box .slider-title {
    position: relative;
    min-height: 300px;
    z-index: 1;
}

.zoomA {
    animation-name: zoomA-keyframes;
    animation-duration: 2333ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes zoomA-keyframes {
    0% {
        transform: scale(0.95);
    }

    20% {
        transform: scale(0.98);
    }

    33.33% {
        transform: scale(0.92);
    }

    66.67% {
        transform: scale(0.955185936443543);
    }

    76.33% {
        transform: scale(0.92);
    }

    88% {
        transform: scale(0.985185936443543);
    }

    100% {
        transform: scale(0.95);
    }
}


.arc-slider-box .slider-title:after {
    content: "";
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fffcfc+0,ffffff+75,ffffff+75&1+0,0+75 */
    background: radial-gradient(ellipse at center, rgba(255, 252, 252, 1) 0%, rgba(255, 255, 255, 0) 75%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    height: 300px;
    border-radius: 100px;
    display: block;
    position: absolute;
    width: 80%;
    z-index: -1;
    margin: 0 auto;
    top: 0px;
    right: 0px;
    left: 0px;

}

.arc-slider-box .slider-title img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

.slider-box {
    position: relative;
    padding: 50px;
}

.wather {
    background-image: url('../images/ill_1.png');
    background-size: 100%;
    width: 420px;
    height: 400px;
    position: absolute;
    top: -100px;
    right: 0px;
    background-repeat: no-repeat;
}

.elastic {
    background-image: url('../images/ill_2.png');
    background-size: 100%;
    width: 320px;
    height: 400px;
    position: absolute;
    bottom: -120px;
    left: 0px;
    background-repeat: no-repeat;
    z-index: 2;
}


.arc-swiper-box {
    border: 20px solid #fff;
    background-color: #fff;
    position: relative;
    z-index: 1;
    width: 90%;
    margin: 80px auto 0px;
}

/* ====traning-section==== */

.traning-section {
    margin-top: -7%;
    background-image: url('../images/g-bg1.jpg');
    background-position: 0px 0px;
    background-size: 100%;
    background-repeat: repeat-y;
}

.traning-section .run-shoes:after {
    content: "";
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fffcfc+0,ffffff+82&1+0,0+81 */
    background: radial-gradient(ellipse at center, rgba(255, 252, 252, 1) 0%, rgba(255, 255, 255, 0) 81%, rgba(255, 255, 255, 0) 82%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    height: 800px;
    border-radius: 100px;
    display: block;
    position: absolute;
    width: 100%;
    z-index: -1;
    margin: 0 auto;
    top: -10%;
    right: 0px;
    left: 0px;
}

.traning-section .run-shoes {
    background: none;
    margin-top: 50px;
    padding-bottom: 20px;
}

.traning-section .run-text {
    margin-bottom: 80px;
}

.traning-section .run-text,
.traning-section .run-shoes {
    z-index: 1;
    position: relative;
}

.traning-section .run-box {
    margin-bottom: 0;
}




.traning-section .arc-slider-box {
    background-image: url('../images/traing-slider-bg_02.jpg');
    background-position: 0px -50px;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 250px;
}

.dumbbel {
    background-image: url('../images/dumbbel_02.png');
    background-size: 100%;
    width: 380px;
    height: 400px;
    position: absolute;
    bottom: -120px;
    left: 0px;
    background-repeat: no-repeat;
    z-index: 2;
}

.traning-section .run-title {}

.traning-section .run-title img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}


.fade {
    animation-name: fade-opacity-keyframes;
    animation-duration: 1500ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fade-opacity-keyframes {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    51% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.fade2 {
    animation-name: fade2-opacity-keyframes;
    animation-duration: 1500ms;
    animation-delay: 600ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fade2-opacity-keyframes {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    46% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}




/* ====working-section== */
.working-section {
    margin-top: -17%;
}

.working-bg {
    background-image: url('../images/g-bg1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 280px;

}

.working-box {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fffcfc+0,ffffff+73&1+0,0+75 */
    background: linear-gradient(to bottom, rgba(255, 252, 252, 1) 0%, rgba(255, 255, 255, 0.03) 73%, rgba(255, 255, 255, 0) 75%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    padding-top: 200px;
    margin-top: -200px;

}

.foot-box {
    clear: both;
    position: relative;

}


.foot-box:after {
    content: "";
    height: 900px;
    border-radius: 100px;
    display: block;
    position: absolute;
    width: 100%;
    z-index: -1;
    margin: 0 auto;
    top: 0%;
    right: 0px;
    left: 0px;

    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fffcfc+0,ffffff+83,ffffff+83&1+0,0+83 */
    background: radial-gradient(ellipse at center, rgba(255, 252, 252, 1) 0%, rgba(255, 255, 255, 0) 83%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.working-bg .eco-text {
    margin-top: 50px;
}


.working-section .run-title img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

.wotk1 {

    animation-name: woupfade-opacity-keyframes;
    animation-duration: 2000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes woupfade-opacity-keyframes {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    81% {
        opacity: 1;
    }

    82% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.wotk2 {

    animation-name: woupfade2-opacity-keyframes;
    animation-duration: 2000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes woupfade2-opacity-keyframes {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
    }

    11% {
        opacity: 1;
    }

    81% {
        opacity: 1;
    }

    82% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.wotk3 {

    animation-name: woupfade3-opacity-keyframes;
    animation-duration: 2000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes woupfade3-opacity-keyframes {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    21% {
        opacity: 1;
    }

    81% {
        opacity: 1;
    }

    82% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.wotk4 {

    animation-name: woupfade4-opacity-keyframes;
    animation-duration: 2000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes woupfade4-opacity-keyframes {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    31% {
        opacity: 1;
    }

    81% {
        opacity: 1;
    }

    82% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.wotk5 {

    animation-name: woupfade5-opacity-keyframes;
    animation-duration: 2000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes woupfade5-opacity-keyframes {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    41% {
        opacity: 1;
    }

    81% {
        opacity: 1;
    }

    82% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}


/* =====life-section==== */

.life-section {
    margin-top: -12%;
}

.life-bg {
    background-image: url('../images/life-slider-bg_02.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    /*       min-height: 2000px; */
    padding-top: 200px;
    margin-top: -200px;
    padding-bottom: 150px;
}

.life-slider-box {
    clear: both;
}

.life-slider-box .slider-title {
    padding-top: 50px;
    width: 60%;
    margin: 0 auto;
}

.life-slider-box .slider-title img {
    margin-bottom: 15px;
}

.life-slider-box .slider-box {
    padding-top: 20px;
    position: inherit;
}

.life-slider-box .arc-swiper-box {
    margin-top: 30px;
    /*  box-shadow: 10px 10px 10px 10px #666; */
    position: inherit;
}

.life-slider-box .slider-box:after {
    content: "";
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,ffffff+100&1+0,0+64 */
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(163, 163, 163, 0) 64%, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    width: 100%;
    height: 500px;
    border-radius: 100%;
    position: absolute;
    bottom: -50px;
    left: -20px;
    display: block;
    z-index: -1;

}

.life-slider-box .swiper-pagination {
    bottom: -50px;

}

.life-slider-box .swiper {
    position: inherit;
}

.life-slider-box .swiper-pagination-bullet-active {
    background: #Fff;
}

.life-slider-box .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    opacity: .8;

}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 15px;
}

.choes-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.big {
    animation-name: big-keyframes;
    animation-duration: 1000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes big-keyframes {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* ====spokesperson-section=== */
.spokesperson-section {
    background-color: #9d393a;
}

.spokes-title {
    padding: 20px 0px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9d393a+0,d37262+100 */
    background: linear-gradient(to bottom, rgba(157, 57, 58, 1) 0%, rgba(211, 114, 98, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.imagery {
    position: relative;
}

.img-ab {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

/* =====tips-section====== */

.tips-section {
    padding: 80px 0px 250px;
    background-color: #fff;
}

.circular-bg {
    position: relative;
    display: flex;
    align-items: center;
    height: 800px;


}

.circle {
    border-radius: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    z-index: 1;
}

.circular-bg .c1 {
    width: 850px;
    height: 850px;
    background-color: #f6f6f6;

    animation-name: c1-an-opacity-keyframes;
    animation-duration: 1000ms;
    animation-delay: 2000ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    opacity: 0;
}

@keyframes c1-an-opacity-keyframes {
    0% {
        opacity: 0;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }

    30% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }
}

.circular-bg .c2 {
    width: 600px;
    height: 600px;
    background-color: #d1d1d1;
    animation-name: c2-an-opacity-keyframes;
    animation-duration: 2000ms;
    animation-delay: 1000ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    opacity: 0;
}

@keyframes c2-an-opacity-keyframes {
    0% {
        opacity: 0;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }

    30% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }
}

.circular-bg .c3 {
    width: 320px;
    height: 320px;
    background-color: #191919;
    animation-name: c3-an-opacity-keyframes;
    animation-duration: 5000ms;
    animation-delay: 0ms;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes c3-an-opacity-keyframes {
    0% {
        opacity: 0;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }

    30% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        animation-timing-function: cubic-bezier(.25, .25, .75, .75);
    }
}

.circle-shoes {
    position: absolute;
    z-index: 3;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

.tip-box img {
    position: absolute;
    margin: 0 auto;
    z-index: 6;
}

.tip1 {
    top: 10px;
    left: 10px;
    width: 50%;

}

.tip2 {
    top: 35%;
    right: 10px;
    width: 50%;
}

.tip3 {
    top: 75%;
    left: 43%;

    width: 50%;
}

.tip4 {
    top: 90%;
    left: 3%;

    width: 50%;
}

/* ===== product-section==== */
.product-section {
    background-color: #fff;
}

.pro-silder-box {
    background-image: url('../images/pro-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    padding-top: 80px;
}

.mens-title {
    float: left;
    overflow: hidden;
}

.woman-title {
    float: right;
    overflow: hidden;
    margin-top: 30px;
}

.product-section .silder-box {
    clear: both;
    padding: 40px;
}

.product-picture span {
    margin-top: -50px;
    display: block;
}

.pro-btnbox {
    padding: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-btnbox .btn-box {
    width: 50%;
    text-align: center;
}

.pro-btnbox .btn-box:hover a {
    transform: translateY(10px);
}


.product-section .swiper-pagination-bullet-active {
    background: #DDD;
}

.product-section .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    opacity: .8;

}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 15px;
}



.product-section .swiper-pagination {}

.product-section .swiper {
    padding-bottom: 50px;
}




/* ===swiper=== */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    /*   text-align: center;
      font-size: 18px;
      background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proswiper .swiper-slide a {
    color: #717171;
}

/*=====loading=====*/

.progress {
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-transform: translateZ(0);
    background-repeat: repeat;
    background-size: cover;
    background-color: #D37262;

}

.progress-inner {
    z-index: 0;
    text-align: center;
    position: relative;
}

.progress-logo {
    display: block;
    margin-bottom: 20px;
}

.progress-logo {
    display: block;
    margin-bottom: 20px;
}

.progress-complete .progress-bar {
    background-color: #000;
}

.progress-bar {
    display: block;
    bottom: 0px;
    z-index: 1;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #000;
    right: 0px;

    animation: .6s w-bar infinite alternate;
}

@keyframes w-bar {
    0% {
        width: 0px;
        opacity: .5;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

.progress-text {
    /* display: none;*/
    color: #ddd;
    font-size: 18px;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    width: 100%;
    bottom: -50px;
}


@media (max-width: 768px) {
    .kv-start {
        padding-top: 100px;
    }

    .start-text {
        top: 480px;
    }

    .running-section {
        margin-top: -12%;
    }

    .arc-s-t {
        font-size: 18px;
    }

    .arc-section {
        padding-bottom: 150px;
    }

    .working-bg {
        padding-bottom: 150px;
    }

    .circular-bg .c1 {
        width: 700px;
        height: 700px;
    }

    .circular-bg .c2 {
        width: 500px;
        height: 500px;
    }

    .circular-bg {
        height: 700px;
    }

    .s-logo {
        width: 55%;
        padding-top: 100px;
    }

    .go-logo {
        width: 55%;
    }

    .start-logo {
        top: 150px;
    }

    .kv-start .name {
        top: 50%;
    }

    .wather {
        top: -150px;
    }

    .arc-swiper-box {
        margin-top: 0;
    }

    .kv-title {
        width: 95%;
        margin: 0 auto;
    }
}


.mb-show {
    display: none;
}

@media (max-width: 640px) {

    .mb-no {
        display: none;
    }

    .mb-show {
        display: block;
    }

    .kv-shoes {
        min-height: 450px;
    }

    .start-text {
        top: 380px;
    }

    .run-text {
        margin-top: -40px;
    }

    .eco-text,
    .arc-text {
        padding: 0px 20px;
    }

    .eco-text p,
    .arc-text p {
        font-size: 35px;
    }

    .arc-shoes {
        flex-wrap: wrap;
    }

    .arc-s1 {
        width: 100%;
        margin-bottom: 30px;
    }

    .arc-s2 {
        width: 95%;
        right: 0;
    }

    .arc-s-t2 {
        margin: -88px auto;
        width: 80%;
        padding-bottom: 80px;
    }

    .wather {
        width: 300px;
        height: 300px;
    }

    .arc-section .arc-slider-box .slider-title {
        min-height: 250px;
    }

    .elastic {
        width: 220px;
        bottom: -200px;
    }

    .traning-section .run-box {
        width: 90%;
        margin: 0 auto;
    }

    .run-box {
        min-height: 280px;
    }

    .traning-section .arc-slider-box {
        margin-top: 20px;
    }

    .working-section {
        margin-top: -30%;
    }

    .dumbbel {
        width: 250px;
        height: 300px;
    }

    .life-slider-box .slider-title {
        padding: 50px 20px 0px;
    }

    .circular-bg {
        height: 550px;
    }

    .circular-bg .c1 {
        width: 500px;
        height: 500px;
    }

    .circular-bg .c2 {
        width: 400px;
        height: 400px;
    }

    .circular-bg .c3 {
        width: 250px;
        height: 250px;
    }

    .mens-title {
        width: 38%;
    }

    .woman-title {
        width: 50%;
    }

    .text-t.run-t1 img {
        width: 38%;
        margin-right: 0px;
    }

    .slider-box {
        padding: 20px;
    }
    .life-slider-box .slider-title{
        width: 70%;
    }
}

@media (max-width: 580px) {
    .circular-bg {
        height: 500px;
    }

    .kv-shoes {
        min-height: 400px;
    }

    .red-box {
        top: 150px;
    }

    .start-logo {
        top: 120px;
    }

    .kv-start .name span {
        font-size: 21px;
    }

    .kv-start .name {
        font-size: 16px;
    }

    .start-text {
        top: 350px;
    }
}

@media (max-width: 480px) {
    .s-logo {
        padding-top: 70px;
    }

    .kv-shoes {
        margin-top: -60px;
        min-height: 350px;
    }

    .red-box {
        top: 100px;
    }

    .start-logo {
        top: 100px;
    }

    .kv-start .name {
        font-size: 16px;
    }

    .kv-start .name span {
        font-size: 1.3rem;
    }

    .start-text {
        top: 280px;
    }

    .run-box {
        min-height: 220px;
    }

    .eco-text p,
    .arc-text p {
        font-size: 24px;
    }

    .arc-s-t2 {
        width: 100%;
    }

    .arc-swiper-box {
        width: 100%;
    }

    .arc-section .arc-slider-box .slider-title {
        min-height: 170px;
    }

    .wather {
        width: 220px;
        height: 200px;
        top: -90px;
    }

    .elastic {
        width: 150px;
        bottom: -100px;
        height: 250px;
    }

    .arc-section {
        padding-bottom: 80px;
    }

    .traning-section .run-shoes:after {
        height: 500px;
    }

    .traning-section .slider-title {
        min-height: 200px;
    }

    .dumbbel {
        width: 200px;
        height: 200px;
        bottom: -80px;
    }

    .foot-box:after {
        height: 600px;
    }

    .working-bg {
        padding-bottom: 120px;
    }

    .life-slider-box .slider-box {
        padding-top: 0;
    }

    .circular-bg {
        height: 430px;
    }

    .circular-bg .c1 {
        width: 400px;
        height: 400px;
    }

    .circular-bg .c2 {
        width: 300px;
        height: 300px;
    }

    .circular-bg .c3 {
        width: 200px;
        height: 200px;
    }

    .tips-section {
        padding-bottom: 150px;
    }



}

@media (max-width: 440px) {
    .kv-shoes {
        min-height: 320px;
    }

    .circular-bg {
        height: 380px;
    }

}

@media (max-width: 420px) {
    .kv-shoes {
        min-height: 300px;
    }

    .start-text {
        top: 250px;
    }

    .run-box {
        min-height: 200px;
    }

    .elastic {
        height: 200px;
    }

    .traning-section .run-text {
        margin-bottom: 40px;
    }

    .circular-bg {
        height: 360px;
    }

    .pro-silder-box {
        padding-top: 50px;
    }

    .arc-slider-box .slider-title:after {
        height: 200px;
    }

    .life-slider-box .slider-box:after {
        height: 200px;
        bottom: -20px;
    }

}

@media (max-width: 391px) {
    .kv-shoes {
        margin-top: -80px;
        min-height: 280px;
    }

}

@media (max-width: 376px) {
    .s-logo {
        padding-top: 50px;
    }

    .kv-shoes {
        min-height: 270px;
    }

    .start-logo {
        top: 80px;
    }

    .kv-start .name {
        font-size: 12px;
    }

    .kv-start .name span {
        font-size: 1.1rem;
    }

    .start-text {
        top: 230px;
    }

    .running-section .run-box {
        margin-bottom: 10px;
    }

    .eco-text p,
    .arc-text p {
        font-size: 21px;
    }

    .arc-section {
        padding-top: 50px;
    }

    .arc-s-t {
        font-size: 16px;
    }

    .arc-s-t2 {
        margin: -70px auto;
    }

    .arc-swiper-box {
        border: 10px solid #fff;
    }

    .elastic {
        /* width: 120px; */
    }

    .wather {
        width: 200px;
    }

    .traning-section .slider-title {
        min-height: 160px;
    }

    .dumbbel {
        width: 150px;
        height: 150px;
        bottom: -50px;
    }

    .traning-section .arc-slider-box {
        padding-bottom: 180px;
    }

    .circular-bg {
        height: 320px;
    }

    .circular-bg .c1 {
        width: 320px;
        height: 320px;
    }

    .circular-bg .c2 {
        width: 250px;
        height: 250px;
    }

    .circular-bg .c3 {
        width: 150px;
        height: 150px;
    }

    .run-t2 {
        margin-bottom: 15px;
    }

    .life-bg {
        margin-top: -170px;
    }
}

.mb-show320 {
    display: none;
}

@media (max-width: 320px) {
    .kv-shoes {
        margin-top: -100px;
        left: -10px;
        min-height: 220px;
    }

    .red-box {
        top: 60px;
    }

    .start-text {
        top: 200px;
    }

    .kv-start .name span {
        font-size: 14px;
    }

    .kv-start .name {
        font-size: 10px;
    }

    .run-text {
        margin-top: -20px;
    }

    .eco-text p,
    .arc-text p {
        font-size: 18px;
        line-height: 1.5;
    }

    .mb-no320 {
        display: none;
    }

    .mb-show320 {
        display: block;
    }

    .arc-s-t {
        font-size: 14px;
    }

    .arc-slider-box .slider-title:after {
        height: 100px;
    }

    .arc-section .arc-slider-box .slider-title {
        min-height: 120px;
    }

    .traning-section .run-box {
        min-height: 140px;
    }

    .working-bg {
        padding-bottom: 80px;
    }

    .circular-bg {
        height: 280px;
    }

    .product-picture span {
        margin-top: -20px;
        display: block;
        font-size: 14px;
    }
}