:root {
    --main-body: #23155b;
    --main-primary: #8053ff;
    --main-white: #fff;
    --main_green: #00d386;
    --main-gray-light: #d4cdef;
    --main-background: #fbfaff;
}

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

html {
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol,
li {
    list-style-type: none;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

/* NAVIGATION - BAR  START */

.nav {
    background-color: #fff;
    position: sticky;
    top: 0;
}

.nav_container {
    width: 1200px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar img,
.navbar li {
    padding: 4px;
}

.navbar ul {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.navbar li:nth-child(2) {
    margin-right: 34px;
}

.join_now {
    display: inline-flex;
    height: 48px;
    color: var(--main-white);
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--main-primary, #8053ff);
}

/* NAVIGATION - BAR  END */

/* HERO - SECTION START */

.hero {
    padding: 80px;
}

.hero_box {
    width: 1200px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: #fbfaff;
    background-image: url(../images/hero_vectors_left.svg);
    background-repeat: no-repeat;
}

.hero_content {
    display: flex;
    padding: 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.hero_content h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 96px;
    color: var(--main-body, #23155b);
}

.hero_content p {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    color: var(--main-body, #23155b);
    margin-bottom: 24px;
}

.hero_btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary_btn {
    display: flex;
    width: 220px;
    padding: 11px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid transparent;
    color: var(--main-white);
    background: var(--main-primary, #8053ff);
    cursor: pointer;
    transition: 0.2s;
}

.primary_btn:hover {
    background: var(--main-gray, #928cab);
}

.primary_btn:active {
    background: var(--main-body, #23155b);
}

.transparent_btn {
    display: flex;
    width: 232px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--main-primary, #8053ff);
    background: var(--main-white, #fff);
    transition: 0.2s;
    color: var(--main-primary);
}

.transparent_btn:hover {
    background: var(--1, linear-gradient(100deg, #f7f9fe 0%, #fbfcff 100%));
}

.transparent_btn:active {
    background: var(--main-body, #23155b);
    color: var(--main-white);
}

/* HERO - SECTION START */

/* MAIN START */

/* PIPLINE START */

.line {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 36px;
}

.pipline {
    width: 270px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    color: var(--main-body, #23155b);
}

.mar_block .pipline {
    width: 1200px;
}

.row {
    height: 2px;
    width: 100%;
    background: #f4f5f4;
}

.pipline_partners {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pipline_partners img {
    width: 180px;
}

/* PIPLINE END */

/* TRADITIONAL SECTION START */

.traditional {
    margin: 160px 0;
}

.traditional_content {
    display: flex;
}

.traditional_title {
    width: 490px;
}

.title_h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1.04px;
    color: var(--main-body, #23155b);
}

.title_h2 span {
    font-size: 52px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1.04px;
    color: var(--main-primary, #8053ff);
}

.traditional_list {
    width: 490px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content_list {
    width: 490px;
    height: 96px;
    padding: 24px;
    display: flex;
    align-items: start;
    gap: 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 14px 64px -4px rgba(35, 21, 91, 0.05),
        0px 8px 12px -6px rgba(35, 21, 91, 0.05);
    transition: 0.3s;
}

.content_list:hover {
    box-shadow: 0px 0px 20px 20px rgba(35, 21, 91, 0.05);
    transform: scaleZ(2);
}

.content_list span {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;

    color: var(--main-primary, #8053ff);
}

.content_list p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--main-body, #23155b);
}
/* TRADITIONAL SECTION END */

/* VISION - IS - THE - ANSWER - SECTION START */

.vision_answer_content,
.access_defi_content {
    padding: 160px 0;
}

#vision_answer {
    width: 100%;
    border-radius: 250px 0px 0px 0px;
    background: url(../images/for_projects_bg_vectors.svg),
        var(--2, linear-gradient(180deg, #fbfaff 29.73%, #fff 100%));
}

.regular_18 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--main-body, #23155b);
}

#vision_answer .regular_18 {
    margin: 8px 0 40px;
}

.main_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: var(--main-primary, #8053ff);
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card {
    width: 490px;
    display: flex;
    gap: 12px;
    border-radius: 8px;
    background: var(--main-white, #fff);
    padding: 20px;
    box-shadow: 0px 14px 64px -4px rgba(35, 21, 91, 0.05),
        0px 8px 12px -6px rgba(35, 21, 91, 0.05);
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0px 0px 20px 20px rgba(35, 21, 91, 0.05);
    transform: scaleZ(2);
}

.card_text {
    display: flex;
    flex-direction: column;
}

.card h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--main-body, #23155b);
}

.card h5 span {
    color: var(--main-primary, #8053ff);
}

.card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main-gray, #928cab);
}

.card .fa-check {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 24px;
    color: var(--main-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--main_green);
}

.btns {
    display: flex;
    gap: 12px;
}

/* VISION - IS - THE - ANSWER - SECTION END */

/* ACCESS - DEFI - SECTION START */

#access_defi {
    border-radius: 0px 250px 0px 0px;
    background: url(../images/for_investors_bg_vectors.svg),
        var(--2, linear-gradient(180deg, #fbfaff 29.73%, #fff 100%));
}

#access_defi .title_h2 {
    margin-bottom: 40px;
}

/* ACCESS - DEFI - SECTION END */

/* BROUGHT - TO - YOU - SECTION START */

.brought_to {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    background: url(../icons/defipie_logo_bg.svg);
    background-repeat: no-repeat;
    background-position: 20% center;
    background-size: 400px;
}

.brought_to_img {
    width: 420px;
    margin-right: 200px;
}

.brought_to_img img {
    border-top-right-radius: 30%;
    border-bottom-right-radius: 30%;
}

.brought_to .title_h2 {
    margin: 12px 0 48px;
}

.mar_top {
    margin-top: 50px;
}

/* BROUGHT - TO - YOU - SECTION END */

/* PARTNERSHIP START */

.mar_block {
    margin: 160px auto;
}

/* PARTNERSHIP END */

/* MAIN END */

/* FOOTER START */

.footer {
    width: 100%;
    padding: 120px 0 80px;
    border-radius: 250px 0px 0px 0px;
    background: var(--main-body, #23155b);
    color: var(--main-white);
    background-image: url(../images/footer_top_left_vectors.svg),
        url(../images/footer_bottom_right_vectors.svg);
    background-repeat: no-repeat;
}

.footer .title_h2 {
    color: var(--main-white);
}

.footer .regular_18 {
    margin: 12px 0 50px;
    color: var(--main-gray-light, #d4cdef);
}

.footer_content {
    display: flex;
}

.footer form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer_forms {
    width: 62%;
}

.footer label {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main-gray-light, #d4cdef);
}

.footer input {
    border: 2px solid #333;
    background-color: white;
    border-radius: 0.5rem;
    font: 1.25rem / 1.5 sans-serif;
    display: block;
    box-sizing: border-box;
    width: 300px;
    padding: 0.5rem 0.75rem;
}

.input_place:nth-child(3) {
    margin-bottom: 40px;
}

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

.footer_social_links {
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: end;
    align-items: end;
}

.social_link {
    display: flex;
    width: 200px;
    justify-content: space-between;
    align-items: center;
}

.social_link img {
    transition: 0.3s;
}

.social_link img:hover {
    transform: translateY(-7px);
}

.contact {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.contact a {
    color: #d4cdef;
    text-align: right;
    font-size: 12px;
    font-weight: 500;
    text-decoration-line: underline;
}

/* FOOTER END */
