/* Typography */

@import url('https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@400;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Typography */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
hgroup,
menu,
footer,
header,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

ul {
    list-style: none;
}

article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

b,
strong {
    font-weight: bold;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

.clear:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

a img {
    border: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
}

a,
input,
select,
textarea {
    outline: none;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
}


/* Selection colours (easy to forget) */

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}

a {
    text-decoration: none;
    display: inline-block;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input:invalid,
input:required {
    box-shadow: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input:required {
    box-shadow: none;
}

input::-moz-focus-inner {
    box-shadow: 0 0 0px transparent;
}


/*Default Layout-------------------------------------------------------------------------------*/

:root {
    --white: #ffffff;
    --black: #000000;
    --lato: "Lato", sans-serif;
    --Cabin: "Cabin Sketch", sans-serif;
    --montserrat: "Montserrat", sans-serif;
}


/*Font property cssfont:font-style font-variant font-weight font-size/line-height font-family|caption|icon|menu|message-box|small-caption|status-bar|initial|inherit;*/

body {
    background: rgba(0, 0, 0, 0.6);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: var(--lato);
    color: var(--white);
    position: relative;
    cursor: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Global style */

h1,
h2,
h3,
h4,
h6 {
    font-style: normal;
}

h1 {
    font-family: var(--montserrat);
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    color: var(--white);
}

h2 {
    font-family: var(--montserrat);
    font-size: 50px;
    font-weight: 700;
    line-height: 55px;
    color: var(--white);
}

h3 {
    font-family: var(--montserrat);
    font-size: 40px;
    font-weight: 500;
    line-height: 45px;
    color: var(--white);
}

h4 {
    font-family: var(--montserrat);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: var(--white);
}

h5 {
    font-family: var(--montserrat);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
}

h6 {
    font-family: var(--montserrat);
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: var(--white);
}

p {
    font-family: var(--lato);
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: var(--white);
}

span {
    font-family: var(--lato);
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: var(--white);
}

a {
    cursor: none;
}

.mobi {
    display: none;
}

.desk {
    display: block;
}

dfn,
address,
em {
    font-style: normal;
}

label,
input[type="submit"] {
    cursor: pointer;
}

button:focus {
    outline: none;
}

.common-wrap {
    max-width: 1320px;
    margin: 0 auto;
    clear: both;
    padding: 0 20px;
}

section,
footer,
header {
    float: left;
    width: 100%;
    position: relative;
}

body,
html {
    height: 100%;
    font-feature-settings: 'clig' off, 'liga' off;
    background-color: var(--black);
    scroll-behavior: smooth;
}

.main-wrap {
    min-height: 100%;
    overflow: hidden;
    position: relative;
    overflow-x: hidden;
}


/* Cursor styling */

.cursor {
    position: fixed;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid #2efc72;
    border-radius: 50%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    transition: none;
    z-index: 999999999;
}

.cursor::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2efc72;
    border: 2px solid #142329;
    border-radius: 50%;
    transition: 0.5s;
}


/* Define the animation for entering from the bottom */

@keyframes slideInFromBottom {
    from {
        transform: translateY(150px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate {
    animation: slideInFromBottom 1s ease-in forwards;
    -webkit-animation: slideInFromBottom 1s ease-in forwards;
}


/* ============= animation background  ======== */

.stars {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 1s infinite alternate;
}

.falling {
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes twinkle {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}


/* ============ text animation ========= */


/* Beginning header style */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
}

.header-inner {
    float: left;
    width: 100%;
    padding: 20px 0;
}

.header-logo {
    float: left;
    width: 100%;
}

.header-logo figure {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-logo figure a img {
    width: 100px;
    height: 100px;
    background: transparent;
}

.main-section-wrap {
    float: left;
    width: 100%;
}

.hero-wrap {
    float: left;
    width: 100%;
}

.hero-inner {
    height: 100vh;
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero-inner .scroll-down-arrow{   
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #6fff8c;
    margin-top: 100px;
    animation: bounce 1s infinite;}



@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}



.hero-inner figure img {
    width: 100px;
    height: 100px;
}

.hero-inner h1 {
    float: left;
    width: 100%;
    text-align: center;
}

.hero-inner h1 span {
    margin: 0 10px;
    font-family: var(--montserrat);
    font-size: 100px;
    line-height: 120px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-50px);
    display: inline-block;
    animation: drop 10s ease forwards infinite;
    -webkit-animation: drop 10s ease forwards infinite;
}

@keyframes drop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    70% {
        opacity: 1;
        transform: translateY(30px);
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
    }
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }
}

.universe {
    float: left;
    width: 100%;
    background: url(../img/universe.gif);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 300px;
    background-attachment: fixed;
}

.progress-details-wrap {
    float: left;
    width: 100%;
}

.progress-inner {
    float: left;
    width: 100%;
    padding: 50px 0;
}

.progress-item {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    padding-top: 100px;
    opacity: 0;
}

.gradient-line {
    float: left;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.icon-logo {
    float: left;
    width: auto;
    padding: 5px 0 0;
}

.icon-logo figure {
    width: 100%;
    float: left;
}

.icon-logo figure img {
    width: 80px;
}

.progress-item:last-child .progress-side-text-box {
    padding-left: 20px;
    padding-bottom: 30px;
}

.color-line {
    float: left;
    width: 6px;
    height: 100%;
    background-color: #8bff92;
    border-radius: 3px 100px;
    -webkit-border-radius: 3px 100px;
    -moz-border-radius: 3px 100px;
    -ms-border-radius: 3px 100px;
    -o-border-radius: 3px 100px;
}

.progress-side-text-box {
    float: left;
    width: 100%;
    padding-left: 20px;
    padding-bottom: 200px;
}

.heading-text {
    float: left;
    width: 100%;

}

.gradient-text {
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
}

.active-heading-text {
    color: #00d050;
}

.heading-text h2 {
    width: 100%;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 60px;
}

.heading-text p {
    width: 100%;
    font-size: 24px;
    line-height: 28px;
    position: relative;
}


.future-plans-wrap {
    float: left;
    width: 100%;
    border-top: 1px solid #00ff99;
    border-bottom: 1px solid #00ff99;
}

.future-plans-inner {
    float: left;
    width: 100%;
    padding: 300px 0;
}

.future-plans-inner .progress-item {
    padding: 0;
    justify-content: center;
}

.future-plans-text {
    float: left;
    width: auto;
    text-align: center;
}

.future-plans-text h2 {
    float: left;
    width: 100%;
    font-size: 60px;
    line-height: 65px;
    margin-bottom: 20px;
}

.future-plans-text p {
    max-width: 400px;
    margin: 0 auto;
}

.crystal-gif {
    float: left;
    width: 150px;
    text-align: center;
    margin-top: -20px;
}

.social-wrap {
    float: left;
    width: 100%;
}

.social-inner {
    float: left;
    width: 100%;
    padding: 100px 0;
}

.join-us-btn {
    float: left;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.join-us-btn a {
    width: auto;
    cursor: none;
    padding: 50px 100px;
    font-size: 80px;
    line-height: 80px;
    background: linear-gradient(90deg, #1bffa4, #9ff616);
    color: #275303;
    text-align: center;
    font-family: var(--lato);
    text-transform: uppercase;
    border-radius: 50px;
}

.social-icon {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.social-icon a {
    width: 50px;
}

.footer-wrap {
    float: left;
    width: 100%;
}

.footer-inner {
    float: left;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.footer-inner p {
    text-align: center;
    color: #8cc63f;
}

#button {
    display: inline-block;
    background: url(../img/crystal-up.gif);
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: background .3s, opacity .5s, visibility .5s;
    -webkit-transition: background .3s, opacity .5s, visibility .5s;
    -moz-transition: background .3s, opacity .5s, visibility .5s;
    -ms-transition: background .3s, opacity .5s, visibility .5s;
    -o-transition: background .3s, opacity .5s, visibility .5s;
}

#button::after {
    content: "";
}

#button:hover {
    cursor: none;
}

#button:active {
    opacity: 0.5;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


/* 
=================================================================================================================================================== Responsive style ========================================== */


/*Mobile Layout:320px and 480px and more but less than or equal to 767px.----------------------------------------------------------------------------------*/


/*Wide Mobile Layout:480px.------------------------------------------------------------*/

@media only screen and (min-width:320px) and (max-width:767px) {
    .desk {
        display: none;
    }
    .mobi {
        display: block;
    }
    .hero-inner {
        margin-top: 50px;
    }
    .hero-inner h1 span {
        font-size: 55px;
        line-height: 55px;
        margin: 0;
    }
    .heading-text h2 {
        line-height: 35px;
        font-size: 33px;
    }
    .gradient-line {
        width: 40px;
    }
    .icon-logo {
        margin: 0px 0 20px;
    }
    .progress-side-text-box {
        padding-left: 10px;
    }
    .heading-text p {
        font-size: 20px;
        line-height: 22px;
        padding-left: 10px;
    }
    .heading-text p::before {
        left: -25px;
    }
    .join-us-btn a {
        line-height: 30px;
        font-size: 30px;
        padding: 25px 60px;
    }
    #button {
        width: 100px;
        height: 135px;
        bottom: 10px;
        right: 10px;
    }
    .future-plans-inner .progress-item {
        flex-direction: column;
        align-items: center;
    }
}


/*Tablet Layout:768px.-----------------------------------------------------------------*/

@media only screen and (min-width:768px) and (max-width:991px) {
    .desk {
        display: none;
    }
    .mobi {
        display: block;
    }
}


/*Tablet Layout:1024px.-----------------------------------------------------------------*/

@media only screen and (min-width:991px) and (max-width:1024px) {}


/*Tablet Layout:1024px.-----------------------------------------------------------------*/

@media only screen and (min-width:1025px) and (max-width:1280px) {}


/*Retina media query.Overrides styles for devices with adevice-pixel-ratio of 2+,such as iPhone 4.----------------------------------------------- */
