@charset "utf-8";
/* CSS Document */
html,
body {
    overflow-x: clip;
}

html {
    font-family: 'AppleSDGothicNeo', 'helvetica', Sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #272727;
    line-height: 1.05;
    letter-spacing: -0.06em;
    /* scroll-behavior: smooth; */
}

body {
    position: relative;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

body.lock {
    overflow-y: hidden;
    touch-action: none;
}

body.before-load {
    overflow: hidden;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: white;
    opacity: 1;
    transition: 0.5s;
}

.before-load .loading {
    opacity: 1;
}

@keyframes loading-rect-ani {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.loading-rect {
    width: 150px;
    height: 150px;
}

.loading-rect .path {
    animation: loading-rect-ani 2.5s infinite alternate;
}

.wrap {
    padding-top: 80px;
}
/*********************************************/
/* container common */
.container {
    max-width: 1440px;
    width: 100%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    margin-left: auto;
    margin-right: auto;
}

.container2 {
    max-width: 1920px;
    width: 100%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    margin-left: auto;
    margin-right: auto;
}

/* 제품 화면 */
.container3 {
    overflow: hidden;
    max-width: 1440px;
    width: 100%;
    padding-left: 7.5%;
    padding-right: 10%;
    padding-top: 70px;
}

/* detail 화면 */
.detail-container {
    overflow: hidden;
    max-width: 1440px;
    width: 100%;
    padding-left: 7.5%;
    padding-right: 7.5%;
    padding-top: 70px;
    margin-left: auto;
    margin-right: auto;
}

/* content 화면 */
.content-container {
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    padding-left: 7.5%;
    padding-right: 7.5%;
    padding-top: 80px;
    margin-left: auto;
    margin-right: auto;
}

/* event 화면 */
.event-container {
    overflow: hidden;
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* 제품 네비 */
.aside-nav-container {
    padding-left: 2.5%;
}
/*********************************************/
/* section common */
.scroll-section {
    position: relative;
    width: 100%;
    padding-top: 30vh;
    margin-left: auto;
    margin-right: auto;
}
/*********************************************/
/* input common */
.label {
    display: block;
    margin: .5rem 0;
    color: #5a5a5a;
    font-size: 1em;
}

.validity {
    visibility: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(150%);
    display: none;
    color: #ef8b88;
    font-size: .9rem;
}

.input[type=text],
.input[type=email],
.input[type=tel],
.input[type=password] {
    width: 100%;
    padding: 1rem;
    font-size: 1em;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    background-color: #fff;
    transition: background .5s;
}

.input[type=text]:focus,
.input[type=email]:focus,
.input[type=tel]:focus,
.input[type=password]:focus {
    background-color: rgba(255, 255, 255, .5);
}

.input[type=text]:invalid ~ .validity,
.input[type=email]:invalid ~ .validity,
.input[type=tel]:invalid ~ .validity,
.input[type=password]:invalid ~ .validity,
.input[type=radio]:invalid ~ .validity,
.input[type=checkbox]:invalid ~ .validity,
select:invalid ~ .validity {
    visibility: visible;
}

.input[type=text]:valid,
.input[type=email]:valid,
.input[type=tel]:valid,
.input[type=password]:valid {
    border-color: #374EE4;
}

/* search */
.input-search-box {
    position: relative;
}

.input.search {
    padding-left: 3.3em;
    padding-right: 3em;
    border-color:#e3ebfd;
    background-color: #f6f8fc;
    background-image: url('/static/imgs/icon/icon-search.svg');
    background-repeat: no-repeat;
    background-size: 1.3em;
    background-position: 1em center;
}

.input.search:valid {
    background-image: url('/static/imgs/icon/icon-search-blue.svg');
}

.input.search + .icon-close {
    display: none;
}

.input.search:valid + .icon-close {
    display: block;
}

/* checkbox radio */
.input[type=checkbox],
.input[type=radio],
.input[type=file] {
    position: absolute;
    z-index: -10;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.input[type=checkbox] + label,
.input[type=radio] + label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    height: 20px;
    line-height: 20px;
    cursor: pointer;
}

.input[type=checkbox] + label::after,
.input[type=radio] + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: solid 1px #d0d2db;
    background-color: #fff;
}

.input[type=checkbox]:checked + label::after,
.input[type=radio]:checked + label::after {
    border: 1px solid #5666ed;
}

/* checkbox */
.input[type=checkbox] + label::after {
    border-radius: 4px;
}

.input[type=checkbox]:checked + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 1.5px;
    left: 6px;
    width: 6px;
    height: 10px;
    border-bottom: 2px solid #5666ed;
    border-right: 2px solid #5666ed;
    transform: rotate(44deg);
    z-index: 1;
}

.input[type=checkbox]:disabled + label::after {
    border: 1px solid #d0d2db;
    background-color: #f0f1f7;
}

.input[type=checkbox]:disabled:checked + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 10px;
    border-bottom: 2px solid #d0d2db;
    border-right: 2px solid #d0d2db;
    transform: rotate(48deg);
    z-index: 1;
}

