* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #F2F2F2;
    ;
}

body {


    font-family: 'Manrope', sans-serif;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;

}


html,
body {
    width: 100vw;
    min-width: 100vw;
    overflow-x: hidden;
}


::-webkit-scrollbar {
    width: 5px;
    background-color: #ffffff;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #AB9FF2;
    width: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: #ffffff;
}


.container {
    width: 100%;
    max-width: 1280px;
    display: block;
    margin: 0 auto;
}


/*HEADER*/

.header {
    height: 70px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

.rotate{
    transform: rotate(180deg);
}




/*MOBILE*/

.mobile_header {
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #3C315B;
}

.mobile_header_items {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.mobile_header_item:first-child {
    margin-right: 10px;
}

.mobile_header_item:last-child {
    margin-left: auto;
}

.mobile_header_item_logo {
    width: 100%
}

.mobile_header_item_tittle {
    text-transform: uppercase;
    color: #FFF;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.mobile_header_item_burger {
    cursor: pointer;
    transition: all .5;
}

.mobile_header_item_burger_line {
    width: 30px;
    height: 4px;
    background: #fff;
    margin-bottom: 6px;
    border-radius: 5px;

}

.mobile_header_item_burger:hover .mobile_header_item_burger_line {
    background: #AB9FF2;
}

.mobile_header_item_burger_line:last-child {
    margin-bottom: 0px;
}




.mobile_menu_overlay,
.mobile_menu_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mobile_menu_container,
.mobile_menu_container ul li ul {
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms;
}

.mobile_menu_overlay {
    display: none;
    cursor: pointer;
    z-index: 10200;
    background: rgba(0, 0, 0, 0.5);
}

.mobile_menu_container {
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
    width: 300px;
    overflow: hidden;
    z-index: 10201;
    background: #1c1c1c;
}

.mobile_menu_container.loaded {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.mobile_menu_container .mobile_menu_content {
    overflow: auto;
    max-height: 100%;
    padding-bottom: 30px;
}

.mobile_menu_container ul {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #fff;
}

.mobile_menu_container ul li {
    list-style: none;
}

.mobile_menu_container ul li a {
    display: block;
    padding: 15px 20px;
    line-height: 20px;
    background: #1c1c1c;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.mobile_menu_container ul li a.parent {
    padding-right: 50px;
    background: #3884da url("images/arrow_right.svg") right 20px center no-repeat;
    background-size: 20px;
}

.mobile_menu_container ul li a.parent:hover {
    background: #3c8de8 url("images/arrow_right.svg") right 20px center no-repeat;
    background-size: 20px;
}

.mobile_menu_container ul li a.back {
    padding-left: 50px;
    background: #3c8de8 url("images/arrow_left.svg") left 20px center no-repeat;
    background-size: 20px;
    box-sizing: border-box;
    min-height: 50px;
}

.mobile_menu_container ul li a.back:hover {
    background: #3c8de8 url("images/arrow_left.svg") left 20px center no-repeat;
    background-size: 20px;
}

.mobile_menu_container ul li a:hover {
    background: #AB9FF2;
}

.mobile_menu_container ul li ul {
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3884da;
    z-index: 2;
}

.mobile_menu_container ul li ul.loaded {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.mobile_menu_container ul li ul.activity {
    overflow-y: auto;
    overflow-x: hidden;
}

@media (max-width: 320px) {
    .mobile_menu_container {
        width: 240px;
    }
}

.mobile_up_items {
    padding-top: 20px;
    border-bottom: 1px solid #fff;
}


.mobile_up_items_logo {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}







@media (min-width:800px) {
    .mobile_header {
        display: none;
    }
}

@media (max-width:799px) {
    .header {
        display: none !important;
    }

    #header.default {
        display: none !important;
    }
}

@media (min-width:1100px) {
    .header {
        display: block !important;
    }

    #header.default {
        display: block !important;
    }
}





/*HEADER*/

.header {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    margin: 0;
}

.header_items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
}

.header_up {
    width: 100%;
    height: auto;
    background: #3C315B;
}

.header_item:last-child {
    margin-left: auto;
}

.header_item_nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1200px) {
    .header_item_nav {
        display: none;
    }
}

.header_item a {}

.header_item_logo {
    vertical-align: middle;
}

