/*<editor-fold desc="MAIN STYLES">*/
html{
    width: 100%;
}
body{
    padding:0;
    margin:0;
    width: 100%;
    color: var(--text-color-main);
    background: var(--main-color);
    font-family: "Gotham SSm", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: var(--font-regular);
    font-size: 14.4px;
    line-height: 1.8em;
}

/*<editor-fold desc="BOOTSTRAP">*/
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1024px;
}
/*</editor-fold>*/

a{
    color: var(--text-color-second);
    text-decoration: none;
    transition: all 0.3s ease 0s;
}
a:hover{
    color: var(--text-color-second);
    text-decoration: underline;
}
a.black{
    color:var(--black-color);
}
a.lblue{
    color: #c5ebfb;
}
a.decoration{
    text-decoration: underline;
}

.scroll-top-button{
    background: var(--gradient-background) !important;
    opacity: 0.5;
}
.scroll-top-button:hover{
    opacity: 0.7;
}
.scroll-top-button svg{
    color: var(--white-color) !important;
}

.text-justify{text-align: justify;}
.hyphens-auto{hyphens: auto;}
.letter-spacing{letter-spacing: 2px;}

.border-radius{ border-radius: var(--border-radius);}
.border-radius-sm{ border-radius: var(--border-radius-sm);}

.border-table{
    border-collapse: collapse;
    border: none;
    background: rgba(240,245,250,1);
    padding: 5px;
    border-radius: var(--border-radius);
}
.border-table td, .border-table th{
    padding: 26px 18px;
    border-bottom: 1px solid var(--main-color);
}
.border-table tr:last-of-type td{
    border-bottom: none;
}

.btn, .btn-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7em 1.5em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    background: var(--button-gradient-background);
    color: var(--white-color);
    outline: 1px solid rgba(16,49,64,0) !important;
    box-shadow: 2px 2px 7px -2px rgba(0,0,0,0.2);
    line-height: 1.05em;
    transition: all 0.3s ease-out 0s;
}
.form .btn-submit{
    height: auto !important;
    min-height: var(--form-input-height);
}
.btn:hover, a.btn:hover, .btn-submit:hover{
    background: var(--button-gradient-background-hover);
    color: var(--white-color);
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    outline: 1px solid rgba(16,49,64,0.1);
    box-shadow: 0 0 5px -1px rgba(0,0,0,.3),
                -1px 0 3px -2px var(--text-color-third),
                1px 1px 2px -1px var(--text-color-second);
}
.btn-sm{
    padding: 7px 25px 8px 25px;
    border-radius: var(--border-radius-sm);
}
.btn.rounded{
    border-radius: 999px !important;
}

.icon-number{
    display:inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height:52px;
    border-radius: 50%;
    font-size: 2em;
    font-family: var(--font-black);
    background: var(--gradient-background-hover);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
    box-shadow: 2px 2px 5px -2px rgba(0,0,0,0.8);
}

.platform-screenshot{
    max-width: 100%;
    border-radius: var(--border-radius);
}
.glow{
    box-shadow: 0 4px 26.700000762939453px 0 #F4C25F4D;
}

.bg-third{ background:var(--third-color);}
.grey-back{background: var(--language-switcher-list-background-color);}

.bg-opacity{ background: rgba(0,0,0,0.2);}
.opacity-1{opacity:1;}
.opacity-09{opacity:0.9;}
.opacity-08{opacity:0.8;}
.opacity-07{opacity:0.7;}
.opacity-06{opacity:0.6;}
.opacity-05{opacity:0.5;}
.opacity-04{opacity:0.4;}
.opacity-03{opacity:0.3;}
.opacity-02{opacity:0.2;}
.opacity-01{opacity:0.1;}
.opacity-0{opacity:0;}

