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

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

.btn:active {
    transform: translateY(1px) !important
}

button:focus:not(:focus-visible) {
    outline: 0
}

@media(min-width: 320px)and (max-width: 479px) {
    .btn {
        font-size: 12px
    }
}

.navbar-toggler:focus {
    box-shadow: none
}

.form-control:focus {
    box-shadow: none
}

a {
    text-decoration: none !important
}

::-webkit-scrollbar {
    display: none
}

@keyframes blink {
    0% {
        opacity: .1
    }

    25% {
        opacity: .5
    }

    50% {
        opacity: 1
    }

    95% {
        opacity: .5
    }

    100% {
        opacity: .1
    }
}

.floating,
.landing .floating-lg {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

@keyframes floating {
    0% {
        transform: translate(0, 0px)
    }

    50% {
        transform: translate(0, 15px)
    }

    100% {
        transform: translate(0, 0px)
    }
}

.rotate {
    animation: rotate 5s infinite linear
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
    color: #000;
    top: 50%;
    margin-top: -10px;
    padding: 0;
    border: none;
    outline: none
}

.slick-slider .slick-prev:focus,
.slick-slider .slick-next:focus {
    outline: none
}

.slick-slider .slick-prev.slick-disabled:before,
.slick-slider .slick-next.slick-disabled:before {
    opacity: .25
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
    line-height: 1;
    color: #fff;
    opacity: .85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-slider .slick-prev {
    left: -25px;
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    transform: translateY(-40%)
}

@media(min-width: 320px)and (max-width: 479px) {
    .slick-slider .slick-prev {
        left: -5px;
        width: 30px;
        height: 30px
    }
}

.slick-slider .slick-next {
    right: -25px;
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    transform: translateY(-40%)
}

@media(min-width: 320px)and (max-width: 479px) {
    .slick-slider .slick-next {
        right: -5px;
        width: 30px;
        height: 30px
    }
}

.text-justify {
    text-align: justify
}

.validate {
    position: relative
}

.validate:hover .validate-block {
    display: block
}

.validate-block {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #393939;
    color: #767676;
    display: none;
    z-index: 3
}

.cur-poiter {
    cursor: pointer
}

.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.form-select:focus {
    box-shadow: none
}

.form-select option {
    background: #1b1c21
}

body {
    font-weight: 300
}

.popover {
    background-color: #050510;
    border: 1px solid #47e6ff;
    border-radius: 10px
}

.popover .popover-header {
    background-color: #050510;
    color: #47e6ff;
    font-weight: 700;
    border-radius: 10px
}

.popover .popover-header :nth-child(1) {
    color: rgba(0, 0, 0, 0)
}

.popover .popover-header :nth-child(2) {
    color: #47e6ff
}

.popover .popover-header :nth-child(3) {
    color: #47e6ff
}

.popover .popover-header :nth-child(4) {
    color: #47e6ff
}

.popover .popover-body {
    background-color: #050510;
    color: #fff;
    border-radius: 10px
}

.popover .popover-arrow::before {
    border-top-color: #47e6ff
}

.landing {
    font-size: 14px;
    overflow-x: hidden;
    background: #000202;
    color: #fff;
    min-height: 100vh
}

@media(min-width: 320px)and (max-width: 479px) {
    .landing {
        font-size: 10px
    }
}

.landing .back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #00d4ff;
    text-decoration: none;
    cursor: pointer;
    font-size: 30px;
    z-index: 9
}

.landing .back-to-top:hover {
    color: #32ff8e
}

.landing .text-gradient {
    background: linear-gradient(90deg, rgb(71, 230, 255) 0%, rgb(212, 107, 255) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.landing .text-gradient-short {
    background: linear-gradient(90deg, rgb(71, 230, 255) 0%, rgb(212, 107, 255) 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.landing .text-highlight {
    color: #47e6ff
}

@keyframes floating {
    0% {
        transform: translate(0, 0px)
    }

    50% {
        transform: translate(0, 15px)
    }

    100% {
        transform: translate(0, 0px)
    }
}

@media screen and (max-width: 480px) {
    .landing .floating-lg {
        animation: none
    }
}

@media screen and (max-width: 1024px) {
    .landing .floating-lg {
        animation: none
    }
}

.landing header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000202
}

.landing header .btn-wallet {
    background: rgba(0, 0, 0, 0);
    color: #47e6ff;
    border-radius: 999px;
    padding: 5px;
    border: 1px solid #47e6ff;
    text-align: center;
    font-size: 14px
}

.landing header .btn-wallet:hover {
    background: #47e6ff;
    color: #000202
}

.landing .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    justify-content: center
}

@media(min-width: 320px)and (max-width: 479px) {
    .landing .navbar-nav .nav-item {
        justify-content: start
    }
}

.landing .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 14px
}

@media(min-width: 320px)and (max-width: 479px) {
    .landing .navbar-nav .nav-item .nav-link {
        width: 100%;
        font-size: 20px
    }
}

.landing .navbar-nav .nav-item .nav-link:hover {
    color: #47e6ff
}

.landing .navbar-nav .nav-item .nav-link.active {
    color: #47e6ff
}

.landing .offcanvas {
    background: #000202
}

.landing .dropdown-menu {
    background: #000202;
    border: 1px solid #47e6ff;
    border-radius: 10px
}

.landing .dropdown-menu .dropdown-item {
    color: #47e6ff
}

.landing .dropdown-menu .dropdown-item:hover {
    background: #47e6ff;
    color: #000202
}

.btn-primarys {
    background: linear-gradient(90deg, rgb(0, 212, 255) 0%, rgb(205, 84, 255) 100%);
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(71, 230, 255, .3);
    width: 350px
}

.btn-primarys:hover {
    box-shadow: 0 6px 20px rgba(71, 230, 255, .4);
    color: #000202;
    text-decoration: none
}

.btn-primarys:active {
    transform: translateY(0)
}

@media(min-width: 320px)and (max-width: 479px) {
    .btn-primarys {
        padding: 10px 25px;
        font-size: 14px
    }
}

.img-corexs {
    width: 40px;
    height: 25px
}

.img-logo {
    width: 100px;
    height: auto
}

section {
    padding-top: 85px
}

@media(min-width: 320px)and (max-width: 479px) {
    section {
        padding-top: 64px
    }
}

section .bg-t {
    background: url(../images/bg-t.png) no-repeat;
    background-position: center right;
    background-size: cover;
    background-attachment: local
}

section .bg-e {
    background: url(../images/bg-e.png) no-repeat;
    background-position: top left;
    background-size: contain;
    background-attachment: local
}

section .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase
}

@media(min-width: 320px)and (max-width: 479px) {
    section .title {
        font-size: 18px;
        text-align: center
    }
}

section .bg-blue-light {
    background: url(../images/bg-t.png) no-repeat center center;
    background-size: 100% 100%
}

@media(min-width: 320px)and (max-width: 479px) {
    section .bg-blue-light {
        background-size: auto 100%
    }
}

section .home {
    position: relative
}

section .home video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

@media(min-width: 768px)and (max-width: 1023px) {
    section .home video {
        height: 60vh
    }
}

@media(min-width: 320px)and (max-width: 479px) {
    section .home video {
        height: 75vh
    }
}

section .home .text-var {
    position: absolute;
    font-weight: lighter;
    bottom: 50%;
    left: 0;
    transform: translate(0, 50%);
    text-align: center;
    width: 100%;
    z-index: 3
}

@media(min-width: 768px)and (max-width: 1023px) {
    section .home .text-var {
        width: 100%;
        font-size: 14px;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 2, 2, 0.8) 30%)
    }
}

