@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: sans-serif;
    list-style-type: none;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

a {
    color: unset;
}

:root {
    --primary: #ffad00;
    --white: #fff;
}

body {
    font-size: 62.5%;
}

section {
    padding: 1rem 8rem;
}

.d-flex {
    display: flex;
    align-items: center;
}

.btn {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 10rem;
    overflow: hidden;
    cursor: pointer;
}

/*===================================================== header =======================  */
header {
    position: fixed;
    justify-content: space-between;
    padding: 1rem 8rem;
    width: 100%;
    height: fit-content;
    color: var(--white);
    background-color: #ff9700;
    z-index: 99999;
}

header img {
    width: 4rem;
    height: 3rem;
    object-fit: contain;
}

header h2 {
    font-weight: 600;
    font-size: 1.4rem;
}

.navbar ul {
    gap: 2rem;
}

.navbar ul li {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.navbar ul li a {
    padding: 0.3rem 0;
}

.navbar ul li:hover a, .navbar ul .navlink-active{
    border-bottom: 2px solid #fff;
}

.btn-getstarted {
    color: var(--white);
    border: 1px solid var(--white);
    background: transparent;

}

.btn-getstarted a {
    padding: 1rem;
}

.btn-getstarted:hover {
    background-color: var(--white);
    color: var(--primary);
}

.ri-close-circle-line {
    display: none;
    position: absolute;
    right: 5rem;
    top: 1rem;
    margin: 2rem;
    font-size: 1.5rem;
}

.ri-menu-2-fill {
    display: none;
    font-size: 1.2rem;
    position: absolute;
    right: 2.2rem;
    top: 2rem;
}

/*===================================================== hero section =================  */
.hero-section {
    height: 80vh;
    overflow-x: hidden;
    justify-content: center;
    background-color: #1a1a19;
    margin-bottom: 0px;
}

.video-section {
    height: fit-content;
    overflow-x: hidden;
    justify-content: center;
    background-color: #1a1a19;
}

.hero-section-data {
    flex: 1;
    font-size: 1rem;
    color: var(--white);
    margin-right: 6rem;
}

.hero-section-img {
    width: 23rem;
}

.hero-section-data h2 {
    font-size: 2.7rem;
    width: 100%;
    word-spacing: 7px;
    line-height: 3.5rem;
    background: transparent;
}

.hero-section-data h3 {
    font-size: 2rem;
    width: 100%;
    word-spacing: 5px;
    line-height: 3.5rem;
    background: transparent;
}

.hero-section-data h2>span {
    color: transparent;
    -webkit-text-stroke: 2px #ffad00;
}

.hero-section-data p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #cccccc;
    margin: 0.8rem 0;
}

.hero-section-btns {
    margin-top: 2rem;
    /* align-items: center; */
    /* justify-content: center; */
    gap: 1rem;
}

.btn-get-started {
    font-size: 1rem;
    padding: 0.5rem 1.6rem;
    color: #fff;
    background-color: #ffad00;
}

.btn-get-started a {
    text-shadow: 2px 5px 20px black;
    padding: 0.5rem 1.6rem;
}

.btn-get-started:hover {
    transform: translateY(-2px);
}

.btn-watch-video {
    font-size: 1rem;
    color: var(--white);
    background-color: transparent;
    gap: 0.4rem;
}

.btn-watch-video2 {
    font-size: 1rem;
    color: var(--white);
    background-color: transparent;
    gap: 0.4rem;

    border-style: solid;
    border-radius: 2px;
}

.btn-watch-video:hover {
    color: #ffad00;
}

.btn-watch-video2:hover {
    color: #ffad00;
}

.hero-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 0.9s ease-in-out;
}

.ri-play-circle-line {
    font-size: 1.4rem;

}

.video-popup ,.signIn-popup{
    display: none;
    position: fixed;
    width: 95vw;
    height: 90vh;
    background-color: #061309de;
    margin: 2rem;
    justify-content: center;
    z-index: 99999;
}