/* radio */
.input[type=radio] + label::after {
    border-radius: 50%;
}

.input[type=radio]:checked + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    background-color: #5666ed;
    border-radius: 50%;
    z-index: 1;
}

.input[type=radio]:disabled + label::after {
    border: 1px solid #d0d2db;
    background-color: #f0f1f7;
}

.input[type=radio]:disabled:checked + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    background-color: #d0d2db;
    border-radius: 50%;
    z-index: 1;
}

/* switch */
.input[type=checkbox].switch + label {
    display: block;
    padding-left: 0px;
    width: 36px;
    height: 20px;
    background-color: #c5d0de;
    border-radius: 20px;
}

.input[type=checkbox]:checked.switch + label {
    background-color: #364aed;
}

.input[type=checkbox].switch + label::after {
    display: none;
}

.input[type=checkbox].switch + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: left 0.2s ease 0s;
}

.input[type=checkbox].switch:checked + label::before {
    top: 2px;
    left: 18px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: none;
    z-index: 1;
}

/* textarea */
.textarea {
    width: 100%;
}

/* select */
.select {
    height: auto !important;
    padding: 1rem;
    border-radius: 5px !important;
    outline: none;
}

.select2-container {
    max-width: 100%;
    width: 100% !important;
}

.select2-selection__rendered {
    padding-left: 0 !important;
    color: inherit !important;
    line-height: 1.1 !important;
}

.select .select2-selection__arrow {
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-65%);
    width: 14px !important;
    height: 8px !important;
}

.select .select2-selection__arrow b {
    border-color: #8d8d8d transparent transparent transparent !important;
    border-width: 8px 7px 0 7px !important;
    margin-left: -7px !important;
    margin-top: -4px !important;
    transition: border .2s;
}

.select2-container--open .select .select2-selection__arrow b {
    border-color: transparent transparent #8d8d8d transparent !important;
    border-width: 0 7px 8px 7px !important;
}

.select2-dropdown.select2-dropdown--below {
    transform-origin: center top;
    animation: selectDrop 0.2s forwards;
}

.select2-dropdown.select2-dropdown--above {
    transform-origin: center bottom;
    animation: selectDrop 0.2s forwards;
}

.select2-selection__clear {
    position: relative;
    width: 14px !important;
    height: 14px !important;
    font-size: 0 !important;
    padding-left: 0;
}

.select2-selection__clear span:before,
.select2-selection__clear span:after {
    content: '';
    z-index: 2;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 35px;
    background-color: #8d8d8d;
    transition: all 0.35s;
}
.select2-selection__clear:hover span:before,
.select2-selection__clear:hover span:after {
    background-color: #ef8b88;
}

.select2-selection__clear span:before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.select2-selection__clear span:after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.select2-selection--clearable {
    border-color: #374ee4 !important;
}

@keyframes selectDrop {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}
/*********************************************/
/* font style common */
.blockquote {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    quotes: "\201C""\201D""\2018""\2019";
}

.blockquote:before {
    content: open-quote;
    margin-right: 0.5em;
    font-size: 3em;
    line-height: 0;
    vertical-align: bottom;
}

.blockquote:after {
    content: close-quote;
    margin-left: 0.25em;
    font-size: 3em;
    line-height: 0;
    vertical-align: bottom;
}
/*********************************************/
/* box common */
.box {
    position: relative;
    font-size: 0;
}
.img-box {
    z-index: 1;
    position: relative;
    font-size: 0;
}