@media(min-width: 320px)and (max-width: 479px) {
    section .home .text-var {
        width: 100%;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 2, 2, 0.8) 30%);
        font-size: 12px
    }
}

section .home .text-var .bg-banner {
    border-radius: 50%;
    position: absolute;
    bottom: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(93, 36, 255, 0.4) 0%, transparent 50%);
    transform: translate(-50%, 50%);
    text-align: center;
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px
}

@media(min-width: 768px)and (max-width: 1023px) {
    section .home .text-var .bg-banner {
        width: 500px;
        height: 500px;
        padding: 30px
    }
}

@media(min-width: 320px)and (max-width: 479px) {
    section .home .text-var .bg-banner {
        width: 400px;
        height: 400px;
        padding: 20px
    }
}

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

section .home .flower-carousel .carousel {
    position: relative
}

section .home .flower-carousel .carousel-item {
    opacity: 1;
    transform: translateY(0) scale(1.2);
    transition: none;
    position: relative
}

section .home .flower-carousel .carousel-item img {
    height: 230px;
    transition: none
}

@media(min-width: 320px)and (max-width: 479px) {
    section .home .flower-carousel .carousel-item img {
        height: 100px
    }
}

section .home .flower-carousel .carousel-item.active {
    opacity: 1;
    transform: translateY(0) scale(0.8);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    animation: zoomOutFlower 5s infinite
}

