#keyVisual .scroll-down {
    top: auto;
    right: auto;
    bottom: 5vh;
    left: 50%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#welcome {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1.5s forwards;
    padding-left: 30px;
}

#welcome>div:first-child {
    font-weight: 800;
    font-size: 64px;
    line-height: 70px;
}

#welcome>div:last-child {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 10px;
    padding-top: 10px;
    padding-left: 10px;
}

@media (min-width: 992px) {
    #welcome {
        padding-left: 0px;
        text-align: center;
        align-items: center;
    }

    #welcome>div:last-child {
        font-size: 20px;
        letter-spacing: 10px;
        padding-left: 0px;
        padding-top: 25px;
    }
}

@keyframes waterFlow1 {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 25%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 75%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes waterFlow2 {
    0% {
        background-position: 100% 50%;
    }

    25% {
        background-position: 50% 75%;
    }

    50% {
        background-position: 0% 50%;
    }

    75% {
        background-position: 50% 25%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes waterWave {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }

    25% {
        transform: translateX(40px) translateY(-30px) scale(1.05);
    }

    50% {
        transform: translateX(0) translateY(-40px) scale(1.1);
    }

    75% {
        transform: translateX(-40px) translateY(-30px) scale(1.05);
    }

    100% {
        transform: translateX(0) translateY(0) scale(1);
    }
}

.service {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #07355C, #D4C98E);
    padding-top: 50px;
    padding-bottom: 80px;
}

.service::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg,
            #07355C 0%,
            #07355C 15%,
            #1a4d73 20%,
            #D4C98E 30%,
            #D4C98E 35%,
            #E8DBA8 40%,
            #D4C98E 45%,
            #D4C98E 70%,
            #1a4d73 75%,
            #07355C 80%,
            #07355C 100%);
    background-size: 200% 200%;
    animation: waterFlow1 10s linear infinite, waterWave 12s ease-in-out infinite;
    opacity: 0.8;
    z-index: 0;
}

.service::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(225deg,
            #07355C 0%,
            #07355C 20%,
            #2d5f8f 25%,
            #D4C98E 40%,
            #D4C98E 45%,
            #E8DBA8 50%,
            #D4C98E 55%,
            #D4C98E 80%,
            #2d5f8f 85%,
            #07355C 90%,
            #07355C 100%);
    background-size: 200% 200%;
    animation: waterFlow2 12s linear infinite, waterWave 15s ease-in-out infinite reverse;
    opacity: 0.6;
    z-index: 0;
}

.service>* {
    position: relative;
    z-index: 1;
}

.block-title {
    position: relative;
    padding-left: 80px;
    padding-top: 5px;
}

.block-title::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 5px;
    width: 43px;
    height: 43px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.block-title::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 62px;
    width: 3px;
    height: 52px;
}

.block-title>div:first-child {
    font-weight: 800;
    font-size: 30px;
}

.block-title>div:last-child {
    font-weight: 300;
    font-size: 12px;
    padding-top: 2px;
}

.service .block-title,
.news .block-title {
    color: #07355C;
}

.service .block-title::before,
.news .block-title::before {
    background-image: url('../images/svg/icon_flower_blue.svg');
}

.service .block-title::after,
.news .block-title::after {
    background-color: #07355C;
}

.service-item {
    text-align: center;
    color: #000;
    text-transform: uppercase;
    padding-top: 55px;
}

.service-item .service-item-icon1 {
    width: 176px;
    height: 176px;
    margin: 0 auto;
    background-color: #9E8937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-item-icon2 {
    width: 164px;
    height: 164px;
    margin: 0 auto;
    background-color: #C3772E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-item-icon1 img {
    width: 125%;
    height: 125%;
}

.service-item .service-item-icon2 img {
    width: 125%;
    height: 125%;
}

.service-item .service-item-title {
    font-weight: 800;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 5px;
    padding: 25px 0 15px;
}

.service-item .service-item-content {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2px;
    padding-bottom: 30px;
}

.service-item .service-item-btn a {
    display: block;
    width: 130px;
    height: 35px;
    border-radius: 20px;
    border: 1px solid #07355C;
    color: #07355C;
    margin: 0 auto;
    line-height: 31px;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 700;
}