.img-web {
    display: block;
}

.img-mobile {
    display: none;
}

.bg-box {
    width: 100%;
    height: 75vh;
    font-size: 0;
    border-radius: 35px;
    background-color: rgba(55, 78, 228, .1);
}
/*********************************************/
/* button common */
.button {
    position: relative;
    display: inline-block;
    width: auto;
    padding: .85em 2.8em;
    color: #fff;
    text-align: center;
    vertical-align: top;
    border-radius: 100px;
    background: #95a8b7;
    outline: none;
}

.button.yellow {
    background: linear-gradient(105.65deg, #ff9f20 10.87%, #ffc120 98.35%);
    filter: drop-shadow(0px 30px 40px rgba(255, 195, 186, 0.3));
}

.button.blue {
    background: linear-gradient(105.65deg, #374ee4 10.87%, #293fce 98.35%);
    filter: drop-shadow(0px 30px 40px #dfe3ff);
}

.button.white {
    color: #000;
    background: #fff;
    filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.25));
    ;
}

.button.round {
    border-radius: 5px;
}

.button.full {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 8%;
    opacity: 0;
    display: block;
    padding: 0;
    text-indent: -9999px;
}

.button.deny {
    opacity: 0;
    display: block !important;
    width: 100%;
    padding: 1rem 0;
    color: #fff;
    border-radius: 0;
    background: #000;
}

.button.main-button {
    opacity: 0;
}

.button.main-button span {
	opacity: 0;
	transform: translate3d(0, -10px, 0);
	transition: transform 0.3s, opacity 0.3s;
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button.main-button.active > span {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
.button.main-button.active > span:nth-of-type(1) {
	transition-delay: 0.045s;
}
.button.main-button.active > span:nth-of-type(2) {
	transition-delay: 0.09s;
}
.button.main-button.active > span:nth-of-type(3) {
	transition-delay: 0.135s;
}
.button.main-button.active > span:nth-of-type(4) {
	transition-delay: 0.18s;
}
.button.main-button.active > span:nth-of-type(5) {
	transition-delay: 0.225s;
}
.button.main-button.active > span:nth-of-type(6) {
	transition-delay: 0.27s;
}
.button.main-button.active > span:nth-of-type(7) {
	transition-delay: 0.315s;
}
.button.main-button.active > span:nth-of-type(8) {
	transition-delay: 0.36s;
}
.button.main-button.active > span:nth-of-type(9) {
	transition-delay: 0.405s;
}

.icon-button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.icon-button.arrow {
    width: 1.8em;
    height: 1.8em;
    margin-left: 1em;
    margin-bottom: 0.25em;
    border-radius: 50%;
    background-color: #272727;
    background-size: 60%;
    background-image: url('/static/imgs/icon/icon-arrow.svg');
}

.icon-button.arrow.bottom {
    width: 1.6em;
    height: 1.6em;
    margin-bottom: 0;
    transform: rotate(90deg);
}

.icon-button.top {
    z-index: 100;
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    background-size: 30%;
    background-image: url('/static/imgs/icon/icon-arrow-top.svg');
    cursor: pointer;
}

.button.blue.button-loading:after {
    background-image: url('/static/imgs/icon/icon-loading-white.svg');
}

.button-loading {
    position: relative;
    cursor: wait !important;
    pointer-events: none !important;
}

.button-loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    display: block;
    width: 12px;
    height: 13px;
    margin-top: -7.5px;
    background-image: url('/static/imgs/icon/icon-loading-black.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 13px;
    animation: buttonLoading 0.65s linear infinite;
}

@keyframes buttonLoading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mobile .icon-button.top {
    right: 14px;
    bottom: 70px;
    width: 42px;
    height: 42px;
}

.main-btn {
    margin-top: 3rem;
    margin-bottom: 3rem;
    cursor: pointer;
}

.dots {
    display: inline-flex;
}

.dots span {
    display: none;
    width: 10px;
    height: 10px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #d9d9d9;
    cursor: pointer;
}

.dots [data-click=true] {
    background-color: #374EE4;
}

.mobile-button {
    display: none;
}

.mobile-button + label {
    position: relative;
    display: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.mobile-button + label > span {
    z-index:2;
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 30px;
    background-color: #000;
    transition: all 0.35s;
    pointer-events: none;
}

.mobile-button + label > span:nth-of-type(1) {
    top: 0;
}

.mobile-button + label > span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-button + label > span:nth-of-type(3) {
    bottom: 0;
}

.mobile-button:checked + label > span:nth-of-type(1) {
    top:50%;
    transform:translateY(-50%) rotate(45deg);
}

.mobile-button:checked + label > span:nth-of-type(2) {
    opacity: 0;
}

.mobile-button:checked + label > span:nth-of-type(3) {
    bottom:50%;
    transform:translateY(50%) rotate(-45deg);
}

.mobile-button:checked + label + .header-nav-wrap {
    transform: translateX(0);
}
/*********************************************/
/* icon common */
.icon-arrow {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url('/static/imgs/icon/icon-arrow-gray.svg');
}

.icon-company {
    display: inline-block;
    width: 6em;
    height: 6em;
    background-image: url('/static/imgs/icon/icon-company-small.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.icon-company.medium {
    background-image: url('/static/imgs/icon/icon-company-medium.svg');
}

.icon-company.large {
    background-image: url('/static/imgs/icon/icon-company-large.svg');
}

.icon-check {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
}

.icon-check:before {
    content: "";
    z-index: 1;
    position: absolute;
    top: 50%;
    left: .35em;
    display: block;
    width: .4em;
    height: .7em;
    border-bottom: 3px solid #6dd18e;
    border-right: 3px solid #6dd18e;
    transform: translateY(-75%) rotate(48deg);
}

.icon-cloud {
    display: inline-block;
    width: 4em;
    height: 4em;
    background-image: url('/static/imgs/icon/icon-cloud.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.icon-build {
    display: inline-block;
    width: 4em;
    height: 4em;
    background-image: url('/static/imgs/icon/icon-build.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.icon-line {
    position: relative;
    display: inline-block;
    padding-left: 15.5rem;
    padding-right: 15.5rem;
    color: #4678da;
}

.icon-line:before,
.icon-line:after {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    width: 15rem;
    height: 1px;
    background-color: #4678da;
}

.icon-line:before {
    left: 0;
}

.icon-line:after {
    right: 0;
}

.icon-culture {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.icon-culture.type1 {
    background-image: url('/static/imgs/icon/icon-culture-1.svg');
}

.icon-culture.type2 {
    background-image: url('/static/imgs/icon/icon-culture-2.svg');
}

.icon-culture.type3 {
    background-image: url('/static/imgs/icon/icon-culture-3.svg');
}

.icon-culture.type4 {
    background-image: url('/static/imgs/icon/icon-culture-4.svg');
}

.icon-culture.type5 {
    background-image: url('/static/imgs/icon/icon-culture-5.svg');
}

.icon-culture.type6 {
    background-image: url('/static/imgs/icon/icon-culture-6.svg');
}

.icon-culture.type7 {
    background-image: url('/static/imgs/icon/icon-culture-7.svg');
}

.icon-culture.type8 {
    background-image: url('/static/imgs/icon/icon-culture-8.svg');
}

.icon-culture.type9 {
    background-image: url('/static/imgs/icon/icon-culture-9.svg');
}

.icon-culture.type10 {
    background-image: url('/static/imgs/icon/icon-culture-10.svg');
}

.icon-culture.type11 {
    background-image: url('/static/imgs/icon/icon-culture-11.svg');
}

.icon-culture.type12 {
    background-image: url('/static/imgs/icon/icon-culture-12.svg');
}

.icon-culture.type13 {
    background-image: url('/static/imgs/icon/icon-culture-13.svg');
}

.icon-light {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url('/static/imgs/icon/icon-light.svg');
}

.icon-group {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url('/static/imgs/icon/icon-group.svg');
}

.icon-purpose {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url('/static/imgs/icon/icon-purpose.svg');
}

.icon-close {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    cursor: pointer;
}

.icon-close:before,
.icon-close:after {
    content: '';
    z-index: 2;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 35px;
    background-color: #8d8d8d;
    transition: all 0.35s;
}
.icon-close:hover:before,
.icon-close:hover:after {
    background-color: #374ee4;
}

.icon-close:before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.icon-close:after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.icon-close.sticky {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
}

.icon-dot {
    position: relative;
    padding-left: 1em;
}

.icon-dot:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: .4em;
    height: .4em;
    border-radius: 50%;
    background-color: #000;
}
/*********************************************/
/* bar common */
.main-content-bar {
    z-index: 0;
    position: relative;
    white-space: nowrap;
}

.main-content-bar:after {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(-70%);
    display: block;
    width: 100%;
    height: 0.3em;
    background-color: #f7cc4a;
}
/*********************************************/
/* sticky common */
.fixed-el {
    z-index: 2;
    opacity: 0;
    position: fixed;
    top: 30rem;
    left: 0;
    right: 0;
    display: none;
}

.sticky-el {
    z-index: 1;
    position: sticky;
    left: 0;
    right: 0;
    top: 80px;
    transform-origin: center top;
    display: block;
}

.sticky-el.top {
    top: -50%;
}

.effect-el {
    z-index: 1;
    opacity: 0;
}

#scroll-section-6 .sticky-el,
#scroll-section-7 .sticky-el,
#scroll-section-8 .sticky-el,
#scroll-section-9 .sticky-el,
#scroll-section-10 .sticky-el {
    overflow: hidden;
    min-height: 100vh;
}

#scroll-section-6 .sticky-el .bg-box,
#scroll-section-7 .sticky-el .bg-box,
#scroll-section-8 .sticky-el .bg-box,
#scroll-section-9 .sticky-el .bg-box,
#scroll-section-10 .sticky-el .bg-box {
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 80vh;
    border-radius: 35px;
    background-color: #f6f8fc;
}

/* scroll body effect */
.fixed-bg {
    z-index: 0;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100vw;
    height: 200vh;
    background-image: url('/static/imgs/detail/main/img-main-bg-1.png');
    background-size: 100vw auto;
}

.scroll-body-effect {
    transition: background-color 1s;
}
.scroll-body-effect .fixed-bg {
    display: block;
    will-change: transform;
}

.scroll-body-effect#show-scene-0 {
    background-color: rgba(255, 228, 232, 1);
}
.scroll-body-effect#show-scene-1 {
    background-color: rgba(227, 242, 253, 1);
}
.scroll-body-effect#show-scene-2 {
    background-color: rgba(232, 243, 241, 1);
}
.scroll-body-effect#show-scene-3 {
    background-color: rgba(250, 243, 221, 1);
}
.scroll-body-effect#show-scene-4 {
    background-color: rgba(238, 239, 249, 1);
}

