/*!
 * Root
 */
:root {
    --color-primary: #7a40ed;
    --color-primary-hover: #7a40ed;
    --color-secondary: #e4d7ff;
    --color-heading: #121212;
    --color-text: #121212;
    --text-white: #ffffff;
    --app-height: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 300;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    line-height: 1.6;
    letter-spacing: -0.1px;
}
a {
    color: var(--color-primary);
}
a:hover {
    color: var(--color-primary-hover) !important;
    text-decoration: none;
}
.site__content a {
    text-decoration: none;
}
.site__content a:hover {
    text-decoration: underline;
}
p {
    margin-bottom: 15px;
}
strong, b {
    font-weight: 700
}
.btn__primary {
    background: var(--color-primary);
    color: var(--text-white);
}
.btn__primary:hover {
    background: var(--color-primary-hover);
    color: var(--text-white);
}
.embed-responsive-1by1::before {
    padding-top: 100%;
}
.embed-responsive-4by5::before {
    padding-top: 125%;
}
.embed-responsive-9by16::before {
    padding-top: 177.77%;
}
.emoji__font {
    font-weight: 400;
}
.sep {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: rgb(220 220 220);
    background: linear-gradient(90deg, rgba(254,254,254,1) 0%, rgba(235,235,235,1) 15%, rgba(222,222,222,1) 50%, rgba(235,235,235,1) 85%, rgba(254,254,254,1) 100%);
}

/*!
 * Site Header.
 */