.video-popup2 ,.signIn-popup{
    display: none;
    position: fixed;
    width: 95vw;
    height: 90vh;
    background-color: #061309de;
    margin: 2rem;
    justify-content: center;
    z-index: 99999;
}

.video-popup video, .video-popup .video-iframe {
    width: 100%;
    height: 100%;
    justify-content: center;
}
.video-popup2 video, .video-popup2 .video-iframe {
    width: 100%;
    height: 100%;
    justify-content: center;
}

.video-close-icon,.signIn-close-icon{
    display: block;
    font-size: 2rem;
    color: #fff;
    position: absolute;
    cursor: pointer;
    right: 2rem;
    margin: 2rem 4rem 0 0;
}

.text-flicker-in-glow {
    -webkit-animation: text-flicker-in-glow 1.5s linear both;
    animation: text-flicker-in-glow 1.5s linear both 0.8s;
}

/*==============================================================About  =============================  */
.about-section {
    display: flex;
    align-items: center;
   justify-content: center;
    padding: 3rem;
    height: 80vh;
    background: linear-gradient(to right, #f7eb0e, #ff9700);
} 

.video-section {
    display: flex;
    align-items: center;
   justify-content: center;
    padding: 3rem;
    /* height: 80vh; */
} 

.about-section-card {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 4rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgba(32, 32, 32, 0.452);
    background-color: rgba(249, 249, 249, 0.1);
    backdrop-filter: blur(5px);
    
}

/* .about-section-card {
    flex-direction: column;
    justify-content: center;
    width: 60%;
    margin-top: 2rem;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgba(32, 32, 32, 0.452);
    background-color: rgba(249, 249, 249, 0.53);
    backdrop-filter: blur(5px);
} */

.video-section-card {
    flex-direction: column;
    justify-content: center;
    /* width: fit-content; */
    color: white;
    gap: 2rem;
    padding: 1rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgba(202, 193, 193, 0.452);
    background-color: rgba(249, 249, 249, 0.071);
    backdrop-filter: blur(5px);
    
}

.about-section h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid black;
    padding: 0.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    width: 30%;
    display: inline-block;
}

.video-section h2 {
    font-size: 1.3rem;
    border-bottom: 1px solid black;
    padding: 0.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    /* width: 30%; */
    display: inline-block;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.7rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.video-section p {
    font-size: .9rem;
    line-height: 1.7rem;
    margin: .7rem;
    text-align: justify;
}

.about-section .btn-log-in {
    padding: 0.8rem 3rem;
    font-size: 0.93rem;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    background-color: transparent;
    border: 1.5px solid #000;
    border-radius: 10rem;
    transition: 0.1s ease-out;
}

.video-section .btn-log-in {
    padding: 0.8rem 3rem;
    font-size: 0.93rem;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    background-color: #ff9700;
    border: 1.5px solid #000;
    border-radius: 10rem;
    transition: 0.1s ease-out;
}

.about-section .btn-log-in:hover {
    background-color: #fff;
    color: #ffAD00;
    border-color: #FFF;
}

.video-section .btn-log-in:hover {
    background-color: #fff;
    color: #ffAD00;
    border-color: #FFF;
}

/*================================================================ cta ========================  */
.cta {
    color: #fff;
    height: 50vh;
    justify-content: flex-start;
    padding: 2rem 8rem;
    background: #000;
    position: relative;
    overflow-x: hidden;
}

.parallax-text {
    position: absolute;
    right: -800px;
    font-size: 7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.201);
    z-index: 9;
}

.cta .row {
    gap: 2rem;
    z-index: 999;
}

.cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta P {

    font-size: 1rem;
    margin-bottom: 1rem;
}

.cta .cta-btn {
    position: absolute;
    color: #fff;
    border: 2px solid #050505;
    background-color: #ffad00;
    transition: 0.3s;
    cursor: pointer;
    z-index: 9999;
}