.service-item .service-item-btn a:hover {
    background-color: #07355C;
    color: #eae2d1;
}

.service .separater {
    width: 3px;
    height: 450px;
    background-image: url('../images/svg/bg_service_separater.svg');
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

@media (min-width: 992px) {
    .block-title {
        padding-left: 125px;
        padding-top: 10px;
    }

    .block-title::before {
        top: 7px;
        left: 22px;
        width: 58px;
        height: 58px;
    }

    .block-title::after {
        left: 100px;
        width: 5px;
        height: 70px;
    }

    .block-title>div:first-child {
        font-size: 40px;
    }

    .block-title>div:last-child {
        font-size: 16px;
        padding-top: 15px;
    }

    .service {
        height: 100vh;
        padding-top: 100px;
        padding-bottom: 0px;
    }

    .service .container {
        width: 100%;
    }

    .service .row:nth-child(2) {
        display: flex;
        align-items: center;
        min-height: calc(100vh - 200px);
    }

    .service-item {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-item .service-item-icon1 {
        width: 240px;
        height: 240px;
        justify-content: center;
    }

    .service-item .service-item-icon2 {
        width: 220px;
        height: 220px;
        margin: 10px auto;
    }

    .service-item .service-item-title {
        font-size: 64px;
        letter-spacing: 5px;
        padding: 30px 0;
    }

    .service-item .service-item-content {
        font-size: 18px;
        letter-spacing: 2px;
        padding-bottom: 30px;
    }

    .service-item .service-item-btn a {
        width: 150px;
        height: 40px;
        font-size: 14px;
        line-height: 36px;
        letter-spacing: 2px;
    }

    .service .separater {
        display: block;
    }
}

.aboutus {
    background-image: url('../images/bg_about.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.aboutus .container {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.aboutus .separater {
    width: 2px;
    background-color: #bdc0ba;
    position: absolute;
    top: 0;
    left: 33.33%;
    height: 100%;
    opacity: 0.3;
    display: none;
}

.aboutus .separater-right {
    left: 66.66%;
}

.aboutus .block-title {
    color: #fff;
}

.aboutus .block-title::before {
    background-image: url('../images/svg/icon_flower_gray.svg');
}

.aboutus .block-title::after {
    background-color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aboutus-slogan {
    padding-top: 40px;
    color: #bdc0ba;
    font-weight: 300;
    font-size: 36px;
    line-height: 45px;
    text-align: center;
    font-family: 'DIN Pro', sans-serif;
    font-style: italic;
}

.aboutus-slogan>div {
    transform-origin: left center;
}

.aboutus-slogan>div span.char,
.aboutus-slogan-cht span.char {
    display: inline-block;
    opacity: 0;
    transform-origin: left center;
}

#aboutus.in-view .aboutus-slogan>div span.char,
#aboutus.in-view .aboutus-slogan-cht span.char {
    animation: fadeInUp 0.5s ease-out forwards;
}

.aboutus-slogan .fw500 {
    font-weight: 500;
}

.aboutus-slogan-cht {
    color: #bdc0ba;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
    padding-top: 10px;
    transform-origin: left center;
}

.aboutus-item {
    text-align: center;
    text-transform: uppercase;
    color: #BDC0BA;
    padding: 50px 12px;
}

.aboutus-item:nth-child(2) {
    position: relative;
}

.aboutus-item:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 2px;
    background-color: #bdc0ba;
    opacity: 0.3;
}

.aboutus-item:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 2px;
    background-color: #bdc0ba;
    opacity: 0.3;
}

.aboutus-item .aboutus-item-spotlight {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutus-item .aboutus-item-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    border-top: solid 2px rgba(189, 192, 186, 0.5);
    border-left: solid 2px rgba(189, 192, 186, 0.5);
    border-bottom: solid 2px rgba(189, 192, 186, 0.5);
    opacity: 1;
    transition: all 0.6s ease;
}

.aboutus-item .aboutus-item-spotlight::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    border-top: solid 2px rgba(189, 192, 186, 0.5);
    border-right: solid 2px rgba(189, 192, 186, 0.5);
    border-bottom: solid 2px rgba(189, 192, 186, 0.5);
    transition: all 0.6s ease;
}