@keyframes zoomOutFlower {
    0% {
        transform: translateY(0) scale(0.4);
        opacity: 0
    }

    50% {
        transform: translateY(0) scale(1);
        opacity: 1
    }

    60% {
        transform: translateY(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateY(0) scale(0.4);
        opacity: 0
    }
}

@keyframes zoomOutImage {
    0% {
        transform: scale(1.2)
    }

    50% {
        transform: scale(1)
    }

    100% {
        transform: scale(0.8)
    }
}

@keyframes zoomInFlower {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 1
    }

    100% {
        transform: translateY(0) scale(1.2);
        opacity: 0
    }
}

@keyframes zoomInImage {
    0% {
        transform: scale(0.8)
    }

    50% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.2)
    }
}

section .home .flower-carousel .caption {
    color: #fff;
    font-size: 18px;
    text-align: center;
    display: block;
    height: 90px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .home .flower-carousel .caption {
        font-size: 12px;
        padding: 6px 12px;
        margin-top: 10px
    }
}

section .home .flower-carousel .flower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.8), transparent);
    border-radius: 50%;
    animation: bloom 4s infinite;
    pointer-events: none;
    z-index: 1000
}

@keyframes bloom {
    0% {
        transform: scale(0);
        opacity: 0
    }

    50% {
        transform: scale(2);
        opacity: 1
    }

    100% {
        transform: scale(0);
        opacity: 0
    }
}

@keyframes bloomCaption {
    0% {
        letter-spacing: -15px;
        opacity: 0;
        transform: translateX(-50%) scale(0);
        filter: blur(5px)
    }

    50% {
        letter-spacing: -5px;
        opacity: .5;
        transform: translateX(-50%) scale(0.5);
        filter: blur(2px)
    }

    100% {
        letter-spacing: 0;
        opacity: 1;
        transform: translateX(-50%) scale(1);
        filter: blur(0px)
    }
}

@keyframes closeCaption {
    0% {
        letter-spacing: 0;
        opacity: 1;
        transform: translateX(-50%) scale(1);
        filter: blur(0px)
    }

    50% {
        letter-spacing: 5px;
        opacity: .5;
        transform: translateX(-50%) scale(0.5);
        filter: blur(2px)
    }

    100% {
        letter-spacing: 15px;
        opacity: 0;
        transform: translateX(-50%) scale(0);
        filter: blur(5px)
    }
}

section .home .text-corex {
    font-size: 16px;
    line-height: 17px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .home .text-corex {
        font-size: 13px;
        line-height: 10px
    }
}

section .home .text-corex-mobile {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

@media(min-width: 320px)and (max-width: 479px) {
    section .home .text-corex-mobile {
        font-size: 12px;
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 15px
    }
}

section .home .text-corex-mobile p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 300
}

section .home .text-corex-builds {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 1.5;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 10px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .home .text-corex-builds {
        font-size: 12px
    }
}

section .about {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
    min-height: 400px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .about .text-block-about {
        flex-direction: column-reverse
    }
}

section .about .text-block-about .text-block-about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center
}

@media(min-width: 320px)and (max-width: 479px) {
    section .about .text-block-about .text-block-about-left {
        order: 1
    }
}

section .about .text-block-about .text-block-about-left .text-about {
    max-width: 516px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-align: justify
}

section .about .text-block-about .text-block-about-left .text-about .text-about-slime {
    text-align: justify;
    text-justify: inter-word;
    font-weight: 300;
    font-size: 14px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .about .text-block-about .text-block-about-left .text-about .text-about-slime {
        font-size: 12px
    }
}

section .about .about-img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px
}