.cta .cta-btn:hover {
    color: #000;
    transform: scale(1.05);
}

/*==================================================== Contact Section ========================  */
.contact-section {
    
    background: linear-gradient(to right, #f7eb0e, #ff9700);
}

.contact-section-container {
    border: solid;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    color: #000;
    animation: fadeInLeft 0.4s;
    background: linear-gradient(to right, #f7eb0e, #ff9700);
}
.red{
    background-color: red !important;
}
.contact-card {
    font-size: 0.9rem;
    width: 240px;
    height: 270px;
    background-color: #000;
    border-radius: 0.6rem;
    overflow: hidden;
    position: relative;
    justify-content: center;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.556);
    border: 1px solid #000;
    position: relative;
}

.contact-card-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
    /* background-color: red; */
    width:95vw;
}

.ri-arrow-drop-up-line {
    color: #fff;
    font-size: 1.7rem;
    position: absolute;
    top: 3rem;
    transform: translateX(-17px);
}

.contact-section-container p {
    font-size: 0.98rem;
    word-spacing: 1px;
    text-shadow: 2px 2px solid black;
}

.contact-section-container h2 {
    font-size: 1.5rem;
    width: 30%;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #000;
    text-shadow: 2px 2px solid black;
}

.contact-card .img-div {
    width: 100%;
    height: 100%;
    position: absolute;
}

.contact-card .img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card:hover img {
    opacity: 0.4;
    height: 95%;
}

.contact-card:hover .content {
    bottom: 0px;
}

.content {
    width: 100%;
    height: 100%;
    bottom: -45%;
    position: absolute;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
    background: linear-gradient(0deg, rgb(98, 97, 97), transparent);
    transition: 0.1s ease-out;
}

.social .ri, .footer-social-links .bx {
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    padding: 0.5rem;
    border: 1px solid #fff;
    box-shadow: inset 2px 2px 10px solid black;
}

.social a:hover .ri {
    background-color: #fff;
    color: #ffad00;
    transform: scale(1.1);
}

.text-bold {
    font-weight: 600;
    font-size: 1.05rem;
}

/*==================================================== Footer and Copyright ========================  */
.footer-social-links a:hover .bx {
    background-color: #ffad00;
    color: #0a0909;
    transform: scale(1.1);
}

.footer-social {
    font-size: 1rem;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    gap: 1rem;
    color: #fff;
}

.footer-social-links .bx {
    font-size: 1.2rem;
    border-radius: 50%;
    color: black;
    background-color: #fff;
    padding: 0.5rem;

}

.copyright {
    font-size: 0.95rem;
    padding: 2rem;
    background-color: #ff9700;
    color: #fff;
}

