/*==================== Fonts ========================*/

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-BlackIt.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-BoldIt.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-RegularIt.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Extrabld.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-LightIt.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-ExtrabldIt.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-ThinIt.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-SemiboldIt.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNovaT-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}







/*========================== Basic css ============================*/

html {
    /* 1rem = 10px */
    font-size: 62.5%;
}

@media (min-width: 992px) and (max-width: 1920px) {
    html {
    /* view scaling 992px to up */
    /* 1rem = 10px */
    font-size: 0.52vw;
}
}

:root {
    scroll-behavior: unset;

    /* color */
    --white: #ffffff;
    --grey: #adbac3;
    --blue: #1475e1;
    --dark-blue: #1a2c38;
    --body-color: #0f212e;

}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* body */
body {
    font-family: 'Proxima Nova';
    font-size: 1.6rem;
    font-weight: 400;
    background: var(--body-color);
    color: var(--white);
}


/* Heading */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--calsans);
}

.title_xl {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.20;
    color: var(--white);
}

.title_md {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.20;
    color: var(--white);
}

.title_sm {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.20;
    color: var(--blue);
    text-transform: capitalize;
}

.title_xl span {
    color: var(--blue);
}


/* text */

.text_md {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.40;
    color: var(--grey);
}

.text_base {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.40;
    color: var(--grey);
}


/* button */

.button {
    font-family: 'Proxima Nova';
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    color: var(--white);
    background: var(--blue);
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.6rem 2rem;
    border-radius: 0.8rem;
    transition: 0.2s all ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 200ms;
}

.button::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background: #9700b1;
    z-index: -1;
    left: -200%;
    transition: 500ms;
}

.button:hover::before {
    left: -50%;
}

.button:hover {
    transform: translateY(-0.4rem);
    box-shadow: 2px 6px 10px -2px #000;
}

.button .button_text {
    width: 4.7rem;
}


.button_outline {
    background: #14354D;
    outline: 1px solid #1475E1;
}

.button_transparent {
    background: transparent;
}


/* backt to top */

.scrolltop_btn {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--blue);
    padding: 1.2rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scrolltop_btn:hover:not(:active) {
    background: #9700b1;
    box-shadow: 2px 6px 10px -2px #000;
}

.scrolltop_btn img {
    width: 1.6rem;
}

.scrolltop_btn.show {
    opacity: 1;
    visibility: visible;
}



/* preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--body-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader img {
    width: 24rem;
}



/*====================== header section ========================*/

.header_section {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1024;
    background: var(--dark-blue);
    padding: 2.8rem 0rem;
    transition: 500ms;
}

.nav-up {
  top: -100%;
}

.nav-down {
  top: 0;
}

.header_wrapper {
    max-width: 151rem;
    width: 100%;
    margin: 0 auto;
}

.navbar-brand {
    display: block;
    width: 20.5rem;
}

.navbar-brand img {
    width: 100%;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7.7rem;
}

.menu li a {
    display: inline-block;
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.20;
    color: var(--white);
    text-transform: capitalize;
    transition: 0.2s all ease;
}

.menu li a:hover {
    color: var(--white);
    transform: translateY(-0.3rem);
}

.menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 0.3rem;
    background: var(--blue);
    transition: 300ms;
}

.menu li a:hover::after {
    width: 100%;
    bottom: -0.4rem;
}


/* navbar-toggler */
.navbar-toggler {
    background: rgba(26, 44, 56, 1);
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0rem;
    transition: 0.2s all ease;
    box-shadow: none !important;
}

.navbar-toggler img {
    width: 3.5rem;
}

.navbar-toggler:hover {
    opacity: 0.85;
}


/* offcanvas menu */