.text-color-main{ color: var(--text-color-main);}
.text-color-second{ color: var(--text-color-second);}
.text-color-yellow{ color: #F0AD4E;}
.text-color-white{ color: var(--white-color);}

.text-color-grey-1{ color: #111;}
.text-color-grey-2{ color: #222;}
.text-color-grey-3{ color: #333;}
.text-color-grey-4{ color: #444;}
.text-color-grey-5{ color: #555;}
.text-color-grey-6{ color: #666;}
.text-color-grey-7{ color: #777;}
.text-color-grey-8{ color: #888;}
.text-color-grey-9{ color: #999;}
.text-color-grey-a{ color: #aaa;}
.text-color-grey-b{ color: #bbb;}
.text-color-grey-c{ color: #ccc;}
.text-color-grey-d{ color: #ddd;}
.text-color-grey-e{ color: #eee;}

.nobr{white-space: nowrap;}

.text-gradient{
    color: var(--text-color-second);
    background: linear-gradient(to right, var(--text-color-second), var(--text-color-main));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.text-font-black{ font-weight: var(--font-black);}
.text-font-bold{ font-weight: var(--font-bold);}
.text-font-medium{ font-weight: var(--font-medium);}
.text-font-regular{ font-weight: var(--font-regular);}
.text-font-thin{ font-weight: var(--font-thin);}

.text-size-05{font-size: 0.5em;}
.text-size-06{font-size: 0.6em;}
.text-size-07{font-size: 0.7em;}
.text-size-08{font-size: 0.8em;}
.text-size-09{font-size: 0.9em;}
.text-size-10{font-size: 1em;}
.text-size-11{font-size: 1.1em;}
.text-size-12{font-size: 1.2em;}
.text-size-13{font-size: 1.3em;}
.text-size-14{font-size: 1.4em;}
.text-size-15{font-size: 1.5em;}
.text-size-16{font-size: 1.6em;}
.text-size-17{font-size: 1.7em;}
.text-size-18{font-size: 1.8em;}
.text-size-20{font-size: 2em;}
.text-size-22{font-size: 2.2em;}
.text-size-25{font-size: 2.5em;}
.text-size-30{font-size: 3em;}
.text-size-35{font-size: 3.5em;}
.text-size-40{font-size: 4em;}

.line-height-1{line-height: 1em;}
.line-height-12{line-height: 1.2em;}
.line-height-14{line-height: 1.4em;}
.text-shadow{text-shadow: 1px 1px 2px rgba(0,0,0,0.4);}
.text-shadow-white{text-shadow: 1px 1px 2px rgba(255,255,255,0.4);}

.mt-n15{ margin-top: -15rem;}
.mt-n10{ margin-top: -10rem;}
.mt-n5{ margin-top: -5rem;}
.mt-n4{ margin-top: -4rem;}
.mt-n3{ margin-top: -3rem;}
.mt-n2{ margin-top: -2rem;}
.mt-n1{ margin-top: -1rem;}

.max-w-800{
    max-width: 800px;
}

.w-80{
    width: 80%;
}

.list-style-none{list-style:none;}

.shadow-section{
    box-shadow: 0 8px 10px -5px #0000001a,0 -5px 10px -4px #0000001a;
}

.bg-boarded-block-1{
    background: var(--white-color);
    border: 1px solid #fdfdfd;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1), 2px 2px 10px 2px rgba(15,35,55,0.05);
}

.step-number{
    display: inline-block;
    font-weight: var(--font-bold);
    padding: 15px 0;
    color: var(--text-color-second);
    background: linear-gradient(to right, var(--text-color-second), var(--text-color-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.relative-z-index-1{
    position: relative;
    z-index: 1;
}
/*</editor-fold>*/

/*<editor-fold desc="STARS">*/
.uag-star-rating{
    font-size: 29px;
    display: flex;
    align-items: center;
}
.uag-star{
    color: #f0ad4e;
    margin-right: 2px;
    display: inline-block;
    line-height: 0.75em;
}
.uag-star:nth-child(5){position:relative;color: var(--white-color);}
.uag-star:nth-child(5)::before {
    color: #f0ad4e;
    width: 60%;
    position: absolute;
    content: '★';
    overflow: hidden;
}
.star-mark{
    background-color:transparent;
    color:#f0ad4e;
}
/*</editor-fold>*/

/*<editor-fold desc="HEADER">*/
.header{
    height: 88px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    margin-top: 1rem;
    z-index: 2;
}

header.active{
    background: rgba(255,255,255,0.85);
}

.navbar{
    width: 100%;
}
.navbar-brand img{
    max-height: 25px;
}
.nav-link{
    color: var(--text-color-main);
    font-weight: var(--font-medium);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
}
.nav-link:hover, .nav-link.active, .nav-link:focus, .nav-link:active{
    color: var(--text-color-second) !important;
}
.navbar-collapse.show .nav-link.active{
    text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
}
.nav-link.btn{
    padding:7px 25px 8px 25px !important;
    margin-left: 10px;
    color:var(--white-color);
}
.nav-link.btn.active, .nav-link.btn:hover{
    color: var(--white-color) !important;
    text-decoration: none;
}

.navbar-toggler{
    position: relative;
    display: inline-block;
    outline: 0 !important;
    border: none !important;
    box-shadow: none !important;
    line-height: 0;
    width: 22px;
    height: 22px;
    padding: 0;
    z-index: 5;
}
.navbar-toggler-icon{
    position: absolute;
    top:4px;
    right:0;
    border-radius: 1px;
    height: 2px;
    width: 100%;
    background: var(--text-color-main);
    transition: all 0.3s ease 0s;
}
.navbar-toggler-icon:nth-of-type(2){
    top: 10px;
}
.navbar-toggler-icon:nth-of-type(3){
    top: 16px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    background: var(--text-color-second);
}
.navbar-collapse.collapsing,
.navbar-collapse.show{
    position: absolute;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    left: 0;
    top: calc(100% + 1rem);
    right: 0;
    margin:0;
    z-index: 4;
    padding: 40px 15px 35px 15px;
    text-align: center;
}
.navbar-collapse.collapsing .nav-link,
.navbar-collapse.show .nav-link{
    text-align: center;
    margin-top:8px;
}
.navbar-collapse.collapsing .nav-link.btn,
.navbar-collapse.show .nav-link.btn{
    margin-top:12px;
}
/*</editor-fold>*/

/*<editor-fold desc="TEAM">*/
.team-item{
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.team-item>*{
    flex:1;
}
.team-info{
    position: relative;
}
.team-info-position{
    color: var(--grey-a-color);
}
.team-info>*{
    position: relative;
    z-index:1;
}
.team-info:before{
    content: " ";
    position: absolute;
    top:0;left:0;right:0;bottom:0;
    background: rgba(200,200,200,0.2);
    backdrop-filter: blur(8px);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index:0;
    transition: all 0.4s ease 0s;
}
.team-item:hover .team-info:before{
    background: rgba(135,135,135,0.2);
    backdrop-filter: blur(12px);
}
/*</editor-fold>*/

/*<editor-fold desc="FOOTER">*/
footer{
    background: var(--bg-footer);
    color: var(--grey-4-color);
}
.footer-logo img{
    width: 100px;
    opacity: 0.7;
    filter:grayscale(100%);
}
/*</editor-fold>*/


/*<editor-fold desc="LANGUAGE SWITCHER">*/
#language_select{
    font-family: inherit;
    font-weight: var(--font-medium);
    margin-left: 15px;
    min-width: 75px;
    border-radius: var(--border-radius-sm);
}
#language_select:hover .lang{
    color: var(--text-color-second);
}
#language_select:hover .arrow{
    border-color: transparent var(--text-color-second) var(--text-color-second) transparent;
}
#language_select .language_select-list{
    padding: 15px 0;
}
#language_select .language_select-list-item-link{
    padding: 5px 10px;
}
#language_select .language_select-list{
    border: none;
}
.language_select-list.show{
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;
}
/*</editor-fold>*/

/*<editor-fold desc="HOMEPAGE">*/
.homepage-main-text-section{
    position: relative;
    margin-top: 70px;
    min-height: calc(100vh - 88px - 70px);
    box-sizing: border-box;
}
.inner-page-gradient-section{
    position: relative;
    margin-top: 70px;
    box-sizing: border-box;
}
.bg-angle-gradient{
    position:absolute;
    width: 100%;
    top: calc(0% - 88px - 70px - 1rem);
    height: calc(100% - 75px + 88px + 70px);
    z-index:-1;
}
.bg-angle-gradient-1{
    position:absolute;
    width: 100%;
    top: -10%;
    height: calc(100% + 20%);
    opacity: 0.2;
    z-index:-1;
}
.bg-angle-gradient-inner-page{
    position:absolute;
    width: 100%;
    top: calc(0% - 88px - 70px - 1rem);
    height: calc(100% + 75px + 88px + 70px);
    opacity: 0.3;
    z-index:-1;
}
.object-cover {
    object-fit: cover;
}
.img-angle {
    -webkit-clip-path: polygon(0 0,100% 0,100% 64%,0 100%);
    clip-path: polygon(0 0,100% 0,100% 64%,0 100%);
}
.img-angle-1 {
    -webkit-clip-path: polygon(0 18%,100% 0,100% 82%,0 100%);
    clip-path: polygon(0 18%,100% 0,100% 82%,0 100%);
}

.homepage-bg-image{
    background-image: url("homepage-bg-desktop-2.jpg");
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.homepage-bg-image{
    background-image: url("homepage-bg-desktop-2.jpg");
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.evolution-year-holder{
    position: relative;
    align-items: start;
    z-index:2;
}
.evolution-year-holder:before{
    content: " ";
    position: absolute;
    top:-1rem;
    left:1rem;
    bottom:-1rem;
    width: 2px;
    background: var(--grey-e-color);
}
.evolution-year{
    position: relative;
    background: var(--gradient-background);
    color: var(--white-color);
    font-size: 12px;
    line-height: 12px;
    text-shadow: 1px 1px 0 rgba(0,0,0,1);
    padding: 5px 10px;
    border-radius: 2px;
    margin-left: 1rem;
}
.evolution-year:before{
    content: "";
    position: absolute;
    left:-12px;
    top:6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grey-a-color);
    z-index: 1;
}
.evolution-year:after{
    content: "";
    position: absolute;
    left:-3px;
    top:calc(50% - 4px);
    width: 6px;
    height: 6px;
    background: rgb(7, 10, 15);
    transform: rotateZ(45deg);
    z-index: -1;
}

.innovation-block-img img{
    width: 300px !important;
    height: 300px !important;
}
.innovation-block-text{
    position: relative;
}
.innovation-block-text h3 span{
    line-height: 10px;
}
.innovation-block-text .border-left{
    border-left: 3px solid var(--grey-7-color);
}


.main-wrapper{
    position: relative;
}

.empower-profit{
    background: var(--gradient-background);
}
.empower-profit-2{
    width: 33%;
    border-left: 1px solid rgba(255,255,255,0.5);
    border-right: 1px solid rgba(255,255,255,0.5);
}
.introduction-icon{
    width: 95px;
}
.unveiling-img{
    max-width: 500px;
    margin: 0 auto;
}
.invest-way-icon{
    width: 28px;
}

.homepage-unlocking{position: relative; overflow: hidden;}
.homepage-unlocking:before{
    content: "";
    position: absolute;
    left:-100px;
    top: 25%;
    width: 100px;
    height: 50%;
    max-height:400px;
    border-radius: 50%;
    box-shadow: 0 0 400px var(--second-color);
    z-index: -1;
}

.faq-bg{position: relative; }

.start-bg{position: relative; overflow: hidden;}
.start-bg:before{
    content: "";
    position: absolute;
    top:-100px;
    left: 10%;
    width: 80%;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 300px var(--glow-color);
    z-index: -1;
}

.bg-support{
    background: #211F37;
}

.reviews-bg{
    box-shadow: inset -100px 0 100px rgba(0,0,100,0.5), inset 200px 0 250px rgba(0,0,0,0.8);
}
.overview-bg{
    box-shadow: inset 0 50px 100px rgba(0,0,90,0.5),inset 0 -100px 250px rgba(0,0,0,0.3);
}

.advantages-bg{position: relative; overflow: hidden;}
.advantages-bg:before{
    content: "";
    position: absolute;
    bottom:-100px;
    left: 10%;
    width: 80%;
    height: 100px;
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: -50px 0 300px 100px rgba(131,204,93,0.3), 0 -100px 300px rgba(40,162,251,0.3), 50px 0 300px rgba(52,86,255,0.3);
    z-index: -1;
}

.how-it-works-bg{position: relative; overflow: hidden;}
.how-it-works-bg:before{
    content: "";
    position: absolute;
    top:-100px;
    left: 10%;
    width: 80%;
    height: 100px;
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: -50px 0 300px 100px rgba(131,204,93,0.3), 0 -100px 300px rgba(40,162,251,0.3), 50px 0 300px rgba(52,86,255,0.3);
    z-index: -1;
}

.photo-review{
    width: 60px !important;
    border-radius: 50%;
}
.reviews-item{
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    border: var(--form-border);
}
.review-item-text{
    background: rgba(240,245,250,1);
    padding: 10px;
    border-radius: var(--border-radius);
}
.global-reach-img{
    max-width: 500px;
}

.tradingview-widget-container iframe{
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
}
/*</editor-fold>*/

/*<editor-fold desc="FORM">*/
.form{
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;
}
.form_header{
    font-size: 2em;
    font-weight: var(--font-bold);
    text-align: left;
    padding: 15px 0;
}
.form input[type="text"], .form input[type="email"], .form input[type="password"], .form textarea, .form select {
    border:1px solid var(--grey-c-color);
}
.form .btn-submit{
    font-size: 17px;
    font-weight: var(--font-medium);
}
.form-minimum-deposit{
    font-size: 1.3em;
    font-weight: bold;
    color: var(--text-color-second);
    margin: 5px 0 15px 0;
}
.form-disclaimer{
    border-top: 2px solid var(--grey-e-color);
    text-align: left;
    font-size: 0.8em;
    font-weight:var(--font-medium);
    color: var(--grey-7-color);
    margin: 5px 0 0 0;
    padding: 5px 0 2px 10px;
}
/*</editor-fold>*/

/*<editor-fold desc="PAGE SIGN UP">*/
.sign-up-section{
}
/*</editor-fold>*/

/*<editor-fold desc="PAGE ABOUT">*/
.contact-section{
}
/*</editor-fold>*/

/*<editor-fold desc="FAQ">*/
.faq_question{
    border: 1px solid var(--second-color);
    cursor:pointer;
    transition: all 0.3s ease 0s;
}
.faq_question>div:nth-of-type(1){
    max-width: calc(100% - 45px);
}
.faq_question:hover:not(.active){
    background: var(--language-switcher-list-background-color);
}
.faq_question.active{
    background: var(--gradient-background);
}
.faq_question .arrows{
    position: relative;
    width: 30px;
    height:30px;
    line-height: 0;
    overflow: hidden;
}
.faq_question .arrows img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    transition: transform 0.3s ease-out 0s;
}
.faq_question .arrows img:nth-of-type(2){
    transform: rotateX(90deg);
    opacity: 0;
}
.faq_question.active .arrows img:nth-of-type(1){
    transform: rotateX(-90deg);
    opacity: 0;
}
.faq_question.active .arrows img:nth-of-type(2){
    transform: rotateX(0deg);
    opacity: 1;
}
.faq_question+.faq_answer{
    transform: rotateX(90deg);
    height:0;
    opacity:0;
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
}
.faq_question.active+.faq_answer{
    height: auto;
    opacity:1;
    transform: rotateX(0deg);
}

/*</editor-fold>*/

/*<editor-fold desc="BLOG">*/
.blog-list-item{
    background: var(--language-switcher-list-background-color);
}
.blog-list-item-title{
    line-height: 1.2em;
    height:2.4em;
    overflow: hidden;
}
.blog-list-item-a:hover{color:var(--white-color);}
/*</editor-fold>*/

/*<editor-fold desc="Intl Tel Input">*/
.iti__selected-flag{
    background: rgba(225,225,225,0.5);
    border-right: 1px solid var(--grey-d-color);
    border-radius: var(--form-input-radius) 0 0 var(--form-input-radius);
}
.iti__flag{
    border-radius: 3px;
    box-shadow:1px 1px 3px -1px rgba(35,35,35,0.3);
    margin-left: 5px;
    margin-right: 3px;
}

/*</editor-fold>*/

/*<editor-fold desc="Cookiebar">*/
#cookie-bar {
    background: rgba(245,249,255,0.85) !important;
    backdrop-filter: blur(12px);
}
#cookie-bar .cb-disable {
    background: var(--grey-5-color) !important;
}
/*</editor-fold>*/

.iti__flag-container {
    z-index: 1000;
}