#show-scene-0 #scroll-section-0 .fixed-el,
#show-scene-0 #scroll-section-0 .sticky-el,
#show-scene-0 #scroll-section-0 .scroll-effect *,
#show-scene-0 #scroll-section-0 .effect-el,
#show-scene-1 #scroll-section-1 .fixed-el,
#show-scene-1 #scroll-section-1 .sticky-el,
#show-scene-1 #scroll-section-1 .effect-el,
#show-scene-2 #scroll-section-2 .fixed-el,
#show-scene-2 #scroll-section-2 .sticky-el,
#show-scene-2 #scroll-section-2 .effect-el,
#show-scene-3 #scroll-section-3 .fixed-el,
#show-scene-3 #scroll-section-3 .sticky-el,
#show-scene-3 #scroll-section-3 .effect-el,
#show-scene-4 #scroll-section-4 .fixed-el,
#show-scene-4 #scroll-section-4 .sticky-el,
#show-scene-4 #scroll-section-4 .effect-el,
#show-scene-5 #scroll-section-5 .fixed-el,
#show-scene-5 #scroll-section-5 .sticky-el,
#show-scene-5 #scroll-section-5 .effect-el,
#show-scene-6 #scroll-section-6 .fixed-el,
#show-scene-6 #scroll-section-6 .sticky-el,
#show-scene-6 #scroll-section-6 .effect-el,
#show-scene-7 #scroll-section-7 .fixed-el,
#show-scene-7 #scroll-section-7 .sticky-el,
#show-scene-7 #scroll-section-7 .effect-el,
#show-scene-8 #scroll-section-8 .fixed-el,
#show-scene-8 #scroll-section-8 .sticky-el,
#show-scene-8 #scroll-section-8 .effect-el,
#show-scene-9 #scroll-section-9 .fixed-el,
#show-scene-9 #scroll-section-9 .sticky-el,
#show-scene-9 #scroll-section-9 .effect-el,
#show-scene-10 #scroll-section-10 .fixed-el,
#show-scene-10 #scroll-section-10 .sticky-el,
#show-scene-10 #scroll-section-10 .effect-el {
    will-change: transform, opacity;
}

