html, body {
    /* overflow: auto; */
}
body {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    background: white;
}
body::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}
.service-bg {
    background-image: url(/common/img/img_service_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 690px; */
    height: calc(100vh - 229px);

    position: absolute;
    /* top: 100px; */
}
#canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    bottom: 125px;
    overflow: hidden;
}
#canvas path {
    fill: none;
    stroke: #B4E2FF;
    stroke-width: 0.5px;
    stroke-dasharray: 3;
    vector-effect: non-scaling-stroke;
}
.service-top {
    height: calc(70vh - 225px);
    box-sizing: border-box;
    position: relative;

    background-image: url(/common/img/img_service_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.service-top .swiper-slide {
    display: flex;
    margin: 0 auto;
    align-items: flex-end;
    gap: 200px;
    position: relative;
    justify-content: center;
}
.top-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* opacity: 0;
    transition: 1.5s; */
}
.swiper-fade .swiper-slide-active .top-content {
    /* transform: scale(1);
    opacity: 1; */
}
.top-category {
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 100px;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #173BB6;

    display: inline-block;
    width: fit-content;

    opacity: 0;
    transition: 1.5s;
}
.swiper-fade .swiper-slide-active .top-category {
    transform: scale(1);
    opacity: 1;
}
.top-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}
.top-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;
    color: #fff;
    border-radius: 8px;
    background-color: transparent;
}
.top-img-wrap {
    position: relative;
    opacity: 0;
    transition: 1.5s;
}
.swiper-fade .swiper-slide-active .top-img-wrap {
    transform: scale(1);
    opacity: 1;
}
.top-mainimg {
    width: 504px;
    vertical-align: sub;
}
.top-subimg {
    position: absolute;
    left: -40px;
    border-radius: 8px;
    box-shadow: 10px 10px 15px 0 rgba(20, 35, 87, 0.32);
}
.top-paging {
    margin-top: 110px;
    margin-bottom: 100px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
}
.top-paging button {
    font-size: 16px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    padding: 10px 5px;
    cursor: pointer;
}
.top-paging button:last-child {
    font-size: 22px;
    margin-bottom: -2px;
}
.top-paging progress {
    height: 4px;
    border: none;
    width: 120px;
}
.top-paging progress::-webkit-progress-bar {
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    border: none;
}
.top-paging progress::-webkit-progress-value {
    background: #fff;
    border-radius: 20px;
}
.top-paging .progress {
    height: 4px;
    width: 120px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
}
.top-paging .progress-fill {
    height: 4px;
    background-color: #fff;
    border-radius: 20px;
    width: 0px;
}
.mouse-wheel-img {
    width: 22px;
    display: block;
    margin: 0 auto 10px auto;
    position: relative;
    font-size: 20px;
    padding: 5px 0 2px;
}
.mouse-wheel-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    transition: opacity .3s ease;
    pointer-events: none;

    z-index: 0;
    padding: 2px;
    background: linear-gradient(var(--rotate), #004fff, #ffffff, #72c5fc 43%, #ffffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    animation: spin 3s linear infinite;
}
@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}
@keyframes spin {
    0% {
        --rotate: 0deg
    }

    100% {
        --rotate: 360deg
    }
}

.service-vertical {
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
    background-color: #f0f0f0;
}
#pagepiling {
    position: relative;
    margin-top: -50px;
}
.pp-section {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.pp-section.pp-table.no-table {
    display: block;
}
.pp-section.pp-table.no-table .pp-tableCell {
    display: block;
}
#pp-nav {
    display: none;
}
#pp-nav span, .pp-slidesNav span {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: #d1d1d1;
    border: none;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
