@font-face{
    font-family: montserrat;
    src: url('fonts/Montserrat/static/Montserrat-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0px;
    padding: 0px;
    font-family: montserrat;
    letter-spacing: 1px;
}

html {
    min-width: 400px;
}

.light {
    --color-primary1: #0D1117;
    --color-primary2: #1A2F5E;
    --color-primary3: #3762C4;
    --color-primary4: #F5F7FA;
    --color-primary5: #96A9D4;
    --color-primary6: #BACCF4;
    --color-primary7: #0C214EE5;

    --color-button-primary1: #406CCD;
    --color-button-primary2: #0C214E;

    --color-text-primary1: #E6EDF3;
    --color-text-primary2: #0C214E;
    --color-text-primary3: #6F95E8;

    --color-box-shadow-primary1: #2A42780D;

    --color-form-background: #ffffff;

    --color-border: #CFD2D8;

    --size-primary: 16px;
    --size-small: 12px;
    --size-h1: 40px;
    --size-h2: 24px;

    --weight-h1: 700;
    --weight-h2: 700;
}

/* Buttons */
.btn {
    padding: 10px 30px;
    font-size: var(--size-primary);
    border-radius: 10px;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--color-button-primary1);
    color: var(--color-text-primary1);
}
.btn-primary1 {
    background-color: var(--color-button-primary2);
    color: var(--color-text-primary1);
}

/* Headers */
.h1 {
    font-weight: var(--weight-h1);
    font-size: var(--size-h1);
}
.h2 {
    font-weight: var(--weight-h2);
    font-size: var(--size-h2);
}

/* Text colors */
.text-color-primary1 {
    color: var(--color-text-primary1);
}
.text-color-primary2 {
    color: var(--color-text-primary2);
}
.text-color-primary3 {
    color: var(--color-text-primary3);
}

/* Tabs */
.tab {
    display: flex;
    width: 100%;
}
.tab-item {
    padding: 8px 24px 27px 24px;
    border-bottom: 2px solid var(--color-text-primary1);
    flex: 1 1 0;
    color: var(--color-text-primary3);
    cursor: pointer;
}
.tab-item.active {
    border-bottom: 2px solid var(--color-primary3);
    color: var(--color-text-primary1);
}
.tab-content {
    margin-top: 16px;
}
.tab-panel {
    padding: 10px 0px;
    display: none;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}
.tab-panel.show {
    display: block;
}

/* Width */
.w-100 {
    width: 100%;
}

/* Margins */
.mt-43 {
    margin-top: 43px;
}

.mt-24 {
    margin-top: 24px;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1120px;
    padding: 8px 32px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--color-text-primary1);
    border-radius: 5px;
}

.breadcrumb a {
    position: relative;
    margin-left: 32px;
}
.breadcrumb a:first-of-type {
    margin-left: 0px;
}

.breadcrumb a::after {
    content: "";
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('img/breadcrumb.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.breadcrumb a:last-of-type::after {
    content: none;
}

/* Texts */
.text-center {
    text-align: center;
}
.text-bold {
    font-weight: var(--weight-h1);
}

/* Forms */
.form-control {
    background-color: var(--color-form-background);
    padding: 22px 24px;
    width: 100%;
    outline: none;
    border-radius: 5px;
}

.form-select {
    padding: 8px 30px;
    border-radius: 5px;
    font-weight: var(--weight-h1);
    background-color: var(--color-button-primary2);
    color: var(--color-text-primary1);
}

/* Table */
.table {
    width: 100%;
}

.table tr th {
    background: linear-gradient(var(--color-text-primary2), var(--color-primary3));
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary1);
}

.table tr td {
    border: 1px solid var(--color-border);
    color: var(--color-text-primary2);
    padding: 16px;
}

/* Header */
.header {
    background-color: var(--color-primary1);
    padding: 35px 80px;
    display: flex;
    flex-wrap: wrap;
}

