@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,900&family=Source+Sans+Pro:wght@400;900&display=swap');
@import url(//fonts.googleapis.com/earlyaccess/notosansmyanmar.css);
* {
    margin: 0;
    padding: 0;
    outline: none;
    outline-color: transparent;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --theme-color: #1bbae1;
    --secondary-theme-color: #236eee;
    --bg-color: #000000;
    --bg-2-color: #121212;
    --blur-white-color: #555555;
    --blur-black-color: #212121;
    --text-color: #f2f2f2;
    --meta-text-color: #d2d2d2;
    --special-black: #999999;
    --text-white-color: #e2e2e2;
    --meta-white-text-color: #d2d2d2c4;
    --shadow-color: #555555;
    --line-color: #d2d2d2;
    --big-title-size: 70px;
    --x-title-size: 60px;
    --title-size: 40px;
    --sub-title-size: 33px;
    --normal-size: 19px;
    --icon-size: 25px;
    --auto-padding: 0 100px;
    --smart-padding: 0 20%;
    --input-width: 250px;
    --lato-font: 'Lato', sans-serif;
    --pro-font: 'Source Sans Pro', sans-serif;
    --inter-font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-family: 'Noto Sans Myanmar', 'Lato', 'Source Sans Pro', sans-serif;
    font-weight: normal;
    font-style: normal;
    background-color: var(--bg-color);
    color: var(--text-color);
}


/* scroll top btn css */

div.top {
    display: none;
    position: fixed;
    cursor: pointer;
    bottom: 20px;
    right: 40px;
    font-size: var(--icon-size);
    color: var(--meta-text-color);
}

div.top:hover {
    opacity: .7;
}


/* loading css */

div.loading {
    position: fixed;
    background-color: var(--bg-color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 50px;
    z-index: 1001;
}


/* nav css */

nav {
    position: fixed;
    top: -55px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--smart-padding);
    color: var(--text-white-color);
    height: 55px;
    font-family: var(--lato-font);
    font-weight: 500;
    background-color: rgba(30, 30, 30, 0.644);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -webkit-transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    z-index: 999;
}

nav>span.brand {
    font-size: 1.6em;
    cursor: pointer;
}

nav>div.menu {
    display: block;
}

nav>div.menu>a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    font-weight: 400;
}

nav>div.menu>a:hover {
    opacity: .7;
}

nav>div.menu>a.btn {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    background-color: var(--secondary-theme-color);
    padding: 0 13px;
    border-radius: 20px;
    height: 24px;
    line-height: 24px;
}


/* header css */

header {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-family: var(--lato-font);
}

header>div.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
    padding: var(--auto-padding);
    padding-top: 30px;
    padding-bottom: 30px;
}

header>div.wrapper>div.container>img.logo {
    display: block;
    width: 200px;
    margin: 30px auto;
}

header>div.wrapper>div.container>.title {
    margin: 10px auto;
}

header>div.wrapper>div.container>a.btn {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 1.2em;
    letter-spacing: .1em;
    font-weight: 700;
    margin: 30px auto;
    transition: .3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -webkit-transition: .3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: .3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    background-color: var(--theme-color);
    color: white;
    box-shadow: 0 0 10px var(--theme-color);
    font-family: var(--inter-font);
}

header>div.wrapper>div.container>a.btn:hover {
    opacity: .9;
    box-shadow: 0 0 30px var(--theme-color);
}

header div.scroll-down {
    display: block;
    position: absolute;
    bottom: 20px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}


/* section css */

section {
    width: 100%;
    height: auto;
    padding: var(--smart-padding);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

section div.line {
    display: block;
    margin: 30px auto;
    width: 170px;
    height: 3px;
    background-color: var(--shadow-color);
    border-radius: 10px;
}

section div.full-line {
    display: block;
    margin: 0 auto;
    width: 90%;
    height: 1px;
    background-color: var(--shadow-color);
    border-radius: 10px;
}

section div.short-line {
    display: block;
    margin: 30px auto;
    width: 100px;
    height: 3px;
    background-color: var(--line-color);
    border-radius: 10px;
}

section.sticky {
    position: sticky;
    top: 0;
}

section p {
    padding: 20px 30px;
    border-radius: 14px;
    line-height: 2em;
    max-width: 700px;
    text-align: left;
    color: var(--meta-text-color);
}

section div.center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    height: auto;
    width: 100%;
}

section div.container {
    display: inline-block;
    border-radius: 14px;
    margin: 30px 20px;
    line-height: 1.7em;
    vertical-align: middle;
    text-align: left;
}

section div.block {
    display: block;
}

section div.fixed-size {
    max-width: 40%;
    min-width: 170px;
    width: 40%;
    margin: 5px 20px;
}