#show-scene-0 #scroll-section-0 .fixed-el,
#show-scene-1 #scroll-section-1 .fixed-el,
#show-scene-2 #scroll-section-2 .fixed-el,
#show-scene-3 #scroll-section-3 .fixed-el,
#show-scene-4 #scroll-section-4 .fixed-el,
#show-scene-5 #scroll-section-5 .fixed-el,
#show-scene-6 #scroll-section-6 .fixed-el,
#show-scene-7 #scroll-section-7 .fixed-el,
#show-scene-8 #scroll-section-8 .fixed-el,
#show-scene-9 #scroll-section-9 .fixed-el,
#show-scene-10 #scroll-section-10 .fixed-el {
    display: block;
}

.scroll-effect-end .fixed-el,
.scroll-effect-end .sticky-el,
.scroll-effect-end .effect-el {
    display: none !important;
}

.main-title {
    position: relative;
    display: inline;
    color: #374ee4;
}

#scroll-section-6 .sticky-el .img-box,
#scroll-section-7 .sticky-el .img-box,
#scroll-section-8 .sticky-el .img-box,
#scroll-section-9 .sticky-el .img-box,
#scroll-section-10 .sticky-el .img-box {
    opacity: 0;
    position: absolute;
    transition: opacity 1s;
    will-change: opacity;
}

