/**
 * Main style file
 */

html {
    box-sizing: border-box;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

*::before,
*::after {
    box-sizing: inherit;
}


body {
    margin: 0;
    padding: 0;
    background: #100C20;
    font-family: "Be Vietnam Pro", sans-serif;
    font-optical-sizing: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: rgba(255, 255, 255, 0.76);
}

header {
    flex: 0 0 auto;
}

/* FOOTER always bottom */

.site {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

main {
    flex: 1 0 auto;
}

footer {
    flex: 0 0 auto;
}

.wrapper {
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 112px;
    padding-right: 112px;
}

.page_bg {
    background-repeat: no-repeat !important;
    background-size: cover !important;
}


.inner_page .wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
}

@media (max-width: 680px) {

    .page_bg {
        background: none !important;
    }

    .wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .inner_page .wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.hidden {
    display: none;
}

h2.wp-block-heading {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 16px;
}

p {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 8px;
    margin-bottom: 8px;
}

li {
    font-size: 14px;
    line-height: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* HEADER */
.main_header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
    /* background: rgba(255, 255, 255, 0.04); */
    background: #0000007A, rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(24px);
    display: flex;
}

.header_wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 76px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 112px;
    padding-right: 112px;
    position: relative;
}


@media (max-width: 680px) {
    .header_wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.logo-wrap .logo {
    min-width: 100px;
    max-width: 110px;
    border-radius: 0px;
}

.site_navigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* MENU */
.main_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0px;
    padding: 0;
    height: 76px;
    margin-left: 24px;
    margin-right: 24px;
}

.menu {
    list-style: none;
    padding: 0px;
}

.main_menu li {
    position: relative;
    cursor: pointer;
}

.main_menu li span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 76px;
    text-transform: uppercase;
}

.main_menu li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.main_menu li.menu-item-has-children>span::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #131418;
    transition: transform 0.3s ease-in-out;
}

.main_menu li.menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #131418;
    transition: transform 0.3s ease-in-out;
}

.main_menu li.menu-item-has-children:hover>span::after {
    transform: rotate(180deg);
    border-top: 5px solid #131418;
}

.main_menu li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
    border-top: 5px solid #131418;
}


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

.main_menu li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 8px 12px;
    color: #ffffff;
    border-radius: 8px;
    transition: .3s ease-in-out;
    text-transform: capitalize;
}

.main_menu li span {
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    padding-bottom: 14px;
    border-bottom: 2px solid transparent;
    border-radius: 1px;
    transition: .3s ease-in-out;
    text-transform: uppercase;
}


@media (max-width: 1070px) {
    .main_menu li a {
        font-size: 14px;
    }
}

.mobile_nav {
    display: flex;
}

.menu-item .sub-menu {
    display: none;
    top: 30px;
    left: -5%;
    position: absolute;
    background-color: #100C20;
    margin: 0;
    padding: 16px 12px;
    border-radius: 5px;
    list-style: none;
    z-index: 1000;
    min-width: 270px;
    box-shadow: -1px 1px 8px 0px rgba(135, 126, 126, 0.75);
}

.menu-item:hover .sub-menu {
    display: block;
}