/*======================================================= media queries ======================== */
@media screen and (min-width:1750px) {
    .btn {
        font-size: 1.5rem;
        padding: 1.1rem 2.2rem;
    }

    header img {
        width: 6rem;
        height: 5rem;
    }

    header h2 {
        font-weight: 600;
        font-size: 2.4rem;
    }

    .navbar ul {
        gap: 3rem;
    }

    .navbar ul li {
        font-size: 1.7rem;
    }

    .btn-getstarted {
        border: 3px solid var(--white);
    }

    /*===================================================== hero section =================  */
    .ri-play-circle-line {
        font-size: 3.5rem;
    }

    .hero-section-data {
        margin-left: 10rem;
    }

    .hero-section-data h2 {
        font-size: 4.9rem;
        line-height: 5.5rem;
    }

    .hero-section-data p {
        font-size: 2.2rem;
        margin: 3rem 0 5rem 0;
    }

    .btn-get-started {
        font-size: 1.8rem;
    }

    .btn-watch-video {
        font-size: 1.8rem;
    }

    .hero-section-img {
        width: 30rem;
        height: 30rem;
        margin-right: 10rem;
    }

    /*==============================================================About  =============================  */
    .about-section {
        padding: 3rem 6rem;

    }

    .about-section-card {
        padding: 10rem;
    }

    .about-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        padding: 1rem;
    }

    .about-section p {
        font-size: 1.74rem;
        line-height: 2.9rem;
    }

    .about-section .btn-log-in {
        font-size: 1.63rem;
        border: 2px solid #000;
        margin-top: 2rem;
    }

    .about-section .btn-log-in:hover {
        background-color: #000;
        color: #fff;
    }

    /*================================================================ cta ========================  */
    .cta {
        flex-wrap: wrap;
    }

    .parallax-text {
        right: -1500px;
        font-size: 12rem;
    }

    .cta h3 {
        font-size: 2.5rem;
    }

    .cta P {
        font-size: 2rem;
    }

    .cta .cta-btn {
        padding: 1rem 2rem;
    }

    /*==================================================== Contact Section ========================  */
    .contact-card {
        font-size: 1.8rem;
        width: 440px;
        height: 470px;
    }

    .ri-arrow-drop-up-line {
        font-size: 2.7rem;
        top: 6rem;
    }

    .contact-section-container p {
        font-size: 1.78rem;
    }

    .contact-section-container h2 {
        font-size: 2.5rem;
    }

    .contact-card:hover .content {
        bottom: 0px;
    }

    .content {
        bottom: -48%;
    }

    .social .ri, .footer-social-links .bx {
        font-size: 2rem;
    }

    .text-bold {
        font-size: 1.75rem;
    }

    /*==================================================== Footer and Copyright ========================  */

    .footer-social {
        font-size: 1.9rem;
    }

    .footer-social-links .bx {
        font-size: 2.2rem;

    }

    .copyright {
        font-size: 1.5rem;
    }

}

@media screen and (max-width:1220px) {

    header {
        padding: 1rem 4rem;
    }

    .hero-section {
        padding: 0rem 0rem;
    }

    .hero-section-data h2 {
        font-size: 2.8rem;
        line-height: 2.9rem;
    }

    .hero-section-data p {
        font-size: 1.1rem;
    }

    .hero-section-img img {
        /* width: 400px; */
        height: 350px;
        object-fit: contain;
    }

    .cta {
        padding: 1rem 2rem;
    }

    .cta .row {
        gap: 4rem;
    }

    .parallax-text {
        right: -800px;
        font-size: 5.6rem;
    }

    .cta .cta-btn {
        bottom: 3rem;
        left: 2rem;
        font-size: 0.9rem;
        padding: 0.4rem 1rem;

    }

}

@media screen and (max-width:1000px) {
    .navbar ul {
        display: none;
        position: absolute;
        right: 0;
        top: 0%;
        width: 90vw;
        height: 100vh;
        padding: 4rem 8rem;
        flex-direction: column;
        background-color: #128a4cef;
        transition: 1s ease-in-out;
    }

    nav ul li {
        margin: 1rem 1.5rem;
    }

    .ri-close-circle-line {
        display: block;
    }

    .ri-menu-2-fill {
        display: block;
    }
    
.video-popup {
    display: none;
    position: fixed;
    width: 95vw;
    height: 90vh;
    background-color: #3caf55de;
    margin: 2rem;
    justify-content: center;
    z-index: 9999999;
}

.video-popup video, .video-popup .video-iframe {
    width: 100%;
    height: 100%;
    justify-content: center;
}

.video-close-icon {
    display: block;
    font-size: 2rem;
    color: #fff;
    position: absolute;
    cursor: pointer;
    right: 2rem;
    margin: 2rem 4rem 0 0;
}

    .hero-section {
        height: 47rem;
        justify-content: flex-start;
        flex-direction: column-reverse;
    }

    .ri-play-circle-line {
        font-size: 1.4rem;

    }

    .hero-section-container {
        height: 47rem;
        padding-top: 5rem;
        flex-direction: column-reverse;
        gap: 0.5rem;
        overflow: hidden;
    }

    .hero-section-data {
        font-size: 1rem;
        color: var(--white);
        overflow: visible;
    }

    .hero-section-img img {

        height: 10rem;
        width: 10rem;
    }

    .hero-section-data h2 {
        line-height: 3rem;
    }

    .hero-section-data p {
        line-height: 3rem;
    }

    .hero-section-btns {
        bottom: -2rem;
        z-index: 9999;
    }

    .hero-section-img img {
        height: 400px;
    }

    .about-section {
        height: fit-content;
    }

    .about-section-card h2 {
        width: 50%;
    }

    .contact-section h2 {
        width: 50%;
    }

    .contact-section p {
        font-size: 0.95rem;
    }

    .parallax-text {
        left: 900px;
        font-size: 3.7rem;
    }

    .copyright {
        font-size: 0.9rem;
    }
}