#scroll-section-1 .effect-el:not('mobile'),
#scroll-section-2 .effect-el,
#scroll-section-3 .effect-el {
    opacity: 0;
}

.effect-el.mobile {
    display: none;
    opacity: 0;
}
/*********************************************/
/* scroll-section-0 */
#scroll-section-0 .fixed-el.left,
#scroll-section-0 .fixed-el.right {
    opacity: 0;
    bottom: -50px;
    transform: translateY(100%);
    transition: all 1s;
}

#scroll-section-0 .fixed-el.left {
    overflow: hidden;
    left: 5%;
    top: auto;
    bottom: 30px;
    width: 22.5%;
    border-radius: 8px;
    box-shadow: 0px 24px 38px 0px rgba(0, 0, 0, 0.14), 0px 9px 46px 0px rgba(0, 0, 0, 0.12), 0px 11px 15px 0px rgba(0, 0, 0, 0.2);
}

#scroll-section-0 .fixed-el.right {
    left: auto;
    right: 7.5%;
    top: auto;
    width: 22.5%;
}

#scroll-section-0 .fixed-el.left.active,
#scroll-section-0 .fixed-el.right.active {
    opacity: 1;
    transform: translateY(0);
}

#scroll-section-0 .swiper-fade .swiper-slide {
    opacity: 0 !important;
}

#scroll-section-0 .swiper-fade .swiper-slide-active {
    opacity: 1 !important;
}

@keyframes mainImageShow {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mainImageHide {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100%);
    }
}
/*********************************************/
/* scroll-section-6 */
#scroll-section-6 .dots span:nth-of-type(1),
#scroll-section-6 .dots span:nth-of-type(2),
#scroll-section-9 .dots span:nth-of-type(1),
#scroll-section-9 .dots span:nth-of-type(2),
#scroll-section-10 .dots span:nth-of-type(1),
#scroll-section-10 .dots span:nth-of-type(2) {
    display: block;
}

#scroll-section-6 .img-box.a,
#scroll-section-6 .img-box.c {
    right: 0;
    top: 15%;
}

#scroll-section-6 .img-box.b,
#scroll-section-6 .img-box.d {
    left: 0;
    top: 100%;
}
/*********************************************/
/* scroll-section-7 */
#scroll-section-7 .dots span {
    display: block;
}

#scroll-section-7 .img-box.a,
#scroll-section-7 .img-box.b,
#scroll-section-7 .img-box.c {
    right: 0;
    top: 15%;
}

