:root {
    --accent-color: #00E1FF;
    --dark-color: #01184C;
    --accent-gradient-color: linear-gradient(135deg, rgba(48, 186, 240, 1) 0%, rgba(111, 255, 241, 1) 50%, rgba(48, 186, 240, 1));
    --second-gradient-color: linear-gradient(135deg, #5ddcff, #3c67e3 43%, #4e00c2);
}


/* reset */

.site-content {
    font-family: 'Chiron Sans HK Pro WS', sans-serif;
    font-size: 18px;
    line-height: 1.8;
	background-color: #021238;
    color: #fff;
}

.entry-content p {
	margin-bottom: 1rem;
}

#ast-scroll-top {
	display: none !important;
}

.t1 {
    font-size: 3.2rem;
}

.t2 {
    font-size: 2.4rem;
}

.t3 {
    font-size: 2rem;
}

.t4 {
    font-size: 1.5rem;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.img-100 {
    max-width: fit-content;
    width: 100%;
}

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

.z-index0 {
	z-index: 0;
}


/* style */

.hero_bnr_ny {
    width: 100%;
    min-height: 777px;
    background-image: url(https://personal.asuswebstorage.com/wp-content/uploads/2022/01/bnr-bg-scaled.jpg);
    background-position: center;
    background-size: cover;
/* 	transform: translate3d(0,0,0); */
}

.plan {
    height: 100%;
    background: var(--second-gradient-color);
    color: #fff;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 0 10px 5px rgba(60, 103, 227, 0.5);
    transition: all 0.2s ease-in-out;
}

.plan:hover {
    transform: translateY(-20px);
}

.promote-bg {
    width: 100%;
    min-height: 640px;
    background-image: url(https://personal.asuswebstorage.com/wp-content/uploads/2022/01/img-bg.png);
    background-position: center;
    background-size: cover;
}

.promote {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    color: #000F08;
}

.fade-in {
    opacity: 0;
    transform: translateY(160px);
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
    will-change: opacity, visibility;
}

.delay1 {
    transition-delay: 0.3s;
}

.delay2 {
    transition-delay: 0.6s;
}

.fade-in.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}


/* NY */

.ny-float-btn {
    position: fixed;
    bottom: 32px;
    right: 44px;
    z-index: 6;
    text-decoration: none;
/* 	-webkit-transform: translate3d(0, 0, 0); */
/* 	-o-transform: translate3d(0, 0, 0); */
/* 	transform: translate3d(0, 0, 0); */
}

.f-container {
    position: relative;
    text-align: center;
    z-index: 7;
}

.f-tag {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 16px;
    border-radius: 50px;
    color: #30BAF0;
    font-weight: 500;
    z-index: 11;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

.f-tag::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: solid 10px transparent;
    border-top-color: #FFF;
    z-index: 10;
}

.f-main {
    display: inline-block;
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 50px;
    background: var(--accent-gradient-color);
    transition: all 0.2s ease-in-out;
    z-index: 8;
}

.ny-float-btn:hover .f-main,
.ny-float-btn:focus .f-main {
    transform: scale(1.1);
}

.f-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    margin-bottom: 0;
    color: var(--dark-color) !important;
    line-height: 1.3;
    z-index: 9;
}

.fc-accent {
    background: var(--accent-gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px #00E1FF;
}

.fc-accent-2 {
    color: #3c67e3 !important;
}

.accent-color {
    background: var(--accent-gradient-color);
    box-shadow: 0 0 5px 5px rgba(111, 255, 241 0.5);
}

.btn-ny-primary {
    display: inline-block;
    position: relative;
    min-width: 320px;
    max-width: 100%;
    padding: 4px;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    color: var(--dark-color);
    background: var(--accent-gradient-color);
    transition: all 0.2s ease-in-out;
}

.btn-ny-primary:hover,
.btn-ny-primary:focus {
    color: var(--dark-color);
    /* transform: translateY(-5px); */
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.glow {
    background: var(--accent-gradient-color);
    background-size: 400%;
    box-sizing: border-box;
    z-index: 0;
    animation: glow 6s linear infinite;
}

.glow::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: var(--accent-gradient-color);
    background-size: 400%;
    border-radius: 50px;
    filter: blur(5px);
    opacity: 0.5;
    animation: glow 6s linear infinite;
    transition: all 0.2s linear;
}

.divider::after {
    content: '';
    display: block;
    width: 160px;
    height: 4px;
    border-radius: 50px;
    margin-top: 16px;
    background: var(--accent-gradient-color);
}

.divider2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    border-radius: 50px;
    margin: 16px auto 0;
    background: var(--accent-color);
}

@keyframes glow {
    0% {
        background-position: 0;
    }
    100% {
        background-position: 400%;
    }
}

@media only screen and (max-width: 767px) {
    body {
        line-height: 1.6;
    }
    .t1 {
        font-size: 2.5rem;
    }
    .t2 {
        font-size: 2.25rem;
    }
    .t3 {
        font-size: 1.5rem;
    }
    .t4 {
        font-size: 1.25rem;
    }
    .hero_bnr_ny {
        min-height: 698px;
        background-image: url(https://personal.asuswebstorage.com/wp-content/uploads/2022/01/bnr-bg-tablet.jpg);
    }
    .promote-bg {
        min-height: 600px;
        /* background-image: url(../images/img-bg-m.jpg); */
    }
    .btn-ny-primary {
        font-size: 1.25rem;
        min-width: fit-content;
        width: 90% !important;
    }
    .delay1 {
        transition-delay: 0s;
    }
    .delay2 {
        transition-delay: 0s;
    }
}

@media only screen and (max-width: 575px) {
    body {
        line-height: 1.5;
    }
    .t1 {
        font-size: 10vmin;
    }
    .t2 {
        font-size: 8vmin;
    }
    .t3 {
        font-size: 1.5rem;
    }
    .aws-logo {
        width: 75%;
    }
    .hero_bnr_ny {
        min-height: 548px;
        background-image: url(https://personal.asuswebstorage.com/wp-content/uploads/2022/01/bnr-bg-mobile.jpg);
    }
    .ny-float-btn {
        bottom: 16px;
        right: 16px;
    }
    .f-container .f-main {
        display: inline-block;
        width: 72px;
        height: 72px;
        line-height: 1.2;
    }
    .f-container .f-tag {
        padding: 0 12px;
    }
}