/*<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;
}

a.underline {
    text-decoration: underline;
}

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

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

.border-table {
    border-collapse: collapse;
    border: 1px solid var(--second-color);
}

.border-table th {
    background: transparent;
    border: 1px solid var(--second-color);
    color: var(--text-color-main);
}

.border-table td {
    padding: 6px 8px;
    border: 1px solid var(--second-color);
    background: transparent;
    color: var(--text-color-main);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F4C25F;
    background: var(--gradient-horisontal-background);
    color: var(--white-color);
    border: none;
    transition: all 0.3s ease 0s;
}

.btn:hover,
a.btn:hover {
    background: var(--gradient-horisontal-background-hover);
    color: var(--white-color);
}

.btn-sm {
    padding: 8px 25px;
    border-radius: var(--border-radius-sm);
}

.glow {
    box-shadow: 0 4px 26.700000762939453px 0 #F4C25F4D;
}

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

.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-dark-link {
    color: #1562F8;
}

.text-gradient {
    color: var(--text-color-second);
    background: -webkit-linear-gradient(var(--text-color-second), var(--text-color-third));
    -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);
}

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

/*</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: 1;
}

.body_home header {
    background: transparent;
}

header.active {
    background: rgba(24, 24, 24, 0.95);
}

.navbar {
    width: 100%;
}

.navbar-brand img {
    max-height: 66px;
}

.nav-link {
    color: var(--text-color-main);
    font-family: var(--font-tektur-medium);
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: left;
}

.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 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    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: linear-gradient(199.59deg, #F4C25F 10.21%, #C57600 85.72%);
    left: 0;
    top: -30px;
    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 {
    width: 100px;
    opacity: 0.7;
    filter: grayscale(100%);
}

/*</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 {
    background: transparent url("../images/homepage-background.jpg") right top no-repeat;
    background-size: cover;
    box-shadow: inset 500px 0 1000px 200px rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
}

.unlocking-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: linear-gradient(219.29deg, #1d3d67 0.62%, #1b293c 37.56%, #1b293b 81.09%);
    border: 1px solid #33a9ff;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.5s ease;
}

.unlocking-block:hover {
    background: var(--second-color);
    transition: transform 0.5s ease;
    transform: translateY(-15px);
}

.unlocking-icon {
    height: 65px;
}

.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(--text-color-second), var(--text-color-third));
    -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";
}

.homepage-best-way-to-invest-section {
    background: transparent url("../images/best-way-to-invest-background.jpg") right bottom no-repeat;
    background-size: cover;
}

.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 {
    background: transparent url("unlocking-background.png") center top no-repeat;
    background-size: cover;
}

.quote-icon {
    width: 52px !important;
}

.photo-reviews-icon {
    width: 50px !important;
}

.reviews-item {
    border: 1px solid var(--second-color);
}

.global-reach-img {
    max-width: 500px;
}

/*</editor-fold>*/

/*<editor-fold desc="PAGE SIGN UP">*/
.sign-up-section {
    background: transparent url("") left bottom no-repeat;
    background-size: contain;
    box-sizing: border-box;
}

/*</editor-fold>*/

/*<editor-fold desc="PAGE ABOUT">*/
.contact-section {
    background: transparent url("") left top no-repeat;
    background-size: cover;
    min-height: calc(100vh - 130px - 120px);
    box-sizing: border-box;
}

/*</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-info>div:first-of-type {
    font-family: var(--font-tektur-medium);
}

.blog-list-item-a {
    font-family: var(--font-tektur-medium);
}

.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 {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.owl-carousel.full_height .item .reviews-item>* {
    flex: 1;
}

.owl-dots {
    margin-top: 15px;
}

.owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 5px;
    border: 2px solid var(--second-color) !important;
}

.owl-dot.active {
    background: var(--gradient-background) !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>*/

/*<editor-fold desc="FORM">*/
.form {
    padding-left: 2rem;
    padding-right: 2rem;
}

.form_header {
    font-family: var(--font-bold) !important;
}

.form input,
.form textarea {
    box-shadow: 0 0 1px 0 rgba(0, 25, 80, 1) !important;
    font-size: 1.1em;
}

.btn-submit {
    line-height: 1.2em !important;
    height: auto !important;
    min-height: var(--form-input-height);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

/*</editor-fold>*/