@font-face {
font-family: "Montserrat";
font-style: normal;
font-display: swap;
font-weight: 400;
src: local('Montserrat'), local('Montserrat'), url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
font-family: "Montserrat";
font-style: normal;
font-display: swap;
font-weight: 500;
src: local('Montserrat'), local('Montserrat'), url(../fonts/Montserrat-Medium.ttf);
}
@font-face {
font-family: "Montserrat";
font-style: normal;
font-display: swap;
font-weight: 600;
src: local('Montserrat'), local('Montserrat'), url(../fonts/Montserrat-SemiBold.ttf);
}
@font-face {
font-family: "Montserrat";
font-style: normal;
font-display: swap;
font-weight: 700;
src: local('Montserrat'), local('Montserrat'), url(../fonts/Montserrat-Bold.ttf);
}

:root {
color-scheme: dark;
--fontFamily: "Montserrat";
--fontFamily2: arial, "ｍｓ ｐゴシック", "ms pgothic", 돋움, dotum, helvetica, sans-serif;
--fontSize85: 85px;
--fontSize75: 75px;
--fontSize55: 55px;
--fontSize50: 50px;
--fontSize40: 40px;
--fontSize35: 35px;
--fontSize25: 25px;
--fontSize20: 20px;
--fontSize17: 17px;
--fontSize16: 16px;
--fontSize14: 14px;
--bg:rgb(34,35,35);
--bg2:rgb(0,0,0);
--color1:rgb(162, 56, 255);
--color2:rgb(255, 0, 0);
--color3:rgb(31, 223, 103);
}
@media (max-width: 680px) {
    :root {
        --fontSize85: calc(8.5vw * 1.4);
        --fontSize75: calc(7.5vw * 1.4);
        --fontSize55: calc(5.5vw * 1.4);
        --fontSize50: calc(5vw * 1.4);
        --fontSize40: calc(4vw * 1.4);
        --fontSize35: calc(3.5vw * 1.55);
        --fontSize25: calc(2.5vw * 1.92);
        --fontSize20: calc(2vw * 2.34);
        --fontSize17: calc(1.7vw * 2.34);
        --fontSize16: calc(1.6vw * 2.34);
        --fontSize14: calc(1.4vw * 2.34);
    }
}
*,
*::before,
*::after {
box-sizing: border-box;
outline: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
background-color: var(--bg);
}
body, html {
height: 100%;
margin: 0;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: var(--fontFamily);
font-size: var(--fontSize16);
line-height: 1.4;
color: #fff;
min-width: 260px;
word-break: break-word;
/* -webkit-overflow-scrolling: touch; */
}
#loading-bg {
position: fixed;
display: none;
background: var(--bg);
block-size: 100%;
inline-size: 100%;
top: 0;
left: 0;
z-index: 5000;
}
.loaded #loading-bg {
display: block;
}
#loading-bg:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--bg);
opacity: 0.65;
}
#loading-bg .logo {
width: 100px;
height: 100px;
position: absolute;
left: 50%;
top: 50%;
margin: -50px 0 0 -50px;
}
.loaded #loading-bg .logo {
animation: rotate 1s ease infinite;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(1turn);
}
}
#app {
min-height: 100%;
width: 100%;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
}
#app:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100%;
background-image: url('../img/84770f_3eb255885dbb486790bc704b248e6860.jpg');
background-position: 50% 100%;
background-repeat: no-repeat;
background-size: 100% auto;
z-index: -102;
pointer-events: none;
}
#app.app-sticky {
overflow: visible;
}
#app-wrapper {
width: 100%;
margin: 0;
display: flex;
flex-direction: column;
flex: 1;
}
.section {
position: relative;
}
#app.app-sticky .section {
    overflow: hidden;
}
.section .block {
display: flex;
flex-direction: column;
padding: 20px 0;
}
.section .block .box {
display: flex;
flex-direction: column;
justify-content: center;
padding: 20px 0;
}
.container3,
.container2,
.container {
margin: 0 auto;
max-width: 1280px;
position: relative;
}
.container {
padding: 0 20px;
}
.container2 {
max-width: 980px;
}
.container3 {
max-width: 600px;
}
.fontFamily {
    font-family: var(--fontFamily);
}
.fontFamily2 {
    font-family: var(--fontFamily2);
}
.lineHeight12 {
    line-height: 1.2;
}
.lineHeight13 {
    line-height: 1.33;
}
.fontWeight400 {
    font-weight: 400;
}
.fontWeight500 {
    font-weight: 500;
}
.fontWeight600 {
    font-weight: 600;
}
.fontWeight700 {
    font-weight: 700;
}
.fontSize85 {
    font-size: var(--fontSize85);
}
.fontSize75 {
    font-size: var(--fontSize75);
}
.fontSize55 {
    font-size: var(--fontSize55);
}
.fontSize50 {
    font-size: var(--fontSize50);
}
.fontSize40 {
    font-size: var(--fontSize40);
}
.fontSize35 {
    font-size: var(--fontSize35);
}
.fontSize25 {
    font-size: var(--fontSize25);
}
.fontSize20 {
    font-size: var(--fontSize20);
}
.fontSize17 {
    font-size: var(--fontSize17);
}
.fontSize16 {
    font-size: var(--fontSize16);
}
.fontSize14 {
    font-size: var(--fontSize14);
}
.color1 {
    color: var(--color1);
}
.color2 {
    color: var(--color2);
}
.color3 {
    color: var(--color3);
}
.text-no-wrap {
    white-space: nowrap;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    margin: 0;
    padding: 0 0 0 20px;
}
ul.alt {
list-style-type: none;
}
ul.alt > li {
position: relative;
}
ul.alt > li:before {
content: "-";
position: absolute;
left: -15px;
width: 15px;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.dash {
    width: 60px;
    height: 1px;
    background-color: #fff;
    margin: 20px 0;
}
.btn {
outline: none;
font-family: var(--fontFamily);
border: 0;
padding: 5px 20px;
color: #fff;
background-color: var(--color1);
border-radius: 20px;
align-items: center;
justify-content: center;
text-align: center;
min-width: 260px;
max-width: 100%;
min-height: 40px;
font-size: var(--fontSize17);
line-height: 1.2;
font-weight: 400;
cursor: pointer;
display: flex;
text-decoration: none;
box-shadow: 0 1px 20px var(--color1);
transition: color 0.3s ease, background-color 0.3s ease;
}
.btn:hover {
    color: #000;
    background-color: #fff;
}
.btn-wrap {
    display: flex;
    align-items: center;
}
.text-center.btn-wrap,
.text-center .btn-wrap {
    justify-content: center;
}
.text-center {
    text-align: center;
}
.section-row {
    display: flex;
    margin: -10px -20px;
}
.section-row .section-col {
    flex: 1;
    padding: 10px 20px;
}
.icon-wrap {
    display: flex;
    align-items: center;
}
.text-center .icon-wrap {
    align-self: center;
}
.icon-wrap .icon {
    width: 70px;
    height: 70px;
}
.icon-wrap .icon img {
    width: 100%;
    height: 100%;
}
.icon-wrap .title {
    margin: 0 0 0 20px;
}
.video-wrap {
    display: block;
    width: 100%;
    padding: 56.6% 0 0;
    position: relative;
}
.video-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    backface-visibility: hidden;
}
.section-bg video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}
.section-bg img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}
.network-wrap {
    display: flex;
    align-items: center;
    margin: 0 -10px;
    justify-content: center;
}
.network-wrap .network-item {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    border-radius: 6px;
    overflow: hidden;
}
.network-wrap .network-item.item1 {
    background: url('../img/network_1.jpeg') no-repeat -24px -24px / auto 99px;
}
.network-wrap .network-item.item2 {
    background: url('../img/network_1.jpeg') no-repeat -84px -24px / auto 99px;
}
.network-wrap .network-item.item3 {
    background: url('../img/network_2.png') no-repeat -3px -5px / auto 59px;
}
.section-header {
    background-color: var(--bg);
    height: 100px;
}
.section-header .section-header-holder {
    background-color: var(--bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    z-index: 150;
}
.section-header .section-header-wrap {
    display: flex;
    align-items: center;
    height: 100px;
    padding: 10px 0;
}
.section-header .logo-wrap {
    display: flex;
    align-items: center;
    font-size: 25px;
    text-decoration: none;
    color: inherit;
}
.section-header .logo-wrap .logo {
    width: 33px;
    height: 33px;
    margin: 0 10px 0 0;
}
.section-header .holder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.section-header .holder .btn {
    min-width: auto;
}
.section-header .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: var(--fontSize25);
    color: #fff;
    line-height: 1.2;
}
.section-header .nav-wrap .nav-item {
    margin: 0 40px 0 0;
}
.section-header .nav-wrap .nav-item a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}
.section-header .nav-wrap .nav-item.active,
.section-header .nav-wrap .nav-item.active a,
.section-header .nav-wrap .nav-item a:hover {
    color: var(--color1);
}
.section-header .nav-wrap-opener {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 -10px 0 10px;
    display: none;
    cursor: pointer;
}
.section-header .nav-wrap-opener span {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 24px;
    background-color: #fff;
    margin: -1px 0 0 -12px;
    transition:background-color .3s ease;
}
.section-header .nav-wrap-opener span:before,
.section-header .nav-wrap-opener span:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -12px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition:transform .1s ease;
}
.section-header .nav-wrap-opener span:after {
    top: 6px;
}
.section-header .active .nav-wrap-opener span{
    background-color: transparent;
    transition:transform .3s ease;
}
.section-header .active .nav-wrap-opener span:before {
    transform: rotate(45deg) translate(4px, 4px);
}
.section-header .active .nav-wrap-opener span:after {
    transform: rotate(-45deg) translate(5px, -5px);
}
.section-main {
    text-align: center;
}
.section-main .section-main-header {
    background-color: var(--bg2);
    font-size: var(--fontSize40);
}
.section-main .section-main-content {
    position: relative;
}
.section-main .section-main-content .video-wrap {
    margin-top: -40px;
}
.section-main2 .section-main-content .video-wrap {
    margin-top: 0;
}
.section-main .container2 {
    width: 100%;
}
.section-description-1 {
    background: url('../img/c837a6_831fe7c79e9e45869554588550034ac1.jpg') no-repeat 50% 0 / 100% auto;
}
.section-description-1 .section-row .section-col {
    display: flex;
    flex-direction: column;
}
.section-description-1 .description-wrap {
    flex: .6;
}
.section-description-2 {
    text-align: center;
    overflow: hidden;
    background-color: var(--bg2);
}
.section-description-2 .bg {
    position: absolute;
    top: -200px;
    left: -200px;
    right: -200px;
    bottom: -200px;
    background: url('../img/c837a6_f9e52562144944449741488bfd2681f4.png') no-repeat 0 50% / 100% auto;
}
.section-description-2 .img-wrap {
    max-width: 600px;
    margin: 0 auto;
}
.section-description-3 .section-description-3-bg-wrap {
    position: relative;
    display: flex;
}
.section-description-3 .section-description-3-bg-wrap .img-wrap {
    width: 33.33%;
    overflow: hidden;
}
.section-description-3 .section-description-3-bg-wrap .img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    margin-top: 30px;
}
.section-description-3 .section-description-3-bg-wrap .img-content {
    width: 66.66%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-description-3 .section-description-3-bg-wrap .img-content .img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(50.498759152186665deg, #20BED4 17.010498046875%, #071D48 48.2696533203125%, #A238FF 80.902099609375%);
}
.section-description-3 .section-description-3-bg-wrap .img-content .container {
    margin: 0;
    max-width: calc(100% - (100vw - 1280px) / 2);
}
.section-description-4 .container3 {
    margin: 0;
}
.section-description-6 .star-list {
    text-align: left;
}
.section-description-6 .star-list .title {
    margin-bottom: 5px;
    margin-left: 43px;
}
.section-description-6 .star-list .star-icon {
    margin: -1px 10px 0 0;
    background: url('../img/star.svg') no-repeat 50% 50% / 100% 100%;
    width: 33px;
    min-width: 33px;
    height: 33px;
    position: relative;
    top: -4px;
}
.section-description-6 .star-list .star-list-item {
    display: flex;
    align-items: center;
}
.section-footer-wrap {
    border-top: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 0;
}
.section-footer-wrap .section-footer-icon-wrap {
    margin: 0 -5px;
    display: flex;
    align-items: center;
}
.section-footer-wrap .section-footer-icon-wrap .section-footer-icon-wrap-item {
    width: 43px;
    height: 24px;
    min-width: 43px;
    margin: 0 5px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.section-footer-wrap .section-footer-icon-wrap .section-footer-icon-wrap-item.item1 {
    background-image: url('../img/c837a6_0c038d1905244309869036f4b2a87fba.png');
}
.section-footer-wrap .section-footer-icon-wrap .section-footer-icon-wrap-item.item2 {
    background-image: url('../img/c837a6_24b45424cb584c759d470b3ab5bd6ee8.png');
}
.section-footer-wrap .section-footer-icon-wrap .section-footer-icon-wrap-item.item3 {
    background-image: url('../img/1e9c8a_f49c157486a04277ba7cecf3fbf26d6b.png');
}
.section-program {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.section-program .block .box{
    width: 760px;
    margin: 0 auto;
    background-color: var(--bg2);
    padding: 20px;
    min-height: 400px;
    justify-content: center;
}
.section-description-7 {
    padding: 20px;
}
.section-description-7 .section-description-7-bg-wrap {
    position: relative;
    display: flex;
}
.section-description-7 .section-description-7-bg-wrap .img-wrap {
    width: 33.33%;
    overflow: hidden;
}
.section-description-7 .section-description-7-bg-wrap .img-content {
    width: 66.66%;
    position: relative;
    background-color: var(--bg2);
}
.section-description-7 .section-description-7-bg-wrap .img-content .container {
    margin: 0 0 0 auto;
    max-width: calc(100% - (100vw - 1280px) / 2);
}
.section-description-7 .section-description-7-bg-wrap .img-content .container3 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.section-description-8 {
    padding: 20px;
}
.section-description-8 .section-description-8-bg-wrap {
    position: relative;
    display: flex;
}
.section-description-8 .section-description-8-bg-wrap .img-wrap {
    width: 38.33%;
    overflow: hidden;
    margin: 0 -5% 40px 0;
}
.section-description-8 .section-description-8-bg-wrap .img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}
.section-description-8 .section-description-8-bg-wrap .img-content {
    width: 71.66%;
    position: relative;
    background-color: var(--bg2);
    margin: 40px 0 0 -5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-description-8 .section-description-8-bg-wrap .img-content .container {
    margin: 0;
    max-width: calc(100% - (100vw - 1280px) / 2);
}
.section-description-8 .section-description-8-bg-wrap .img-content .container3 {
    padding-top: 20px;
    padding-bottom: 40px;
}
.section-description-9 {
    padding: 20px;
}
.section-description-9 .section-description-9-bg-wrap {
    position: relative;
    display: flex;
}
.section-description-9 .section-description-9-bg-wrap .img-wrap {
    width: 33.33%;
    overflow: hidden;
}
.section-description-9 .section-description-9-bg-wrap .img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: 50% 0;
}
.section-description-9 .section-description-9-bg-wrap .img-content {
    width: 66.66%;
    background-color: var(--bg2);
}
.section-description-9 .section-description-9-bg-wrap .img-content .container {
    margin: 0 0 0 auto;
    max-width: calc(100% - (100vw - 1280px) / 2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-description-9 .section-description-9-bg-wrap .img-content .container3 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.section-description-10-row {
    display: flex;
    margin: 0 -10px;
}
.section-description-10-col {
    padding: 0 10px;
}
.section-description-10-col.col1 {
    width: 233px;
    min-width: 233px;
}
.section-description-11 {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-description-11 .block .box{
    background-color: var(--bg2);
    padding: 20px;
}
.section-description-12 {
    background-color: var(--bg2);
}
.section-description-12-box {
    margin-bottom: -20px;
}
.section-description-12-row {
    padding: 20px 0;
    border-top: 3px solid var(--color1);
    display: flex;
    align-items: center;
    margin: 0 -10px;
}
.section-description-12-col {
    padding: 0 10px;
}
.section-description-12-col.col1 {
    width: 50%;
    min-width: 50%;
}
.section-description-13 {
    padding: 20px;
}
.section-description-13 .section-description-13-bg-wrap {
    position: relative;
    display: flex;
}
.section-description-13 .section-description-13-bg-wrap .img-wrap {
    width: 38.33%;
    overflow: hidden;
    margin: 0 -5% 40px 0;
}
.section-description-13 .section-description-13-bg-wrap .img-wrap video {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: 100% 50%;
    display: block;
}
.section-description-13 .section-description-13-bg-wrap .img-content {
    width: 71.66%;
    position: relative;
    background-color: var(--bg2);
    margin: 40px 0 0 -5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-description-13 .section-description-13-bg-wrap .img-content .container {
    margin: 0;
    max-width: calc(100% - (100vw - 1280px) / 2);
}
.section-description-13 .section-description-13-bg-wrap .img-content .container3 {
    padding-top: 20px;
    padding-bottom: 40px;
}
.section-description-14 {
    padding: 20px;
}
.section-description-14 .section-description-14-bg-wrap {
    position: relative;
    display: flex;
}
.section-description-14 .section-description-14-bg-wrap .img-wrap {
    width: 48.33%;
    overflow: hidden;
    position: relative;
    margin: 0 -5% 40px 0;
    max-height: 600px;
}
.section-description-14 .section-description-14-bg-wrap .img-wrap .wrap-holder {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.section-description-14 .section-description-14-bg-wrap .img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 50%;
    display: block;
}
.section-description-14 .section-description-14-bg-wrap .img-wrap img {
    width: 75%;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0 0 0 -10%;
}
.section-description-14 .section-description-14-bg-wrap .img-content {
    width: 61.66%;
    position: relative;
    background-color: var(--bg2);
    margin: 40px 0 0 -5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-description-14 .section-description-14-bg-wrap .img-content .container {
    margin: 0;
    max-width: calc(100% - (100vw - 1280px) / 2);
}
.section-description-14 .section-description-14-bg-wrap .img-content .container3 {
    padding-top: 20px;
    padding-bottom: 40px;
}
.section-description-15 {
    padding: 20px;
}
.section-description-15 .section-description-15-bg-wrap {
    position: relative;
    display: flex;
}
.section-description-15 .section-description-15-bg-wrap .img-wrap {
    width: 33.33%;
    overflow: hidden;
}
.section-description-15 .section-description-15-bg-wrap .img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}
.section-description-15 .section-description-15-bg-wrap .img-content {
    width: 66.66%;
    background-color: var(--bg2);
}
.section-description-15 .section-description-15-bg-wrap .img-content .container {
    margin: 0 0 0 auto;
    max-width: calc(100% - (100vw - 1280px) / 2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}
.section-description-15 .section-description-15-bg-wrap .img-content .container3 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.section-description-16 {
    background-color: var(--bg2);
}
.section-description-17 {
    background-color: var(--bg2);
    z-index: 1;
    padding-bottom: 20px;
}
.section-description-17:before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: -1;
    background-color: var(--bg);
}
.section-description-17 .block {
    padding-left: 20px;
    padding-right: 20px;
}
.section-description-18 {
    padding: 20px;
}
.section-description-18 .section-description-18-bg-wrap {
    position: relative;
    display: flex;
}
.section-description-18 .section-description-18-bg-wrap .img-wrap {
    width: 55%;
    overflow: hidden;
    margin: 0 -5% 40px 0;
}
.section-description-18 .section-description-18-bg-wrap .img-wrap video {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: 100% 50%;
    display: block;
}
.section-description-18 .section-description-18-bg-wrap .img-content {
    width: 55%;
    position: relative;
    background-color: var(--bg2);
    margin: 40px 0 0 -5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-description-18 .section-description-18-bg-wrap .img-content .container {
    margin: 0;
    max-width: calc(100% - (100vw - 1280px) / 2);
}
.section-description-18 .section-description-18-bg-wrap .img-content .container3 {
    padding-top: 20px;
    padding-bottom: 40px;
}
.section-description-19 .section-description-19-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 142px;
    margin: 0 auto;
}
.section-description-19 .clipped-video-wrap {
    width: 977px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 0 0 -488px;
}
.section-description-19 .section-bg video {
    object-fit: cover;
    object-position: 50% 0;
}
.section-description-19 .clipped-video {
  -webkit-clip-path: url(#text-overlay);
  clip-path: url(#text-overlay);
}
.section-description-19 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.section-description-19 svg text {
    font-size: var(--fontSize55);
    font-family: var(--fontFamily);
    letter-spacing: 0em;
    direction: ltr;
    fill: rgb(255, 255, 255);
    font-weight: bold;
    font-style: normal;
    text-anchor: middle;
    text-decoration: none;
    text-transform: uppercase;
    alignment-baseline: middle;
}
.package-wrapper {
    margin: -10px;
    display: flex;
}
.package-wrapper-item {
    padding: 10px;
    width: 25%;
    min-width: 25%;
}
.package-wrapper-box {
    background-color: var(--bg2);
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 100%;
}
.package-wrapper-box .wrap {
    flex: 1;
    margin-bottom: 10px;
}
.package-wrapper-box .btn {
    min-width: 100%;
}
.package-wrapper-box .title {
    font-size: var(--fontSize35);
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 0 0 10px;
    margin: 0;
}
.package-wrapper-box .price {
    font-size: var(--fontSize85);
    color: var(--color1);
    text-align: center;
    padding: 0;
    margin: 0;
}
#app.app-sticky .section-description-20 {
    overflow: visible;
    margin-bottom: -40px;
}
.accordion {
    margin: 0;
    font-size: var(--fontSize14);
    line-height: 1.2;
}
.accordion .accordion-table-header {
    color: #fff;
    font-size: var(--fontSize25);
    font-weight: 500;
    align-items: flex-start;
    position: sticky;
    top: 100px;
    z-index: 100;
}
.accordion .accordion-table-header .row {
    background-color: var(--color1);
}
.accordion-item {
    position: relative;
}
.accordion .row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--bg);
    transition: background-color .3s ease;
    background-color: var(--bg2);
}
.accordion .row .col {
    flex: 1;
    text-align: center;
    border-left: 1px solid var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
}
.accordion .accordion-item .row:hover {
    background-color: var(--bg);
}
.accordion .row .col.col1 {
    padding: 10px;
    min-width: 40%;
    width: 40%;
    text-align: left;
    justify-content: flex-start;
    border-left: 0;
}
.accordion .row .col.col-full {
    min-width: 100%;
    width: 100%;
}
.accordion .accordion-item .accordion-table-content {
    display: none;
}
.accordion .accordion-table-opener {
    cursor: pointer;
}
.accordion .separator {
    margin: 0 4px;
}
.accordion .arrow {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color1);
    margin: 0 10px 0 0;
    position: relative;
    transition: background-color .3s linear;
}
.accordion .arrow:before,
.accordion .arrow:after {
    transition: transform .3s linear;
    content: '';
    width: 16px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    margin: -1px 0 0 -8px;
}
.accordion .arrow:after {
    transform: rotate(90deg);
}
.accordion .active .arrow {
    background-color: var(--color3);
}
.accordion .active .arrow:after {
    transform: rotate(90deg) scale(0);
}
.accordion .active .row {
    background-color: rgba(255, 2550, 255, .1);
}
.accordion .accordion-table-footer {
    background-color: transparent !important;
}
.accordion .accordion-item-footer {
    position: sticky;
    bottom: 0;
    z-index: 90;
}
.accordion .accordion-table-footer .btn {
    min-width: 100%;
    font-size: var(--fontSize14);
    line-height: 1;
}
.accordion .accordion-table-footer .col {
    border-color: transparent;
}
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity .3s ease;
    opacity: 0;
    pointer-events: none;
    left: -9999px;
    top: -9999px;
}
.modal.active {
    opacity: 1;
    pointer-events: auto;
    top: 0;
    left: 0;
}
.modal.modal-success .modal-tel-wrap,
.modal.modal-error .modal-tel-wrap,
.modal .modal-success-wrap,
.modal .modal-err-wrap {
    display: none;
}
.modal.modal-success .modal-success-wrap,
.modal.modal-error .modal-err-wrap {
    display: block;
}
.modal .load-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    display: none;
    background-color: rgba(0,0,0,.5);
}
.modal .load-wrap img {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
}
.modal.active-load .load-wrap {
display: block;
}
.modal.active-load .load-wrap img {
animation: rotate 1s ease infinite;
}
.modal .modal-bg {
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal .modal-content {
    background-color: var(--bg);
    width: 320px;
    padding: 20px;
    position: relative;
    z-index: 20;
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
}
.modal .modal-close-btn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -20px;
    top: -20px;
    background-color: var(--bg);
    border-radius: 5px 5px 5px 0;
}
.modal .modal-close-btn:before,
.modal .modal-close-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -12px;
    height: 2px;
    width: 24px;
    background-color: rgba(255,255,255,.5);
}
.modal .modal-close-btn:before {
    transform: rotate(45deg);
}
.modal .modal-close-btn:after {
    transform: rotate(-45deg);
}
.modal.active-load .modal-close-btn {
display: none;
}
.modal .modal-tel-wrap {
    margin: 0;
}
.modal .modal-tel-wrap input {
color: white;
background-color: #0d1117;
height: 35px;
margin: 0;
padding: 6px 12px;
border-radius: 2px;
font-family: inherit;
font-size: 100%;
color: inherit;
border: 1px solid #ccc;
width: 100%;
font-size: 16px;
}
.modal .modal-tel-wrap input[disabled] {
background-color: #3c3c3c;
}
.modal .modal-tel-wrap input {
border-color: #5b5b5b;
}
.modal .modal-tel-wrap input::placeholder {
color: #8d96a0;
}
.modal .modal-tel-wrap .iti {
--iti-border-color: #5b5b5b;
--iti-dialcode-color: #999999;
--iti-dropdown-bg: #0d1117;
--iti-arrow-color: #aaaaaa;
--iti-hover-color: #30363d;
width: 100%;
}
.modal .modal-tel-wrap .iti--inline-dropdown .iti__dropdown-content {
    font-size: 14px;
}
.modal .text-error {
    min-height: 14px;
    font-size: 12px;
    line-height: 14px;
    color: var(--color2);
    text-align: left;
    margin: 4px 0 2px;
}
.modal .hide {
display: none;
}
.icon-coin {
    background: url('../img/icons8-coin-94.png') no-repeat 50% 50%/ 100% 100%;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
@media (max-width: 1280px) {
    .package-wrapper {
        flex-wrap: wrap;
    }
    .package-wrapper-item {
        width: 50%;
        min-width: 50%;
    }
    .package-wrapper-box .btn {
        min-width: 260px;
    }
}
@media (max-width: 1124px) {
    .section-header .nav-wrap {
        font-size: 20px;
    }
    .section-description-13 .section-description-13-bg-wrap .img-wrap video {
        object-position: 65% 50%;
    }
}
@media (max-width: 1024px) {
    .md-hidden {
        display: none !important;
    }
    .mb40 {
        margin-bottom: 20px !important;
    }
    .section-footer-wrap {
        padding-top: 20px;
    }
    .section-row {
        display: block;
    }
    .section-row .section-col {
        width: 100%;
    }
    .section-header .section-header-wrap,
    .section-header {
        height: 60px;
    }
    .accordion .accordion-table-header {
        top: 60px;
    }
    .section-header .nav-wrap {
        position: absolute;
        background-color: var(--bg);
        top: 59px;
        width: 200px;
        right: 0;
        z-index: -1;
        display: block;
        padding: 20px;
        border-bottom-left-radius: 20px;
        opacity: 0;
        transform: translate(200px,0);
        pointer-events: none;
        transition: transform .3s ease, opacity .3s ease;
    }
    .section-header .active .nav-wrap {
        opacity: 1;
        transform: translate(0,0);
        pointer-events: auto;
    }
    .section-header .nav-wrap-opener {
        display: block;
    }
    .section-header .nav-wrap .nav-item {
        font-size: 16px;
        padding: 0;
        margin: 0 0 10px;
    }
    .section-header .nav-wrap .nav-item:last-child {
        margin-bottom: 0;
    }
    .section-description-1 {
        background-size: cover;
        background-position: 50% 0;
        text-align: center;
    }
    .section-description-1 .btn-wrap {
        justify-content: center;
    }
    .section-description-3 .section-description-3-bg-wrap .img-wrap {
        display: none;
    }
    .section-description-3 .section-description-3-bg-wrap .img-content {
        width: 100%;
    }
    .section-program {
        min-height: auto;
    }
    .section-program .block .box{
        width: 100%;
        min-height: auto;
    }
    .section-description-7 .container3 {
        padding: 20px 10px;
    }
    .section-description-8 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .section-description-8 .section-description-8-bg-wrap {
        display: block;
    }
    .section-description-8 .section-description-8-bg-wrap .img-content,
    .section-description-8 .section-description-8-bg-wrap .img-wrap {
        margin: 0;
        width: 100%;
    }
    .section-description-8 .section-description-8-bg-wrap .img-content .container3 {
        padding-bottom: 20px;
    }
    .section-description-11 {
        min-height: auto;
    }
    .section-description-13 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .section-description-13 .section-description-13-bg-wrap {
        display: block;
    }
    .section-description-13 .section-description-13-bg-wrap .img-content,
    .section-description-13 .section-description-13-bg-wrap .img-wrap {
        margin: 0;
        width: 100%;
    }
    .section-description-13 .section-description-13-bg-wrap .img-content .container3 {
        padding-bottom: 20px;
    }
    .section-description-13 .section-description-13-bg-wrap .img-wrap video {
        object-position: 50% 50%;
    }
    .section-description-18 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .section-description-18 .section-description-18-bg-wrap {
        display: block;
    }
    .section-description-18 .section-description-18-bg-wrap .img-content,
    .section-description-18 .section-description-18-bg-wrap .img-wrap {
        margin: 0;
        width: 100%;
    }
    .section-description-18 .section-description-18-bg-wrap .img-content .container3 {
        padding-bottom: 20px;
    }
    .section-description-18 .section-description-18-bg-wrap .img-wrap video {
        object-position: 50% 50%;
    }
    .section-description-19 svg text {
        font-size: var(--fontSize40);
    }
    .accordion .accordion-table-header {
        font-size: var(--fontSize20);
    }
    .accordion .accordion-table-footer .btn {
        padding: 0 10px;
    }
}
@media (max-width: 800px) {
    .section-description-19 svg text {
        font-size: var(--fontSize35);
    }
}
@media (max-width: 680px) {
    .sm-hidden {
        display: none !important;
    }
    .section .block {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section .block .box {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .btn {
        min-width: 240px;
    }
    .btn-wrap {
        flex-direction: column;
        width: 100%;
    }
    .section-header .holder .btn {
        min-width: auto;
        line-height: 1;
        padding-left: 10px;
        padding-right: 10px;
    }
    .video-wrap {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        padding: 64.6% 0 0;
    }
    .dash {
        margin-left: auto;
        margin-right: auto;
    }
    .icon-wrap .title {
        margin-left: 10px;
    }
    .section-description-2 {
        display: none;
    }
    .section-description-3 .section-description-3-bg-wrap {
        display: block;
        text-align: center;
    }
    .section-description-3 .section-description-3-bg-wrap .img-wrap {
        display: block;
        width: 100%;
    }
    .section-description-4:before {
        content: '';
        background-color: rgba(0,0,0,.3);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .section-program .block .box{
        padding: 20px;
    }
    .section-description-7 {
        display: none;
    }
    .section-description-8 .section-description-8-bg-wrap .img-content,
    .section-description-8 .section-description-8-bg-wrap .img-wrap {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .section-description-9 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .section-description-9 .section-description-9-bg-wrap {
        flex-wrap: wrap;
    }
    .section-description-9 .section-description-9-bg-wrap .img-content,
    .section-description-9 .section-description-9-bg-wrap .img-wrap {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .section-description-9 .section-description-9-bg-wrap .img-wrap {
        order: -1;
    }
    .section-main .section-main-content .video-wrap {
        margin-top: -30px;
        margin-bottom: -10px;
    }
    .section-main2 .section-main-content .video-wrap {
        margin-top: -30px;
        margin-bottom: -30px;
    }
    .section-main2 .section-bg {
        display: none;
    }
    .section-description-10-row {
        display: block;
    }
    .section-description-10-col.col1 {
        font-size: var(--fontSize25);
        margin-bottom: 10px;
    }
    .section-description-12-row {
        display: block;
    }
    .section-description-12-col {
        padding: 0 10px;
    }
    .section-description-12-col.col1 {
        width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
    }
    .section-description-13 .section-description-13-bg-wrap .img-content,
    .section-description-13 .section-description-13-bg-wrap .img-wrap {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .section-description-14 {
        display: none;
    }
    .section-description-15 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .section-description-15 .section-description-15-bg-wrap {
        flex-wrap: wrap;
    }
    .section-description-15 .section-description-15-bg-wrap .img-content,
    .section-description-15 .section-description-15-bg-wrap .img-wrap {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .section-description-15 .section-description-15-bg-wrap .img-wrap {
        order: -1;
    }
    .section-description-15 .section-description-15-bg-wrap .img-content .container {
        min-height: auto;
    }
    .section-description-16 {
        display: none;
    }
    .section-description-18 .section-description-18-bg-wrap .img-content,
    .section-description-18 .section-description-18-bg-wrap .img-wrap {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .section-description-19 .section-description-19-wrap {
        height: 100px;
    }
    .section-description-19 .clipped-video {
        top: -3vh;
    }
    .section-description-19 .section-bg video {
        background-position: 50% 50%;
    }
    .package-wrapper {
        margin: -30px;
    }
    .package-wrapper-item {
        width: 100%;
        min-width: 100%;
    }
    .package-wrapper-box {
        padding: 20px;
    }
    .accordion {
        margin: -10px -20px -20px;
    }
    .accordion .accordion-table-header {
        font-size: var(--fontSize14);
    }
    #app.app-sticky .section-description-20 {
        margin-bottom: 0;
    }
}