/*<editor-fold desc="MAIN STYLES">*/
html{
    width: 100%;
}
body{
    padding:0;
    margin:0;
    font-size: 15px;
    width: 100%;
    color: var(--text-color-main);
    background: var(--bg-body);
}

a{
    color: var(--text-color-main);
    text-decoration: none;
    transition: all 0.3s ease 0s;
}
a:hover{
    color: var(--text-color-second);
    text-decoration: none;
}
.inderline{text-decoration: underline;}
.list-style-none{list-style: none;}
.border-radius{ border-radius: var(--border-radius);}
.border-radius-sm{ border-radius: var(--border-radius-sm);}

.border-table{
    border-collapse: collapse;
    border-radius: var(--border-radius);
    border-style: hidden;
    box-shadow: 0 0 0 1px var(--third-color);
}
.border-table th{
    padding: 10px 5px;
    font-family: var(--font-tektur-medium);
    font-size: 1.3em;
    text-align: center;
    border:1px solid rgb(105, 175, 255);
    background: var(--gradient-background-2);
}
.border-table th:first-of-type{ border-radius: var(--border-radius) 0 0 0;}
.border-table th:last-of-type{ border-radius: 0 var(--border-radius) 0 0;}
.border-table td{
    padding: 6px 8px;
    border: 1px solid var(--third-color);
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F4C25F;
    background: var(--gradient-background);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
    line-height: 1.05em;
}
.btn:hover, a.btn:hover{
    background: var(--gradient-background-hover);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    color: var(--white-color);
}
.btn-sm{
    padding: 8px 25px;
    border-radius: var(--border-radius-sm);
}

.form{
    padding: 40px 35px;
    box-shadow: 4px 4px 1px 10px rgba(40,0,30,0.4);
}
.btn-submit{
    opacity:1 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.btn-submit:hover{
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}
.form .input_group{
    box-shadow: 4px 4px 0 1px rgba(30,0,20,0.8);
}
.glow{
    box-shadow: 0 4px 26.700000762939453px 0 #F4C25F4D;
}

.white-back{background: var(--white-color);}
.grey-back{background: var(--language-switcher-list-background-color);}
.grey-2-back{background: var(--grey-2-color);}
.grey-3-back{background: var(--grey-3-color);}
.grey-4-back{background: var(--grey-4-color);}
.grey-5-back{background: var(--grey-5-color);}
.second-back{background: var(--second-color);}
.third-back{background: var(--third-color);}

.dash-underline{
    position: relative;
}
.dash-underline:after{
    content:"";
    position: absolute;
    left:0;bottom:-6px;
    height:3px;
    width: 40px;
    background: var(--third-color);
}
.dot-title-img svg{
    width: 20px; height: 20px;
}

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

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

.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-25{font-size: 2.5em;}
.text-size-30{font-size: 3em;}
.text-size-35{font-size: 3.5em;}

.text-shadow{text-shadow: 1px 1px 0 rgba(0,0,0,0.1);}
.text-shadow-white{text-shadow: 1px 1px 0 rgba(255,255,255,0.2);}
.text-shadow-third{text-shadow: 1px 1px 4px var(--third-color), 1px 0 0px var(--third-color);}

.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;}

.min-h-2{min-height: 3.2rem;}
/*</editor-fold>*/

/*<editor-fold desc="HEADER">*/
header{
    position: relative;
    display: flex;
    width: 100%;
    height: 130px;
    align-items: center;
    background: rgba(24,24,24,0.7);
    z-index: 4;
}
.body_home header{
    background: transparent;
}
header.active{
    background: rgba(24,24,24,0.95);
}

.navbar{
    width: 100%;
}
.navbar-brand img{
    max-height: 46px;
    margin-right: 10px;
}
.navbar-brand{
    color: var(--text-color-main);
    font-size: 2em;
    font-family: var(--font-bold);
}
.navbar-brand span{
    display: inline-block;
    transform:translateY(5px);
}
.navbar-brand:hover{
    color: var(--text-color-main);
}
.nav-link{
    color: var(--text-color-main);
    font-family: var(--font-tektur-medium);
    font-size: 18px;
    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:8px 25px !important;
    margin-left: 10px;
}
.nav-link.btn.active, .nav-link.btn:hover, .nav-link.btn:focus, .nav-link.btn:active{
    color: var(--white-color) !important;
}