section .about .about-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 20px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .about .about-img img {
        max-width: 100%
    }
}

section .vision-mission-core-value .vision {
    margin-top: 100px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .vision-mission-core-value .vision {
        margin-top: 50px
    }
}

section .vision-mission-core-value .vision .vision-item {
    position: relative
}

@media(min-width: 320px)and (max-width: 479px) {
    section .vision-mission-core-value .vision .vision-item {
        margin-top: 120px
    }
}

section .vision-mission-core-value .vision .vision-item .vision-float {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2
}

section .vision-mission-core-value .vision .vision-item .vision-float .vision-img {
    width: 140px
}

section .vision-mission-core-value .vision .vision-item .vision-float .vision-img .be-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .vision-mission-core-value .vision .vision-item .vision-float .vision-img {
        width: 140px
    }
}

@media(min-width: 320px)and (max-width: 479px) {
    section .vision-mission-core-value .vision .vision-item .vision-float {
        left: 50%;
        width: auto
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    section .vision-mission-core-value .vision .vision-item .vision-float {
        left: 50%;
        width: auto
    }
}

section .vision-mission-core-value .vision .vision-item .vision-box {
    margin-top: 60px;
    height: 100%
}

section .vision-mission-core-value .vision .vision-item .vision-box .vision-content {
    background: linear-gradient(0deg, rgba(36, 188, 255, 0.3) 0%, transparent 100%);
    border: 1px solid #47e6ff;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(36, 188, 255, .3);
    backdrop-filter: blur(10px);
    padding: 20px;
    width: 100%;
    height: 310px
}

section .vision-mission-core-value .vision .vision-item .vision-box .vision-content .value {
    padding-top: 50px;
    font-size: 18px;
    font-weight: 200;
    color: #47e6ff;
    margin-bottom: 20px
}

section .vision-mission-core-value .vision .vision-item .vision-box .vision-content .vision-content-list {
    margin-top: 20px;
    text-align: start;
    font-size: 14px;
    font-weight: 300;
    color: #fff
}

@media(min-width: 320px)and (max-width: 479px) {
    section .vision-mission-core-value .vision .vision-item .vision-box .vision-content .vision-content-list {
        font-size: 12px
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    section .vision-mission-core-value .vision .vision-item .vision-box {
        margin-top: 120px;
        width: auto;
        height: 300px
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    section .vision-mission-core-value .vision .vision-item .vision-box {
        margin-top: 120px;
        width: auto;
        height: 300px
    }
}

@media(min-width: 768px)and (max-width: 1023px)and (min-width: 320px)and (max-width: 479px) {
    section .vision-mission-core-value .vision .vision-item .vision-box {
        font-size: 12px
    }
}

section .roadmap .roadmap-item {
    border-left: 1px solid #47e6ff;
    position: relative;
    padding-left: 35px;
    margin-top: 40px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .roadmap .roadmap-item {
        height: 325px;
        margin-top: 0
    }
}

section .roadmap .roadmap-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    aspect-ratio: 1/1;
    background: url(../images/roadmap-icon.png) no-repeat center center #000;
    background-size: 100% 100%;
    border-radius: 50%;
    transform: translateY(-100%) translateX(-50%);
    z-index: 3
}

@media(min-width: 320px)and (max-width: 479px) {
    section .roadmap .roadmap-item::before {
        transform: translateY(0) translateX(-50%);
        background-color: #000202
    }
}

section .roadmap .roadmap-item .roadmap-banner {
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 1;
    width: 230px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

@media(min-width: 320px)and (max-width: 479px) {
    section .roadmap .roadmap-item .roadmap-banner {
        top: 0;
        width: 280px
    }
}

section .roadmap .roadmap-item .roadmap-banner.roadmap-banner-1 {
    background-image: url("../images/p-1.png")
}

section .roadmap .roadmap-item .roadmap-banner.roadmap-banner-2 {
    background-image: url("../images/p-2.png")
}

section .roadmap .roadmap-item .roadmap-banner.roadmap-banner-3 {
    background-image: url("../images/p-3.png")
}

section .roadmap .roadmap-item .roadmap-banner.roadmap-banner-4 {
    background-image: url("../images/p-4.png")
}

@media(min-width: 320px)and (max-width: 479px) {
    section .roadmap .roadmap-item .roadmap-item-box {
        padding-top: 40px
    }
}

section .roadmap .roadmap-item .roadmap-item-box .roadmap-item-title {
    font-size: 14px;
    font-weight: 500
}

section .roadmap .roadmap-item .roadmap-item-box .roadmap-item-desc {
    height: 300px;
    font-size: 11px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .roadmap .roadmap-item .roadmap-item-box .roadmap-item-desc {
        height: auto;
        font-size: 12px
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    section .roadmap .roadmap-item .roadmap-item-box .roadmap-item-desc {
        height: auto
    }
}

section .roadmap .road-map-img {
    margin-top: -100px
}

section .ecosystem .ecosystem-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
    width: 100%
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual {
        height: 250px;
        width: 100%
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    section .ecosystem .ecosystem-visual {
        width: 100%
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill {
    position: absolute;
    width: 150px;
    height: 90px;
    z-index: 3;
    transition: transform .3s ease, z-index .3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill:hover {
    transform: scale(1.08);
    z-index: 6
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill img {
    width: 145px;
    height: auto;
    margin-bottom: 6px
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual .ecosystem-visual-fill img {
        width: 100px
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill img:hover {
    animation-play-state: paused
}

@keyframes Rotate {
    0% {
        background-position: 0% 50%
    }

    25% {
        background-position: 50% 100%
    }

    50% {
        background-position: 100% 50%
    }

    75% {
        background-position: 50% 0%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes BackgroundMove {
    0% {
        background-position: 0% 50%
    }

    16.66% {
        background-position: 50% 0%
    }

    33.33% {
        background-position: 100% 0%
    }

    50% {
        background-position: 100% 50%
    }

    66.66% {
        background-position: 100% 100%
    }

    83.33% {
        background-position: 50% 100%
    }

    100% {
        background-position: 0% 50%
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-1 {
    top: 11%;
    left: 20%;
    transform: translateX(-50%)
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-1 {
        top: 14%;
        left: 23%;
        transform: translateX(-50%)
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-2 {
    top: 11%;
    right: 20%;
    transform: translateX(50%)
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-2 {
        top: 12%;
        right: 21%;
        transform: translateX(50%)
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-3 {
    top: 52%;
    right: 3%;
    transform: translateY(-50%)
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-3 {
        top: 52%;
        right: -4%;
        transform: translateY(-50%)
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-4 {
    bottom: 5%;
    right: 17%;
    transform: translateX(50%)
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-4 {
        bottom: 7%;
        right: 21%
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-5 {
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%)
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-5 {
        bottom: 7%;
        left: 20%
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-6 {
    top: 52%;
    left: 0;
    transform: translateY(-50%)
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-6 {
        top: 52%;
        left: -4%
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-7 {
    top: 80%;
    left: 20%;
    transform: translateX(-50%)
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-visual .ecosystem-visual-fill.echo-bg-7 {
        top: 70%;
        left: 50%
    }
}

section .ecosystem .ecosystem-visual .ecosystem-visual-fill:last-child {
    position: absolute;
    width: 40%;
    top: 9%;
    left: 50%;
    height: 54%;
    transform: translateX(-50%);
    z-index: 3;
    animation: zoomIn1 1.5s ease-out infinite
}

section .ecosystem .ecosystem-visual .neon-effect {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(90deg, rgba(166, 102, 191, 0.3) 0%, #d3fbfe 50%, rgba(166, 102, 191, 0.3) 100%);
    background-size: 200% 200%;
    animation: BackgroundMove 3s ease-in-out infinite
}

@keyframes Rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes ringPulse {
    0% {
        opacity: .8;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.03)
    }

    100% {
        opacity: .8;
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes zoomIn1 {

    0%,
    100% {
        transform: translateX(-50%) scale(1)
    }

    50% {
        transform: translateX(-50%) scale(1.03)
    }
}

section .ecosystem .ecosystem-content {
    padding-left: 2rem;
    order: 2
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-content {
        padding-left: 0;
        margin-top: 2rem;
        order: 1
    }
}

section .ecosystem .ecosystem-content .ecosystem-description p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-content .ecosystem-description p {
        font-size: 12px
    }
}

section .ecosystem .ecosystem-content .ecosystem-components .component-list .component-item {
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 1.5
}

@media(min-width: 320px)and (max-width: 479px) {
    section .ecosystem .ecosystem-content .ecosystem-components .component-list .component-item {
        font-size: 12px
    }
}

section .contact {
    background: url(../images/bg-bottom.png) no-repeat center center;
    background-size: 100% 100%
}

@media(min-width: 320px)and (max-width: 479px) {
    section .contact {
        background-size: auto 100%
    }
}

section .contact .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

section .contact .contact-content .contact-content-center .contact-content-logo {
    height: 200px
}

section .contact .contact-content .contact-info {
    margin-top: 25px
}

section .contact .contact-content .contact-info .contact-section-title {
    font-size: 14px;
    font-weight: 300;
    color: #47e6ff;
    margin-bottom: 10px
}

section .contact .contact-content .contact-info .contact-description {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 14px;
    font-weight: 300
}

@media(min-width: 320px)and (max-width: 479px) {
    section .contact .contact-content .contact-info .contact-description {
        font-size: 12px
    }
}

section .contact .contact-content .contact-info .contact-office-info {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: .5rem
}

@media(min-width: 320px)and (max-width: 479px) {
    section .contact .contact-content .contact-info .contact-office-info {
        font-size: 12px
    }
}

section .contact .contact-content .contact-info .contact-details {
    margin-bottom: 2rem
}

section .contact .contact-content .contact-info .contact-details .contact-email,
section .contact .contact-content .contact-info .contact-details .contact-phone {
    color: #fff;
    font-weight: 300;
    margin-bottom: .5rem;
    font-size: 14px
}

section .contact .contact-content .contact-info .contact-details .contact-email .contact-label,
section .contact .contact-content .contact-info .contact-details .contact-phone .contact-label {
    color: #47e6ff;
    font-weight: 500
}

section .contact .contact-content .contact-info .contact-details .contact-email .contact-value,
section .contact .contact-content .contact-info .contact-details .contact-phone .contact-value {
    color: #fff;
    font-weight: 300
}

@media(min-width: 320px)and (max-width: 479px) {

    section .contact .contact-content .contact-info .contact-details .contact-email .contact-value,
    section .contact .contact-content .contact-info .contact-details .contact-phone .contact-value {
        font-size: 12px
    }
}

section .contact .contact-content .contact-info .contact-submit-info {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0
}

section .register-form .partnership-content .partnership-section {
    margin-bottom: 2rem
}

section .register-form .partnership-content .partnership-section .partnership-subtitle {
    color: #47e6ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem
}

section .register-form .partnership-content .partnership-section .partnership-description {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0
}

@media(min-width: 320px)and (max-width: 479px) {
    section .register-form .partnership-content .partnership-section .partnership-description {
        font-size: 11px
    }
}

section .register-form .partnership-visual img {
    max-width: 100%;
    height: auto
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3)
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes centralGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(71, 230, 255, 0.6))
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(71, 230, 255, 0.8)) drop-shadow(0 0 40px rgba(212, 107, 255, 0.4))
    }
}

@keyframes platformPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .3
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: .5
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .3
    }
}

@keyframes zoomIn1 {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: .3
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        opacity: .8
    }

    100% {
        transform: translateX(-50%) scale(0.8);
        opacity: .3
    }
}

.footer-main {
    color: #47e6ff;
    background: linear-gradient(90deg, rgba(93, 36, 255, 0.2) 0%, rgba(0, 177, 255, 0.1) 100%);
    position: relative
}

.footer-main .footer-logo .footer-brand img {
    height: 60px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
    transition: transform .3s ease
}

.footer-main .footer-logo .footer-brand img:hover {
    transform: scale(1.05)
}

@media(min-width: 320px)and (max-width: 479px) {
    .footer-main .footer-logo .footer-brand img {
        height: 40px
    }
}

.footer-main .footer-content .footer-contact .footer-contact-item {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: .5rem;
    line-height: 1.4
}

.footer-main .footer-content .footer-contact .footer-contact-item .footer-contact-label {
    color: #47e6ff;
    font-weight: 500
}

.footer-main .footer-content .footer-contact .footer-contact-item .footer-contact-value {
    color: #fff;
    font-weight: 300;
    font-size: 12px
}

.footer-main .footer-links {
    align-items: center;
    justify-items: center;
    text-decoration: none
}

.footer-main .footer-links .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-main .footer-links .footer-links-list .footer-links-item {
    margin-bottom: .5rem;
    position: relative;
    padding-left: 15px
}

@media(min-width: 320px)and (max-width: 479px) {
    .footer-main .footer-links .footer-links-list .footer-links-item {
        font-size: 12px
    }
}

.footer-main .footer-links .footer-links-list .footer-links-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #47e6ff;
    border-radius: 50%
}

.footer-main .footer-links .footer-links-list .footer-links-item .footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color .3s
}

.footer-main .footer-links .footer-links-list .footer-links-item .footer-link:hover {
    color: #47e6ff
}

@media(min-width: 320px)and (max-width: 479px) {
    .footer-main .footer-links .footer-links-list .footer-links-item .footer-link {
        font-size: 12px
    }
}

@media(min-width: 320px)and (max-width: 479px) {
    .footer-main .footer-links {
        justify-content: center;
        justify-items: flex-start
    }
}

.footer-main .footer-socials {
    align-items: center;
    justify-items: flex-end;
    text-decoration: none
}

.footer-main .footer-socials .footer-socials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 150px
}

@media(min-width: 320px)and (max-width: 479px) {
    .footer-main .footer-socials .footer-socials-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 100%;
        gap: 10px
    }
}

.footer-main .footer-socials .footer-socials-grid .footer-social {
    width: 30px;
    display: flex;
    transition: transform .3s
}

.footer-main .footer-socials .footer-socials-grid .footer-social:hover {
    transform: scale(1.1)
}

.footer-main .footer-socials .footer-socials-grid .footer-social i {
    color: #fff;
    font-size: 16px
}

@media(min-width: 320px)and (max-width: 479px) {
    .footer-main .footer-socials {
        width: 100%;
        display: flex;
        justify-content: space-between;
        justify-items: center
    }
}

.footer-copyright {
    background: #000202
}

.footer-copyright .footer-copyright-text {
    color: #47e6ff;
    font-size: 14px;
    font-weight: 300;
    margin: 0
}

@media(min-width: 320px)and (max-width: 479px) {
    .footer-copyright .footer-copyright-text {
        font-size: 12px
    }
}

/*# sourceMappingURL=style.css.map */


.block-core-main {}

.block-core-main .content {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 680px;
    height: 700px;
    z-index: 1;
}

.block-core-main .content .list .item {
    width: 142px;
    height: 142px;
    animation: float 3s ease-in-out infinite;
}

.block-core-main .content .list .item a {
    animation: float 3s ease-in-out infinite;
    display: block;
    width: 142px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.block-core-main .content .list .item:first-child {
    position: absolute;
    left: 105px;
    top: 80px;
}

.block-core-main .content .list .item:nth-child(2) {
    position: absolute;
    right: 105px;
    top: 80px;
}

.block-core-main .content .list .item:nth-child(3) {
    position: absolute;
    top: 350px;
    right: 0;
}

.block-core-main .content .list .item:nth-child(4) {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.block-core-main .content .list .item:nth-child(5) {
    position: absolute;
    top: 350px;
    left: 0;
}

.block-core-main .content .list .item img {
    height: 142px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.block-core-main .content .list a img:hover {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.block-core-main .content .list .item a {
    position: relative;
}

.block-core-main .content .list .item a .bg-eff {
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, transparent 40%, #FAA94B), linear-gradient(#262626, #141414);
    animation: rotate 1.5s linear infinite;
    width: 142px;
    height: 142px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.block-core-main .content .list .item a .bg-eff:before,
.block-core-main .content .list .item a .bg-eff:after {
    content: " ";
    position: absolute;
    inset: 8px;
    background: linear-gradient(#161616, #262626);
    border-radius: inherit;
}

.block-core-main .content .list .item a .bg-eff:before {
    background: linear-gradient(45deg, transparent, transparent 40%, #FAA94B);
    filter: blur(32px);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.block-core-main .content .list .item:nth-child(2) a .bg-eff {
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, transparent 40%, #FF70C0), linear-gradient(#262626, #141414);
    animation: rotate 1.5s linear infinite;
}

.block-core-main .content .list .item:nth-child(3) a .bg-eff {
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, transparent 40%, #00ffd2), linear-gradient(#262626, #141414);
    animation: rotate 1.5s linear infinite;
}

.block-core-main .content .list .item:nth-child(4) a .bg-eff {
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, transparent 40%, #e6a5ff), linear-gradient(#262626, #141414);
    animation: rotate 1.5s linear infinite;
}

.block-core-main .content .list .item:nth-child(5) a .bg-eff {
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, transparent 40%, #62ff8c), linear-gradient(#262626, #141414);
    animation: rotate 1.5s linear infinite;
}

.block-core-main .content .list .item:hover a {
    animation: none !important;
}

.block-core-main .bg {
    opacity: 0.8;
}

.block-core-main .bg img {
    width: 100%;
}

.block-core-main .bg img.mb {
    display: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media screen and (min-width: 1151px) {
    .block-core-main {
        position: relative;
        height: 100vh;
    }

    section {
        padding-top: 0;
    }

    .home {
        height: 100vh;
    }

    .landing header {
        background: #010101a3;
    }

    .block-core-main .bg {
        height: 100vh;
    }

    .block-core-main .bg img {
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 1150px) {
    .block-core-main .bg img.dk {
        display: none;
    }

    .block-core-main .bg img.mb {
        display: block;
    }
}

@media screen and (max-width: 992px) {
    .block-core-main .content {
        width: 350px;
        height: 550px;
    }

    .block-core-main .content .list .item {
        width: 80px;
        height: 80px;
    }

    .block-core-main .content .list .item a {
        width: 80px;
        height: 80px;
    }

    .block-core-main .content .list .item a .bg-eff {
        width: 80px;
        height: 80px;
    }

    .block-core-main .content .list .item a img {
        width: 80px;
        height: 80px;
    }

    .block-core-main .content .list .item:first-child {
        top: 15%;
        left: 10%;
    }

    .block-core-main .content .list .item:nth-child(2) {
        top: 15%;
        right: 10%;
    }

    .block-core-main .content .list .item:nth-child(3) {
        top: 55%;
    }

    .block-core-main .content .list .item:nth-child(4) {
        bottom: 0;
    }

    .block-core-main .content .list .item:nth-child(5) {
        top: 55%;
    }
}

@media screen and (max-height: 400px) {
    .block-core-main .content {
        width: 350px;
        height: 100vh;
    }
}

.home {
    position: relative;
}

.home video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.block-ecosystem-main {
    background: url(../images/core/bg-ecosystem.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 65px 0;
}

.block-ecosystem-main .title-block {
    margin-bottom: 50px;
}

.block-ecosystem-main .title-block h2.custom {
    background: linear-gradient(90deg, #47E6FF 0%, #D46BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.list-ecosystem-card {
    max-width: 1060px;
    margin: auto;
}

.ecosystem-card {
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    border: 1px solid #47E6FF;
    padding: 10px;
    position: relative;
    background: linear-gradient(0deg, #24BCFF4D 0%, #24BCFF00 100%);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.ecosystem-card:hover {
    background: linear-gradient(0deg, #24BCFF4D 30%, #24BCFF00 100%);
}

.ecosystem-card .banner {
    margin-bottom: 30px;
}

.ecosystem-card .banner img {
    height: 70px;
    display: block;
    margin: auto;
}

.ecosystem-card h5.custom {
    color: #47E6FF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ecosystem-card .desc {
    font-size: 14px;
}

.ecosystem-card .link-bottom {
    width: 100%;
    bottom: 15px;
    left: 0;
    right: 0;
    padding: 0 15px;
}

a.btn-gdient {
    display: inline-block;
    background: linear-gradient(90deg, #47E6FF 0%, #D46BFF 100%);
    color: #ffff;
    border-radius: 100px;
    font-weight: 600;
    padding: 7px 10px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a.btn-gdient:hover {
    -moz-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

@media (min-width: 320px) and (max-width: 479px) {
    .footer-main .footer-logo .footer-brand img {
        width: inherit !important;
    }
}

section .home {
    overflow: hidden;
    height: 100vh;
}

section .home video {
    height: 100vh !important;
}