@media screen and (max-width:550px) {

    header {
        padding: 1rem;
    }
    /* ************************************************************************************************ */
    .hero-section-data {
        transform: translateY(-75px);
        color: var(--white);
    }
    .hero-section-img{
        transform: translateY(-85px);
    }
    .hero-section-img img{
        transform:scale(0.75) !important;
        height: 22rem !important;
        margin: 2.1rem 0 2rem -1rem;
    }

    .hero-section-data{
        margin-left: 20%;
    }
    .hero-section-data p {
        line-height: 0rem;
    }
    .hero-section-data h2{
        font-size: 2.4rem;
    }  

    /* ************************************************************************************************ */
    .ri-close-circle-line {
        display: block;
    }
    .btn-getstarted {
        color: var(--white);
        border: 1px solid var(--white);
        background: transparent;
        padding:0.3rem;
        width: 8rem;
        height: 3rem;
    }
    

    .hero-section {
        height: fit-content;
        justify-content: flex-start;
        overflow: hidden;
    }

    .ri-play-circle-line {
        font-size: 1.4rem;

    }

    .hero-section-container {
        height: fit-content;
        flex-direction: column-reverse;
    }

    .hero-section-data {
        font-size: 0.9rem;
        color: var(--white);
        overflow: visible;
        position: unset;
        top: -13rem;
        left: 1rem;
    }

    .hero-section-data h2 {
        line-height: 3rem;
    }

    
    .hero-section-btns {
        bottom: -2rem;
        flex-direction: column;
        z-index: 9999;
    }

    .btn-get-started {
        margin: 0;
    }

    
    .video-popup {
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0.4rem;
    }

    .video-popup video, .video-popup .video-iframe {
        width: 98%;
    }

    .video-close-icon {
        right: 2rem;
        margin: 2rem 1rem 0 0;
    }

    .about-section {
        height: fit-content;
        padding: 3rem;
    }

    .about-section-card {
        padding: 1.8rem;
    }

    .about-section-card h2 {
        width: 80%;
        font-size: 1.3rem;
    }

    .btn-log-in {
        margin-top: 1rem;
    }

    .contact-section {

        padding: 1rem 2rem;
    }

    .contact-section h2 {
        width: 50%;
    }

    .contact-section p {
        font-size: 0.95rem;
    }

    .cta {
        padding: 2rem;
        overflow: hidden;
    }

    .cta p {
        margin-bottom: 4rem;

    }

    .parallax-text {
        left: 1300px;
        font-size: 3rem;
    }

    .footer-social {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.6rem;
    }
}

@media screen and (max-width:380px) {
    .header-logo h2 {
        font-size: 1.2rem;
    }
    .ri-close-circle-line {
        right: 2rem;
    }
    .hero-section {
        padding: 0.4rem 0.7rem;
    }

    .hero-section-container {
        width: 100%;
        padding: 0rem;
        flex-direction: column-reverse;
    }

    .hero-section-img img {
        top: -7rem;
        height: 400px;
        object-fit: contain;
    }

    .about-section {
        padding: 1.3rem;
    }

    .cta {

        padding: 0.3rem 0 0 0.5rem;
    }

    .contact-section {
        padding: 1.3rem;

    }

    .footer-social {
        padding: 1.3rem;
        font-size: 0.7rem;
    }
}

