/*define colors*/
@font-face {
    font-family: "roboto_light";
    src: url("fonts/Roboto-Light.woff2");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "roboto_bold";
    src: url("fonts/Roboto-Bold.woff2");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "roboto_Black";
    src: url("fonts/Roboto-Black.woff2");
    font-weight: normal;
    font-style: normal;
}

body{
    --primary: #4829a6;
    --primary-text: #6146af;
    --primary-mouseover: #3e17a9;
    --light-text: white;
    --background: #000217;
    --trasparent-background-95: rgb(0, 2, 23, 0.95);
    --trasparent-background-30: rgb(0, 2, 23, 0.3);
    --footer-background: rgb(14, 17, 40, 0.4);
    --white: white;
    --border: 1px solid #1c2231;
    --transparent-border: 1px solid rgb(255, 255, 255, 0.3);
}
body{
    background: var(--background);
    font-family: roboto_light, sans-serif;
    overflow-x: hidden;
}
p, li, a, h1, h2, h3, h4{
    color: var(--light-text);
}
h1, h2, h3, h4{
    font-family: roboto_bold, sans-serif;
}
h4{
    font-size: 1rem;
}
/*reset defaults*/
ul, p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none!important;
}

/*containers*/
.full_width{
    display: flex;
    width: 100%;
}
.contents{
    display: flex;
    width: 1100px;
    margin: 0 auto;
}
.main_contents{
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}
.page_contents{
    display: flex;
    flex-direction: column;
    flex: 1;
}

/*animations*/
@-webkit-keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slideInFromRight {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}
@-moz-keyframes slideInFromRight {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}
@-o-keyframes slideInFromRight {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}
@keyframes slideInFromRight {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}

@-webkit-keyframes slideOutToRight {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}
@-moz-keyframes slideOutToRight {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}
@-o-keyframes slideOutToRight {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}
@keyframes slideOutToRight {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}

/*overall styles*/
.primary_buttons, .primary_outline_buttons, .text_buttons, .white_outline_buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    background: var(--primary);
    border-radius: 15px;
    text-decoration: none;
    height: 47px;
    padding: 0 20px;
    cursor: pointer;
}
.primary_buttons:hover{
    background: var(--primary-mouseover);
}
.primary_outline_buttons{
    color: var(--primary-text);
    background: transparent;
    border: 1px solid var(--primary-text);
}
.primary_outline_buttons:hover{
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
}
.white_outline_buttons{
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
}
.text_buttons{
    color: var(--light-text);
    background: transparent;
}
.border_bottom{
    border-bottom: var(--border);
}
.border_top{
    border-top: var(--border);
}
.input{
    color: var(--light-text);
    background: transparent;
    border: var(--transparent-border);
    height: 47px;
    border-radius: 15px;
    padding: 0 20px;
}
.bold_text{
    font-family: roboto_Black, sans-serif;
}
.two_part_h3{
    font-size: 1.5rem;
    font-family: roboto_light, sans-serif;
}
.two_part_h3 span{
    font-size: 2rem;
    font-family: roboto_Black, sans-serif;
}
.two_part_h3_same_size{
    font-size: 2rem;
    font-family: roboto_light, sans-serif;
}
.two_part_h3_same_size span{
    font-size: 2rem;
    font-family: roboto_Black, sans-serif;
}

