/*-------------------------------- RESET CSS ---------------------------------------*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
/*============================ END RESET CSS =======================================*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

html,
body {
    font-family: 'Inter', sans-serif;
    background: #fff;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
.font_bold {
    font-weight: bold;
}
.font_center {
    text-align: center;
}
.font_underline {
    text-decoration: underline;
}
.font_purple {
    color: #6C5CE7;
}
.font_black {
    color: #2D3436;   
}
.font_white {
    color: #fff;   
}
.font_gray {
    color: #858585;
}
.font_gray_soft {
    color: #C2C2C2;
}
.font_yellow {
    color: #F3C13F;
}
.font_green {
    color: #55EFC4;
}
.bkg_yellow {
    background: #F3C13F;
}
.bkg_green {
    background: #55EFC4;
}
.spacer_10 {
    display: table;
    width: 100%;
    height: 10px;
    margin: auto;
}
.spacer_25 {
    display: table;
    width: 100%;
    height: 25px;
    margin: auto;
}
.cursor_pointer:hover {
    cursor: pointer;
}

.section {
    display: table;
    width: 100%;
}
.section_inner_1000 {
    display: table;
    width: 95%;
    max-width: 1000px;
    margin: auto;
    position: relative;
}
.section_title {
    font-size: 35px;
    line-height: 40px;
}
.section_subtitle {
    font-size: 23px;
    line-height: 28px;
}
.section_text {
    font-size: 17px;
    line-height: 23px;
}
.section_text_small {
    font-size: 14px;
    line-height: 18px;
}
.inline_top {
    display: inline-block;
    vertical-align: top;
}
.inline_middle {
    display: inline-block;
    vertical-align: middle;
}
.inline_bottom {
    display: inline-block;
    vertical-align: bottom;
}

.section_hero {
    background-image: url(../img/hero_bkg_right.png), url(../img/hero_bkg_left.png);
    background-position: right top, left 90%;
    background-size: 400px auto, 50px auto;
    background-repeat: no-repeat, no-repeat;
}
.header {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}
.logo:hover {
    cursor: pointer;
}
.logo img {
    width: 150px;
    height: auto;
}
.logo_beta {
    background: #C4C4C4;
    opacity: 0.45;
    border-radius: 7px;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 0.25px;
    padding: 5px 10px;
    color: #111;
    margin-left: 5px;
}
.header_menu {
    text-align: center;
    color: #ADADAD;
    margin: auto auto auto 5%;
}
.header_menu_item {
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.2px;
    color: #ADADAD;
    margin: auto 10px;
    padding: 10px 0;
    border-bottom: 3px solid transparent;
}
.header_menu_item:hover,
.header_menu_item_active {
    color: #6C5CE7;
    border-bottom: 3px solid #6C5CE7;
    cursor: pointer;
}
.header_menu_item_img img {
    width: auto;
    height: 30px;
}
.header_menu_mobile .header_menu_item_img {
    padding: 15px;
} 
.header_right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
}
.header_menu_account {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.header_right_button {
    padding: 10px 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 6px rgb(38 50 56 / 16%), 0px 4px 16px rgb(38 50 56 / 8%);
    border-radius: 7px;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #2D3436;
}
.header_menu_account_icon {
    display: none;
}
.header_menu_account_icon span {
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;    
    border-radius: 100%;
    background: #6c5ce7;
}
.header_menu_account_icon span:nth-child(2) {
    margin: 0 2px;
}
.header_menu_mobile_icon {
    display: none;
    width: 35px;
    margin-left: 10px;
}
.header_menu_mobile_icon span {
    display: table;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #6c5ce7
}
.header_menu_mobile_icon span:nth-child(2) {
    margin: 7px 0;
}

.header_menu_mobile {
    position: fixed;
    top: 80px;
    left: -250px;
    width: 250px;
    z-index: 20;
    height: calc(100vh - 80px);
    background: #6c5ce7;
    border-right: 1px solid #6c5ce7;
    padding-top: 30px;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    transition: 0.5s ease all;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.header_menu_mobile_overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 10;
    height: calc(100vh - 80px);
    background: #6c5ce7;    
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    transition: 0.5s ease all;
    background: rgba(0,0,0,0.7);
}
.header_menu_mobile_open {
    left: 0;
}
.header_menu_mobile_link {
    display: table;
    width: 100%;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.landingNav_profile img,
.landingNav_profile_img {
	display: table;
    float: left;
    width: 35px;
    height: 35px;
	padding: 2px;
	margin-left: 10px;
    background: #f9f9f9;
    /* border: 2px solid #FFB226; */
    border: 2px solid #6c5ce7;
    border-radius: 100%;
}
.landingNav_profile_img {
	margin-top: 10px;
	margin-left: 0;
	border: 2px solid #6D70A6;
}
.landingNav_profile {
    position: relative;
}
.landingNav_profile:hover {
    cursor: pointer;
}
.landingNav_profile_menu {
    display: none;
    position: absolute;
    z-index: 100;
    width: 180px;
    top: 45px;
    right: 0;
    font-weight: bold;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #dedee2;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.landingNav_profile_menu a {
    display: table;
    margin: 15px 0;
}
.landingNav_profile_menu a:hover {
    text-decoration: underline;
}