.sub-menu li {
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.sub-menu li a {
    text-decoration: none;
    color: #ffffff;
    padding: 0;
    border-bottom: 0px;
    height: auto;
    justify-content: flex-start;
    width: max-content;
}

.sub-menu li a:hover {
    color: #9268E6;
    border-bottom: 0px;
}

.main_menu li.current-menu-item>a {
    color: #B487CA;
    transition: .5s ease-in-out;
}


/* MOBILE MENU */

.burger-menu {
    position: relative;
}

.burger-menu_button {
    display: none;
    position: relative;
    z-index: 30;
    width: 60px;
    height: 60px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
    position: absolute;
    width: 34px;
    height: 2px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.burger-menu_lines {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
    content: '';
    top: -10px;
}

.burger-menu_lines::after {
    content: '';
    top: 10px;
}


.burger-menu_active .burger-menu_lines {
    background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
    top: 0;
    transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.burger-menu_nav {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 20;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* height: 100%; */
    height: 100vh;
    background-color: #100C20;
    /* overflow-y: auto; */
    right: -100%;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
    right: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.burger_logo {
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    width: 100%;
    background: #100C20;
    margin-top: 20px;
}

.burger_logo .logo_mob {
    margin-top: 10px;
    width: 100%;
    min-width: 100px;
    max-width: 110px;
}

.mobile_nav_wrap {
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
}

.mobile_nav_wrap ul {
    margin: 0;
}

.mobile_nav_wrap a {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    /* margin-bottom: 16px; */
    width: 100%;
    display: flex;
    color: #ffffff;
    text-decoration: none;
    box-sizing: border-box;
}

.mobile_nav_wrap span {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    width: auto;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}


.mobile_nav_wrap a:active {
    border-bottom: 2px solid #9268E6;
    font-weight: 500;
}

.mobile_nav_wrap li {
    width: 100%;
    position: relative;

}

.mobile_nav_wrap .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile_nav_wrap .sub-menu li {
    border-bottom: none;
}

.mobile_nav_wrap li:first-child {
    margin-top: 0px;
}

.mobile_nav_wrap li:last-child {
    margin-top: 0px;
}

.submenu-toggle {
    position: absolute;
    right: 0px;
    top: 0;
    width: auto;
}

.burger-menu_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}

.white_btn {
    display: flex;
    /* height: 44px; */
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #100C20;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 8px;
    background: #F8F8F8;
    box-shadow: 0px 3px 0.5px 0px rgba(255, 255, 255, 0.08) inset, 0px -2px 6px 0px rgba(255, 255, 255, 0.24) inset, 0px 2px 6px 0px rgba(255, 255, 255, 0.24) inset;
    text-decoration: none;
    transition: .5s ease-in-out;
}

.white_btn:hover {
    background: #8137A7;
    box-shadow: 0px 3px 0.5px 0px rgba(255, 255, 255, 0.08) inset, 0px -2px 6px 0px rgba(255, 255, 255, 0.24) inset, 0px 2px 6px 0px rgba(255, 255, 255, 0.24) inset;
    color: #ffffff;
}

@media (max-width: 992px) {
    .white_btn {
        display: none;
    }
}

.menu-item .sub-menu {
    display: none;
}

.menu-item .sub-menu.show {
    display: block;
}

@media (max-width: 680px) {
    .donate_btn {
        display: none;
    }
}

@media (max-width: 1280px) {
    .main_menu li a {
        font-size: 13px;
    }

    .main_menu li span {
        font-size: 13px;
    }

    .donate_btn {
        font-size: 13;
        padding: 8px 29px;
        margin-left: 40px;
    }

    .main_menu li {
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    .main_menu {
        display: none;
    }

    .burger-menu_button {
        display: block;
    }

    .menu-item {
        position: relative;
    }

    .menu-item .sub-menu {
        box-shadow: none;
    }

    .sub-menu {
        position: static;
        transform: none;
        background-color: white;
        width: 100%;
    }

    .mobile_nav_wrap .menu-item .sub-menu {
        margin-top: 14px;
        margin-bottom: 14px;
        position: static;
        transform: none;
        background-color: transparent;
        padding: 0;
        list-style: none;
        z-index: 1000;
    }

    .mobile_nav_wrap .menu-item .sub-menu li {
        margin-top: 0px;
    }

    .sub-menu li {
        margin-bottom: 0px;
        padding-top: 0px;
    }

    .menu-item .sub-menu a {
        font-size: 20px;
        font-family: "BentonSans Regular", sans-serif;
    }
}

.main_hero {
    padding-top: 112px;
    padding-bottom: 112px;
    min-height: 688px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero_img {
    position: absolute;
    top: 0%;
    margin: 0 auto;
    object-fit: cover;
}

.hero_content {
    display: flex;
    opacity: 0;
    transition: opacity 1s;
    padding: 72px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(205, 170, 255, 0.20);
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(37.5px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.left_blur {
    position: absolute;
    left: 0;
    bottom: -7%;
    z-index: -1;
    /* transform: rotate(152.231deg);
    flex-shrink: 0; */
    fill: linear-gradient(131deg, rgba(230, 74, 255, 0.70) 19.59%, rgba(119, 62, 240, 0.70) 78.12%);
    mix-blend-mode: screen;
    filter: blur(72px);
}

.right_blur {
    position: absolute;
    right: 0;
    bottom: -7%;
    z-index: -1;
    /* transform: rotate(75deg);
    flex-shrink: 0; */
    fill: #7357FF;
    filter: blur(124px);
}

@media (max-width: 680px) {
    .left_blur {
        display: none;
    }

    .right_blur {
        position: absolute;
        right: 0;
        bottom: -15%;
        z-index: -1;
    }
}

.hero_title {
    margin: 0;
    text-align: center;
    font-size: 76px;
    font-style: normal;
    font-weight: 700;
    line-height: 88px;
    background: linear-gradient(102deg, #B08EF9 13.15%, #F8B2F9 45.33%, #ABC2FE 80.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_subtitle {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.2px;
    width: 100%;
    max-width: 543px;
    margin-bottom: 32px;
}

.color_btn {
    display: flex;
    /* height: 56px; */
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #680F95;
    box-shadow: 0px 3px 0.5px 0px rgba(255, 255, 255, 0.08) inset, 0px -2px 6px 0px rgba(255, 255, 255, 0.24) inset, 0px 2px 6px 0px rgba(255, 255, 255, 0.24) inset;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: .5s ease-in-out;
}

.color_btn:hover {
    background: #8137A7;
}

/* LINK SECTION */

.link_section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 19px;
}

.link_section_link {
    display: flex;
    padding: 8px 8px 8px 20px;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid #BCBEFD;
    background: linear-gradient(0deg, var(--surface-surface_4, rgba(255, 255, 255, 0.04)) 0%, var(--surface-surface_4, rgba(255, 255, 255, 0.04)) 100%), rgba(16, 12, 32, 0.70);
    box-shadow: 0px 2px 16px 0px rgba(230, 74, 255, 0.08), 0px 4px 12px 0px rgba(230, 74, 255, 0.12);
    margin-bottom: 16px;
    box-sizing: border-box;
}

.link_section_link span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.link_section_link a {
    display: flex;
    /* height: 44px; */
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0px 1px 2px -1px rgba(17, 12, 34, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: .5s ease-in-out;
}

.link_section_link a:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0px 2px 4px -2px rgba(17, 12, 34, 0.12);
}

@media (max-width: 992px) {
    .hero_content {
        padding: 72px 16px;
    }

    .hero_title {
        font-size: 44px;
        line-height: 64px;
    }
}

@media (max-width: 680px) {

    .main_hero {
        padding-top: 100px;
        padding-bottom: 95px;
    }

    .hero_img {
        top: 8%;
    }
}

@media (max-width: 576px) {

    .link_section_link_first {
        width: 100%;
        justify-content: space-between;
    }

    .link_section_link_second {
        /* width: 80%; */
        justify-content: space-between;
    }
}

/* SUBSCRIBE */

.subscribe {
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
    position: relative;
    top: -44px;
}

.subscribe_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.subscribe_content_title {
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.44px;
    background: linear-gradient(114deg, #FFF 0%, #927EBC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0px;
    margin-bottom: 8px;
}

.subscribe_content_subtitle {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
    margin-bottom: 28px;
}

.subscribe_form_wrap {
    width: 100%;
}

.subscribe_form_wrap .wpcf7 {
    width: 100%;
}

.subscribe_form_wrap .wpcf7 form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.subscribe_form_inner {
    display: flex;
    flex-direction: row;
}

@media (max-width: 1024px) {
    .subscribe_form_inner {
        flex-wrap: wrap;
    }
}

.subscribe_form_wrap .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
}

.subscribe_form_wrap .wpcf7 input[type="email"] {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--surface-surface_3, rgba(255, 255, 255, 0.12));
    background: rgba(255, 255, 255, 0.04);
    max-width: 320px;
    width: auto;
    margin-right: 16px;
    color: #ffffff;
    margin-bottom: 5px;
}

.subscribe input[type="submit"] {
    height: 38px;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: #680F95;
    box-shadow: 0px 3px 0.5px 0px rgba(255, 255, 255, 0.08) inset, 0px -2px 6px 0px rgba(255, 255, 255, 0.24) inset, 0px 2px 6px 0px rgba(255, 255, 255, 0.24) inset;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    outline: none;
    cursor: pointer;
    transition: .5s ease-in-out;
    margin-bottom: 5px;
}

.subscribe input[type="submit"]:hover {
    background: #8137A7;
}

.wpcf7 form .wpcf7-response-output {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 0px;
    margin-right: 0px;
}


.under_form {
    color: rgba(255, 255, 255, 0.32);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 24px;
    margin-bottom: 0px;
}

.subscribe_img {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}

.subscribe_img img {
    max-width: 256px;
    max-height: 244px;
}

.inner_subscribe_wrap {
    padding-top: 96px;
    padding-bottom: 96px;
}

@media (max-width: 992px) {
    .subscribe input[type="submit"] {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .subscribe {
        grid-template-columns: 1fr;
    }

    .subscribe_img {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .subscribe_form_wrap .wpcf7 input[type="email"] {
        width: 100%;
    }

    .subscribe {
        grid-template-columns: 1fr;
    }

    .subscribe_form_wrap .wpcf7 form {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .subscribe input[type="email"] {
        width: 100%;
        max-width: 100%;
        margin-right: 0px;
        box-sizing: border-box;
        margin-bottom: 16px;
    }

    .subscribe_img {
        justify-content: flex-start;
    }
}

/* FOOTER */

.site_footer {
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.footer_blur {
    position: absolute;
    top: 141%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: -1;
    width: 500px;
    height: 500px;
    border-radius: 1122px;
    background: linear-gradient(90deg, rgba(230, 74, 255, 0.32) -2.63%, rgba(239, 179, 249, 0.32) 46.77%, rgba(119, 62, 240, 0.32) 102.49%);
    filter: blur(125px);
}

.footer_blur {
    position: absolute;
    top: 165%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: -1;
    width: 500px;
    height: 500px;
    border-radius: 1122px;
    background: linear-gradient(90deg, rgba(230, 74, 255, 0.32) -2.63%, rgba(239, 179, 249, 0.32) 46.77%, rgba(119, 62, 240, 0.32) 102.49%);
    filter: blur(125px);
}

.footer_wrap {
    padding-top: 48px;
    padding-bottom: 64px;
}

.footer_first {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 32px;
}

.footer_logo img {
    width: 200px;
    height: 48px;
}

.social {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.social_title {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 24px;
}

.social_list a {
    margin-right: 32px;
    text-decoration: none;
}

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

.second_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 16px;
}

.copy {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.footer_nav_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer_nav_wrap ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.footer_nav_wrap ul li {
    margin-right: 32px;
}

.footer_nav_wrap ul li:last-child {
    margin-right: 0px;
}

.footer_nav_wrap ul li a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer_first {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer_logo {
        margin-bottom: 32px;
    }

    .second_row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* .copy{
      margin-bottom: 16px;
    } */
    .social {
        align-items: center;
    }

    .social {
        align-items: center;
    }
}

/* FORM PAGE */

.form_section {
    padding-top: 130px;
    padding-bottom: 96px;
}

.title_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form_page_title {
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.44px;
    background: linear-gradient(102deg, #B08EF9 13.15%, #F8B2F9 45.33%, #ABC2FE 80.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.form_page_subtitle {
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    max-width: 864px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.main_form_wrap {
    margin: 0 auto;
    display: flex;
    width: 100%;
    max-width: 592px;
    padding: 48px;
    align-items: flex-start;
    gap: 32px;
    border-radius: 16px;
    border: 1px solid rgba(205, 170, 255, 0.20);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(37.5px);
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .main_form_wrap {
        padding: 28px;
    }
}

.main_form_wrap form {
    width: 100%;
}

.question {
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

.wpcf7 {
    width: 100%;
}

.age_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 16px;
    margin-bottom: 32px;
}

.wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.beta-signup-age {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.beta-signup-age .first {
    margin-left: 0px;
    margin-right: 16px;
}

.beta-signup-age .last {
    margin-left: 0px;
}

input[type="radio"] {
    display: none;
}

input[type="checkbox"] {
    display: none;
}

.beta-signup-age .first,
.beta-signup-age .last {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

label {
    display: flex;
    width: 100%;
}

.wpcf7-list-item-label {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .wpcf7-list-item-label {
        font-size: 12px;
        font-weight: 500;
    }
}

.beta-signup-age .wpcf7-list-item-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    /* height: 56px; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.beta-signup-age .wpcf7-list-item-label:hover {
    border: 1px solid #8137A7;
    background: #230532;
    box-shadow: 0px -12px 48px 0px rgba(230, 74, 255, 0.16) inset;
}

.beta-signup-age label.checked {
    border: 1px solid #8137A7;
    border-radius: 8px;
    background: #230532;
    box-shadow: 0px -12px 48px 0px rgba(230, 74, 255, 0.16) inset;
}

.mail_wrap {
    margin-bottom: 32px;
}

.mail_wrap label {
    display: none;
}

.mail_wrap .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
}

.mail_wrap .wpcf7-not-valid-tip {
    margin-top: 8px;
}

.mail_wrap input[type="email"] {
    display: flex;
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    width: 100%;
    height: 40px;
    color: #ffffff;
    box-sizing: border-box;
}

.identify_wrap {
    display: flex;
    width: 100%;
    margin-bottom: 32px;
    flex-direction: column;
}

.beta-signup-identify {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 8px;
    grid-row-gap: 16px;
}

.wpcf7-list-item {
    margin-left: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.wpcf7-list-item:last-child {
    width: 100%;
    grid-column: span 3;
}

.wpcf7-list-item-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    padding: 16px;
    /* height: 56px; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.identify_wrap .wpcf7-list-item-label::before {
    content: '';
    background: url(../img/male.svg);
    width: 32px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
}

.beta-signup-identify .wpcf7-list-item:nth-child(2) label .wpcf7-list-item-label::before {
    background: url(../img/female.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.beta-signup-identify .wpcf7-list-item:nth-child(3) label .wpcf7-list-item-label::before {
    background: url(../img/non-binary.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.beta-signup-identify span.last label .wpcf7-list-item-label::before {
    display: none;
}

.wpcf7-list-item-label:hover {
    border: 1px solid #8137A7;
    background: #230532;
    box-shadow: 0px -12px 48px 0px rgba(230, 74, 255, 0.16) inset;
}

label.checked {
    border: 1px solid #8137A7;
    border-radius: 8px;
    background: #230532;
    box-shadow: 0px -12px 48px 0px rgba(230, 74, 255, 0.16) inset;
}

.gender_wrap {
    display: flex;
    width: 100%;
    margin-bottom: 32px;
}

.beta-signup-gender {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 8px;
    grid-row-gap: 16px;
}

.gender_wrap .wpcf7-list-item-label::before {
    content: '';
    background: url(../img/male.svg);
    width: 32px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
}

.beta-signup-gender .wpcf7-list-item:nth-child(2) label .wpcf7-list-item-label::before {
    background: url(../img/female.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.beta-signup-gender .wpcf7-list-item:nth-child(3) label .wpcf7-list-item-label::before {
    background: url(../img/transgender.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.beta-signup-gender span.last label .wpcf7-list-item-label::before {
    display: none;
}

input[type="submit"] {
    border: none;
    outline: none;
    display: flex;
    height: 44px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #680F95;
    box-shadow: 0px 3px 0.5px 0px rgba(255, 255, 255, 0.08) inset, 0px -2px 6px 0px rgba(255, 255, 255, 0.24) inset, 0px 2px 6px 0px rgba(255, 255, 255, 0.24) inset;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: .5s ease-in-out;
}

input[type="submit"]:hover {
    background: #8137A7;
}

/* Performer */


.performer_title {
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -0.64px;
    background: linear-gradient(102deg, #B08EF9 13.15%, #F8B2F9 45.33%, #ABC2FE 80.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.performer_video {
    margin-top: 48px;
    margin-bottom: 48px;
}

.video_wrap {
    margin: 0 auto;
    width: 666px;
    height: 376px;
    border-radius: 16px;
    border: 8px solid #ffffff, rgba(255, 255, 255, 0.16);
    box-shadow: 0px 4px 72px 0px rgba(188, 190, 253, 0.32);
    position: relative;
    overflow: hidden;
}

.video_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.video_wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

@media (max-width: 992px) {
    .video_wrap {
        width: 100%;
        height: 376px;
    }
}

@media (max-width: 480px) {
    .video_wrap {
        width: 100%;
        height: 224px;
    }
}

.how_works_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 96px;
}

.how_works_wrap::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.01) 100%);
}


.how_works_first {
    display: flex;
    padding: 24px;
    justify-content: center;
    align-items: flex-start;
    border-radius: 24px 24px 0px 0px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.2px;
}

@media (max-width: 680px) {
    .how_works_first {
        max-width: 346px;
    }
}

.how_works_second {
    display: flex;
    padding: 24px;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: linear-gradient(90deg, rgba(248, 178, 249, 0.24) 0%, rgba(171, 194, 254, 0.24) 100%);
    backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.2px;
}

.scroll_wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

p.scroll {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* color: #ffffff, rgba(255, 255, 255, 0.76); */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 200% */
    letter-spacing: -0.16px;
    background: linear-gradient(102deg, #B08EF9 13.15%, #F8B2F9 45.33%, #ABC2FE 80.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scroll_mouse {
    margin-right: 8px;
}

.why_join {
    padding-top: 96px;
    padding-bottom: 96px;
}

.why_join_wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    position: relative;
}


.why_join_wrap::before {
    position: absolute;
    content: '';
    top: 0px;
    left: -7%;
    width: 179px;
    height: 179px;
    background-image: url(../img/question.svg);
    z-index: 0;
}

.why_join_wrap::after {
    position: absolute;
    content: '';
    top: 10%;
    right: -8%;
    width: 179px;
    height: 179px;
    background-image: url(../img/question-r.svg);
    z-index: 0;
}

.why_join_item {
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 496px;
    position: relative;
    z-index: 1;
}

.why_join_title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.26px;
    background: linear-gradient(114deg, #FFF 0%, #927EBC 120%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why_join_item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-top: 0px;
    margin: 0px;
}

@media (max-width: 1400px) {
    .why_join_wrap::before {
        top: -23%;
        left: -7%;
    }

    .why_join_wrap::after {
        top: 90%;
        right: -9%;
    }
}

@media (max-width: 1024px) {

    .why_join {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .how_works_wrap {
        padding-bottom: 24px;
    }

    .why_join_wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        position: relative;
    }

    .why_join_wrap::before {
        display: none;
    }

    .why_join_wrap::after {
        display: none;
    }

    .why_join_item {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* GET STARTED */

.get_started {
    padding-top: 96px;
}

.get_started_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.get_started_title h2 {
    margin: 0;
    margin-bottom: 16px;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.44px;
    background: linear-gradient(114deg, #FFF 0%, #927EBC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.get_started_title p {
    text-align: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.8px;
}

.get_started_list {
    margin-top: 48px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 21px;

}

.get_started_item {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
}

.get_started_item img {
    width: 48px;
    height: 48px;
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 96px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(183, 93, 222, 0.32) 0%, rgba(111, 57, 215, 0.32) 100%);
    box-shadow: 0px 4px 48px 0px var(--color-primary-400, #8137A7), 0px -8px 16px 0px rgba(255, 255, 255, 0.16) inset;
}

.started_item_title {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.26px;
}

.started_item_text {
    color: #AAABC2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 68px;
}

.started_btn {
    position: absolute;
    bottom: 32px;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #680F95;
    box-shadow: 0px 3px 0.5px 0px rgba(255, 255, 255, 0.08) inset, 0px -2px 6px 0px rgba(255, 255, 255, 0.24) inset, 0px 2px 6px 0px rgba(255, 255, 255, 0.24) inset;
    text-decoration: none;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: .5s ease-in-out;
}

.started_btn:hover {
    background: #8137A7;
}

.get_call {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.get_call_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.get_call_wrapper h3 {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-top: 0px;
    margin-bottom: 8px;
}

.get_call_wrapper p {
    color: #AAABC2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0px;
    margin-bottom: 16px;
    text-align: center;
}

.shedule_call_btn {
    text-decoration: none;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0px 1px 2px -1px rgba(17, 12, 34, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: .5s ease-in-out;
}

.shedule_call_btn:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0px 2px 4px -2px rgba(17, 12, 34, 0.12);
}


.get_started_wrap {
    padding-bottom: 96px;
    position: relative;
}

.get_started_wrap::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.01) 100%);
}

@media (max-width: 1024px) {

    .get_started {
        padding-top: 24px;
    }

    .get_started_wrap {
        padding-bottom: 24px;
    }

    .get_started_list {
        grid-template-columns: 1fr;
    }
}


/* FAQ */

.faq {
    padding-top: 96px;
}

.faq_title {
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.44px;
    background: linear-gradient(180deg, #FFF 0%, #927EBC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq_wrap {
    margin-top: 32px;
}

.accordion {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    padding-top: 12px;
    padding-bottom: 14px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    outline: none;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.2px;
    transition: 0.4s;
}

.accordion::before {
    content: '';
    float: left;
    margin-right: 10px;
    background: url('../img/faq-nav.svg');
    width: 20px;
    height: 20px;
}

.accordion.active::before {
    transform: rotate(90deg);
}

.panel {
    padding: 10px 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

@media (max-width: 1024px) {
    .faq {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

/* BLOG */

.blog_archive {
    padding-top: 124px;
    background: url(../img/blog-bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

@media (max-width: 680px) {
    .blog_archive {
        background: transparent;
    }
}

.archive_title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.archive_title p a {
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.archive_title h1 {
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.52px;
    background: linear-gradient(102deg, #B08EF9 13.15%, #F8B2F9 45.33%, #ABC2FE 80.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0px;
    margin-bottom: 24px;
}

.archive_title p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.last_post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 32px;
    margin-top: 48px;
    padding-bottom: 48px;
    position: relative;
}

.last_post::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.01) 100%);
}


.last_post_img {
    display: flex;
    width: 100%;
    max-width: 592px;
    /* height: 366px; */
}

.last_post_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.last_post_details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    flex: 1 0 0;
    align-self: stretch;
}

.last_post_title {
    margin-top: 8px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.44px;
}


.excerpt {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-top: 16px;
    /* margin-bottom: 78px; */
}

.post_btn {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #680F95;
    box-shadow: 0px 3px 0.5px 0px rgba(255, 255, 255, 0.08) inset, 0px -2px 6px 0px rgba(255, 255, 255, 0.24) inset, 0px 2px 6px 0px rgba(255, 255, 255, 0.24) inset;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: .5s ease-in-out;
    margin-top: 20px;
}

.post_btn:hover {
    background: #8137A7;
}

@media (max-width: 1024px) {
    .last_post {
        grid-template-columns: 1fr;
        grid-gap: 32px;
    }

    .last_post_img {
        max-width: 100%;
        height: 366px;
    }
}

.post_list {
    padding-top: 48px;
    padding-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 32px;
}

.post_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
}

.post_item a {
    text-decoration: none;
}

.post_item img {
    margin-bottom: 16px;
    border-radius: 8px;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.post_item_title {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.btn_load {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.load_more_btn {
    border: none;
    outline: none;
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0px 1px 2px -1px rgba(17, 12, 34, 0.08);
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 52px;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.load_more_btn:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0px 2px 4px -2px rgba(17, 12, 34, 0.12);
}

@media (max-width: 1024px) {
    .post_list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .post_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .post_list {
        grid-template-columns: 1fr;
    }

    .post_item img {
        max-width: 100%;
        height: 330px;
        object-fit: cover;

    }
}

@media (max-width: 480px) {
    .post_item img {
        max-width: 100%;
        height: 230px;
        object-fit: cover;

    }
}

/* POST */

.blog_post_wrap {
    padding-top: 124px;
    background: url(../img/blog-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

@media (max-width: 680px) {
    .blog_post_wrap {
        background: transparent;
    }
}

.post_header {
    margin: 0 auto;
    width: 100%;
    max-width: 592px;
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
}

.post_header::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.post_thumbs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.post_thumbs img {
    width: 100%;
    max-width: 1008px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.post_title {
    color: rgba(255, 255, 255, 0.76);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.44px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.post_categories {
    color: #B487CA;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    text-transform: uppercase;
}

.entry-meta {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.post_content {
    margin: 0 auto;
    width: 100%;
    max-width: 592px;
}

.post_content>.wrapper {
    padding: 0px;
}

.post_content p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.post_content ol,
.post_content ul {
    padding-left: 15px;
}

.post_content li {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
}

nav.navigation {
    display: none;
}

.welcome {
    padding-top: 124px;
}

.welcome_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 32px;
}

.welcome_title {
    color: #FFFFFF;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.44px;
}

.welcome_content {
    padding-left: 48px;
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.welcome_content_title {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.26px;
}

.welcome_text {
    margin-top: 24px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.quickie_video {
    padding-top: 72px;
    padding-bottom: 72px;
}

.quickie_video_wrap {
    border-radius: 16px;
    background: linear-gradient(0deg, var(--surface-surface_4, rgba(255, 255, 255, 0.04)) 0%, var(--surface-surface_4, rgba(255, 255, 255, 0.04)) 100%), var(--color-black-100, #000);
    box-shadow: 0px 16px 64px 0px rgba(173, 60, 223, 0.24);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 319px;
}

.quickie_video_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

quickie_video_wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our_mission_wrap {
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.our_mission_wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.our_mission_wrap::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.our_mission_title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 280px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.our_mission_text {
    width: 100%;
    max-width: 904px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.26px;
}

.difference {
    padding-top: 72px;
    padding-bottom: 72px;
}

.difference_title {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.2px;
}

.difference_list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 32px;
}

.differnce_item {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.27);
}

.differnce_item img {
    width: 24px;
    height: 24px;
}

.difference_item_title {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.2px;
}

.difference_item_text {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 1024px) {
    .welcome_wrap {
        grid-template-columns: 1fr;
    }

    .welcome_content {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (max-width: 992px) {
    .our_mission_wrap {
        flex-wrap: wrap;
    }

    .difference_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .difference_list {
        grid-template-columns: 1fr;
    }
}

.mobile_menu_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 150px;
}

.mobile_logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mobile_menu_info .social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

.mobile_menu_info .social .social_list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mobile_menu_info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mobile_menu_info ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: auto;
}

.mobile_menu_info ul li a {
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    box-sizing: border-box;
    padding: 0px;
    margin-right: 32px;
}

.mobile_menu_info ul li:last-child a {
    margin-right: 0px;
}

.mobile_menu_info .made {
    margin-top: 16px;
    margin-bottom: 16px;
}

/* 404 */

.error_wrap {
    padding-top: 124px;
    padding-bottom: 96px;
}

.error_title {
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.52px;
    background: linear-gradient(102deg, #B08EF9 13.15%, #F8B2F9 45.33%, #ABC2FE 80.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0px;
    margin-bottom: 24px;
    text-align: center;
}

.error_page_header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error_content p {
    width: 100%;
    max-width: 904px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.26px;
    margin-bottom: 45px;
    text-align: center;
}

/* CF7 */

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    color: #46b450;
    padding: 0px;
    display: flex;
}

.wpcf7-response-output {
    display: none;
}

.wpcf7-mail-sent-ok {
    display: block !important;
}

.wpcf7-not-valid-tip {
    margin-top: 8px;
}

/* Upload videos */

.form_video input[type="submit"] {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    height: 44px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    box-shadow: 0px 3px 0.5px 0px rgba(255, 255, 255, 0.08) inset, 0px -2px 6px 0px rgba(255, 255, 255, 0.24) inset, 0px 2px 6px 0px rgba(255, 255, 255, 0.24) inset;
}

.quv_form_item_wrap {
    margin-bottom: 32px;
}

.quv_form_item_wrap label {
    margin-bottom: 16px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.2px;
}

.quv_form_item_wrap input[type="text"],
.quv_form_item_wrap input[type="email"] {
    display: flex;
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    width: 100%;
    height: 40px;
    color: #ffffff;
    box-sizing: border-box;
}

.quv_form_item_wrap input[type="text"]:hover {
    border-color: #680f95;
}

.quv_form_item_wrap input[type="text"]:focus {
    border-color: #680f95;
    outline: none;
}

.quv_form_item_wrap input[type="email"]:hover {
    border-color: #680f95;
}

.quv_form_item_wrap input[type="email"]:focus {
    border-color: #680f95;
    outline: none;
}

.file_upload {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    color: #FFFFFF;
    position: relative;
    cursor: pointer;
}

.quv_form_item_wrap input[type="file"] {
    width: 100%;
    height: 100%;
}

.file_input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload_area {
    pointer-events: none;
    padding-top: 41px;
    padding-bottom: 32px;
}

.upload_area svg {
    padding-bottom: 16px;
}

.upload_area p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.upload_area span {
    color: #B487CA;
}

.quv_form_progress_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    gap: 16px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 16px;
}

.quv_form_progress_size {
    display: flex;
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 10px 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.04);
}

.quv_form_progress_size span {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
}

.quv_form_progress_file {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 308px;
}

.quv_form_progress_progress {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.quv_form_progress_progress progress {
    border-radius: 4px 0px 0px 4px;
    height: 4px;
}


.quv_form_progress_progress progress {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
}

/* .quv_form_progress_progress progress::-webkit-progress-bar {
  background-color: #B487CA;
}

.quv_form_progress_progress progress::-webkit-progress-value {
  background-color: #B487CA;
}

.quv_form_progress_progress progress::-moz-progress-bar {
  background-color: #B487CA;
} */


.quv_form_progress_remove {
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}

.quv_form_status_wrap {
    margin-bottom: 20px;
}

.quv_form_status_ok {
    color: green;
    text-align: center;
    font-size: large;
}

.quv_form_status_error {
    color: red;
    text-align: center;
    font-size: large;
}

.quv_form_field_error {
    color: red;
    font-size: large;
}

@media (max-width: 768px) {
    .quv_form_progress_item {
        gap: 5px;
    }

    .quv_form_progress_size {
        padding: 10px 8px;
    }


    .quv_form_progress_file p {
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
    }

    .quv_form_progress_progress p {
        text-overflow: clip;
        overflow: visible;
    }
}

.get_first_section {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 140px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.get_first_first .slick-slide,
.get_first_second .slick-slide {
    margin: 0 17.5px;
    height: auto;
}

.get_first_first div video {
    width: 383px;
    height: 288px;
    object-fit: cover;
    border-radius: 8px;
    filter: blur(3px);
}

.get_first_second {
    margin-top: 30px;
}

.get_first_second div video {
    width: 383px;
    height: 288px;
    object-fit: cover;
    border-radius: 8px;
    filter: blur(3px);
}

.get_first_second {
    direction: rtl;
}

.get_first_second .slick-slide {
    direction: ltr;
}

.get_first_overlay {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 80%;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 57.38%, #100C20 100%);
    left: 0;
}

.get_first_title {
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.52px;
    background: linear-gradient(102deg, #B08EF9 13.15%, #F8B2F9 45.33%, #ABC2FE 80.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0px;
    margin-bottom: 24px;
}

@media (max-width:576px) {
    /* .get_first_section{
        padding-left: 16px;
        padding-right: 16px;
    } */

    .get_first_title {
        font-size: 44px;
    }
}

.get_first_subtitle {
    color: var(--text-med_em, rgba(255, 255, 255, 0.76));
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.2px;
    margin: 0px;
}

.get_first_btn {
    display: flex;
    height: 44px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 1px 2px -1px rgba(17, 12, 34, 0.08);
    color: var(--text-high_em, rgba(255, 255, 255, 0.88));
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    margin-top: 24px;
}


/* RTA Modal */

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal-content {
    background: #1a1a2e;
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    max-width: 400px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

@media (max-width:480px) {
    .age-modal-content {
        margin-right: 5px;
        margin-left: 5px;
    }
}

.age-modal-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.modal_logo {
    margin: 0;
}

.modal_subtitle {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.2px;
    margin: 0;
}

.modal_age_text {
    margin-top: 8px;
    margin-bottom: 0px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.age-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}


#age-accept {
    display: flex;
    height: 44px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 8px;
    background: #680F95;
    box-shadow: 0 3px 0.5px 0 rgba(255, 255, 255, 0.08) inset, 0 -2px 6px 0 rgba(255, 255, 255, 0.24) inset, 0 2px 6px 0 rgba(255, 255, 255, 0.24) inset;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

#age-accept:hover{
    border-radius: 8px;
    background: #8137A7;
    box-shadow: 0 1px 2px -1px rgba(17, 12, 34, 0.08), 0 -2px 2px 0 rgba(255, 255, 255, 0.08) inset, 0 0 16px 0 rgba(255, 255, 255, 0.08) inset, 0 2px 2px 0 rgba(255, 255, 255, 0.08) inset, 0 2px 4px 0 rgba(255, 255, 255, 0.04), 0 0 0 4px rgba(243, 227, 255, 0.08);
}

#age-exit {
    display: flex;
    height: 44px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 1px 2px -1px rgba(17, 12, 34, 0.08);
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

#age-exit:hover{
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.32);
}

#age-exit svg path {
    transition: stroke .3s ease-in-out;
}

#age-exit:hover svg path {
    stroke: rgba(255, 255, 255, 0.32);
}