.offcanvas-start {
    width: 100% !important;
    background: rgba(26, 44, 56, 1);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.offcanvas_header {
    padding: 2.8rem 0;
}

.close_btn {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0rem;
    transition: 0.2s all ease;
}

.close_btn:hover {
    opacity: 0.85;
}

.close_btn img {
    width: 2.4rem;
}

.offcanvas-body .navbar-nav a {
    color: var(--white);
    font-size: 2.2rem;
    width: 100%;
    display: block;
    padding: 1.8rem 0rem;
    transition: 0.2s all ease;
    border-bottom: 0.1rem solid var(--white);
}

.offcanvas-body .navbar-nav a:hover {
    padding-left: 1.5rem;
}

.offcanvas_bottom {
    padding: 4rem 0;
}


/*================= Hero Section  ===================*/

.hero_section {
    padding: 11rem 0;
}

.hero_content {
    max-width: 58.8rem;
}

.hero_content h1 {
    text-transform: capitalize;
    padding-top: 0.8rem;
    padding-bottom: 1.6rem;
}

.hero_content .title_xl span {
    display: inline-block;
    position: relative;
}

.hero_content .title_shape {
    position: absolute;
    left: 0;
    bottom: -0.6rem;
    width: 100%;
}

.hero_content p {
    padding-bottom: 4rem;
}

.hero_video {
    user-select: none;
    pointer-events: none;
    border-radius: 2rem;
    width: 100%;
}




/*================= About section ===================*/

.about_section {
    padding: 3.6rem 0;
    position: relative;
}

.about_wrapper {
    background: #172834;
    border: 0.1rem solid rgb(255, 255, 255, 0.15);
    border-radius: 3.2rem;
    padding: 8rem;
    position: relative;
}

.about_wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7.3rem;
    width: 47.5rem;
    height: 47.5rem;
    border-radius: 50%;
    background: #E001F0;
    filter: blur(80px);
    opacity: 0.26;
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

.about_title {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 5.6rem;
}

.about_title .title_xl {
    padding-bottom: 2.4rem;
}

.about_title p {
    max-width: 137rem;
    margin: 0 auto;
}

.about_box {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about_box .icon {
    width: 8rem;
    margin: auto;
    transition: 300ms;
}

.about_box:hover .icon {
    transform: scale(1.1);
}

.about_box .box_content {
    max-width: 37rem;
    margin: 0 auto;
}

.about_box .box_content .title_md {
    padding: 3.2rem 0 1.2rem;
}

.about_shape {
    content: "";
    max-width: 47.5rem;
    width: 100%;
    position: absolute;
    bottom: -15rem;
    left: 50%;
    transform: translateX(-50%);
}



/*================= Playable section ===================*/

.playable_section {
    padding: 12rem 0 7.5rem;
}

.playable_wrapper {
    text-align: center;
}

.playable_wrapper .title_xl {
    padding-bottom: 5.6rem;
}

.playable_wrapper .row {
    --bs-gutter-x: 3.2rem;
    --bs-gutter-y: 3.2rem;
}

.playable_item {
    background: rgba(23, 40, 52, 1);
    padding: 5.6rem 2.4rem;
    border-radius: 3.2rem;
    border: 1px solid rgb(255, 255, 255, 0.15);
    height: 100%;
    transition: 300ms;
}

.playable_item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 2px 6px 10px -2px #000;
}

.playable_item h4 {
    text-transform: capitalize;
    padding-bottom: 1.6rem;
}

.playable_item p {
    max-width: 45rem;
    margin: 0 auto;
}



/*================= Slot section ===================*/

.slot_section {
    padding: 10rem 0;
    position: relative;
}

.slot_section .title_xl {
    text-align: center;
    padding-bottom: 5.6rem;
}

.solt-slider {
    position: relative;
}

.solt-slider::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10rem;
    width: 47.5rem;
    height: 47.5rem;
    border-radius: 50%;
    background: #E001F0;
    filter: blur(75px);
    opacity: 0.26;
    mix-blend-mode: color-dodge;
    margin-left: -25rem;
    z-index: 11;
}

.solt-slider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -23rem;
    width: 59.8rem;
    height: 59.8rem;
    border-radius: 50%;
    background: #1475E1;
    filter: blur(80px);
    opacity: 0.26;
    mix-blend-mode: color-dodge;
    margin-left: 15rem;
    z-index: 11;
}

.slot_swiper .swiper-wrapper {
    align-items: center;
    height: 32rem;
}

.slot_swiper .swiper-slide {
    width: 26.4rem;
    height: 26.4rem;
    border-radius: 1.3rem;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0.4;
    padding: 1.2rem;
}

.slot_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.6rem;
}

.slot_swiper .swiper-slide-active {
    opacity: 1;
    width: 32rem;
    height: 32rem;
}




/*================= Create section ===================*/


.create_section {
    padding-top: 10rem;
}

.create_wrapper {
    max-width: 144rem;
    margin: 0 auto;
}

.craete_item {
    position: relative;
    max-width: 73.6rem;
}

.craete_item::before {
    content: '';
    position: absolute;
    left: -6.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 37.5rem;
    height: 37.5rem;
    border-radius: 50%;
    background: #378DEC33;
    filter: blur(80px);
    mix-blend-mode: color-dodge;
    z-index: -1;
}

.craete_item img {
    width: 100%;
}

.create_content h3 {
    padding-bottom: 1.6rem;
}

.create_content p {
    max-width: 47rem;
}



/*================= hero section ===================*/

.choose_section {
    padding-top: 12rem;
    position: relative;
}

.choose_wrapper {
    text-align: center;
    background: rgba(23, 40, 52, 1);
    padding: 8rem;
    border-radius: 3.2rem;
    position: relative;
    border: 1px solid rgb(255, 255, 255, 0.15);
}

.choose_wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12.3rem;
    width: 57.8rem;
    height: 58rem;
    border-radius: 50%;
    background: #0191F0;
    filter: blur(80px);
    opacity: 0.26;
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

