
.text-arrow-next {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    display: block;
    position: absolute;
    background: url(../images/next.png) no-repeat right center;
    right: 4.875rem;
    bottom: 3rem;
    padding-right: 4.75rem;
    line-height: 3.75rem;
    text-transform: uppercase;
    z-index: 2;
    font-size: 2.25rem;
    color: #000000;
    -webkit-animation: text-arrow-next 0.8s linear infinite;
    animation: text-arrow-next 0.8s linear infinite;
}

@keyframes text-arrow-next {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(10px, 0);
        transform: translate(10px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.text-arrow-prev {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    display: block;
    position: absolute;
    left: 2rem;
    top: 8.375rem;
    background: url(../images/prev_1.png) no-repeat left bottom;
    padding-bottom: 4.75rem;
    line-height: 2.75rem;
    text-transform: uppercase;
    z-index: 2;
    font-size: 2rem;
    color: #ffffff;
    -webkit-animation: text-arrow-prev 0.8s linear infinite;
    animation: text-arrow-prev 0.8s linear infinite;
}

@keyframes text-arrow-prev {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-10px, 0);
        transform: translate(-10px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

html[platform="mobile"] .text-arrow-next {
    padding-top: 1.5rem;
    padding-right: 0;
    bottom: 0;
    background-size: 2rem auto;
    background-position: right top;
    font-size: 0.875rem;
    right: 1.25rem;
    line-height: 3;
}

html[dir="rtl"] .text-arrow-next {
    right: unset;
    left: 1.25rem;
    padding-right: unset;
    padding-left: 4.75rem;
    background-image: url(../images/prev.png);
    background-position: left top;
}

html[dir="rtl"][platform="mobile"] .text-arrow-next {
    padding-left: 0;
}

html[platform="mobile"] .text-arrow-prev {
    padding-top: 2.5rem;
    padding-right: 0;
    background-size: 2rem auto;
    background-position: left top;
    font-size: 0.875rem;
    left: 1.25rem;
    top: 4.375rem;
    line-height: 1.625;
}

html[dir="rtl"] .text-arrow-prev {
    left: unset;
    right: 1.25rem;
    padding-left: unset;
    padding-right: 4.75rem;
    background-image: url(../images/next_1.png);
    background-position: right top;
}

html[dir="rtl"][platform="mobile"] .text-arrow-prev {
    padding-right: 0;
}

article section .list .company-desc {
    position: relative;
    flex-grow: 1;
    padding-bottom: 0;
    width: 52rem;
    max-width: 90%;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

article section .list .ourstory-title {
    flex-shrink: 0;
    margin-top: 1rem;
}

#mobile-product-list,
#pc-product-list {
    display: none;
}

#mobile-product-list {
    position: relative;
}

.product-view {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 3.6875rem;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}

.product-view__body {
    width: 100%;
    height: 100%;
    padding: 1.325rem;
    overflow: hidden;
}

.product-view__body::after {
    content: '';
    display: block;
    width: 130px;
    height: 30px;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 0;
    margin-left: -65px; background:url(../images/arrow-2.png) no-repeat, url(../images/mouse-dot.png) no-repeat, url(../images/arrow-1.png) no-repeat;
    background-size: 30px auto;
    background-position: 10px 4px, 50px 0, 90px 4px;
    animation: mouse-dance 1.5s linear infinite;
}

@keyframes mouse-dance {
    0% {
        background-position: 10px 4px, 50px 0, 90px 4px;
    }
    50% {
        background-position: 0 4px, 50px 0, 100px 4px;
    }
    100% {
        background-position: 10px 4px, 50px 0, 90px 4px;
    }
}

.product-view__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}
.product-view__content .title,
.product-view__content .text {
    flex-shrink: 0;
}

/* .product-view__body .title,
.product-view__body .text,
.product-view__body .animate-opacity {
    margin-top: -1.325rem;
} */
.product-view__sign {
    font-size: 100%;
    display: flex;
    overflow: hidden;
}

.product-view__icon {
    flex-shrink: 0;
    align-self: flex-start;
    display: block;
    width:6rem;
}

html[dir="ltr"] .product-view__icon {
    margin-right: 1.325rem;
}

html[dir="rtl"] .product-view__icon {
    margin-left: 1.325rem;
}

.product-view__line {
    flex-shrink: 0;
    align-self: flex-start;
    width: 5px;
    height: 1em;
    background-color: #f7941e;
    border-radius: 5px;
    margin-top: .5rem;
}

html[dir="ltr"] .product-view__line {
    margin-right: 1.325rem;
}

html[dir="rtl"] .product-view__line {
    margin-left: 1.325rem;
}

.product-view__text {
    align-self: flex-start;
    overflow: hidden;
    margin-top: .5rem;
}

.product-view__text::first-letter {
    font-size: 160%;
}

.product-view__desc {
    position: relative;
    width:70% !important;
    padding-bottom: 0 !important;
    margin-bottom: 0.75rem;
}

.product-view__desc p { padding-bottom:1rem;
    font-size:0.8rem;
    color:#fff;
    line-height: 1.34em !important;
}

.product-view__btn {
    position: relative;
    flex-grow: 1;
    margin-bottom: -1.325rem;
    overflow: hidden;
}

.product-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-size:100% auto;
    background-repeat: no-repeat;
}

.product-bg::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-image: url("./images/bg-mask.png"); */
    background-size: 100% auto;
}

article section .list .down li .galaxy-btn-link {
    width: auto;
    height: auto;
}

.galaxy-btn {
    display: block;
    height: 2.5rem;
}

html[platform="mobile"] .product-view {
    padding-top: 3rem;
}

html[platform="mobile"] article section .list .title:after {
    border-bottom: none;
}

html[platform="mobile"] article section .list .down li a {
    margin-left: 0;
    margin-right: 1rem;
}
html[platform="mobile"][dir="rtl"] article section .list .down li a {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .address-url {
    display: none;
}