#scroll-section-7 .img-box.d {
    left: 0;
    top: 100%;
    width: 100%;
}
/*********************************************/
/* scroll-section-8 */
#scroll-section-8 .img-box.a {
    left: 0;
    top: 100%;
}

#scroll-section-8 .img-box.b {
    right: 0;
    top: 15%;
}
/*********************************************/
/* scroll-section-9 */
#scroll-section-9 .img-box.a,
#scroll-section-9 .img-box.c {
    right: 0;
    top: 15%;
}

#scroll-section-9 .img-box.b,
#scroll-section-9 .img-box.d {
    left: 0;
    top: 100%;
}
/*********************************************/
/* scroll-section-10 */
#scroll-section-10 .img-box.a,
#scroll-section-10 .img-box.c {
    left: 0;
    top: 100%;
}

#scroll-section-10 .img-box.b {
    right: 0;
    top: 15%;
}
/*********************************************/
.main-content-wrap {
    position: relative;
    padding: 5% 2.5% 0 2.5%;
    margin-left: 15%;
    margin-right: 15%;
}

.main-content-box {
    z-index: 1;
    position: relative;
    display: inline-block;
    width: 50%;
    padding-left: 5%;
}

.main-content-wrap .img-box {
    width: 50%;
    padding-left: 2.5%;
    padding-right: 2.5%;
}
/*********************************************/
.normal-content-box {
    padding: 5%;
    margin-left: 15%;
    margin-right: 15%;
}

.normal-content-box.a {
    border-radius: 30px;
    background-color: #f6f8fc;
}

.normal-content-box.a .img-box {
    flex-shrink: 0;
    width: 52.5%;
}
/*********************************************/
/* swiper common */
.swiper {
    overflow: hidden;
}
/*********************************************/
/* pagination common */
.paginationjs .paginationjs-pages li {
    border: none;
    color: #3c3c3c;
}

.paginationjs .paginationjs-pages li:last-child {
    border-right: none;
}

.paginationjs .paginationjs-pages li>a:hover {
    border-radius: 50%;
    background: #f3f8ff;
}

.paginationjs .paginationjs-pages li>a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 18px;
    color: #3c3c3c;
    border-radius: 50%;
}

.paginationjs .paginationjs-pages li.active>a {
    height: 36px;
    line-height: 36px;
    color: #3c3c3c;
    background: #f3f8ff;
}

.paginationjs .paginationjs-pages li.paginationjs-prev>a,
.paginationjs .paginationjs-pages li.paginationjs-next>a {
    position: relative;
    text-indent: -9999px;
}

.paginationjs .paginationjs-pages li.paginationjs-prev>a:after,
.paginationjs .paginationjs-pages li.paginationjs-next>a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 25%;
    height: 25%;
    border-top: 2px solid #bebebe;
    border-right: 2px solid #bebebe;
}

.paginationjs .paginationjs-pages li.paginationjs-prev>a:after {
    transform: translate(-50%, -50%) rotate(225deg);
}

.paginationjs .paginationjs-pages li.paginationjs-next>a:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.paginationjs {
    justify-content: center;
}
/*********************************************/
/* table common */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    padding: 1rem;
    text-align: center;
    color: #4b5666;
    background-color: #f7f7fb;
}

.table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eaeaee;
}
/*********************************************/
/* popup common */
.buptlePopup {
    width: auto;
    padding: 0;
    background-color: transparent;
}

.buptlePopup-backdrop-show {
    animation: popupShow .5s forwards;
}

.swal2-actions {
    width: 100%;
    margin-top: 0;
}

.buptlePopup-backdrop-show .button.deny {
    animation: popupShow .5s 1s forwards;
}

@keyframes popupShow {
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}

/* .effect-title-wrap.active .effect-title-item p {
    animation-name: effectTitleShow;
}


.effect-title-item {
    overflow: hidden;
}

.effect-title-item p {
    transform: translateY(100%);
    animation-fill-mode: forwards;
}

.effect-title-wrap .effect-title-item:first-of-type p {
    animation-duration: .5s;
}

.effect-title-wrap .effect-title-item:nth-of-type(2) p {
    animation-duration: .75s;
}

.effect-title-wrap .effect-title-item:last-of-type p {
    animation-duration: 1s;
}

@keyframes effectTitleShow {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
} */