.header_item_button {
    color: #3C315B;
    font-family: 'Manrope', sans-serif;
    padding: 6px 18px;
    border-radius: 18px;
    background: #AB9FF2;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    cursor: pointer;
    transition: all .5s;
    line-height: normal;
}

.header_item_button:hover {
    opacity: .5;
}

.header_navigations {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 42px;
}

.header_navigation {
    color: #F2F2F2;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header_navigation:last-child {
    margin-right: 0px;
}

.header_navigation a {
    color: #F2F2F2;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all .5s;
}

.header_navigation:hover a {
    color: #AB9FF2;
}

.header_bottom_item_button {
    color: #201E29;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 6px 18px;
    border-radius: 18px;
    background: #AB9FF2;
    width: fit-content;
    cursor: pointer;
    transition: all .5s;
    text-transform: uppercase;
}

.header_bottom_item_button:hover {}

.header_bottom_item_button img {
    vertical-align: middle;
    margin-left: 10px;
}


/*INTRO*/

.intro {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 30px;
}

.intro_items {
    display: flex;
    align-items: center;
    padding-top: 147px;
}

.intro_item:last-child {
    margin-left: auto;
    position: relative;
}

.intro_item_tittle {
    color: #201E29;
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 63px */
}

.intro br {}

.intro span {
    width: 100%;
    padding: 10px;
    height: 65px;
    background: url(/img/landing/intro_span.png) center no-repeat;
    background-size: 100% 100%;
    color: #3C315B;
}

.intro_item_subtittle {
    margin-top: 25px;
    color: #201E29;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.intro_item_buttons {
    margin-top: 37px;
    display: flex;
    align-items: center;
}

.intro_item_button {
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 26px;
    border-radius: 8px;
    background: #201E29;
    cursor: pointer;
    transition: all .5s;
}

.intro_item_button:hover {
    background: #AB9FF2;
}

.intro_item_button:last-child {
    margin-left: 16px;
    border-radius: 8px;
    border: 1px solid #201E29;
    background: transparent;
    color: #201E29;
}

.intro_item_button:last-child:hover {
    border: 1px solid #AB9FF2;
    color: #AB9FF2;
}

.intro_item_img_bg {
    position: absolute;
    left: calc(50% - 585px);
    top: calc(50% - 520px);
    z-index: -1;
}

.intro_item_img {
    vertical-align: middle;
    width: 550px;
}

.intro_img_left {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.intro_img_right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}



/*POWERFUL*/

.powerful {
    width: 100%;
    height: auto;
}