#pp-nav li:first-of-type, #pp-nav li:last-of-type {
    display: none;
}
#pp-nav li .active span, .pp-slidesNav .active span {
    background: #2979ff;
}
.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    position: relative;
}
.service-content h1 {
    font-size: 48px;
    color: #222;
    font-weight: 200;
    text-transform: uppercase;

    /* margin-top: 200px; */
}
.service-content h1 b {
    font-size: 48px;
    color: #2979ff;
    font-weight: 700;
}
.service-content h3 {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    letter-spacing: -1px;
}
.service-content p {
    font-size: 18px;
    color: #222;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 140%;
}
.service-content img {
    position: absolute;
}
.service-content ~ img {
    /* width: 896px; */
    height: 375px;
    display: block;
    margin: 75px auto 60px auto;
}
.service-content ~ a {
    padding: 10px 22px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50px;
    position: relative;

    color: #222;
    font-size: 20px;
    letter-spacing: -0.4px;
    display: block;
    width: fit-content;

    /* margin: 0 auto 100px auto; */
    margin: 0 auto;
    transition: all .1s ease-in-out;
}
.service-content ~ a:hover {
    background-color: #2979ff;
    color: #fff;
    border-color: #2979ff;
}
.service-content ~ video {
    display: block;
    margin: 0 auto;
}
.service-ads-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 100px auto 75px auto !important;
    position: relative;
}
.service-ads-wrap > div {
    background: #fff;
    border-radius: 10px;
    padding: 55px 0;
    text-align: center;
    width: 384px;
    box-sizing: border-box;
}
.service-ads-wrap b {
    font-size: 24px;
    color: #222;
    letter-spacing: -0.24px;
}
.service-ads-wrap img {
    width: 72px;
    display: block;
    margin: 27px auto;
}
.service-ads-wrap p {
    font-size: 16px;
    color: #222;
    line-height: 140%;
}
.ads-btn a {
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #fff;
    white-space: nowrap;

    position: absolute;
    top: 100px;
    opacity: 0;
    transition: all 1s;
    transition-delay: .3s;
}
.ads-btn {
    margin: 0 auto !important;
    width: 10px !important;
    height: 44px;
}
.section.active .ads-btn a {
    opacity: 1;
    top: 0;
}
.ads-btn a.black {
    background-color: #222;
    right: 100%;
}
.ads-btn a.blue {
    background-color: #2979ff;
    left: 100%;
}
.service-content ~ div {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.lounge-img {
    position: absolute;
    margin: 0 !important;

    visibility: hidden;
    transform: scale(0.1);
}
.lounge-img:nth-of-type(2) {
    top: 0px;
    left: 50px;
    width: 280px;
}
.lounge-img:nth-of-type(3) {
    top: 12px;
    right: 10px;
    width: 340px;
}
.lounge-img:nth-of-type(4) {
    top: 54px;
    left: 193px;
    width: 500px;
}
.lounge-img:nth-of-type(5) {
    top: 160px;
    left: 0px;
    width: 290px;
}
.lounge-img:nth-of-type(6) {
    bottom: 0px;
    left: 270px;
    width: 315px;
}
.lounge-img:nth-of-type(7) {
    bottom: 50px;
    right: 0;
    width: 384px;
}
.lounge-img.pop:nth-of-type(2) {
    animation: pop 1s ease-out forwards;
}
.lounge-img.pop:nth-of-type(3) {
    animation: pop 1s ease-out .5s forwards;
}
.lounge-img.pop:nth-of-type(4) {
    animation: pop 1s ease-out .2s forwards;
}
.lounge-img.pop:nth-of-type(5) {
    animation: pop 1s ease-out .7s forwards;
}
.lounge-img.pop:nth-of-type(6) {
    animation: pop 1s ease-out 1s forwards;
}
.lounge-img.pop:nth-of-type(7) {
    animation: pop 1s ease-out 1.2s forwards;
}
@keyframes pop {
    0% {
        visibility: visible;
        transform: scale(0);
    }
    50% {
        visibility: visible;
        transform: scale(1.2);
    }
    100% {
        visibility: visible;
        transform: scale(1);
    }
}
@keyframes keep {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(0);
    }
}
.crying-emoji {
    width: 110px;
    bottom: -120px;
    right: -250px;
    z-index: 1;

    /* width: 80px;
    bottom: -100px;
    right: -200px; */
    animation: emoji .7s linear alternate infinite;
}
.smile-emoji {
    width: 130px;
    bottom: -250px;
    left: -350px;
    animation: emoji .7s .5s linear alternate infinite;
}
@keyframes emoji {
    0% {
        margin-bottom: -20px;
        transform: rotateX(20deg);
    }
    100% {
        margin-bottom: 0px;
        transform: rotateX(0deg);
    }
}
.lounge-bg-img {
    width: 896px;
    display: block;
    margin: 75px auto 0 auto;
    visibility: hidden;
    margin-bottom: 60px;
}
.student-emoji {
    width: 150px;
    left: -185px;
    bottom: -180px;
    animation: emoji .7s .5s linear alternate infinite;
}
[class^=briefing-emoji] {
    /* margin-bottom: -50px; */
    transform: scale(0);
    opacity: 0;
    transition: all 1s;
}
.briefing-emoji1 {
    bottom: -251px;
    width: 165px;
    left: -255px;
}
.briefing-emoji2 {
    width: 190px;
    bottom: -425px;
    left: -130px;
    transition-delay: .2s;
}
.briefing-emoji3 {
    width: 200px;
    right: -120px;
    bottom: -187px;
}
.briefing-emoji4 {
    width: 105px;
    right: -270px;
    bottom: -300px;
}
.section.active [class^=briefing-emoji] {
    /* margin-bottom: 0; */
    transform: scale(1);
    opacity: 1;
}
.briefing-emoji5 {
    position: absolute;
    left: -270px;
    bottom: -165px;
    margin-bottom: 0;
    opacity: 1;
}
.briefing-emoji5 .line1 {
    animation: show 1s ease infinite;
}
.briefing-emoji5 .line2 {
    animation: show2 1s ease infinite;
}
.briefing-emoji5 .line3 {
    animation: show3 1s ease infinite;
}
@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes show2 {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes show3 {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
[class^=young-emoji] {
    transform: scale(0);
    transition: all 1s;
}
.section.active [class^=young-emoji] {
    transform: scale(1);
}
.young-emoji1 {
    width: 180px;
    left: -40px;
    bottom: -130px;
}
.young-emoji2 {
    width: 160px;
    bottom: -140px;
    left: 80px;
    z-index: -1;
}
.young-emoji3 {
    width: 120px;
    bottom: -120px;
    right: 0;
}
.young-emoji4 {
    width: 140px;
    bottom: -180px;
    right: -100px;    
}
[class^=better-emoji] {
    transform: scale(0);
    transition: all .5s;
}
.better-emoji1 {
    z-index: -1;
    width: 834px;
    left: -46%;
    bottom: -435px;
}
.better-emoji2 {
    width: 284px;
    left: -50px;
    bottom: -300px;
    z-index: -1;
    transition-delay: .3s;
}
.better-emoji3 {
    width: 150px;
    left: 150px;
    bottom: -300px;
    transition-delay: .6s;
}
.better-emoji4 {
    width: 110px;
    right: 50px;
    bottom: -230px;
    transition-delay: .9s;
}
.better-emoji5 {
    width: 110px;
    right: -20px;
    bottom: -175px;
    transition-delay: 1s;
}
.section.active [class^=better-emoji] {
    transform: scale(1);
}
[class^=learn-emoji] {
    transform: scale(0);
    transition: all .5s;
}
.learn-emoji {
    /* width: 600px !important; */
}
.learn-emoji1 {
    width: 160px;
    right: 30px;
    bottom: -380px;
    z-index: 1;
    transition-delay: .5s;
}
.learn-emoji2 {
    width: 135px;
    right: -40px;
    bottom: -300px;
    transition-delay: .5s;
}
.learn-emoji3 {
    width: 150px;
    right: -80px;
    bottom: -210px;
    transition: none;
    animation: bounce1 1.5s linear infinite;
}
.learn-emoji4 {
    width: 150px;
    right: -180px;
    bottom: -265px;
    transition: none;
    animation: bounce2 1.5s linear infinite;
}
.section.active [class^=learn-emoji]:not(.learn-emoji) {
    transform: scale(1);
}
@keyframes bounce1 {
    50% {
        margin-bottom: 10px;
        transform: rotate(-10deg);
    }
    100% {
        margin-bottom: 0px;
        transform: rotate(0deg);
    }
}
@keyframes bounce2 {
    50% {
        margin-bottom: -10px;
        transform: rotate(10deg);
    }
    100% {
        margin-bottom: 0;
        transform: rotate(0deg);
    }
}
.slideup-img {
    opacity: 0;
    transform: translateY(300px);
    transition: all .7s;
    transition-delay: .3s;
}
.section.active .slideup-img {
    opacity: 1;
    transform: translateY(0);
}
.pp-tableCell {
    overflow: hidden;
}
.rise-arrow1 {

}
.rise-arrow2 {

}
.rise-emoji {
    width: 150px;
    right: -200px;
    bottom: -195px;
}