.navbar-toggler{
    position: relative;
    display: inline-block;
    outline: 0 !important;
    border: none !important;
    box-shadow: none !important;
    line-height: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    z-index: 5;
}
.navbar-toggler-icon{
    position: absolute;
    top:4px;
    right:0;
    border-radius: 2px;
    height: 3px;
    width: 100%;
    background: var(--text-color-main);
    transition: all 0.3s ease 0s;
}
.navbar-toggler-icon:nth-of-type(2){
    top: 14px;
}
.navbar-toggler-icon:nth-of-type(3){
    top: 24px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2){
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1){
    top:3px;
    right:2px;
    width: 33px;
    transform-origin: 100% 0;
    transform: rotateZ(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3){
    top:27px;
    width: 32px;
    transform-origin: 100% 0;
    transform: rotateZ(45deg);
}
.navbar-collapse.collapsing,
.navbar-collapse.show{
    position: absolute;
    background: #1D1D24;
    box-shadow: 0 20px 100px 20px #1D1D24;
    left: 0;
    top: 75px;
    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-9-color);
}
.footer-logo img{
    max-height: 44px;
    margin-right: 10px;
    filter:grayscale(100%);
}
.footer-logo{
    color: var(--text-color-main);
    font-size: 1.7em;
    opacity: 0.7;
    font-family: var(--font-bold);
}
.footer-logo:hover{
    color: var(--text-color-main);
}
.footer-logo span{
    display: inline-block;
    transform:translateY(5px);
}
/*</editor-fold>*/


/*<editor-fold desc="LANGUAGE SWITCHER">*/
#language_select{
    font-family: 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;
}
/*</editor-fold>*/

/*<editor-fold desc="HOMEPAGE">*/
.homepage-main-text-section{
    position: relative;
    background: #1D1D24;
    background-size: cover;
    margin-top: -130px;
    padding-top: 170px;
    min-height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}
.homepage-main-text-section .bg-image{
    position: absolute;
    z-index: 0;
}
.bg-image-01{
    left:0;top:0;right:0;bottom:0;
    background: transparent url(../img/abstractbg-01.png) left top repeat;
}
.abstract-bg-02{
    background: transparent url(../img/abstractbg-02.png) left top repeat;
}
.abstract-bg-03{
    background: transparent url(../img/abstractbg-03.png) left top repeat;
    box-shadow: inset 0 10px 40px #1d1d24;
}
.abstract-bg-04{
    background: transparent url(../img/abstractbg-04.png) left center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.abstract-bg-05{
    background: transparent url(../img/abstractbg-05.png) left top repeat;
    box-shadow: inset 0 10px 40px #1d1d24;
}
.abstract-bg-06{
    background: transparent url(../img/abstractbg-06.jpg) center center no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 20px #1d1d24;
}
.bg-image-02{
    top:-35%;right:-20%;
    width: 72%;
    height:0;
    padding-top:68%;
    border-radius: 60%;
    overflow: hidden;
    box-shadow: -10px 10px 30px 15px rgba(1,1,5,0.3);
}
.bg-image-02 div{
    position: absolute;
    bottom:0;left:0;
    width: 100%;
    height:100%;
    background: transparent url(../img/bg-01.jpg?v=2) left bottom repeat;
    background-size: cover;
    opacity: 0.7;
    z-index:0;
}
.bg-image-02::before{
    content: "";
    position: absolute;
    top:0;right:0;left:0;bottom:0;
    background: rgb(155,37,95);
    background: radial-gradient(circle, rgba(139,37,120,1) 0%, rgba(139,48,116,1) 15%, rgba(139,48,106,1) 15%, rgba(139,48,106,1) 30%, rgba(122,42,114,1) 30%, rgba(122,42,114,1) 50%, rgba(102,28,116,1) 50%, rgba(102,28,116,1) 70%, rgba(83,24,117,1) 70%, rgba(102,28,116,1) 90%, rgba(112,32,116,1) 90%);
    opacity: 0.85;
    z-index: 1;
}
.bg-image-02::after{
    content: "";
    position: absolute;
    top:0;right:0;left:0;bottom:0;
    background: rgb(93,25,106);
    background: linear-gradient(153deg, rgba(93,25,106,1) 15%, rgba(163,33,61,1) 85%);
    opacity: 0.6;
    z-index: 2;
}


.homepage-main-text-section .container{
    position: relative;
    z-index:3;
}
.homepage-best-way-to-invest-section{
    background: transparent url(../img/best-way-background.jpg) center center no-repeat;
    background-size: cover;
}
.unlocking-block{
    height: 100%;
    background: var(--coloured-block-bg);
    box-shadow: 4px 4px 0 1px rgba(30,0,20,0.8);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.5s ease-in-out;
}
.unlocking-block:hover {
    box-shadow: 8px 14px 0 1px rgba(30,0,20,0.8);
    transform: translateY(-10px) translateX(-2px);
}
.unlocking-block .text-color-third{transition: all 0.5s ease-in-out;}
.unlocking-block:hover .text-color-third{ color: var(--white-color);}
.unlocking-icon-holder{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background: #272730;
    overflow: hidden;
}
.unlocking-block-2{
    box-shadow: 4px 4px 0 6px var(--second-color);
}
.unlocking-block-2:hover{
    box-shadow: 2px 2px 0 4px var(--second-color);
    transform: translateY(2px) translateX(1px);
}
.unlocking-icon{
    max-height: 40px;
    max-width: 40px;
}
.how-to-invest{
    position: relative;
}
.how-to-invest p{
    position: relative;
    z-index: 1;
}
.how-to-invest:before{
    content: "1";
    position: absolute;
    top:20px;
    left:20px;
    color: var(--text-color-second);
    background: -webkit-linear-gradient(var(--second-color), var(--third-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20em;
    line-height:1em;
    font-family: var(--font-bold);
    opacity: 0.4;
    z-index:0;
}
.how-to-invest-2:before{content: "2";}
.how-to-invest-3:before{content: "3";}

.empower-profit{
    background: var(--gradient-background-2);
}
.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;
}
.quote-icon{
    width: 52px !important;
}
.photo-reviews-icon{
    width: 50px !important;
    border-radius: var(--border-radius-sm);
}
.reviews-item{
    background: var(--coloured-block-bg);
    border: 1px solid var(--third-color);
    border-radius: var(--border-radius);
}
.global-reach-img{
    max-width: 500px;
}

.trendy-item{
    height: 100%;
}
/*</editor-fold>*/

/*<editor-fold desc="PAGE SIGN UP">*/
.sign-up-section{
    background: var(--black-color);
    box-sizing: border-box;
}

form .input_group{
    box-shadow: 1px 1px 4px -3px rgba(55,55,55,0.3);
    border-radius: var(--border-radius);
}
#to-sign-up form{
    position: sticky;
    top:15px;
}
#to-sign-up .input_group{
    margin-top:10px;
}
/*</editor-fold>*/