@media screen and (max-width:350px) {
    .hero-section-img img {
        object-fit: contain;
        height: 22rem;
        width: 10rem;
    }

    .hero-section-img {
        display: flex;
        justify-content: center;
        object-fit: contain;
        left: 0;
        padding: 0;
    }

    .hero-section-container {
        padding: 1rem;
    }

    .hero-section {
        padding: 0.5;
    }

    .hero-section-container p {
        line-height: 1rem;
    }

    .ri-close-circle-line {
        right: 2rem;
    }
}

@media screen and (max-width:330px) {
    .hero-section-img img {
        height: 350px;
        width: 50px;
        left: 1rem;
    }

    .header-logo {
        gap: 0.3rem;
    }

    .header-logo img {
        width: 2rem;
    }

    .header-logo h2 {
        font-size: 1.15rem;
    }
.navbar ul {
            padding-right: 13rem;
}
    .ri-menu-2-fill {
        right: 1.2rem;
    }

    .hero-section-data p {
        margin-bottom: 5rem;
        font-size: 0.95rem;
    }

    .hero-section-btns {
        flex-direction: column;
    }

    .video-popup {
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0.4rem;
    }

    .video-popup video, .video-popup .video-iframe iframe {
        width: 98%;
        height: 250px;
    }

    .video-close-icon {
        right: 2rem;
        margin: 2rem 1rem 0 0;
    }

    .about-section-card {
        padding: 2.2rem;
    }
    .about-section-card h2{
        width: 100%;
    }

    .cta {
        padding: 1rem;
    }

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

    .contact-section h2 {
        font-size: 1.3rem;
    }
    .footer-social {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* animation classes*/

@keyframes flipY {
    0% {
        transform: rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }

    40% {
        transform: rotate3d(0, 1, 0, -20deg);
    }

    60% {
        transform: rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: rotate3d(0, 1, 0, -5deg);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

.u--flipY {
    -webkit-animation: flipY 2s ease-in;
    -moz-animation: flipY 2s ease-in;
    -o-animation: flipY 2s ease-in;
    animation: flipY 2s ease-in;
}

/* ----------------------------------------------
   * Generated by Animista on 2023-2-1 13:11:29
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

/**
   * ----------------------------------------
   * animation text-flicker-in-glow
   * ----------------------------------------
   */
@-webkit-keyframes text-flicker-in-glow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
        text-shadow: none;
    }

    10.1% {
        opacity: 1;
        text-shadow: none;
    }

    10.2% {
        opacity: 0;
        text-shadow: none;
    }

    20% {
        opacity: 0;
        text-shadow: none;
    }

    20.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
    }

    20.6% {
        opacity: 0;
        text-shadow: none;
    }

    30% {
        opacity: 0;
        text-shadow: none;
    }

    30.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    30.5% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    30.6% {
        opacity: 0;
        text-shadow: none;
    }

    45% {
        opacity: 0;
        text-shadow: none;
    }

    45.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    55% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    55.1% {
        opacity: 0;
        text-shadow: none;
    }

    57% {
        opacity: 0;
        text-shadow: none;
    }

    57.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }

    60% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }

    60.1% {
        opacity: 0;
        text-shadow: none;
    }

    65% {
        opacity: 0;
        text-shadow: none;
    }

    65.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    75% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    75.1% {
        opacity: 0;
        text-shadow: none;
    }

    77% {
        opacity: 0;
        text-shadow: none;
    }

    77.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    85% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    85.1% {
        opacity: 0;
        text-shadow: none;
    }

    86% {
        opacity: 0;
        text-shadow: none;
    }

    86.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 200px rgba(19, 154, 196, 0.6), 0 0 200px rgba(255, 255, 255, 0.45), 0 0 180px rgba(255, 255, 255, 0.25), 0 0 155px rgba(255, 255, 255, 0.1);
    }
}