section div.vertical-top {
    vertical-align: top;
}

section div.image-container {
    display: block;
    border-radius: 14px;
    margin: 0 auto;
}

section div.image-container .figure {
    transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -webkit-transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-radius: 10px;
}

section div.image-container .pop-up:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
}

section div.container .figure {
    width: 100%;
    display: block;
    max-width: 700px;
    margin: 35px auto;
    transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -webkit-transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: .5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

section div.container .fixed-image {
    width: 70%;
    max-width: 200px;
    min-width: 100px;
}

section div.container .pop-up:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
}

section div.container .logo-width {
    max-width: 400px;
    width: 90%;
}

section div.container .title {
    font-size: 1.7em;
}

section div.container div.detail {
    display: block;
    margin: 20px auto;
    padding: 20px 30px;
    border-radius: 14px;
    line-height: 2em;
    color: var(--meta-text-color);
}

section .first-letter::first-letter {
    color: var(--theme-color);
    font-weight: 900;
}

section div.container div.remove-padding {
    padding: 0px 0px;
}

section div.container .align-left {
    text-align: left;
}

section div.remove-margin {
    margin: 0px 10px;
}

section div.container div.detail ul {
    padding: 0 20px;
}

section div.container div.detail ul li {
    list-style: square;
}


/* footer css */

footer {
    width: 100%;
    padding: var(--smart-padding);
    padding-top: 20px;
    padding-bottom: 20px;
}

footer a {
    text-decoration: none;
    color: var(--text-color);
}


/* login modal css */

