@charset "UTF-8";
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-size: 100%;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    line-height: 1.5;
    font-size: 16px;
}

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;
}

img {
    display: block;
    border: none;
    width: 100%;
}


.ipc {display: block;}
.imo {display: none;}

@media (max-width: 480px) {
    .ipc {display: none;}
    .imo {display: block;}
}

.project {
    position: relative;
}
.project .banner {
    width: 100%;
    position: relative;
}
.project .banner .logo {
    width: 150px;
    position: absolute;
    top: 45px;
    left: 45px;
    z-index: 5;
}
.project .banner h2 {
    position: absolute;
    top: 46%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 135px;
    font-weight: 900;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0px 0px 5px #222;
}
.project .banner h2 span {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 2.7px;
    text-align: center;
    color: #fff;
    position: relative;
}
.project .banner h2 span::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 1px;
    background: #fff;
    left: 0;
    bottom: -3px;
    -webkit-animation: lineAnimation 4.25s linear infinite forwards;
    animation: lineAnimation 4.25s linear infinite forwards;
}
@-webkit-keyframes lineAnimation {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@keyframes lineAnimation {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.project .banner .scrolldown {
    position: absolute;
    left: 50%;
    bottom: 0%;
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    width: 112.5px;
    height: 112.5px;
    border-radius: 50%;
    z-index: 10;
    background: linear-gradient(125deg, #004F6F 0% 60%, #79C38D);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.project .banner .scrolldown .pic {
    position: relative;
    width: 15px;
}
.project .banner .scrolldown::after {
    position: absolute;
    content: "";
    background-image: url(../images/scrolldown.svg);
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    left: 50%;
    top: 50%;
    -webkit-animation: scrollAnimation 14s linear infinite;
    animation: scrollAnimation 14s linear infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.project .banner .image-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.project .banner .image-container.animation {
    -webkit-animation: scaleAnimation 8s linear infinite forwards;
    animation: scaleAnimation 8s linear infinite forwards;
}
@-webkit-keyframes scaleAnimation {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2); /* 初始状态放大 */
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1); /* 中间状态正常大小 */
    }
}
@keyframes scaleAnimation {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2); /* 初始状态放大 */
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1); /* 中间状态正常大小 */
    }
}
@-webkit-keyframes scrollAnimation {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes scrollAnimation {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.project .banner .swiper-slide {
    height: 100vh;
    overflow: hidden;
}
.project .banner .swiper-slide-active .mask {
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(#a8dcd1), to(#004F6F));
    background-image: linear-gradient(to right, #a8dcd1, #004F6F); /* 遮罩颜色 */
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation: maskAnimation 0.5s ease-in-out;
    animation: maskAnimation 0.5s ease-in-out;
}
.project .banner .swiper-slide-active .mask1 {
    background-image: -webkit-gradient(linear, left top, right top, from(#004F6F), to(#ffdf80));
    background-image: linear-gradient(to right, #004F6F, #ffdf80); /* 遮罩颜色 */
}
@-webkit-keyframes maskAnimation {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}
@keyframes maskAnimation {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}
.project section.about {
    /*background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(121, 195, 141)), color-stop(25%, #79C38D), to(#245066));
    background-image: linear-gradient(to bottom, rgb(121, 195, 141), #79C38D 25% 75%, #245066);*/


    background-image: -webkit-gradient(linear, left top, left bottom, from(#004F6F), color-stop(12%, #79C38D), to(#004F6F));
    background-image: linear-gradient(to bottom, #004F6F, #79C38D 12% 85%, #004F6F);

}
.project section.about .marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 11.25vw;
    overflow: hidden;
    z-index: 1;
    -webkit-transform: translateY(4.5vw);
    transform: translateY(4.5vw);
}
.project section.about .marquee .track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: marquee 80s linear infinite;
    animation: marquee 80s linear infinite;
    gap: 3%;
}
.project section.about .marquee .track span.content {
    width: 47.5%;
    color: black;
    font-size: 8.9vw;
    font-weight: 900;
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.project section.about .marquee .track1 {
    -webkit-animation: marquee-1 30s linear infinite;
    animation: marquee-1 30s linear infinite;
}
.project section.about .marquee .track1 span.content {
    width: 47.5%;
    color: black;
    font-size: 8.9vw;
    font-weight: 900;
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
@-webkit-keyframes marquee {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-55%);
        transform: translateX(-55%);
    }
}
@keyframes marquee {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-55%);
        transform: translateX(-55%);
    }
}
@-webkit-keyframes marquee-1 {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-52.5%);
        transform: translateX(-52.5%);
    }
}
@keyframes marquee-1 {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-52.5%);
        transform: translateX(-52.5%);
    }
}
.project section.about .marquee1 {
    -webkit-transform: translateY(-3.5vw);
    transform: translateY(-3.5vw);
}

.about_content img {
    width: 85%;
    text-align: center;
    margin: auto;
}

.project section.about .about_content {
    width: 90%;
    max-width: 1112px;
    margin: 0 auto;
    border: 10px solid #fff;
    padding-top: 5vw;
    padding-bottom: 8vw;
    padding: 5vw 2vw 5vw 2vw;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left bottom, from(#79C38D), color-stop(12%, #fefefe), to(#79C38D));
    background: linear-gradient(to bottom, #79C38D, #fefefe 12% 85%, #79C38D);
    position: relative;
}
.project section.about .about_content .title h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.project section.about .about_content .title h2 span {
    font-size: 115px;
    font-weight: 900;
    text-align: center;
    color: #245066;
    line-height: 1.1;
}
.project section.about .about_content .title p {
    display: block;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 3.08px;
    text-align: center;
    color: #245066;
}
.project section.about .about_content .text {
    margin-top: 60px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.72;
    letter-spacing: 1.8px;
    text-align: center;
    color: #245066;
}


.project section.about .about_content .text br.mobr {
        display: none;
    }

.project section.about .animate_box {
    margin: 70px auto 0;
    width: 69.56%;
    position: relative;
    z-index: 1;
    width: 767px;
    height: 767px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.project section.about .animate_box::before {
    content: "";
    z-index: 1;
    position: absolute;
    width: 54%;
    height: 54%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/fiveinner.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.project section.about .animate_box .about_zu_ttl p {
    font-size: 43px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2.58px;
    text-align: center;
    color: #fff;
}
.project section.about .animate_box .about_zu_ttl span {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 2.2px;
    text-align: center;
    color: #fff;
}
.project section.about .animate_box .about_box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.project section.about .animate_box .about_en1 {
    position: absolute;
    z-index: 1;
    border: solid 1px rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 28.6%;
    height: 28.6%;
    background-size: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.project section.about .animate_box .about_en1::before {
    content: "";
    z-index: 1;
    position: absolute;
    background: url(../images/about_line1.svg) 0 0 no-repeat;
    background-size: 100% auto;
    width: 50%;
    height: 32%;
    top: 76%;
    right: 83%;
    -webkit-transform: rotate(-0.5deg);
    transform: rotate(-0.5deg);
}
.project section.about .animate_box .about_en1::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #004F6F;
    z-index: 1;
}
.project section.about .animate_box .about_en1 P {
    z-index: 2;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}
.project section.about .animate_box .about_en1 span {
    color: #fff;
    display: block;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 900;
}
.project section.about .animate_box .about_en1 i::before {
    content: "";
    z-index: 1;
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(../images/circle.svg);
    opacity: 1;
    top: 82%;
    right: 83%;
    border-radius: 10px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 6;
}
.project section.about .animate_box .about_en1 i::after {
    content: "";
    z-index: 1;
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(../images/circle.svg);
    border-radius: 10px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 83%;
    right: -1%;
    left: auto;
    -webkit-animation-name: img_time;
    animation-name: img_time;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-size: contain;
}
@-webkit-keyframes img_time {
    0% {
        top: 83%;
        right: -1%;
    }
    25% {
        top: 88%;
        right: -8%;
    }
    50% {
        top: 94%;
        right: -16%;
    }
    75% {
        top: 100%;
        right: -24%;
    }
    100% {
        top: 108%;
        right: -35%;
    }
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes img_time {
    0% {
        top: 83%;
        right: -1%;
    }
    25% {
        top: 88%;
        right: -8%;
    }
    50% {
        top: 94%;
        right: -16%;
    }
    75% {
        top: 100%;
        right: -24%;
    }
    100% {
        top: 108%;
        right: -35%;
    }
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.project section.about .animate_box .about_en1-1 {
    top: 0px;
    left: 35.8%;
}
.project section.about .animate_box .about_en1-1::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #004F6F;
    z-index: 1;
}
.project section.about .animate_box .about_en1-2 {
    top: 24.8%;
    left: 69.6%;
    -webkit-transform: rotate(72deg);
    transform: rotate(72deg);
}
.project section.about .animate_box .about_en1-2 p {
    -webkit-transform: rotate(-72deg);
    transform: rotate(-72deg);
}
.project section.about .animate_box .about_en1-3 {
    top: 64.6%;
    left: 56.6%;
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
}
.project section.about .animate_box .about_en1-3 p {
    -webkit-transform: rotate(-144deg);
    transform: rotate(-144deg);
}
.project section.about .animate_box .about_en1-4 {
    top: 64.5%;
    left: 14.5%;
    -webkit-transform: rotate(216deg);
    transform: rotate(216deg);
}
.project section.about .animate_box .about_en1-4 p {
    -webkit-transform: rotate(-216deg);
    transform: rotate(-216deg);
}
.project section.about .animate_box .about_en1-5 {
    top: 24.5%;
    left: 1.7%;
    -webkit-transform: rotate(288deg);
    transform: rotate(288deg);
}
.project section.about .animate_box .about_en1-5 p {
    -webkit-transform: rotate(-288deg);
    transform: rotate(-288deg);
}
.project section.about .animate_box .about_en1-6 {
    top: 24.5%;
    left: 1.7%;
    -webkit-transform: rotate(350deg);
    transform: rotate(350deg);
}
.project section.about .animate_box .about_en1-6 p {
    -webkit-transform: rotate(-350deg);
    transform: rotate(-350deg);
}
.project section.news {
    padding-top: 5vw;
}
.project section.news .container {
    width: 70%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}
.project section.news .title {
    padding-bottom: 5vw;
}
.project section.news .title h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.project section.news .title h2 span {
    font-size: 115px;
    font-weight: 900;
    text-align: left;
    color: #333;
    line-height: 1;
}
.project section.news .title p {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 3.08px;
    text-align: left;
    color: #333;
}
.project section.news .list ul li {
    position: relative;
    z-index: 1;
    background-color: #fff;
}
.project section.news .list ul .more {
    position: relative;
    z-index: 2;
    background-color: #fff;
}
.project section.news .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6%;
    padding: 32px 0;
    position: relative;
}
@media (min-width: 981px) {
    .project section.news .line:nth-child(odd):hover .line_marquee {
        display: block;
        transition: .5s;
    }
}
@media (min-width: 981px) {
    .project section.news .line:nth-child(even):hover .line_marquee1 {
        display: block;
        transition: .5s;
    }
}
.project section.news .line::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100vw;
    left: calc((100vw - 100%) / 2 * -1);
    bottom: 0px;
    background: #333;
}
.project section.news .line .text {
    width: 50%;
    z-index: 9999;
}
.project section.news .line .text span {
    font-size: 16px;
    font-weight: 300;
    line-height: 2.13;
    text-align: left;
    color: #333;
}
.project section.news .line .text p {
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 1.7px;
    color: #333;
}
.project section.news .line .detail {
    width: 20%;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.7;
    color: #333;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.project section.news .line .detail p::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 14px;
    right: -50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-image: url(../images/arrow_detail.svg);
}
@media screen and (max-width: 1280px) {
    .project section.news .line {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .project section.news .line .text {
        width: 60%;
    }
}

@media (min-width: 981px) {
    .project section.news .line:hover .text span ,.project section.news .line:hover .text p {
        color: #fff;
        transition: .5s;
    }
}

.project section.news .line .line_marquee {
    position: absolute;
    width: 100vw;
    left: calc((100vw - 100%) / 2 * -1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    bottom: 4.5vw;
    display: none;
    height: 130px;
    overflow: hidden;
    z-index: 1;
    -webkit-transform: translateY(4.5vw) rotate(0deg);
    transform: translateY(4.5vw) rotate(0deg);
    background: -webkit-gradient(linear, left top, right top, from(#79C38D), color-stop(#004F6F), to(#004F6F));
    background: linear-gradient(to right, #79C38D, #004F6F, #004F6F);
}
.project section.news .line .line_marquee .track {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: line_marquee 3s linear infinite;
    animation: line_marquee 3s linear infinite;
}
.project section.news .line .line_marquee .track p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
}
.project section.news .line .line_marquee .track p span {
    color: rgba(255,255,255,0.3);
    font-size: 90px;
    font-weight: 900;
    transform: scale(1,0.1);
    margin-top: 50px;
}

.project section.news .line .line_marquee1 .track p span {
    color: rgba(255,255,255,0.2);
}

.project section.news .line .line_marquee .track p span.aabbcc {
    margin-top: -155px;
}
.project section.news .line .line_marquee .track p span::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    /*background-image: url(../images/marquee1.svg);*/
    top: 50%;
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}
.project section.news .line .line_marquee .track p .content {
    color: #fff;
    font-size: 90px;
    font-weight: 900;
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: transparent;
    line-height: 1.5;
    position: relative;
}
.project section.news .line .line_marquee .track p .content::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    /*background-image: url(../images/marquee2.svg);*/
    right: -150px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@-webkit-keyframes line_marquee {
    from {
        -webkit-transform: translateX(-48%);
        transform: translateX(-48%);
    }
    to {
        -webkit-transform: translateX(4.5%);
        transform: translateX(4.5%);
    }
}
@keyframes line_marquee {
    from {
        -webkit-transform: translateX(-48%);
        transform: translateX(-48%);
    }
    to {
        -webkit-transform: translateX(4.5%);
        transform: translateX(4.5%);
    }
}
.project section.news .line .line_marquee1 {
    -webkit-transform: translateY(4.5vw) rotate(0deg);
    transform: translateY(4.5vw) rotate(0deg);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    background: -webkit-gradient(linear, left top, right top, from(#333333), color-stop(#343434), to(#a8a8a8));
    background: linear-gradient(to right, #333333, #343434, #a8a8a8);
}
.project section.works {
    padding: 10.4vw 0 10.4vw 0;
    position: relative;
}
.project section.works .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.project section.works .content .left {
    width: 38%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.project section.works .content .left .bar {
    margin: 0 auto;
    width: 23.6vw;
    height: 8px;
    background-color: #f0f0f0;
    position: absolute;
    bottom: -8.25vw;
    left: 7vw;
    overflow: hidden;
}
.project section.works .content .left .bar::before {
    content: "";
    position: absolute;
    z-index: 5;
    height: 8px;
    width: 23.6vw;
    right: 70%;
    top: 0;
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
    background: -webkit-gradient(linear, left top, right top, from(#aad9cc), color-stop(20%, #245066), to(rgb(121, 195, 141)));
    background: linear-gradient(to right, #aad9cc, #245066 20% 80%, rgb(121, 195, 141));
}
@media screen and (max-width: 1600px) {
    .project section.works .content .left .bar {
        bottom: -9.25vw;
    }
}
.project section.works .content .left .bar.on::before {
    width: 100%;
    -webkit-transition: -webkit-transform 4600ms linear;
    transition: -webkit-transform 4600ms linear;
    transition: transform 4600ms linear;
    transition: transform 4600ms linear, -webkit-transform 4600ms linear;
    -webkit-transform: translate(70%, 0);
    transform: translate(70%, 0);
}
@-webkit-keyframes barAniamtion {
    0% {
        right: 70%;
    }
    0% {
        right: 70%;
    }
    100% {
        right: 0;
    }
}
@keyframes barAniamtion {
    0% {
        right: 70%;
    }
    0% {
        right: 70%;
    }
    100% {
        right: 0;
    }
}
.project section.works .content .title {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.project section.works .content .title h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.project section.works .content .title h2 span {
    font-size: 115px;
    font-weight: 900;
    text-align: center;
    color: #333;
    line-height: 1.1;
}
.project section.works .content .title p {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 3.08px;
    color: #333;
}
.project section.works .content .swiper_box {
    z-index: 1;
    width: 62%;
    position: relative;
}
.project section.works .content .swiper_box .swiper {
    position: static;
}
.project section.works .content .swiper_box .swiper-slide a {
    height: 100%;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.project section.works .content .swiper_box .swiper-slide a .pic {
    height: 28.65vw;
    width: 100%;
    overflow: hidden;
    border-radius: 0 20px 0 0;
}
.project section.works .content .swiper_box .swiper-slide a .pic .bg {
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.project section.works .content .swiper_box .swiper-slide a .text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    text-align: left;
    color: #333;
    font-family: "Noto Sans TC";
}
.project section.works .content .swiper_box .swiper-slide a .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}
.project section.works .content .swiper_box .swiper-slide a .tags .tag {
    padding: 5px 15px;
    background-color: #dadada;
}
.project section.works .content .swiper_box .swiper-slide a .tags .tag p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    color: #333;
    font-family: "Noto Sans TC";
}
@media (min-width: 981px) {
    .project section.works .content .swiper_box .swiper-slide a:hover .pic .bg {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}
.project section.works .content .swiper_box .swiper-button-next {
    position: absolute;
    top: unset;
    bottom: -9.5vw;
    left: 75px;
    z-index: 10;
    width: 60px;
    height: 60px;
}
.project section.works .content .swiper_box .swiper-button-next .pic {
    height: 100%;
    width: 100%;
    background-image: url(../images/arrow_right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
}
.project section.works .content .swiper_box .swiper-button-next::after {
    display: none;
}
@media screen and (max-width: 1600px) {
    .project section.works .content .swiper_box .swiper-button-next {
        bottom: -11vw;
    }
}
@media (min-width: 981px) {
    .project section.works .content .swiper_box .swiper-button-next:hover .pic {
        background-image: url(../images/arrow_right_h.svg);
    }
}
.project section.works .content .swiper_box .swiper-button-prev {
    top: unset;
    bottom: -9.5vw;
    left: 0;
    z-index: 10;
    width: 60px;
    height: 60px;
}
.project section.works .content .swiper_box .swiper-button-prev .pic {
    height: 100%;
    width: 100%;
    background-image: url(../images/arrow_left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
}
.project section.works .content .swiper_box .swiper-button-prev::after {
    display: none;
}
@media screen and (max-width: 1600px) {
    .project section.works .content .swiper_box .swiper-button-prev {
        bottom: -11vw;
    }
}
@media (min-width: 981px) {
    .project section.works .content .swiper_box .swiper-button-prev:hover .pic {
        background-image: url(../images/arrow_left_h.svg);
    }
}
.project section.works .content .swiper_box .swiper-pagination {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: unset;
    bottom: -9.5vw;
    left: -5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (max-width: 1600px) {
    .project section.works .content .swiper_box .swiper-pagination {
        bottom: -11vw;
    }
}
.project section.works .content .swiper_box .swiper-pagination span {
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    color: #333;
    line-height: 1;
}
.project section.works .content .swiper_box .swiper-pagination .swiper-pagination-current {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    position: relative;
}
.project section.works .content .swiper_box .swiper-pagination .swiper-pagination-current::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    top: 100%;
    left: 0;
    background-color: #fff;
    z-index: 2;
}
.project section.works .content .swiper_box .swiper-pagination .swiper-pagination-current::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 2px;
    top: 125%;
    left: 0;
    z-index: 3;
    background-color: #333;
}
.project section.works .content .swiper_box .swiper-pagination .swiper-pagination-total {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.project section.works .content .swiper_box .swiper-pagination #text {
    display: none;
}
.project section.works .more {
    margin-top: 4vw;
}
@media screen and (max-width: 1280px) {
    .project section.works .more {
        padding-top: 25px;
    }
}
@media screen and (max-width: 1280px) {
    .project section.works .content .title h2 span {
        font-size: 95px;
    }
}
.project section.service .container {
    width: 98%;
    max-width: 98%;
    margin: 0 auto;
    position: relative;
}
.project section.service .bslogan {
    width: 100%;
    font-size: 11.2vw;
    font-weight: 900;
    text-align: left;
    color: #f0f0f0;
    line-height: 1;
    -webkit-transform: translateY(3vw);
    transform: translateY(3vw);
}
@media screen and (max-width: 1279px) {
    .project section.service .bslogan {
        font-size: 11vw;
    }
}
.project section.service .content {
    background-color: #f0f0f0;
    padding: 9.2vw 7.35vw;
    padding-top: 7.8vw;
}
.project section.service .content .title h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.project section.service .content .title h2 span {
    font-size: 115px;
    font-weight: 900;
    text-align: center;
    color: #333;
    line-height: 1.1;
}
.project section.service .content .title p {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 3.08px;
    color: #333;
}
.project section.service .content .title span {
    display: block;
    padding-top: 20px;
}
.project section.service .content .items {
    margin-top: 100px;
}
.project section.service .content .items > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.25%;
    row-gap: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}
@media screen and (max-width: 1700px) {
    .project section.service .content .items > .row {
        gap: 1.25%;
        row-gap: 80px;
    }
}
.project section.service .content .items .box {
    position: relative;
    width: 18.75vw;
    height: 15.11vw;
    cursor: auto;
}
.project section.service .content .items .box .pic {
    position: absolute;
    width: 16.4vw;
    height: 100%;
    top: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.project section.service .content .items .box span {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 2.392vw;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-align: right;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
@media (min-width: 981px) {
    .project section.service .content .items .box:hover {
        width: 18.75vw;
    }
    .project section.service .content .items .box:hover .pic {
        width: 18.75vw;
    }
    .project section.service .content .items .box:hover .cn {
        opacity: 1;
    }
    .project section.service .content .items .box:hover .en {
        opacity: 0;
    }
}
.project section.service .content .items .box .cn {
    font-size: 2.392vw;
    opacity: 0;
    font-family: "Noto Sans TC";
}
.project section.service .content .items .box .en {
    opacity: 1;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
}
.project section.service .content .items .box:nth-child(2) {
    margin-top: -65px;
}
.project section.service .content .items .box:nth-child(3) {
    margin-top: -130px;
}
.project section.service .content .items .box:nth-child(4) {
    margin-top: -195px;
}
.project section.service .content .items .box:nth-child(6) {
    margin-top: -65px;
}
.project section.service .content .items .box:nth-child(7) {
    margin-top: -130px;
}
.project section.service .content .items .box:nth-child(8) {
    margin-top: -195px;
}
.project section.service .content .items .effect .pic {
    -webkit-animation: scale-up-hor-right 4s linear;
    animation: scale-up-hor-right 4s linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
@-webkit-keyframes scale-up-hor-right {
    0% {
        width: 16.4vw;
    }
    20% {
        width: 18.75vw;
    }
    40% {
        width: 16.4vw;
    }
    100% {
        width: 16.4vw;
    }
}
@keyframes scale-up-hor-right {
    0% {
        width: 16.4vw;
    }
    20% {
        width: 18.75vw;
    }
    40% {
        width: 16.4vw;
    }
    100% {
        width: 16.4vw;
    }
}
@-webkit-keyframes scale-right {
    0% {
        width: 16.4vw;
    }
    100% {
        width: 16.4vw;
    }
}
@keyframes scale-right {
    0% {
        width: 16.4vw;
    }
    100% {
        width: 16.4vw;
    }
}
.project section.clients {
    padding-top: 8vw;
    padding-bottom: 3.75vw;
}
.project section.clients .container {
    max-width: 1600px;
    padding: 0 30px;
}
@media screen and (max-width: 1280px) {
    .project section.clients .container {
        width: 95%;
    }
}
.project section.clients .title h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.project section.clients .title h2 span {
    font-size: 115px;
    font-weight: 900;
    color: #333;
    line-height: 1;
}
.project section.clients .title p {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 3.08px;
    color: #333;
}
.project section.clients .logos {
    margin-top: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: flex-start;
    gap: 5%;
    row-gap: 30px;
}
.project section.clients .logos .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 16%;
    height: 100px;
}
.project section.clients .logos .logo .pic {
    width: 100%;
    max-width: 275px;
    height: 90%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.project section.clients .hidden {
    height: 490px;
    overflow: hidden;
}
.project section.clients .see {
    margin-top: 50px;
}
.project section.clients .see .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    position: relative;
}
.project section.clients .see .link:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.13, 0.78, 0.38, 0.98);
    transition: -webkit-transform 0.4s cubic-bezier(0.13, 0.78, 0.38, 0.98);
    transition: transform 0.4s cubic-bezier(0.13, 0.78, 0.38, 0.98);
    transition: transform 0.4s cubic-bezier(0.13, 0.78, 0.38, 0.98), -webkit-transform 0.4s cubic-bezier(0.13, 0.78, 0.38, 0.98);
}
@media (min-width: 981px) {
    .project section.clients .see .link:hover:before {
        -webkit-animation: lineAniamte 0.8s 1;
        animation: lineAniamte 0.8s 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}
.project section.clients .see p {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.55;
    text-align: left;
    color: #333;
}
@-webkit-keyframes lineAniamte {
    0% {
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    50.1% {
        -webkit-transform-origin: 0% 0;
        transform-origin: 0% 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    100% {
        -webkit-transform-origin: 0% 0;
        transform-origin: 0% 0;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes lineAniamte {
    0% {
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    50.1% {
        -webkit-transform-origin: 0% 0;
        transform-origin: 0% 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    100% {
        -webkit-transform-origin: 0% 0;
        transform-origin: 0% 0;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

.project section.contact .container {
    max-width: 1000px;
    padding: 0 30px;
}

@media (max-width: 980px) {
    .project section.contact .container {
    max-width: 700px;
    padding: 0 10%;
    }
}

.project section.contact {
    padding: 8vw 0;
    /*padding-top: 7vw;*/
    width: 100%;
    background-color: rgba(0, 79, 111, 1);
    /*background-blend-mode: multiply;*/
    background-position: right 35% bottom 0;
    background-repeat: no-repeat;
    background-size: contain;
    /*text-align: center;*/
    color: white;
    /*cursor: url("../images/mouse.svg") 50 50, pointer;*/
    background-image: url('../images/contact.png');
}


@media (max-width: 980px) {
    .project section.contact {
    background-position: right 20% bottom 0;
    }
}

@media (max-width: 480px) {
    .project section.contact {
    background-position: right 1% bottom 0;
    padding-top: 10vw;   
    background-image: url('../images/contactm.png');
    }
}

.project section.contact .title h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;*/
}
.project section.contact .title h2 span {
    /*font-size: 115px;
    font-weight: 900;*/
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}
.project section.contact .title h2.en span {
    font-weight: 900;
}

@media (max-width: 980px) {
    .project section.contact .title h2 span {
    font-size: 36px;
    }
}

@media (max-width: 480px) {
    .project section.contact .title h2 span {
    font-size: 28px;
    font-weight: 500;
    }
    .project section.contact .title h2.en span {
    font-weight: 700;
}
}


.project section.contact .subtitle {
    font-family: "Noto Sans TC";
    font-size: 16px;
    font-weight: 500;
    line-height: 2.13;
    letter-spacing: 1.6px;
    /*text-align: center;*/
    color: #fff;
    margin-top: 1rem;
}
.project section.contact .subtitle a {
    font-family: "Noto Sans TC";
    font-size: 16px;
    font-weight: 500;
    line-height: 2.13;
    letter-spacing: 1.6px;
    /*text-align: center;*/
    color: #fff;
    margin-left: 10px;
    text-decoration: underline;
}
.project section.contact .info {
    margin-top: 1rem;
    margin-left: 2rem;
    margin-bottom: 2rem;
}
.project section.contact .info p {
    font-family: "Noto Sans TC";
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.6px;
    /*text-align: center;*/
    color: #fff;
    vertical-align: middle !important;
    margin-bottom: 10px;
}

.project section.contact .info p a {
    color: #fff;
}

.project section.contact .info02 p a {
    margin-right: 10px;
}

.project section.contact .info p span {
    padding-left: 15px;
}


@media (max-width: 480px) {
    .project section.contact .info p {
    font-size: 17px;
    }
    .project section.contact .info {
    margin-left: 1rem;
    }
}


.project section.contact .btns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
}

.project section.contact .info img {
    width: 35px;
    display: inline-block;
    vertical-align: middle !important;
}


.project section.contact .btns .btn {
    padding: 24px 0;
    width: 270px;
    background-color: #fff;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
    /*cursor: url("../images/mouse.svg") 50 50, pointer;*/
}
.project section.contact .btns .btn p {
    color: #333;
    font-size: 20px;
    letter-spacing: 1.6px;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
}
@media (min-width: 981px) {
    .project section.contact .btns .btn:hover {
        font-size: 20px;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    .project section.contact .btns .btn:hover p {
        -webkit-transform: scale(1.111);
        transform: scale(1.111);
    }
}

@media screen and (max-width: 980px) {
    .project .banner .logo {
        width: 100px;
        top: 15px;
        left: 30px;
    }
    .project .banner h2 {
        font-size: 18vw;
    }
    .project .banner h2 span {
        font-size: 3vw;
    }
    .project .banner .scrolldown {
        bottom: 10%;
        width: 80px;
        height: 80px;
    }
    .project .banner .scrolldown .pic {
        width: 15px;
    }
    .project .banner .scrolldown::after {
        width: 107.5px;
        height: 107.5px;
    }
    .project section.about .marquee {
        position: relative;
        width: 100vw;
        max-width: 100%;
        height: 11.25vw;
        overflow: hidden;
        z-index: 1;
        -webkit-transform: translateY(4.5vw);
        transform: translateY(4.5vw);
    }
    .project section.about .marquee .track {
        display: inline-block;
        position: absolute;
        white-space: nowrap;
        will-change: transform;
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-animation: marquee 100s linear infinite;
        animation: marquee 100s linear infinite;
    }
    .project section.about .marquee .track p.content {
        color: black;
        font-size: 8.9vw;
        font-weight: 900;
        -webkit-text-stroke: 2px #fff;
        -webkit-text-fill-color: transparent;
        line-height: 1;
    }
    .project section.about .marquee .track1 {
        -webkit-animation: marquee-1 35s linear infinite;
        animation: marquee-1 35s linear infinite;
    }
    .project section.about .marquee1 {
        -webkit-transform: translateY(-3.5vw);
        transform: translateY(-3.5vw);
    }
    .project section.about .about_content {
        max-width: 1112px;
        margin: 0 auto;
        border: 10px solid #fff;
        padding: 5vw 2vw 5vw 2vw;
        padding-top: 5vw;
        padding-bottom: 8vw;
        z-index: 2;
        /*background: -webkit-gradient(linear, left top, left bottom, from(#79C38C), color-stop(12%, #245066), to(#79C38B));
        background: linear-gradient(to bottom, #79C38C, #245066 12% 90%, #79C38B);
        background: -webkit-gradient(linear, left top, left bottom, from(#245066), color-stop(12%, #fff), to(#245066));
        background: linear-gradient(to bottom, #245066, #fff 12% 85%, #245066);*/
        background: -webkit-gradient(linear, left top, left bottom, from(#79C38D), color-stop(12%, #fefefe), to(#79C38D));
        background: linear-gradient(to bottom, #79C38D, #fefefe 12% 85%, #79C38D);
        position: relative;
    }
    .project section.about .about_content .title h2 span {
        font-size: 12.5vw;
    }
    .project section.about .about_content .title p {
        font-size: 5vw;
    }
    .project section.about .about_content .text {
        margin-top: 30px;
        font-size: 16px;
        line-height: 1.6;
    }
}
@media screen and (max-width: 980px) and (max-width: 768px) {
    .project section.about .about_content .text br {
        display: none;
    }
    .project section.about .about_content .text br.mobr {
        display: block;
    }
}
@media screen and (max-width: 980px) {
    .project section.about .animate_box {
        margin: 40px auto 0;
        z-index: 1;
        width: 600px;
        height: 600px;
    }
}
@media screen and (max-width: 980px) and (max-width: 768px) {
    .project section.about .animate_box {
        width: 70vw;
        height: 70vw;
    }
}
@media screen and (max-width: 980px) {
    .project section.about .animate_box .about_zu_ttl p {
        font-size: 3vw;
        line-height: 1;
        letter-spacing: 2px;
    }
    .project section.about .animate_box .about_zu_ttl span {
        font-size: 2vw;
        line-height: 1.5;
        letter-spacing: 1.2px;
    }
    .project section.about .animate_box .about_en1 {
        position: absolute;
        z-index: 1;
        border: solid 1px rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        width: 28.6%;
        height: 28.6%;
        background-size: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .project section.about .animate_box .about_en1::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #004F6F;
        z-index: 1;
    }
    .project section.about .animate_box .about_en1 P {
        font-size: 2vw;
    }
    .project section.about .animate_box .about_en1 span {
        font-size: 2vw;
    }
}
@media screen and (max-width: 980px) and (max-width: 768px) {
    .project section.about .animate_box .about_en1 i::before {
        width: 14px;
    }
    .project section.about .animate_box .about_en1 i::after {
        width: 14px;
    }
}
@media screen and (max-width: 980px) and (max-width: 576px) {
    .project section.about .animate_box .about_en1 i::before {
        width: 11px;
        top: 86%;
        right: 77%;
    }
    .project section.about .animate_box .about_en1 i::after {
        width: 11px;
    }
}
@media screen and (max-width: 980px) {
    .project section.news {
        padding-top: 10vw;
    }
    .project section.news .container {
        width: 90%;
    }
    .project section.news .title h2 span {
        font-size: 12.5vw;
    }
    .project section.news .title p {
        font-size: 5vw;
    }
    .project section.news .list ul li {
        position: relative;
        z-index: 1;
        background-color: #fff;
    }
    .project section.news .line .text span {
        font-size: 16px;
        font-weight: 300;
        line-height: 2.13;
        text-align: left;
        color: #333;
    }
    .project section.news .line .text p {
        font-size: 17px;
        font-weight: 500;
        line-height: 2;
        letter-spacing: 1.7px;
        color: #333;
    }
    .project section.news .line .detail {
        margin-right: 25px;
    }
    .project section.news .line .detail p::after {
        right: -36%;
    }
}
@media screen and (max-width: 980px) and (max-width: 768px) {
    .project section.news .line {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
    .project section.news .line .text {
        width: 100%;
    }
    .project section.news .line .detail {
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .project section.news .line .detail p {
        margin-right: 30px;
    }
    .project section.news .line .detail p::after {
        right: -1.5%;
    }
}
@media screen and (max-width: 980px) {
    .project section.works .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .project section.works .content .left {
        width: 90%;
        margin: 0 auto;
    }
    .project section.works .content .left .bar {
        display: none;
    }
    .project section.works .content .title {
        width: 100%;
        padding-bottom: 100px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .project section.works .content .title h2 {
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
    }
    .project section.works .content .title h2 span {
        font-size: 12.5vw;
    }
    .project section.works .content .title p {
        font-size: 5vw;
    }
    .project section.works .content .swiper_box {
        width: 100%;
        padding-left: 30px;
    }
    .project section.works .content .swiper_box .swiper-slide a .pic {
        height: 50vw;
    }
}
@media screen and (max-width: 980px) and (max-width: 768px) {
    .project section.works .content .swiper_box .swiper-slide a .pic {
        height: 80vw;
    }
}
@media screen and (max-width: 980px) and (max-width: 576px) {
    .project section.works .content .swiper_box .swiper-slide a .pic {
        height: 95vw;
    }
}
@media screen and (max-width: 980px) {
    .project section.works .content .swiper_box .swiper-button-next {
        top: -11vw;
        width: 40px;
        height: 40px;
        left: unset;
        right: 20px;
    }
    .project section.works .content .swiper_box .swiper-button-prev {
        top: -11vw;
        width: 40px;
        height: 40px;
        left: unset;
        right: 80px;
    }
    .project section.service .bslogan {
        font-size: 12vw;
        text-align: center;
    }
    .project section.service .content {
        padding: 7.5vw 5vw;
    }
    .project section.service .content .title {
        width: 100%;
        padding-bottom: 50px;
    }
    .project section.service .content .title h2 {
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
    }
    .project section.service .content .title h2 span {
        font-size: 12.5vw;
    }
    .project section.service .content .title p {
        font-size: 5vw;
    }
    .project section.service .content .items {
        margin-top: 0;
    }
    .project section.service .content .items > .row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5%;
        row-gap: 40px;
    }
    .project section.service .content .items .box {
        width: 47.5%;
        height: 25vw;
    }
    .project section.service .content .items .box .pic {
        width: 100%;
    }
    .project section.service .content .items .box .en {
        font-size: 6.25vw;
    }
    .project section.service .content .items .box .cn {
        font-size: 6.25vw;
    }
    .project section.service .content .items .box:nth-child(1) .pic {
        -webkit-animation: unset;
        animation: unset;
    }
    .project section.service .content .items .box:nth-child(2) {
        margin-top: 0px;
    }
    .project section.service .content .items .box:nth-child(2) .pic {
        -webkit-animation: unset;
        animation: unset;
    }
    .project section.service .content .items .box:nth-child(3) {
        margin-top: 0px;
    }
    .project section.service .content .items .box:nth-child(3) .pic {
        -webkit-animation: unset;
        animation: unset;
    }
    .project section.service .content .items .box:nth-child(4) {
        margin-top: 0px;
    }
    .project section.service .content .items .box:nth-child(4) .pic {
        -webkit-animation: unset;
        animation: unset;
    }
    .project section.service .content .items .box:nth-child(5) .pic {
        -webkit-animation: unset;
        animation: unset;
    }
    .project section.service .content .items .box:nth-child(6) {
        margin-top: 0px;
    }
    .project section.service .content .items .box:nth-child(6) .pic {
        -webkit-animation: unset;
        animation: unset;
    }
    .project section.service .content .items .box:nth-child(7) {
        margin-top: 0px;
    }
    .project section.service .content .items .box:nth-child(7) .pic {
        -webkit-animation: unset;
        animation: unset;
    }
    .project section.service .content .items .box:nth-child(8) {
        margin-top: 0px;
    }
    .project section.service .content .items .box:nth-child(8) .pic {
        -webkit-animation: unset;
        animation: unset;
    }
    .project section.clients {
        padding-top: 15vw;
    }
    .project section.clients .title h2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
    }
    .project section.clients .title h2 span {
        font-size: 12.5vw;
    }
    .project section.clients .title p {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        font-size: 5vw;
        letter-spacing: 3.08px;
        color: #333;
    }
    .project section.clients .logos {
        row-gap: 20px;
    }
    .project section.clients .logos .logo {
        height: 80px;
        width: 47.5%;
    }
    .project section.clients .logos .logo .pic {
        height: 100%;
    }
}
@media screen and (max-width: 980px) and (max-width: 576px) {
    .project section.clients .logos {
        row-gap: 10px;
    }
    .project section.clients .logos .logo {
        height: 80px;
    }
}
@media screen and (max-width: 980px) {
    .project section.clients .hidden {
        height: 900px;
    }
    .project section.clients .see {
        margin-top: 0;
    }
    .project section.contact .title h2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .project section.contact .title h2 span {
        /*font-size: 12.5vw;*/
    }
    .project section.contact .btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .project section.contact .btns .btn {
        width: 200px;
        padding: 20px 0;
        font-size: 18px;
    }
}


/*
.scroll-down {
  display: block;
  position: absolute;
  width: 126px;
  height: 70px;
  font-size: 0;
  background: url('../images/scroll.png');
  background-size: cover;
  left: 50%;
  bottom: 7%;
  margin-left: -63px;
  animation: scrollDown 2s infinite;
  -moz-animation: scrollDown 2s infinite;
  -webkit-animation: scrollDown 2s infinite;
  z-index: 999;
}
@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(-5px);
    -ms-transform: translateY(-5px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    -ms-transform: translateY(-5px);
  }
  100% {
    opacity: 0;
    transform: translateY(5px);
    -ms-transform: translateY(-5px);
  }
}
@-moz-keyframes scrollDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-5px);
  }
  50% {
    opacity: 1;
    -moz-transform: translateY(-5px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-5px);
  }
}
@-webkit-keyframes scrollDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(-5px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
  }
}
*/











.scrollDown123 {
  /*-webkit-animation: moveBtoT 1s 2.8s ease-in forwards;
          animation: moveBtoT 1s 2.8s ease-in forwards;*/
  -webkit-animation: moveBtoT 1s 0.5s ease-in forwards;
          animation: moveBtoT 1s 0.5s ease-in forwards;
}

.scrollDown123 {
  left: 0;
  right: 0;
  bottom: -80px;
  margin: auto;
  text-align: center;
  width: 80px;
  /*margin: auto;
  z-index: 10;
  cursor: pointer;*/
  opacity: 0;



  display: block;
  position: absolute;
  /*left: 50%;
  margin-left: -63px;*/
  bottom: 7%;
  z-index: 999;

}
.scrollDown123 .txt {
  color: #ffffff;
  font-family: f02;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.7px;
  margin-bottom: 30px;
}

.scrollDown123 img {
  width: 15px;
  text-align: center;
}

.scrollDown123 .circle {
  width: 63px;
  height: 63px;
  padding: 5px;
  border-radius: 50%;
  margin: auto;
  position: relative;
}
.scrollDown123 .circle span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(#004F6F), color-stop(85%, #79C38D));
    background: linear-gradient(to right bottom, #004F6F 0% 40%, #79C38D 85% 100%);
  position: relative;
}
.scrollDown123 .circle span:before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: -6px;
  bottom: -6px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid #137299;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0;
  -webkit-animation: circleAni2 1s infinite ease-out;
          animation: circleAni2 1s infinite ease-out;
}
.scrollDown123 .circle:before, .scrollDown123 .circle:after {
  content: "";
  position: absolute;
  margin: auto;
  border-radius: 50%;
  border: 1px solid #004F6F;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0;
  -webkit-animation: circleAni2 1s infinite ease-out;
          animation: circleAni2 1s infinite ease-out;
}
.scrollDown123 .circle:before {
  left: -14px;
  right: -14px;
  top: -14px;
  bottom: -14px;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.scrollDown123 .circle:after {
  left: -6px;
  right: -6px;
  top: -6px;
  bottom: -6px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}




@media (max-width: 1180px) {
  .scrollDown123 {
  bottom: 7%;
  }
}



@media (max-width: 992px) {
  .scrollDown123 {
  bottom: 7%;
  }
  .scrollDown123 .txt {
    display: none;
  }
}







@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes circleAni {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.525);
            transform: scale(1.525);
  }
}
@keyframes circleAni {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.525);
            transform: scale(1.525);
  }
}
@-webkit-keyframes circleAni2 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0.3;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1.525);
            transform: scale(1.525);
  }
}
@keyframes circleAni2 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0.3;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1.525);
            transform: scale(1.525);
  }
}
@-webkit-keyframes dotMoveAni {
  0%, 40% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  10%, 30% {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
  20% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
}
@keyframes dotMoveAni {
  0%, 40% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  10%, 30% {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
  20% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
}
@-webkit-keyframes dotAni {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0.3;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
}
@keyframes dotAni {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0.3;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
}
@-webkit-keyframes lineMoveAni {
  0% {
    top: 0;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}
@keyframes lineMoveAni {
  0% {
    top: 0;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes flipX {
  0% {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
}
@keyframes flipX {
  0% {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
}
@-webkit-keyframes flipAni {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes flipAni {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    opacity: 1;
  }
}
@-webkit-keyframes moveBtoT {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes moveBtoT {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes moveRtoL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveRtoL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes moveLtoR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveLtoR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes moveRblurL {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveRblurL {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes moveLblurR {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveLblurR {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes moveLTbevelRB {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(-30px, -30px);
            transform: translate(-30px, -30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes moveLTbevelRB {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(-30px, -30px);
            transform: translate(-30px, -30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes moveRBbevelLT {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(30px, 30px);
            transform: translate(30px, 30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes moveRBbevelLT {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(30px, 30px);
            transform: translate(30px, 30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes moveRTbevelLB {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(30px, -30px);
            transform: translate(30px, -30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes moveRTbevelLB {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(30px, -30px);
            transform: translate(30px, -30px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes island_show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes island_show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(-5px);
            transform: scale(0.8) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(-5px);
            transform: scale(0.8) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes squirrel {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
            transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  5% {
    -webkit-transform: translate3d(0, 0px, 0) scale3d(0.9, 1.15, 1);
            transform: translate3d(0, 0px, 0) scale3d(0.9, 1.15, 1);
  }
  8% {
    -webkit-transform: translate3d(-10px, -10px, 0) scale3d(1.15, 0.9, 1);
            transform: translate3d(-10px, -10px, 0) scale3d(1.15, 0.9, 1);
  }
  11% {
    -webkit-transform: translate3d(-20px, 0, 0) scale3d(1.15, 0.9, 1);
            transform: translate3d(-20px, 0, 0) scale3d(1.15, 0.9, 1);
  }
  14% {
    -webkit-transform: translate3d(-30px, -10px, 0) scale3d(1.15, 0.9, 1);
            transform: translate3d(-30px, -10px, 0) scale3d(1.15, 0.9, 1);
  }
  17% {
    -webkit-transform: translate3d(-40px, 0px, 0) scale3d(1, 1, 1);
            transform: translate3d(-40px, 0px, 0) scale3d(1, 1, 1);
  }
  20% {
    -webkit-transform: translate3d(-40px, 0, 0) scaleX(1) scale3d(1, 1, 1);
            transform: translate3d(-40px, 0, 0) scaleX(1) scale3d(1, 1, 1);
  }
  26% {
    -webkit-transform: translate3d(-40px, 0, 0) scaleX(-1) scale3d(1, 1, 1);
            transform: translate3d(-40px, 0, 0) scaleX(-1) scale3d(1, 1, 1);
  }
  43% {
    -webkit-transform: translate3d(-40px, 0, 0) scaleX(-1) scale3d(1, 1, 1);
            transform: translate3d(-40px, 0, 0) scaleX(-1) scale3d(1, 1, 1);
  }
  46% {
    -webkit-transform: translate3d(-30px, -10px, 0) scaleX(-1) scale3d(1.15, 0.9, 1);
            transform: translate3d(-30px, -10px, 0) scaleX(-1) scale3d(1.15, 0.9, 1);
  }
  49% {
    -webkit-transform: translate3d(-20px, 0px, 0) scaleX(-1) scale3d(0.9, 1.15, 1);
            transform: translate3d(-20px, 0px, 0) scaleX(-1) scale3d(0.9, 1.15, 1);
  }
  52% {
    -webkit-transform: translate3d(-10px, -10px, 0) scaleX(-1) scale3d(1.15, 0.9, 1);
            transform: translate3d(-10px, -10px, 0) scaleX(-1) scale3d(1.15, 0.9, 1);
  }
  55% {
    -webkit-transform: translate3d(0px, 0px, 0) scaleX(-1) scale3d(1, 1, 1);
            transform: translate3d(0px, 0px, 0) scaleX(-1) scale3d(1, 1, 1);
  }
  70% {
    -webkit-transform: translate3d(0px, 0px, 0) scaleX(-1) scale3d(1, 1, 1);
            transform: translate3d(0px, 0px, 0) scaleX(-1) scale3d(1, 1, 1);
  }
  78% {
    -webkit-transform: translate3d(0px, 0px, 0) scaleX(1) scale3d(1, 1, 1);
            transform: translate3d(0px, 0px, 0) scaleX(1) scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
            transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}
@keyframes squirrel {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
            transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  5% {
    -webkit-transform: translate3d(0, 0px, 0) scale3d(0.9, 1.15, 1);
            transform: translate3d(0, 0px, 0) scale3d(0.9, 1.15, 1);
  }
  8% {
    -webkit-transform: translate3d(-10px, -10px, 0) scale3d(1.15, 0.9, 1);
            transform: translate3d(-10px, -10px, 0) scale3d(1.15, 0.9, 1);
  }
  11% {
    -webkit-transform: translate3d(-20px, 0, 0) scale3d(1.15, 0.9, 1);
            transform: translate3d(-20px, 0, 0) scale3d(1.15, 0.9, 1);
  }
  14% {
    -webkit-transform: translate3d(-30px, -10px, 0) scale3d(1.15, 0.9, 1);
            transform: translate3d(-30px, -10px, 0) scale3d(1.15, 0.9, 1);
  }
  17% {
    -webkit-transform: translate3d(-40px, 0px, 0) scale3d(1, 1, 1);
            transform: translate3d(-40px, 0px, 0) scale3d(1, 1, 1);
  }
  20% {
    -webkit-transform: translate3d(-40px, 0, 0) scaleX(1) scale3d(1, 1, 1);
            transform: translate3d(-40px, 0, 0) scaleX(1) scale3d(1, 1, 1);
  }
  26% {
    -webkit-transform: translate3d(-40px, 0, 0) scaleX(-1) scale3d(1, 1, 1);
            transform: translate3d(-40px, 0, 0) scaleX(-1) scale3d(1, 1, 1);
  }
  43% {
    -webkit-transform: translate3d(-40px, 0, 0) scaleX(-1) scale3d(1, 1, 1);
            transform: translate3d(-40px, 0, 0) scaleX(-1) scale3d(1, 1, 1);
  }
  46% {
    -webkit-transform: translate3d(-30px, -10px, 0) scaleX(-1) scale3d(1.15, 0.9, 1);
            transform: translate3d(-30px, -10px, 0) scaleX(-1) scale3d(1.15, 0.9, 1);
  }
  49% {
    -webkit-transform: translate3d(-20px, 0px, 0) scaleX(-1) scale3d(0.9, 1.15, 1);
            transform: translate3d(-20px, 0px, 0) scaleX(-1) scale3d(0.9, 1.15, 1);
  }
  52% {
    -webkit-transform: translate3d(-10px, -10px, 0) scaleX(-1) scale3d(1.15, 0.9, 1);
            transform: translate3d(-10px, -10px, 0) scaleX(-1) scale3d(1.15, 0.9, 1);
  }
  55% {
    -webkit-transform: translate3d(0px, 0px, 0) scaleX(-1) scale3d(1, 1, 1);
            transform: translate3d(0px, 0px, 0) scaleX(-1) scale3d(1, 1, 1);
  }
  70% {
    -webkit-transform: translate3d(0px, 0px, 0) scaleX(-1) scale3d(1, 1, 1);
            transform: translate3d(0px, 0px, 0) scaleX(-1) scale3d(1, 1, 1);
  }
  78% {
    -webkit-transform: translate3d(0px, 0px, 0) scaleX(1) scale3d(1, 1, 1);
            transform: translate3d(0px, 0px, 0) scaleX(1) scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
            transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}
@-webkit-keyframes drink {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes drink {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}