.powerful_tittle {
    color: #201E29;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.powerful_subtittle {
    margin-top: 2px;
    color: #201E29;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.powerful_items {
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.powerful_item {
    width: 100%;
    height: auto;
    min-height: 419px;
    border-radius: 14px;
    background: #F2F4F9;
    margin-right: 20px;
}

.powerful_item:last-child {
    margin-right: 0px;
}

.powerful_item_content {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 35px;
    padding-bottom: 35px
}

.powerful_item_img {
    vertical-align: middle;
}

.powerful_item_img br {}

.powerful_item_tittle {
    margin-top: 43px;
    color: #201E29;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.powerful_item_tittle br {}

.powerful_item_text {
    color: #808EB5;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-top: 20px;
}

.powerful_item_button {
    margin-top: 54px;
    padding: 6px;
    border-radius: 18px;
    background: #201E29;
    color: #FFF;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    transition: all .5s;
}

.powerful_item_button:hover {
    background: #AB9FF2;
}



/*UNLOCK*/

.unlock {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 80px;
}

.unlock_rect {
    width: 100%;
    height: auto;
    background: #AB9FF2;
    border-radius: 35px;
}

.unlock_rect_content {
    padding: 0px 40px 0px 40px;
}

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

.unlock_rect_item {
    margin-left: auto;
}

.unlock_rect_item:first-child {
    margin-left: 0px;
    max-width: 345px;
    width: 100%;
}

.unlock_rect_item_tittle {
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.unlock_rect_item_tittle span {
    width: 100%;
    height: 72px;
    background: url(/img/landing/unlock_text_bg.png)center no-repeat;
    background-size: 100% 100%;
    padding: 10px;
    color: #AB9FF2;
}

.unlock_rect_item_img {
    vertical-align: middle;
}

.unlock_rect_item_right_tittle {
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.unlock_rect_item_right_text {
    margin-top: 48px;
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 25.6px */
    max-width: 305px;
}

.unlock_img_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}


/*COLLABORATING*/

.collaborating {
    width: 100%;
    height: auto;
    margin-top: 80px;
    background: #F2F4F9;
    padding-top: 80px;
    padding-bottom: 80px;
}

.collaborating_tittle {
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.collaborating_text {
    margin-top: 5px;
    color: #808EB5;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 25.6px */
}

.collaborating_items {
    display: flex;
    align-items: center;
    margin-top: 40px;
    justify-content: center;
}

.collaborating_item {
    margin-right: 20px;
    padding: 20px 24px;
    border-radius: 12px;
    background: #FFF;
    cursor: pointer;
    transition: all .5s;
}

.collaborating_item:nth-child(2) {
    padding-top: 17px;
    padding-bottom: 17px;
}

.collaborating_item:last-child {
    padding-top: 17px;
    padding-bottom: 17px;
}

.collaborating_item:last-child {
    margin-right: 0px;
}

.collaborating svg {
    vertical-align: middle;
}

.collaborating_item:hover {
    background: #AB9FF2;
}

.collaborating_item svg path {
    transition: all .5s;
}

.collaborating_item:hover svg path:last-child {
    fill: #fff;
}

.collaborating_item:hover svg path {
    fill: #fff;
}


/*TEAM*/


.team {
    margin-top: 100px;
    width: 100%;
    height: auto;
}

.team_tittle {
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.team_items {
    display: flex;
    align-items: center;
    margin-top: 50px;
    justify-content: center;
}

.team_items_up {
    margin-top: 40px;
}

.team_item {
    margin-left: 70px;
}

.team_item:first-child {
    margin-left: 0px;
}

.team_item_avatar {
    width: 164px;
    height: 164px;
    border-radius: 1000px;
    display: block;
    margin: 0 auto;
    border: 8px solid #F2F4F9;
}

.team_item_avatar_img {
    vertical-align: middle;
    width: 100%;
    border-radius: 999px;
}

.team_item_name {
    margin-top: 20px;
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.team_item_spec {
    margin-top: 10px;
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/*INVESTORS*/

.investors {
    width: 100%;
    height: auto;
    background: #F2F4F9;
    padding-top: 80px;
    padding-bottom: 45px;
    margin-top: 100px;
}

.investors_tittle {
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.investors_items {
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.investors_item {
    margin-right: 65px;
    margin-bottom: 35px;
}



/*PLATFORM*/

.platform {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.platform_tittle {
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.platform_subtittle {
    margin-top: 2px;
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.platform_items {
    display: flex;
    align-items: flex-start;
    margin-top: 80px;
}

.platform_item {
    width: 100%;
    height: auto;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0px 4px 50px 0px rgba(171, 159, 242, 0.15);
    margin-right: 24px;
    min-height: 419px;
}

.platform_item:last-child {
    margin-right: 0px;
}

.platform_item_content {
    padding: 25px;
}

.platform_item_rect {
    width: 100%;
    height: auto;
    border-radius: 14px;
    background: #F2F4F9;
}

.platform_item_rect br {}

.platform_item_rect_content {
    padding: 36px 118px;
}

.platform_item_rect_img {
    vertical-align: middle;
    display: block;
    margin: 0 auto;
}

.platform_item_tittle {
    margin-top: 25px;
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.platform_item_tittle br {}

.platform_item_text {
    margin-top: 20px;
    color: #808EB5;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 22.4px */
}

.platform_buttons {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform_button {
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    padding: 10px 26px;
    border-radius: 8px;
    background: #201E29;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    transition: all .5s;
}

.platform_button:hover {
    opacity: .5;
}

.platform_button:last-child {
    margin-left: 16px;
    background: #AB9FF2;
    color: #fff;
}


/*FAQ*/

.faq {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq_tittle {
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.faq_subtittle {
    margin-top: 2px;
    color: #201E29;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.faq_items {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.faq_item {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 14px;
    background: #FFF;
    border: 1px solid rgba(171, 159, 242, 0.2);
    box-shadow: 0px 4px 50px 0px rgba(171, 159, 242, 0.1);
    overflow: hidden;
}

.faq_item_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all .3s;
}

.faq_item_header:hover {
    background: #F2F4F9;
}

.faq_item_question {
    color: #201E29;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    flex: 1;
}

.faq_item_arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform .3s;
}

.faq_item.faq_item_open .faq_item_arrow {
    transform: rotate(180deg);
}

.faq_item_content {
    display: none;
}

.faq_item_answer {
    padding: 20px 30px 25px 30px;
    color: #808EB5;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}


/*FOOTER*/

.footer {
    width: 100%;
    height: auto;
    background: #3C315B;
    padding-top: 60px;

    padding-bottom: 30px;
}

.footer_items {
    display: flex;
    align-items: flex-start;
    padding-bottom: 112px;
}

.footer_item {
    margin-left: auto;
}

.footer_item:last-child {
    padding-left: 60px;
    margin-left: auto;
    border-left: 1px solid #32394D;
}

.footer_item:first-child {
    margin-left: 0px;
}

.footer_item_logo {
    vertical-align: middle;
}

.footer_item_navigation {
    list-style: none;
    margin-bottom: 20px;
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all .5s;
}

.footer_item_navigation a {
    transition: all .5s;
}

.footer_item_navigation:hover a {
    color: #AB9FF2;
}

.footer_item_logo a {}

.footer_item_first_text {
    margin-top: 18px;
    color: #616A83;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 19.6px */
    max-width: 163px;
}

.footer_item_tittle {
    margin-bottom: 30px;
    color: #616A83;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer_item_last_text {
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 294px;
}

.footer_item_last_inputs {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.footer_item_last_input {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #32394D;
    background: transparent;
    outline: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer_item_last_input::placeholder {
    color: #616A83;

}

.footer_item_last_iputs_button {
    margin-left: 12px;
    border-radius: 8px;
    border: 1px solid #FFF;
    cursor: pointer;
    transition: all .5s;
}

.footer_item_last_iputs_button:hover {
    opacity: .5;
}

.footer_item_last_iputs_button_img {
    vertical-align: middle;
    display: block;
    margin: 0 auto;
    padding: 10px 14px;
}

.footer_bottom {
    width: 100%;
    height: auto;
    border-top: 1px solid #32394D;
}

.footer_bottom_items {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.footer_bottom_item:last-child {
    margin-left: auto;
}

.footer_bottom_text {
    color: #616A83;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer_bottom_item_nav {
    color: #616A83;
    text-align: right;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: all .5s;
}

.footer_bottom_item_nav:hover {
    opacity: .5;
    color: #AB9FF2;
}

.footer_bottom_item_nav:last-child {
    margin-left: 30px;
}


@media (min-width:320px) and (max-width: 374px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .intro_items {
        flex-direction: column;
        padding-top: 100px;
    }

    .intro_item:last-child {
        margin-left: 0px;
    }

    .intro_item_tittle {
        font-size: 25px;
        text-align: center;
    }

    .intro span {
        padding: 5px
    }

    .intro_item_subtittle {
        font-size: 18px;
        text-align: center;
    }

    .intro_item_buttons {
        margin-top: 30px;
        justify-content: center;
    }

    .intro_item_button {
        font-size: 14px;
        padding: 8px 14px;
    }

    .intro_item_img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 419px;
    }

    .powerful_tittle {
        font-size: 28px;
    }

    .powerful_subtittle {
        font-size: 24px;
    }

    .powerful_items {
        margin-top: 30px;
        flex-direction: column;
    }

    .powerful_item {
        margin-right: 0px;
        min-height: auto;
        margin-bottom: 30px;
    }

    .powerful_item_img {
        display: block;
        margin: 0 auto;
    }

    .powerful_item_tittle {
        text-align: center;
        font-size: 20px;
        margin-top: 20px;
    }

    .powerful_item_text {
        text-align: center;
    }

    .powerful_item_button {
        margin-top: 30px;
        font-size: 12px;
    }

    .unlock {
        margin-top: 30px;
    }

    .unlock_rect_content {
        padding: 20px;
    }

    .unlock_rect_item_tittle {
        font-size: 30px;
        text-align: center;
    }

    .unlock_rect_items {
        flex-direction: column;
    }

    .unlock_rect_item_img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 455px;
    }

    .unlock_rect_item_right_tittle {
        margin-top: 20px;
        text-align: center;
        font-size: 20px;
    }

    .unlock_rect_item_right_text {
        font-size: 16px;
        text-align: center;
        margin-top: 20px;
    }

    .collaborating {
        margin-top: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .collaborating_tittle {
        font-size: 28px;
    }

    .collaborating_text {
        font-size: 16px;
    }

    .collaborating_items {
        flex-wrap: wrap;
    }

    .collaborating_item {
        margin-bottom: 20px;
        margin-right: 0px;
    }

    .team {
        margin-top: 30px;
    }

    .team_tittle {
        font-size: 28px;
    }

    .team_items {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .team_item {
        padding-bottom:
    }

    .investors {
        margin-top: 30px;
        padding-top: 30px;
    }

    .investors_tittle {
        font-size: 28px;
    }

    .investors_items {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .platform {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .platform_tittle {
        font-size: 28px;
    }

    .platform_subtittle {
        margin-top: 10px;
    }

    .platform_item_rect_content {
        padding: 36px;
    }

    .platform_items {
        flex-direction: column;
    }

    .platform_item {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .platform_item_content {
        padding: 15px;
    }

    .platform_buttons {
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .platform_button:first-child {
        margin-bottom: 10px;
    }

    .powerful_item_content {
        padding: 20px;
    }

    .platform_button:last-child {
        margin-left: 0px;
    }

    .platform_button {
        width: 100%;
        text-align: center;
    }

    .faq {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .faq_tittle {
        font-size: 28px;
    }

    .faq_subtittle {
        margin-top: 10px;
    }

    .faq_items {
        margin-top: 30px;
    }

    .faq_item_header {
        padding: 20px;
    }

    .faq_item_question {
        font-size: 16px;
    }

    .faq_item_answer {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }

    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer_items {
        flex-direction: column;
    }

    .footer_item {
        margin-left: 0px;
    }

    .footer_item:last-child {
        margin-left: 0px;
        border-left: none;
        padding-left: 0px;
    }

    .footer_items {
        padding-bottom: 30px;
    }

    .footer_bottom_items {
        flex-direction: column;
    }

    .footer_bottom_item:last-child {
        margin-top: 20px;
        margin-left: 0px;
    }

    .footer_item:first-child {
        margin-left: 0px;
        width: 100%;
    }

    .footer_item_logo {
        display: block;
        margin: 0 auto;
    }

    .footer_item_first_text {
        text-align: center;
        max-width: 100%;
    }

    .footer_item_tittle {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .footer_item_navigation {
        margin-bottom: 10px;
    }
}



@media (min-width:375px) and (max-width: 799px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .intro_items {
        flex-direction: column;
        padding-top: 100px;
    }

    .intro_item:last-child {
        margin-left: 0px;
    }

    .intro_item_tittle {
        font-size: 30px;
        text-align: center;
    }

    .intro span {
        padding: 5px
    }

    .intro_item_subtittle {
        font-size: 20px;
        text-align: center;
    }

    .intro_item_buttons {
        margin-top: 30px;
        justify-content: center;
    }

    .intro_item_button {
        font-size: 16px;
        padding: 8px 14px;
    }

    .intro_item_img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 419px;
    }

    .powerful_tittle {
        font-size: 30px;
    }

    .powerful_subtittle {
        font-size: 26px;
    }

    .powerful_items {
        margin-top: 30px;
        flex-direction: column;
    }

    .powerful_item {
        margin-right: 0px;
        min-height: auto;
        margin-bottom: 30px;
    }

    .powerful_item_img {
        display: block;
        margin: 0 auto;
    }

    .powerful_item_tittle {
        text-align: center;
        font-size: 22px;
        margin-top: 20px;
    }

    .powerful_item_text {
        text-align: center;
    }

    .powerful_item_button {
        margin-top: 30px;
        font-size: 14px;
    }

    .unlock {
        margin-top: 30px;
    }

    .unlock_rect_content {
        padding: 20px;
    }

    .unlock_rect_item_tittle {
        font-size: 30px;
        text-align: center;
    }

    .unlock_rect_items {
        flex-direction: column;
    }

    .unlock_rect_item_img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 455px;
    }

    .unlock_rect_item {
        margin-left: 0px;
    }

    .unlock_rect_item_right_tittle {
        margin-top: 20px;
        text-align: center;
        font-size: 22px;
    }

    .unlock_rect_item_right_text {
        font-size: 18px;
        text-align: center;
        margin-top: 20px;
    }

    .collaborating {
        margin-top: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .collaborating_tittle {
        font-size: 30px;
    }

    .collaborating_text {
        font-size: 18px;
    }

    .collaborating_items {
        flex-wrap: wrap;
    }

    .collaborating_item {
        margin-bottom: 10px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .team {
        margin-top: 30px;
    }

    .team_tittle {
        font-size: 32px;
    }

    .team_items {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .team_item {}

    .investors {
        margin-top: 30px;
        padding-top: 30px;
    }

    .investors_tittle {
        font-size: 30px;
    }

    .investors_items {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .platform {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .platform_tittle {
        font-size: 30px;
    }

    .platform_subtittle {
        margin-top: 10px;
    }

    .platform_item_rect_content {
        padding: 36px;
    }

    .platform_items {
        flex-direction: column;
    }

    .platform_item {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .platform_item_content {
        padding: 15px;
    }

    .platform_buttons {
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .platform_button:first-child {
        margin-bottom: 10px;
    }

    .powerful_item_content {
        padding: 20px;
    }

    .platform_button:last-child {
        margin-left: 0px;
    }

    .platform_button {
        width: 100%;
        text-align: center;
    }

    .faq {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .faq_tittle {
        font-size: 30px;
    }

    .faq_subtittle {
        margin-top: 10px;
    }

    .faq_items {
        margin-top: 30px;
    }

    .faq_item_header {
        padding: 20px;
    }

    .faq_item_question {
        font-size: 16px;
    }

    .faq_item_answer {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }

    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer_items {
        flex-wrap: wrap
    }

    .footer_item {
        margin-left: auto;
        margin-right: 30px;
    }

    .footer_item:first-child {
        flex: 100%;
    }

    .footer_item:nth-child(2) {
        margin-left: 0px;
    }

    .footer_item:last-child {
        flex: 100%;
    }

    .footer_item:last-child {
        margin-left: 0px;
        border-left: none;
        padding-left: 0px;
    }

    .footer_items {
        padding-bottom: 30px;
    }

    .footer_bottom_items {
        flex-direction: column;
    }

    .footer_bottom_item:last-child {
        margin-top: 20px;
        margin-left: 0px;
    }

    .footer_item:first-child {
        margin-left: 0px;
        width: 100%;
    }

    .footer_item_logo {
        display: block;
        margin: 0 auto;
    }

    .footer_item_first_text {
        text-align: center;
        max-width: 100%;
    }

    .footer_item_tittle {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .footer_item_navigation {
        margin-bottom: 10px;
    }
}

@media (min-width:800px) and (max-width: 1000px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .powerful_items {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .powerful_item {
        width: 100%;
        height: auto;
        flex: calc(50% - 30px);
        margin-bottom: 20px;
    }

    .powerful_item:nth-child(2n) {
        margin-right: 0px;
    }

    .powerful_item_img {
        display: block;
        margin: 0 auto;
    }

    .powerful_item_tittle {
        text-align: center;
    }

    .powerful_item_text {
        text-align: center;
    }

    .unlock_rect_items {
        flex-wrap: wrap;
    }

    .unlock_rect_item:last-child {
        flex: 100%;
        margin-top: 30px;
    }

    .unlock_rect_item_tittle {
        text-align: center;
        width: 100%;
    }

    .unlock_rect_item:first-child {
        max-width: 100%;
    }

    .unlock_rect_item_img {
        display: block;
        margin: 0 auto;
    }

    .unlock_rect_item {
        margin-left: 0px;
        width: 100%;
    }

    .unlock_rect_item_right_tittle {
        text-align: center;
    }

    .unlock_rect_item_right_text {
        text-align: center;
    }

    .unlock_rect_item_right_text {
        margin-top: 30px;
        text-align: center;
        max-width: 100%;
    }

    .unlock_rect_content {
        padding: 40px;
    }

    .collaborating_items {
        flex-wrap: wrap;
    }

    .collaborating_item {
        margin-bottom: 20px;
    }

    .team_item {
        margin-left: 30px;
    }

    .platform_item_rect_content {
        padding: 36px;
    }

    .footer_items {
        flex-wrap: wrap;
        padding-bottom: 50px;
    }

    .footer_item:last-child {
        flex: 100%;
        margin-left: 0px;
        padding-left: 0px;
        border: none;
    }
}

@media (min-width:101px) and (max-width: 1300px) {
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .collaborating_items{
        flex-wrap: wrap;
    }
    .collaborating_item{
        margin-bottom: 20px;
    }
    .platform_item_rect_content{
        padding-left: 30px;
        padding-right: 30px;
    }
}