/*header styles*/
#header{
    position: absolute;
    height: 89px;
    background: var(--trasparent-background-30);
    z-index: 100;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.header_left_section{
    display: flex;
    align-items: center;
    gap:10px;
}
.logo{
    height: 25px;
    width: 126px;
}
.menu{
    margin-left: 30px;
    display: flex;
    justify-content: space-between;
    gap:10px;
}
.menu a{
    text-decoration: none;
}
.menu li a:hover{
    color: var(--primary-text)!important;
    font-family: roboto_bold, sans-serif!important;
}
.mobile_menu{
    display: none;
    position: relative;
}
.mobile_menu_items{
    display: none;
    position: fixed;
    gap:10px;
    flex-direction: column;
    width: 90%;
    height: 100%;
    right: -90%;
    top:0;
    background: var(--trasparent-background-95);
    padding: 30px;
    z-index: 10;
    border-left: var(--transparent-border);
    -webkit-animation: slideInFromRight 0.3s ease-in;
    -moz-animation: slideInFromRight 0.3s ease-in;
    -o-animation: slideInFromRight 0.3s ease-in;
    animation: slideInFromRight 0.3s ease-in;
    animation-fill-mode: forwards;
}
.mobile_main_menu{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}
.mobile_main_menu li{
    display: flex;
}
.mobile_menu_items_Close{
    -webkit-animation: slideOutToRight 0.3s ease-in;
    -moz-animation: slideOutToRight 0.3s ease-in;
    -o-animation: slideOutToRight 0.3s ease-in;
    animation: slideOutToRight 0.3s ease-in;
    animation-fill-mode: forwards;
}
.mobile_menu .icon{
    width: 28px;
    height: 28px;
}
.mobile_menu .icon img{
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.menu li{
    display: flex;
}
.links{
    display: flex;
    gap:10px;
    justify-content: space-between;
}

/*home styles*/
.home_slides{
    display: flex;
    height: 100dvh;
}
.home_slide_1{
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    background-size: cover;
}
.home_slide_1 img{
    /*position: absolute;*/
    width: 45vw;
    -webkit-animation: fadeInFromNone 1.8s ease-in;
    -moz-animation: fadeInFromNone 1.8s ease-in;
    -o-animation: fadeInFromNone 1.8s ease-in;
    animation: fadeInFromNone 1.8s ease-in;
}
.home_slide_1 p, .home_slide_2 p, .home_slide_3 p, .home_slide_4 p{
    opacity: 0;
    -webkit-animation: fadeInFromNone 0.6s ease-in;
    -moz-animation: fadeInFromNone 0.6s ease-in;
    -o-animation: fadeInFromNone 0.6s ease-in;
    animation: fadeInFromNone 0.6s ease-in;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}
.home_slide_1 a, .home_slide_3 a, .home_slide_4 a{
    opacity: 0;
    -webkit-animation: fadeInFromNone 0.6s ease-in;
    -moz-animation: fadeInFromNone 0.6s ease-in;
    -o-animation: fadeInFromNone 0.6s ease-in;
    animation: fadeInFromNone 0.6s ease-in;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
}
.slide1_back{
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 8%;
    z-index: -1;
}
.slide3_back{
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 40%;
    z-index: -1;
}
.home_slide_2{
    display: flex;
    width: 100%;
    align-items: center;
    background-size: cover;
}
.slide3_back{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.slide3_back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 90%;
}
.home_slide_1 h1, .home_slide_2 h2, .home_slide_3 h2, .home_slide_4 h2{
    font-family: roboto_light, sans-serif;
    font-size: 2rem;
    -webkit-animation: fadeInFromNone 0.6s ease-in;
    -moz-animation: fadeInFromNone 0.6s ease-in;
    -o-animation: fadeInFromNone 0.6s ease-in;
    animation: fadeInFromNone 0.6s ease-in;
}
.home_slide_3 h2, .home_slide_4 h2{
    font-size: 1.5rem!important;
    color: var(--primary-text);
    font-family: roboto_bold, sans-serif;

}
.home_slide_3 h2 span, .home_slide_4 h2 span{
    color: var(--light-text);
}
.home_slide_1 h1 span, .home_slide_2 h2 span, .home_slide_3 h2 span, .home_slide_4 h2 span{
    font-family: roboto_Black, sans-serif;
    font-size: 4rem;
}
.statistics{
    background: linear-gradient(0deg, rgba(10,13,35,0.6) 0%, rgba(14,17,40,0.9) 100%);
    border-radius: 25px;
}
.statistics .value{
    font-size: 1.5rem;
    font-family: roboto_Black, sans-serif;
}
.statistics_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.statistics_item img{
    width: 35px;
    height: 35px;
}
.sell_assets{
    border-radius: 15px;
    overflow: hidden;
}
.sell_assets img{
    width: 100%;
}
.join_us{
    height: 100vh;
    z-index: 1;
    justify-content: center;
}
.join_us_back{
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: 0;
}
.join_us_back img{
    opacity: 10%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.join_us_back div {
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(0,2,23,1) 0%, rgba(0,2,23,1) 40%, rgba(0,2,23,0) 100%);
    z-index: 1;
}
.price_card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--footer-background);
    padding: 50px 10px;
    border-radius: 15px;
    overflow: hidden;
}
.pricing{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price_card h5{
    font-size: 1.5rem;
    font-family: roboto_Black, sans-serif;
    color: var(--light-text);
    margin-top: 15px;
    margin-bottom: 0;
}
.price_card span{
    font-size: .8rem;
    font-family: roboto_light, sans-serif;
    color: var(--light-text);
    text-transform: uppercase;
}
.price_card img{
    width: 60px;
    height: 60px;
}
.price, .price span{
    font-family: roboto_Black, sans-serif;
    margin-bottom: 0;
}
.price span:nth-child(1), .price span:nth-child(3){
    font-size: 1rem;
}
.price span:nth-child(2){
    font-size: 2rem;
}
.period{
    font-size: 0.8rem;
    text-space: 5px;
    margin-top: -10px;
    text-transform: uppercase;
}
/*footer styles*/
.footer_container{
    background: var(--footer-background);
}
.footer{
    padding: 50px 0;
}
.copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: var(--background);
}
.list_items{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.list_items a{
    color: var(--light-text)!important;
}
.stay_in_touch, .downloads{
    display: flex;
    flex-direction: column;
}
.stay_in_touch div{
    display: flex;
    gap: 10px;
}
.stay_in_touch div img{
    width: 42px;
    height: 42px;
}
.downloads div {
    display: flex;
    justify-content: space-between;
}
.downloads div a {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.downloads div img{
    width: 22px;
    height: 22px;
}

/*responsive*/
@media only screen and (max-width: 1100px) {
    .contents{
        width: 90%!important;
        margin: 0 5%!important;
    }
}
@media only screen and (max-width: 768px) {
    .contents{
        width: 90%!important;
        margin: 0 5%!important;
    }
    .menu, .links{
        display: none;
    }
    .mobile_menu{
        display: flex!important;
    }
    .home_slide_1 img{
        width: 100%;
    }
    .home_slide_1 h1, .home_slide_2 h2, .home_slide_3 h2, .home_slide_4 h2{
        font-size: 1.2rem;
    }
    .home_slide_1 h1 span, .home_slide_2 h2 span, .home_slide_3 h2 span, .home_slide_4 h2 span{
        font-size: 2.5rem;
    }
    .slide3_back img {
        position: absolute;
        left: -700px;
        width: auto!important;
        object-fit: initial!important;
        opacity: 50%;
    }
}