div.login-div {
    background-color: rgba(0, 0, 0, 0.644);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

div.login-div>div {
    background-image: url(/app/img/subtle_carbon.png);
    color: #e2e2e2;
    border-radius: 10px;
    padding: 30px 40px 20px 40px;
    font-family: var(--inter-font);
    box-shadow: 0 0 5px rgba(153, 153, 153, 0.568);
}

div.login-div>div>h2 {
    text-align: center;
    margin: 20px auto;
}

div.login-div>div>div>span.btn-close {
    display: inline-block;
    cursor: pointer;
    font-size: 2em;
    transition: 0.5s;
    position: relative;
    right: -25px;
    top: -14px;
}

div.login-div>div>div>span.btn-close:hover {
    opacity: .5;
}

div.login-div>div>form>input {
    display: block;
    background-color: transparent;
    color: white;
    border: 1px solid grey;
    padding: 10px 17px;
    border-radius: 20px;
    margin: 10px auto;
    width: var(--input-width);
    opacity: .8;
    transition: 0.5s;
}

div.login-div>div>form>input:focus {
    opacity: 1;
}

div.login-div>div>form>a {
    display: block;
    text-align: center;
    padding: 0 10px;
    font-size: 0.9em;
    text-decoration: none;
    margin: 27px auto;
    color: var(--meta-text-color);
}

div.login-div>div>form>a.forgot {
    text-align: right;
    margin: 14px auto;
    color: var(--theme-color);
}

div.login-div>div>form>a:hover {
    text-decoration: underline;
}

div.login-div>div>form>.btn-action {
    display: block;
    color: white;
    background-color: var(--theme-color);
    border-radius: 20px;
    width: var(--input-width);
    height: 40px;
    border: 0px solid transparent;
    padding: 10px 20px;
    cursor: pointer;
    margin: 10px auto;
    transition: 0.5s;
    text-align: center;
    font-size: 1.1em;
}

div.login-div>div>form>.btn-google {
    background-color: #fff;
    color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

div.login-div>div>form>.btn-google>.google-icon {
    display: inline-block;
    height: 25px;
    width: 25px;
    user-select: none;
}

div.login-div>div>form>.btn-action:hover {
    opacity: .7;
}


/* global reusable css */

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-text {
    text-align: center;
}

.block {
    display: block;
}

.block-center {
    margin: 0 auto;
}

.multi {
    max-width: 500px;
}

.hide-element {
    opacity: 0;
    pointer-events: none;
}

.show-element {
    opacity: 1;
    pointer-events: auto;
}

.text-indent {
    text-indent: 2em;
}

.remove-padding {
    padding: 0px 0px 0px 0px;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.bold {
    font-weight: 900;
}

.full-width {
    max-width: 100%;
    width: 100%;
}

.full-height {
    min-height: 100vh;
}


/* color css */

.theme-color {
    color: var(--theme-color);
}

.secondary-theme-color {
    color: var(--secondary-theme-color);
}

.black-color {
    color: var(--text-color);
}

.white-color {
    color: var(--text-white-color);
}

.meta-white-color {
    color: var(--meta-white-text-color);
}

.meta-text-color {
    color: var(--meta-text-color);
}

.special-black-color {
    color: var(--special-black);
}


/* background css */

.default-bg {
    background-color: var(--bg-color);
}

.default-bg-2 {
    background-color: var(--bg-2-color);
}

.blur-white-bg {
    background-color: var(--blur-white-color);
}

.blur-black-bg {
    background-color: var(--blur-black-color);
}

.custom-bg {
    background-image: url(/app/img/custom-transparent-bg.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: contain;
}

.subtle-bg {
    background-image: url(/app/img/subtle_carbon.png);
}

.theme-bg {
    background-color: var(--theme-color);
}

.blur-bg {
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
}

.wave-bg {
    background-image: url(/app/img/wave.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    background-attachment: scroll;
}

.fixed-bg {
    background-attachment: fixed;
}

.scroll-bg {
    background-attachment: scroll;
}

.gradient-bg {
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(27, 186, 225, 1) 100%);
}


/* text css */

.big-title {
    font-size: var(--big-title-size);
    line-height: 1em;
    letter-spacing: .07em;
}

.x-title {
    font-size: var(--x-title-size);
    line-height: 1em;
    letter-spacing: .05em;
}

.title {
    font-size: var(--title-size);
    letter-spacing: .04em;
    font-weight: 600;
    font-family: var(--lato-font);
}

.sub-title {
    font-size: var(--sub-title-size);
    letter-spacing: .03em;
    font-family: var(--inter-font);
    font-weight: 400;
}

.small-cap {
    font-variant: small-caps;
}

div.scroll-down {
    pointer-events: none;
    font-size: var(--icon-size);
    color: inherit;
    transition: .5s cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition: .5s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition: .5s cubic-bezier(0.39, 0.575, 0.565, 1);
    animation: MoveUpDown 2s linear infinite;
    -webkit-animation: MoveUpDown 2s linear infinite;
    -moz-animation: MoveUpDown 2s linear infinite;
}

.mm-text {
    line-height: 1.65em;
}

.download_app {
    display: inline-block;
    overflow: hidden;
    width: 215px;
    text-align: center;
}

.download_app>img.google {
    width: 215px;
    height: 90px;
}

.download_app>img.apple {
    width: 190px;
    height: 61px;
    margin: 15px 0;
}

.badge {
    display: inline-block;
    border: 1px solid var(--meta-text-color);
    margin: 10px;
    padding: 5px 25px;
    font-family: var(--pro-font);
    border-radius: 20px;
    color: var(--meta-text-color);
    user-select: none;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: 0 0 10px var(--bg-color);
}

.badge:hover {
    box-shadow: 0 0 10px var(--secondary-theme-color);
    border: 1px solid var(--secondary-theme-color);
    color: var(--secondary-theme-color);
}


/* responsive css */

@media all and (min-width:2000px) {
     :root {
        --smart-padding: 0 25%;
    }
}

@media all and (min-width:1024px) {
     :root {
        --auto-padding: 0 200px;
    }
}

@media all and (max-width:650px) {
     :root {
        --big-title-size: 50px;
        --x-title-size: 40px;
        --title-size: 35px;
        --sub-title-size: 30px;
        --normal-size: 19px;
        --icon-size: 25px;
        --auto-padding: 0 80px;
        --smart-padding: 0 80px;
    }
    header>div.wrapper>div.container>img.logo {
        width: 170px;
        margin: 25px auto;
    }
    section div.fixed-size {
        margin: 5px 10px;
    }
}

@media all and (max-width:550px) {
    section div.fixed-size {
        max-width: 80%;
        width: 80%;
        margin: 0 0;
    }
    nav>div.menu>a.hide-in-mobile {
        display: none;
    }
}

@media all and (max-width:500px) {
     :root {
        --auto-padding: 0 50px;
        --smart-padding: 0 50px;
    }
}

@media all and (max-width:425px) {
     :root {
        --big-title-size: 45px;
        --x-title-size: 39px;
        --title-size: 33px;
        --sub-title-size: 27px;
        --auto-padding: 0px 40px;
        --smart-padding: 0 40px;
    }
}

@media all and (max-width:375px) {
     :root {
        --big-title-size: 40px;
        --x-title-size: 37px;
        --title-size: 30px;
        --sub-title-size: 25px;
        --auto-padding: 0px 20px;
        --smart-padding: 0 20px;
    }
}


/* animation */

@keyframes MoveUpDown {
    0%,
    100% {
        transform: translateX(-50%) translateY();
        -webkit-transform: translateX(-50%)translateY();
        -moz-transform: translateX(-50%) translateY();
    }
    50% {
        transform: translateX(-50%) translateY(30%);
        -webkit-transform: translateX(-50%) translateY(30%);
        -moz-transform: translateX(-50%) translateY(30%);
    }
}