.site__header {
    position: relative;
    /* background: #fff; */
    width: 100%;
    padding-top: 66px;
    overflow: hidden;
}
.site__nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0;
    background: var(--text-white);
    border-bottom: 1px solid #eee;
    transition: all .15s linear;
    z-index: 9999;
}
.img__logo {
    position: relative;
    height: 64px;
    /* top: -2px; */
}
.nav__menu {
    font-size: 16px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-right: 20px;
}
.ul__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    overflow: hidden;
}
.terms__page .ul__menu {
    align-content: center;
}
.ul__menu li {
    display: block;
}
.ul__menu a {
    color: #000;
    font-weight: 700;
    padding: 10px 0;
    display: block;
    font-size: 16px;
}
.ul__menu li.has__children {
    position: relative
}
.ul__menu li.has__children > a::after {
    content:'';
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    right: 8px;
    transform: rotate(-45deg);
    top: 20px;
    transition: all .15s linear;
}
.ul__menu li.has__children.opened > a::after {
    transform: rotate(-225deg);
    top: 26px;
}
li.has__children ul {
    padding-left: 20px;
    display: none;
}
li.has__children.opened ul {
    display: block;
}
.nav__cta {
    margin-right: 70px;
    margin-top: 1px;
}
.nav__cta a {
    position: relative;
    font-size: 16px;
    color: var(--text-white);
    font-weight: 700;
    padding: 10px 0;
    display: block;
    letter-spacing: 0.5px;
}
.nav__cta a:hover,
.site__hero .cta a:hover span,
.cta__menu a {
    background-image: linear-gradient(to right, #ffffff,#7e3aff,#3affdc,#ffd43a,#ff5d3a,#ef3aff); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
    animation: move 100s linear infinite;
}
.button__menu {
    fill: #18133a;
    position: absolute;
    right: 20px;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    margin-top: 3px;
}
.active .site__nav {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: var(--app-height);
}
.active .button__menu {
    top: auto;
    bottom: 20px;
    right: 50%;
    margin-right: -16px;
    fill: transparent;
    z-index: 99;
}
.line {
    stroke: #f7f7f7;
    stroke-width: 2;
    -webkit-transition: stroke 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: stroke 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
}
.active .line1 {
    -webkit-transform: translateX(-2.5px) translateY(3px) rotate(45deg);
        -ms-transform: translateX(-2.5px) translateY(3px) rotate(45deg);
            transform: translateX(-2.5px) translateY(3px) rotate(45deg);
}
.active .line2 {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
}
.active .line3 {
    -webkit-transform: translateX(-2.5px) translateY(-3px) rotate(-45deg);
        -ms-transform: translateX(-2.5px) translateY(-3px) rotate(-45deg);
            transform: translateX(-2.5px) translateY(-3px) rotate(-45deg);
}
.site__hero {
    position: relative;
    z-index: 4;
    padding: 20px 0 0;
}
.site__hero h1 {
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}
.site__hero .badge {
    font-weight: 400;
    font-size: 15px;
    padding: 0;
}
/*!
 * Site Content
 */
.site__content {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.site__content > [class*="content__"] {
    padding-top: 16px;
    padding-bottom: 20px;
}
.terms__page .site__content h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.site__content ol  {
    padding-left: 0;
    counter-reset: item;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 0;
}
.site__content ul {
    padding: 0;
    margin-bottom: 10px;
}
.site__content ol ol,
.site__content ol ul {
    margin-top: 15px
}
.site__content ol li,
.site__content ul li {
    margin-bottom: 10px;
    line-height: 28px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}
.site__content .container > ol > li {
    margin-top: 20px;
}
.site__content ol ol li {
    padding-left: 45px;
    margin-bottom: 15px;
}
.site__content ol ol ol li {
    padding-left: 60px;
}
.site__content ol > li > span {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.2px;
    display: block;
    margin-bottom: 10px;
    margin-top: 30px;
}
.site__content ol > li:before {
    content: counters(item, ".")". ";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
}
.site__content ol ul li,
.site__content ul.listAlphabet > li,
.site__content ul.listCircle > li,
.site__content ul.listNumber > li  {
    list-style: lower-alpha;
    margin-left: 18px;
    padding-left: 10px;
}
.site__content ul.listNumber > li  {
    list-style: decimal;
}
.site__content ul.listCircle > li {
    list-style: disc;
}
.site__content ol.listCustomNumber {
    counter-reset: item;
}
.site__content ol.listCustomNumber > li::before {
    content: counters(item, ".")") ";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
}

/*!
 * Site Footer
 */
.terms__page .site__footer {
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #eee;
    text-align: center;
}
.terms__page .site__footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 5px;
    display: flex;
    justify-content: center;
    gap: 0 10px;
}
.terms__page .site__footer ul li {
    margin: 0 8px 10px;
    padding: 0;
    line-height: 1.6667;
}
.terms__page .site__footer a:hover {
    text-decoration: underline;
}

.site__nav .menu {
    vertical-align: middle;
    display: flex;
}

/*!
 * Media Queries
 */
@media (min-width:992px) {
.terms__page .site__footer {
    padding: 40px 0;
    text-align: left;
}
.terms__page .copyright {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: left;
}
.terms__page .site__footer li {
    display: inline-block;
    width: fit-content;
    margin-left: 24px;
    padding-left: 0;
    margin-bottom: 0;
}
.terms__page .site__footer li a {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    color: var(--color-heading);
}
.terms__page .site-footer {
    padding: 40px 0;
    text-align: left;
}
.terms__page .site__footer ul {
    margin-bottom: 0;
    float: right;
    display: inline;
}
.terms__page .site__footer ul li {
    display: inline-block;
    margin: 0 0 0 30px;
    line-height: 1;
}
}
@media (min-width:1200px){
body {
    font-size: 16px;
    line-height: 2;
}
.container {
    max-width: 1080px;
}
.site__header {
    padding-top: 94px;
}
.site__nav {
    padding: 10px 0;
    transition: all 150ms linear;
    min-height: auto !important;
}
.fixed__onscroll.site__nav {
    top: 0;
}
.img__logo {
    top: -1px;
}
.nav__menu {
    gap: 0 20px;
    display: flex;
    align-items: center;
    padding-right: 0;
}
.nav__menu .menu {
    position: relative;
    padding: 0;
    margin: 0;
    height: max-content;
    min-height: initial;
    background: transparent;
    display: block;
}
.ul__menu {
    display: flex;
    gap: 0 30px;
    -ms-flex: 0 0 80%;
    overflow: visible;
    justify-content: flex-end;
}
.ul__menu a,
li.has__children:hover > a {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(to right, var(--color-hover, var(--color-primary)), var(--color-hover, var(--color-primary)) 50%, #000 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease, padding-top 150ms linear, padding-bottom 150ms linear;
}
.fixed__onscroll .ul__menu a {
    padding-top: 20px;
    padding-bottom: 20px;
}
.ul__menu a:hover,
li.has__children:hover > a {
    background-position: 0 100%;
}
.ul__menu li.has__children > a {
    margin-right: 30px;
}
.ul__menu li.has__children > a::after {
    margin-top: 11px;
    right: -24px;
}
.ul__menu li.has__children:hover > a::after {
    border-color: #21fff0;
    transform: rotate(-225deg);
    margin-top: 15px;
}
li.has__children ul {
    text-align: left;
    position: absolute;
    background: #17152a;
    padding: 14px;
    box-shadow: 10px 10px 20px #ffffff05;
    min-width: 170px;
    width: max-content;
    border-radius: 4px;
    visibility:hidden;
    opacity: 0;
    transition: all .15s linear;
    margin-top: -10px;
    display: block;
}
li.has__children:hover ul {
    visibility: visible;
    opacity: 1;
}
li.has__children ul li:hover {
    background: #f5f5f50a;
    border-radius: 4px;
}
li.has__children li {
    padding: 0;
}
li.has__children li a {
    background: #fff;
    padding: 14px;
    line-height: 1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.terms__page .nav__cta {
    text-align: right;
    padding-right: 30px;
    margin: 0;
    width: 160px;
}
.nav__cta a {
    display: inline-block;    
    background: none;
    -webkit-background-clip: none;
    -webkit-text-fill-color: #fff;
}
.nav__cta a:hover {
    background-image: linear-gradient(to right, #ffffff,#7e3aff,#3affdc,#ffd43a,#ff5d3a,#ef3aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: move 100s linear infinite;
    animation-duration: 200s;
}
.button__menu {
    display: none !important;
}
.terms__page .site__hero {
    padding: 80px 0 0px;
}
.terms__page .site__hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
.site__content > [class*="content__"] {
    padding: 60px 0 80px;
}
.site__content ul,
.site__content ol {
    margin-bottom: 20px;
}
.site__content ul li,
.site__content ol li{
    line-height: 2;
}
.terms__page .site__content h5 {
    font-size: 20px;
}
.terms__page .site__content h5 {
    margin-top: 0;
    line-height: 1.6;
}
.terms__page .site__content p + h5 {
    margin-top: 30px;
}
.terms__page .site__footer ul li {
    margin-left: 40px;
}
}

/*!
 * Animation.
 */
@keyframes move {
  to {
    background-position: 4500vh;
  }
}