@keyframes text-flicker-in-glow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
        text-shadow: none;
    }

    10.1% {
        opacity: 1;
        text-shadow: none;
    }

    10.2% {
        opacity: 0;
        text-shadow: none;
    }

    20% {
        opacity: 0;
        text-shadow: none;
    }

    20.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(56, 165, 238, 0.889, 0.25);
    }

    20.6% {
        opacity: 0;
        text-shadow: none;
    }

    30% {
        opacity: 0;
        text-shadow: none;
    }

    30.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    30.5% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    30.6% {
        opacity: 0;
        text-shadow: none;
    }

    45% {
        opacity: 0;
        text-shadow: none;
    }

    45.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    55% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    55.1% {
        opacity: 0;
        text-shadow: none;
    }

    57% {
        opacity: 0;
        text-shadow: none;
    }

    57.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }

    60% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }

    60.1% {
        opacity: 0;
        text-shadow: none;
    }

    65% {
        opacity: 0;
        text-shadow: none;
    }

    65.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    75% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    75.1% {
        opacity: 0;
        text-shadow: none;
    }

    77% {
        opacity: 0;
        text-shadow: none;
    }

    77.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    85% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    85.1% {
        opacity: 0;
        text-shadow: none;
    }

    86% {
        opacity: 0;
        text-shadow: none;
    }

    86.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 200px rgba(19, 154, 196, 0.6), 0 0 200px rgba(255, 255, 255, 0.45), 0 0 180px rgba(255, 255, 255, 0.25), 0 0 155px rgba(255, 255, 255, 0.1);
    }
}

.text-pop-up-top {
    -webkit-animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
   * Generated by Animista on 2023-2-1 13:22:21
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

/**
   * ----------------------------------------
   * animation text-pop-up-top
   * ----------------------------------------
   */
@-webkit-keyframes text-pop-up-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        text-shadow: none;
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        text-shadow: 0 1px 0 #cccccc, 0 2px 0 #cccccc, 0 3px 0 #cccccc, 0 4px 0 #cccccc, 0 5px 0 #cccccc, 0 6px 0 #cccccc, 0 7px 0 #cccccc, 0 8px 0 #cccccc, 0 9px 0 #cccccc, 0 50px 30px rgba(0, 0, 0, 0.3);
    }
}

@keyframes text-pop-up-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        text-shadow: none;
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        text-shadow: 0 1px 0 #cccccc, 0 2px 0 #cccccc, 0 3px 0 #cccccc, 0 4px 0 #cccccc, 0 5px 0 #cccccc, 0 6px 0 #cccccc, 0 7px 0 #cccccc, 0 8px 0 #cccccc, 0 9px 0 #cccccc, 0 50px 30px rgba(0, 0, 0, 0.3);
    }
}

.tracking-in-contract-bck {
    -webkit-animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

/* ----------------------------------------------
   * Generated by Animista on 2023-2-1 13:27:31
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

/**
   * ----------------------------------------
   * animation tracking-in-contract-bck
   * ----------------------------------------
   */
@-webkit-keyframes tracking-in-contract-bck {
    0% {
        letter-spacing: 1em;
        -webkit-transform: translateZ(0px);
        transform: translateZ(0px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes tracking-in-contract-bck {
    0% {
        letter-spacing: 01em;
        -webkit-transform: translateZ(400px);
        transform: translateZ(400px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

.tracking-in-contract {
    -webkit-animation: tracking-in-contract 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-contract 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

/* ----------------------------------------------
   * Generated by Animista on 2023-2-1 13:35:37
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

/**
   * ----------------------------------------
   * animation tracking-in-contract
   * ----------------------------------------
   */
@-webkit-keyframes tracking-in-contract {
    0% {
        letter-spacing: 1em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: normal;
        opacity: 1;
    }
}

@keyframes tracking-in-contract {
    0% {
        letter-spacing: 1em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: normal;
        opacity: 1;
    }
}