.hero_content {
    display: table;
    width: 100%;
    padding: 50px 0 0 0;
}
.hero_content_left {
    width: 70%;
}
.hero_content_center {
    text-align: center;
}
.hero_content_right {
    width: 30%;
    height: 470px;
    /* background-image: url(../img/hero_right_purple.png);
    background-repeat: no-repeat;
    background-position: left -10% bottom 10%;
    background-size: 300px auto; */
    position: relative;
    margin-bottom: 50px;
}
.hero_h1 {
    font-weight: 800;
    font-size: 55px;
    line-height: 60px;
    letter-spacing: -3px;
}
.hero_h2 {
    font-weight: normal;
    font-size: 21px;
    line-height: 27px;
    letter-spacing: -0.25px;
}
.hero_content_right_slide {
    position: absolute;
    top: 0;
    right: 0;
    display: table;
    width: 100%;
    max-width: 250px;
    margin: -10% 0 auto auto;
}
.hero_content_right_purple {
    position: absolute;
    bottom: -5%;
    left: -35%;
    display: table;
    width: 100%;
    height: auto;
    margin: 0;
}
.big_purple_button {
    display: table;
    padding: 20px 40px;
    background: #6C5CE7;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    letter-spacing: 0.2px;
    border-radius: 7px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.big_yellow_button {
    display: table;
    padding: 20px 40px;
    background: #F3C13F;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    letter-spacing: 0.2px;
    border-radius: 7px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.hero_testimonial {
    direction: rtl;
    text-align: center;
    display: table;
    width: 100%;
    background: #fff;
    margin: 0 auto 10px auto;
    padding: 15px 20px;
    border-radius: 7px;
    box-sizing: border-box;
    box-shadow: 0px 8px 24px rgb(38 50 56 / 10%), -1px 16px 32px rgb(38 50 58 / 8%);
    position: relative;
}
.hero_testimonial_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    margin-right: 10px;
}
.hero_testimonial_text {
    width: 100%;
    position: relative;
    min-height: 80px;
}
.hero_testimonial_text_1 {
    direction: initial;
    width: calc(100% - 180px);
    text-align: center;
    font-size: 17px;
    line-height: 23px;
    margin: 0 auto 5px auto;
}
.hero_testimonial_text_2 {
    text-align: right;
    font-size: 13px;
    line-height: 18px;
    margin-right: 110px;
}
.hero_testimonial_text_above {
    display: none;
    font-size: 20px;
    line-height: 25px;
    width: 100%;
    margin: 0 auto 5px auto;
}
.hero_testimonial_text_under {
    font-size: 20px;
    line-height: 25px;
    /* width: calc(100% - 180px); */
    margin: 0 auto 5px auto;
}
.section_virtual {
    background-image: url(../img/section_virtual_bkg.png);
    background-position: left 60%;
    background-size: 400px auto;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.section_virtual_left {
    width: 60%;
}
.section_virtual_right {
    width: 40%;
}
.section_virtual_img {
    display: table;
    width: 85%;
    height: auto;
}
.section_virtual_img_mobile {
    display: table;
    width: 70%;
    max-width: 400px;
    margin: -30px 5% 0 auto;
}
.purple_top_triangle,
.purple_bottom_triangle {
    display: none;
}

.section_steps {
    position: relative;
}
.section_steps_top {
    display: table;
    width: 100%;
    height: 100px;
    margin-bottom: -1px;
    background-image: url(../img/wave_top.svg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}
.section_steps_middle {
    background-color: #6c5ce7;
}
.section_steps_middle .section_inner_1000 {
    direction: rtl;
}
.section_steps_bottom {
    display: table;
    width: 100%;
    height: 100px;
    margin-top: -80px;
    background-image: url(../img/wave_bottom.svg);
    background-color: #fff;
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
.section_steps_left {
    width: 60%;
    direction: ltr;
}
.section_steps_right {
    width: 40%;
    background-image: url(../img/section_steps_img_2.svg);
    background-position: right bottom;
    background-size: 40% auto;
    background-repeat: no-repeat;
    padding-bottom: 10%;
}
.section_steps_img {
    display: table;
    width: 80%;
    height: auto;
    margin: 0 auto 0 7%;
}
#section_steps_img_1,
#section_steps_img_2 {
    display: none;
}
.section_steps_icon {
    display: table;
    margin: 10px 0;
    width: 50px;
    height: 50px;
    border-radius: 7px;
}
.section_steps_bullets {
    display: none;
    margin: auto;
}
.section_steps_bullet {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    margin: 0 5px;
    border:1px solid #fff;
    border-radius: 100%;
    background: transparent;
}
.section_steps_bullet_active {
    background-color: #fff;
}
.section_step_div {
    min-height: 150px;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.section_step_div_active,
.section_step_div:hover {
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.section_faqs {
    background-image: url(../img/green_rectangle_bkg.svg);
    background-attachment: fixed;
    background-position: left 270px;
    background-size: 200px auto;
    background-repeat: no-repeat;
}
.section_faqs .section_title {
    max-width: 80%;
    margin: auto;
}
.section_faq {
    display: table;
    width: 100%;
    background: #fff;
    margin: 0 auto 15px auto;
    padding: 20px;
    border-radius: 7px;
    box-sizing: border-box;
    box-shadow: 0px 8px 24px rgb(38 50 56 / 10%), -1px 16px 32px rgb(38 50 58 / 8%);
}
.section_faq:hover {
    cursor: pointer;
    background: #f7f7f7;
}
.section_faq .section_text_small {
    display: none;
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
    max-width: calc(100% - 35px);
}
.section_faq_open .section_text_small {
    display: block;
}
.faq_chevron_down {
    display: none;
}
.section_faq .section_text {
    position: relative;
}
.section_faq .section_text {
    color: #6C5CE7;
}
.section_faq_open .section_text {
    color: #000;
}
.faq_chevron_left,
.faq_chevron_down {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    right: -10px;
    transform: translate(0%,-50%);
}
.section_faq_open .faq_chevron_left {
    display: none;
}
.section_faq_open .faq_chevron_down {
    display: block;
}
.section_faq .section_text span {
    max-width: calc(100% - 20px);
    display: table;
}
.section_hero_ideas .hero_content {
    max-width: 700px;
    margin: 50px auto 100px auto;
}
.section_hero_ideas .hero_h1 {
    font-size: 70px;
    line-height: 75px;
}
.section_hero_ideas .hero_h2 {
    font-size: 30px;
    line-height: 35px;
}

/*--- IDEAS LANDING PAGE ---*/
.section_hero_ideas {
    background-color: #000;
    background-image: url(../../landing_page_ideas/ideas_hero_bkg_left.svg), url(../../landing_page_ideas/ideas_hero_bkg_right.svg);
    background-position: left 10%, right 20%;
    background-size: 10% auto, 5% auto;
    background-repeat: no-repeat, no-repeat;
}
.logo_ideas {    
    font-weight: bold;
    font-size: 25px;
    letter-spacing: 0.25px;
    color: #F3C13F;
    margin-left: 5px;
}
.ideas_landing {
    background: #000;
    min-height: 100vh;
}
.ideas_landing .header_menu_item {
    color: #fff;
}
.ideas_landing .header_menu_item:hover,
.ideas_landing .header_menu_item:active {
    color: #fff;
    border-bottom: 3px solid #F3C13F;
    cursor: pointer;
}

/*--- NEW LANDING PAGE ---*/
.section_hero_landing {
    background-image: url(../../landing_page_new/landing_page_bkg_right.svg), url(../../landing_page_new/landing_page_bkg_left.svg), url(../../landing_page_new/landing_page_bkg.svg);
    background-position: right 20%, 35% top, top center;
    background-size: 20% auto, 15% auto, contain;
    background-repeat: no-repeat, no-repeat, no-repeat;
}
.landing_page .header_menu_item {
    color: #fff;
}
.landing_page .header_menu_item:hover,
.landing_page .header_menu_item:active {
    color: #fff;
    border-bottom: 3px solid #F3C13F;
    cursor: pointer;
}
.landing_hero_categories {
    display: table;
    width: 100%;
    margin-bottom: 50px;
}
.landing_hero_category {
    display: inline-block;
    vertical-align: middle;
    width: 22.5%;
    margin: 1%;
    border-radius: 20px;
    height: 350px;
    position: relative;    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.landing_hero_category_creators {
    background-image: url('../../landing_page_new/landing_creators_bkg.jpg');
}
.landing_hero_category_talent {
    background-image: url('../../landing_page_new/landing_talent_bkg.jpg');
}
.landing_hero_category_ideas {
    background-image: url('../../landing_page_new/landing_ideas_bkg.jpg');
}
.landing_hero_category_films {
    background-image: url('../../landing_page_new/landing_films_bkg.jpg');
}
.landing_hero_category_title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
}
.landing_hero_category h1 {    
    font-size: 30px;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    color: #fff; 
}
.landing_hero_category span {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: -1;
    height: 20px;
    border-radius: 10px;
    background: #9b51e0;
    width: 130%;
}

/* FIREFOX STYLE */
@-moz-document url-prefix() {
    .hero_content_right {
        width: 29%;
    }
    .section_virtual_right{
        width: 39%;
    }
    .section_steps_left {
        width: 59%;
    }
}
/*--- MEDIA QUERIES ---*/
@media only screen and (max-width: 600px) {
    .header_menu_account_icon {
        display: inline-block;
        vertical-align: middle;
        line-height: 0;
    }
    .header_right_button {
        display: none;
        position: absolute;
        top: 35px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100px;
    }
    .header_menu_mobile_icon {
        display: inline-block;
        vertical-align: middle;
    }
    
    .section_hero {
        background-image: url(../img/hero_bkg_right_mobile.png);
        background-position: right top;
        background-size: 50% auto;
    }

    .logo img {
        width: 130px;
    }
    .header_menu {
        display: none !important;
    }

    .hero_content_left,
    .hero_content_right,
    .section_virtual_left,
    .section_virtual_right,
    .section_steps_left,
    .section_steps_right {
        width: 100%;
        height: auto;
        display: table;
        vertical-align: initial;
    }
    .hero_content {
        padding: 0;
    }
    .hero_content_right {
        /* background-image: none; */
    }
    .hero_content_right_slide {
        position: relative;
        top: initial;
        right: initial;
        width: 100%;
        max-width: 90%;
        margin: 20px auto;
    }
    .hero_content_right_purple {
        display: none;
    }
    .hero_content .big_purple_button {
        margin: auto;
    }
    .hero_content .hero_text_small {
        text-align: center;
    }
    .hero_testimonial {
        box-shadow: none;
        padding: 0 20px;
    }    
    .hero_testimonial_text {
        direction: initial;
    }
    .hero_testimonial_img {
        position: relative;
        top: initial;
        left: initial;
        margin: 0;
        float: left;
        width: 60px;
        height: 60px;
    }
    .hero_testimonial_text_1 {
        width: 100%;
        text-align: left;
    }
    .hero_testimonial_text_2 {
        float: right;
        padding-top: 20px;
        margin: 0;
    }
    .hero_testimonial_text_under {
        display: none;
    }
    .hero_testimonial_text_above {
        display: block;
        text-align: center;
    }
    .section_virtual {
        background-image: none;        
    }
    .section_virtual .section_inner_1000 {
        width: 100%;
    }
    .section_virtual_right {
        background-color: #6c5ce7;
    }
    .section_virtual .section_title,
    .section_virtual .section_subtitle,
    .section_virtual_left,
    .section_virtual_right_content {
        margin: auto;
        padding: 0 2.5%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .section_virtual_right .section_text {
        color: #fff;
    }
    .section_virtual_img {
        display: none;
    }
    .section_virtual_img_mobile {
        display: table;
        width: 90%;
        max-width: 300px;
        height: auto;
        margin: 10px auto;
    }
    .purple_top_triangle {
        display: table;
        width: 100%;
        height: 100px;
        margin-top: -10px;
        background: linear-gradient(to bottom right, #fff 0%, #fff 50%, #6c5ce7 50%, #6c5ce7 100%);
    }
    .purple_bottom_triangle {
        display: table;
        width: 100%;
        height: 100px;
        margin-bottom: -80px;
        background: linear-gradient(to bottom right, #6c5ce7 0%, #6c5ce7 50%, #fff 50%, #fff 100%);
    }

    .section_steps_icon {
        display: none;
    }
    .section_steps_middle {
        padding: 20px 0 40px 0;
    }
    .section_steps_right {
        background-image: none;
        padding-bottom: 10px;
    }
    .section_steps_img {
        margin: auto;
        max-width: 300px;
        min-height: 533px;
    }
    .section_steps_bullets {
        display: table;
    }
    #section_steps_2,
    #section_steps_3 {
        display: none;
    }
    .section_step_div {
        padding: 0;
    }
    .section_step_div {
        display: none;
    }
    .section_step_div_active {
        display: block;
    }
    .section_step_div_active,
    .section_step_div:hover {
        box-shadow: none;
    }
    .section_faqs {
        background-attachment: initial;
        background-position: left 65px;
        background-size: 150px auto;
    }
    .section_faqs .section_subtitle {
        text-align: center;
    }    

    /*--- IDEAS ---*/
    .section_hero_ideas .hero_h1 {
        font-size: 35px;
        line-height: 40px;
    }
    .section_hero_ideas .hero_h2 {
        font-size: 21px;
        line-height: 27px;
    }

    /*--- NEW LANDING PAGE ---*/
    .landing_hero_category {    
        display: table;
        width: 100%;
        margin: 15px auto;
    }
    .landing_hero_category {
        height: 250px;;
    }
}