.choose_wrapper .row {
    --bs-gutter-x: 2.4rem;
    --bs-gutter-y: 5.6rem;
}

.choose_wrapper .title_xl {
    padding-bottom: 5.6rem;
}

.choose_box {
    position: relative;
    z-index: 1;
}

.choose_box .item_icon {
    width: 8rem;
    margin: auto;
    transition: 300ms;
}

.choose_box:hover .item_icon {
    transform: scale(1.1);
}

.choose_box .item_text h4 {
    text-transform: capitalize;
    padding: 3.2rem 0 1.2rem;
}




/*================= Built section ===================*/


.built_section {
    padding-top: 11.5rem;
    position: relative;
}

.built_content {
    padding-left: 8rem;
}

.built_content h3 {
    text-transform: capitalize;
    padding-bottom: 1.6rem;
}

.built_content p {
    max-width: 60rem;
}

.built_img {
    position: relative;
    max-width: 77rem;
    margin-left: auto;
}

.built_img::after {
    content: '';
    position: absolute;
    right: -8.6rem;
    bottom: 8rem;
    width: 31.8rem;
    height: 31.8rem;
    border-radius: 50%;
    background: #378DEC33;
    filter: blur(80px);
    mix-blend-mode: color-dodge;
    z-index: -1;
}

.built_img img {
    width: 100%;
    z-index: 11;
    position: relative;
}




/*================= Watch section ===================*/


.watch_section {
    padding-top: 14rem;
    overflow: hidden;
}

.watch_title {
    text-align: center;
    z-index: 11;
    position: relative;
}

.watch_title h3 {
    padding-bottom: 2.4rem;
}

.watch_warpper {
    position: relative;
}

.watch_warpper .banner {
    width: 100%;
}

.watch_warpper .play_button {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    outline: none;
    width: 21rem;
    height: 21rem;
    border-radius: 50%;
    background: #1475E1;
}

.watch_warpper .play_button:hover {
    background: #000;
}



/*================= Future section ===================*/

.future_section {
    padding: 27.5rem 0 13rem;
}

.future_wrapper {
    border: 1px solid rgb(255, 255, 255, 0.15);
    background-color: rgba(23, 40, 52, 1);
    background-image: url(../img/grid-lines.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3.2rem;
    padding: 8rem 8.4rem;
    position: relative;
}

.future_img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2.5rem;
    width: 82rem;
}

.future_img::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 47.5rem;
    height: 47.5rem;
    border-radius: 50%;
    opacity: 0.26;
    background: #9101F0;
    filter: blur(80px);
    mix-blend-mode: color-dodge;
    z-index: -1;
}

.future_content p {
    padding: 0.8rem 0 5.6rem;
    max-width: 50rem;
}

.future_button_group {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}



/*================= footer section ===================*/

.footer_navbar {
    padding: 5.7rem 0 4.4rem;
}

.footer_navbar .top_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.footer_logo {
    width: 20.5rem;
    display: block;
}

.footer_logo img {
    width: 100%;
}

.footer_list {
    display: flex;
    align-items: center;
    gap: 6.4rem;
    flex-wrap: wrap;
}

.footer_list a {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.20;
    color: var(--grey);
}

.footer_list a:hover {
    color: var(--white);
    transform: translateY(-0.3rem);
}

.footer_list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 0.3rem;
    background: var(--blue);
    transition: 300ms;
}

.footer_list a:hover::after {
    width: 100%;
    bottom: -0.4rem;
}

.social_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    padding-top: 2.4rem;
}

.social_links a {
    display: block;
    width: 4rem;
    opacity: 0.8;
    transition: 300ms;
}

.social_links a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.social_links a img {
    width: 100%;
}

/* copyright */

.copyright {
    background: rgba(23, 40, 52, 1);
    padding: 3.3rem 0;
}

.copyright h4,
.copyright_text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.20;
    color: var(--grey);
}

.copyright h4 {
    text-transform: uppercase;
}

.subscribe_form {
    display: flex;
    align-items: center;
    gap: 0;
}

.subscribe_form input,
.subscribe_form button {
    font-size: 1.8rem;
    line-height: 1.20;
    color: var(--white);
}

.subscribe_form input {
    width: 21.6rem;
    height: 5.1rem;
    background: transparent;
    font-weight: 400;
    border: 1px solid rgb(255, 255, 255, 0.5);
    padding: 0 2rem;
    border-radius: 0.8rem 0 0 0.8rem;
    text-transform: capitalize;
}

.subscribe_form input::placeholder {
    color: var(--white);
}

.subscribe_form button {
    font-weight: 700;
    background: var(--blue);
    padding: 1.6rem 2rem;
    text-transform: uppercase;
    border: none;
    border-radius: 0 0.8rem 0.8rem 0;
    transition: 0.2s all ease;
}

.subscribe_form button:hover {
    background: rgb(255, 255, 255, 0.5);
    color: var(--white);
}