/*<editor-fold desc="PAGE ABOUT">*/
.contact-section{
    background: #000;
    min-height: calc(100vh - 130px - 120px);
    box-sizing: border-box;
}
/*</editor-fold>*/

/*<editor-fold desc="FAQ">*/

.faq-item{
    position: relative;
    background: var(--coloured-block-bg);
    box-shadow: 3px 3px 15px -2px rgba(34,36,38,0.2);
}
.faq-item::before{
    content: "";
    position: absolute;
    left:0;
    top:0;
    height:10px;
    width: 100%;
    background: var(--gradient-background-2);
}

/*</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="OWL CAROUSEL">*/
.owl-carousel.full_height .owl-stage{display: flex;}
.owl-carousel.full_height .item,
.owl-carousel.full_height .item .reviews-item,
.owl-carousel.full_height .item .faq-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.owl-carousel.full_height .item .reviews-item>*,
.owl-carousel.full_height .item .faq-item>*{
    /* flex:1; */
}
.owl-nav{
    position: absolute;
    top: 50%;
    left:0;right:0;
}
.owl-prev, .owl-next{
    position: absolute;
    display: inline-flex;
    text-align: center;
    align-items: center;
    left:-40px;
    top:0;
    z-index:10;
    height: 120px;
    margin-top:-80px;
    font-size: 120px !important;
    line-height: 0px !important;
    font-weight: 100 !important;
    border-radius: 50%;
    color: var(--grey-9-color) !important;
    transition: all 0.5s ease 0s;
}
.owl-next{
    left: auto;
    right:-40px;
}
.owl-prev:hover, .owl-next:hover{
    color: var(--white-color) !important;
}
/*</editor-fold>*/

/*<editor-fold desc="PLAY BUTTON">*/
.play-btn {
    width: 70px; min-width:70px;
    height: 70px;
    background: var(--white-color);
    border-radius: 50%;
    position: relative;
    display: block;
    margin: 0 20px 0 30px;
    box-shadow: 0 0 0 5px rgba(55, 55, 55, 0.2);
}

/* triangle */
.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--second-color);
    z-index: 2;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}
.a-play-btn:hover .play-btn:before{
    border-color: var(--second-color);
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.75), 0 0 0 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

/*</editor-fold>*/