/* Header - Left Side */
.header .left-side {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.header .left-side .logo {
    width: 111px;
    height: 78px;
}

.header .left-side .menu {
    justify-content: right;
    align-items: center;
    display: flex;
    color: var(--color-text-primary1);
}

.header .left-side .menu .menu-item {
    padding: 10px 12px;
    margin-left: 24px;
    font-size: var(--size-primary);
}

/* Header -Right Side */
.header .right-side {
    width: 30%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.header .right-side .menu-bar {
    display: none;
    width: 24px;
    cursor: pointer;
}

.header .right-side .language {
    margin-left: 24px;
}

.header .right-side .auth {
    margin-left: 24px;
}

.header .menu-mobile {
    display: none;
    color: var(--color-text-primary1);
    margin-top: 20px;
    transition: 1s;
}

.header .menu-mobile.collapsed {
    display: block;
    flex-direction: column;
    height: 100vh;
}

.header .menu-mobile .menu-item {
    margin-top: 24px;
}

.header .menu-mobile .menu-item:first-of-type {
    margin-top: 0px;
}

/* Banner */
.banner {
    background-image: url('img/banner1.jpg');
    background-color: #00000080;
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 678px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner a {
    margin-top: 24px;
    display: inline-block;
}

/* Benefit */
.benefit {
    background-color: var(--color-primary4);
    padding: 80px;
}

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

.benefit .benefit-1 p {
    max-width: 1084px;
    margin-top: 12px;
}

.benefit .benefit-2 {
    margin-top: 80px;
}

.benefit .benefit-2 img {
    height: 270px;
    width: 100%;
    object-fit: cover;
}

.benefit .benefit-2 .counter {
    margin-top: 56px;
    display: flex;
}

.benefit .benefit-2 .counter .counter-item {
    background: linear-gradient(var(--color-primary2), var(--color-primary3));
    width: calc(20% - 24.2px);
    padding: 49.5px 0px;
    text-align: center;
    margin-left: 30px;
}
.benefit .benefit-2 .counter .counter-item:first-of-type {
    margin-left: 0px;
}

.benefit .benefit-3 {
    display: flex;
    width: 100%;
    justify-content: center;
}

.benefit .benefit-3 .instructions {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    max-width: 1084px;
}

.benefit .benefit-3 .instructions .instruction-item {
    box-shadow: 0px 8px 5px 0px var(--color-box-shadow-primary1);
    margin-top: 24px;
    padding: 16px 0px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.benefit .benefit-3 .instructions .instruction-item:first-of-type {
    margin-top: 0px;
}

.benefit .benefit-3 .instructions .instruction-item .number {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: double 3px transparent;
    border-image: linear-gradient(to bottom, var(--color-primary2) 0%, var(--color-primary3) 100%) 1;
}

.benefit .benefit-3 .instructions .instruction-item p {
    margin-top: 8px;
}

.benefit .benefit-4 {
    display: flex;
    margin-top: 80px;
    align-items: center;
}

.benefit .benefit-4 .left-side {
    width: 730px;
}

.benefit .benefit-4 .left-side img {
    height: 585px;
}

.benefit .benefit-4 .right-side {
    width: calc(100% - 730px);
}

.benefit .benefit-4 .right-side p {
    margin-top: 16px;
}

.benefit .benefit-4 .right-side .btn {
    margin-top: 24px;
    display: inline-block;
}

/* Blue divider */
.blue-divider {
    background: linear-gradient(var(--color-primary2), var(--color-primary3));
    padding: 40px 134px;
}

/* How to start */
.how-to-start {
    margin-top: 106px;
    padding: 0px 80px;
}

.how-to-start .how-to-start-1 {
    display: flex;
    width: 100%;
}

.how-to-start .how-to-start-1 div {
    width: 50%;
}

.how-to-start .how-to-start-2 {
    display: flex;
    width: 100%;
    margin-top: 40px;
}

.how-to-start .how-to-start-2 .box {
    padding: 40px;
    border: double 3px transparent;
    border-image: linear-gradient(to bottom, var(--color-primary5) 0%, var(--color-primary3) 100%) 1;
    width: 50%;
    margin-left: 20px;
}
.how-to-start .how-to-start-2 .box:first-of-type {
    margin-left: 0px;
}

.how-to-start .how-to-start-2 .box p{
    margin-top: 24px;
}

/* Footer */
.footer {
    margin-top: 173px;
    background-color: var(--color-primary1);
    color: var(--color-text-primary1);
}

.footer .footer-1 {
    display: flex;
    width: 100%;
    padding: 80px 160px 40px 160px;
}

.footer .footer-1 p {
    width: 30%;
    justify-content: center;
    align-items: center;
    display: flex;
}
.footer .footer-1 p:first-of-type {
    width: 40%;
}
.footer .footer-1 .copyright {
    font-weight: var(--weight-h1);
}

.footer .footer-1 p.payments {
    display: flex;
}

.footer .footer-1 p.payments img {
    margin-left: 24px;
    width: 80px;
    height: 80px;
}

.footer .footer-1 p.payments img:first-of-type {
    margin-left: 0px;
}

.footer hr {
    color: var(--color-text-primary1);
}

.footer .footer-2 {
    padding: 40px 160px 80px 160px;
    display: flex;
}

.footer .footer-2 .footer-2-block {
    width: 25%;
}

.footer .footer-2 .footer-2-block .title {
    font-weight: var(--weight-h1);
}

.footer .footer-2 .footer-2-block p {
    margin-bottom: 24px;
}

.footer .footer-2 .footer-2-block a {
    font-size: var(--size-small);
    margin-top: 16px;
    display: block;
}
.footer .footer-2 .footer-2-block a:first-of-type {
    margin-top: 0px;
}

/* Login */
.login {
    padding-top: 72px;
    position: relative;
}

.login .login-form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.login .login-form div:last-of-type {
    margin-top: 40px;
}

.login .login-form .box {
    background: linear-gradient(var(--color-primary2), var(--color-primary3));
    padding: 80px 40px;
    border-radius: 5px;
}

.login .login-form .box input {
    margin-top: 24px;
}

.login .login-form .box input:first-of-type {
    margin-top: 0px;
}

.login .login-form .box button {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    margin-top: 24px;
}

.login .login-form .box a {
    text-decoration: underline;
    color: var(--color-text-primary1);
}

.login .contact-us-form {
    max-width: 1080px;
}

.login .contact-us-form .box .row {
    display: flex;
    gap: 20px;
}

.login .contact-us-form .box .row input:first-of-type {
    margin-top: 24px;
}

.login .question-form .box .row input:first-of-type {
    margin-top: 24px;
}

.login .question-form {
    max-width: 1080px;
}

.login .question-form .box .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.login .question-form .box .row input {
    margin-top: 0px;
}

.login .question-form .box .row input:first-of-type {
    margin-top: 0px;
}

.login .question-form div:last-of-type {
    margin-top: 0px;
}

.login img {
    position: absolute;
    z-index: -1;
}

.login .img-1 {
    left: 72px;
    bottom: -147px;
}

.login .img-2 {
    right: 73px;
    bottom: -58px;
}

/* Online Market Banner */
.online-market-banner {
    background: linear-gradient(var(--color-primary2), var(--color-primary3));
    padding: 72px 265px 235px 265px;
    position: relative;
}

.online-market-banner div {
    text-align: center;
}

.online-market-banner p {
    margin-top: 21px;
}

.online-market-banner .img-1 {
    position: absolute;
    bottom: -105%;
    height: 725px;
    width: 50%;
    left: 11%;
}

.online-market-banner .img-2 {
    position: absolute;
    bottom: -50%;
    height: 269px;
    left: 50%;
}

/* Online Market Info */
.online-market-info {
    margin-top: 478px;
    max-width: 837px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-primary2);
    text-align: center;
}

.online-market-info .group {
    margin-top: 40px;
    display: flex;
}

.online-market-info .group .list {
    width: 50%;
}

.online-market-info .group .list .item {
    text-align: left;
    position: relative;
    padding-left: 32px;
    margin-top: 18px;
    font-weight: var(--weight-h1);
}

.online-market-info .group .list .item:first-of-type {
    margin-top: 0px;
}

.online-market-info .group .list .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('img/onlinemarket3.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.online-market-info .box {
    padding: 40px;
    border-radius: 5px;
    background: linear-gradient(var(--color-primary5), var(--color-primary3));
    margin-top: 72px;
}

/* Market Banner */
.market-banner {
    background: linear-gradient(var(--color-primary5), var(--color-primary3));
    padding-top: 24px;
    padding-bottom: 412px;
}

.market-banner .info {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.market-products {
    text-align: center;
    position: relative;
    height: 682px;
}

.market-products .content {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1072px;
}

.market-products .list {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1072px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 72px;
}

.market-products .list .box {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    background: linear-gradient(to right,var(--color-text-primary1), var(--color-primary6));
    padding: 24px;
    border-radius: 5px;

    display: flex;
    flex-direction: column;
}

.market-products .list .box p {
    margin-top: 16px;
    margin-bottom: 16px;
}

.market-products .list .box a {
    margin-top: auto;
}

/* Shares */
.shares-products {
    padding-top: 24px;
}

.shares-products .products {
    margin-top: 80px;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
}

.shares-products .products .filter {
    margin-top: 32px;
    text-align: center;
}

.shares-products .products .list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.shares-products .products .list .box {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    background: linear-gradient(var(--color-text-primary2), var(--color-primary3));
    padding: 40px;
    border-radius: 5px;
    display: flex;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.shares-products .products .list .box .icon {
    width: 30px;
    justify-content: center;
    display: flex;
}

.shares-products .products .list .box a {
    margin-top: auto;
}

/* Contract */
.contract .content {
    margin-top: 48px;
}

.contract-currency .table {
    margin-top: 24px;
}

/* Documents */
.documents {

}

.documents .breadcrumb {
    margin-top: 24px;
}

.documents .content {
    max-width: 1274px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 81px;
}

.documents .content .title {
    text-align: center;
}

.documents .content .desc {
    margin-top: 24px;
    text-align: center;
}

.documents .content .doc {
    display: flex;
    gap: 64px;
    margin-top: 64px;
}

.documents .content .doc .menu {
    min-width: 325px;
    background: linear-gradient(var(--color-primary5), var(--color-primary3));
    color: var(--color-text-primary1);
    padding: 26px;
    height: 270px;
    border-radius: 5px;
}

.documents .content .doc .menu div {
    margin-top: 18px;
}
.documents .content .doc .menu div:first-of-type {
    margin-top: 0px;
}

.documents .content .doc .text ul {
    margin-bottom: 24px;
}

.documents .content .doc .text ul li {
    margin-top: 24px;
    padding-left: 32px;
    color: var(--color-text-primary2);
    position: relative;
}
.documents .content .doc .text ul li:first-of-type {
    margin-top: 0px;
}
.documents .content .doc .text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url('img/doc.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Success box */
.success-box {
    padding: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--color-form-background);
    box-shadow: 0px 0px 5px 0px var(--color-box-shadow-primary1);
    text-align: center;
}

.success-box img {
    position: unset;
    margin-left: auto;
    margin-right: auto;
}

.success-box .h2 {
    margin-top: 24px;
}

.success-box p {
    margin-top: 6px;
}

.success-box .btn {
    display: inline-block;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
}


/* About Us */
.about-banner {
    background-image: url('img/about-us.png');
    height: 862px;
    background-color: #00000080;
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    padding: 0px;
    position: relative;
    padding-top: 24px;
}

.about-banner .info {
    position: absolute;
    bottom: 0;
    padding: 72px 160px;
    background-color: var(--color-primary7);
    width: 100%;
    max-width: 100%;
    color: var(--color-text-primary1);
}

.history {
    padding: 80px 160px;
}

.history .block {
    display: flex;
    gap: 20px;
}

.history .block .item {
    width: 50%;
}

.broker {
    position: relative;
    padding: 80px;
    background: linear-gradient(var(--color-primary2), var(--color-primary3));
    color: var(--color-text-primary1);
    text-align: center;
}

.broker .row {
    display: flex;
    gap: 37px;
    position: absolute;
    bottom: -140px;
    width: calc(100% - 160px);
}

.broker .row .item {
    padding: 50px 16px;
    background-color: var(--color-form-background);
    border-radius: 5px;
    width: calc(33.3% - 37px);
    box-shadow: 0px 0px 5px 0px var(--color-box-shadow-primary1);
    color: var(--color-text-primary2);
}