.aboutus-item:hover .aboutus-item-spotlight::before {
    scale: 0.9;
    border-left: 0px;
    opacity: 0;
    width: 0;
}

.aboutus-item:hover .aboutus-item-spotlight::after {
    scale: 0.9;
    border-right: 0px;
    opacity: 0;
    width: 0;
}

.aboutus-item .aboutus-item-spotlight div:first-child {
    font-weight: 900;
    font-size: 48px;
    letter-spacing: 3px;
    line-height: 55px;
}

.aboutus-item .aboutus-item-spotlight div:last-child {
    font-weight: 500;
    font-size: 15px;
}

.aboutus-item .aboutus-item-title {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 3px;
    padding: 50px 0 30px;
}

.aboutus-item .aboutus-item-content {
    font-weight: 400;
    font-size: 16px;
    padding: 0 25px 40px;
}

.aboutus-item .aboutus-item-btn a {
    display: block;
    width: 130px;
    height: 35px;
    border-radius: 20px;
    border: 1px solid #BDC0BA;
    color: #BDC0BA;
    margin: 0 auto;
    line-height: 31px;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 700;
}

.aboutus-item .aboutus-item-btn a:hover {
    background-color: #BDC0BA;
    color: #07355C;
}

@media (min-width: 992px) {
    .aboutus .container {
        padding-top: 200px;
        padding-bottom: 125px;
    }

    .aboutus .separater {
        display: block;
    }

    .aboutus-slogan {
        padding-top: 50px;
        font-size: 64px;
        line-height: 80px;
    }

    .aboutus-slogan-cht {
        font-size: 16px;
    }

    .aboutus-item {
        padding: 150px 0 0;
    }

    .aboutus-item:nth-child(2)::before {
        display: none;
    }

    .aboutus-item:nth-child(2)::after {
        display: none;
    }

    .aboutus-item .aboutus-item-title {
        padding: 70px 0 30px;
    }

    .aboutus-item .aboutus-item-btn a {
        width: 150px;
        height: 40px;
        line-height: 36px;
        font-size: 14px;
    }
}

.news {
    padding-top: 50px;
    padding-bottom: 100px;
    background: linear-gradient(to bottom, #eae2d1 0%, #eae2d1 50%, #bdc0ba 50%, #bdc0ba 100%);
}

.news-items {
    padding-top: 25px;
    padding-bottom: 25px;
}

.news-item {
    height: 550px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 17.1px 0px #00000038;
    position: relative;
    margin-bottom: 25px;
}

.news-item .news-item-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news-item .news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.6s ease;
}

.news-item:hover .news-item-img img {
    transform: scale(1.1);
}

.news-item .news-item-title {
    font-weight: 700;
    font-size: 32px;
    padding: 20px 20px 10px;
    line-height: 40px;
}

.news-item .news-item-content {
    font-weight: 400;
    font-size: 16px;
    padding: 0px 20px;
}

.news-item .news-item-date {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    position: absolute;
    bottom: 25px;
    left: 20px;
}

.news-item .news-item-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.news-item .news-item-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-item .news-item-circle img {
    width: 24px;
    height: 24px;
}

.news-item .news-item-circle:hover img {
    animation: arrow-right 1s;
}

.news-more-btn {
    text-align: center;
}

.news-more-btn a {
    display: block;
    width: 130px;
    height: 35px;
    border-radius: 20px;
    border: 1px solid #07355C;
    color: #07355C;
    margin: auto;
    line-height: 31px;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-more-btn a:hover {
    background-color: #07355C;
    color: #eae2d1;
}

@media (min-width: 992px) {
    .news {
        padding-top: 100px;
        padding-bottom: 100px;

    }

    .news-items {
        padding-top: 50px;
        padding-bottom: 100px;
        margin-bottom: 0px;
    }

    .news-more-btn a {
        width: 150px;
        height: 40px;
        line-height: 36px;
        font-size: 14px;
    }
}