/* :root{
    --color-active: #037171;
} */
::-webkit-scrollbar {
    width: 0.8vw;
}
::-webkit-scrollbar-track {
    background: #FCFCFC;
}
::-webkit-scrollbar-thumb {
    background: #8B8B8B;
    border-radius: 0.6vw;
    border: 0.2vw solid #FCFCFC;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
@font-face {
    font-family: Inter;
    src: url('../fonts/Inter/Inter-Thin.ttf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url('../fonts/Inter/Inter-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url('../fonts/Inter/Inter-Medium.ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url('../fonts/Inter/Inter-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url('../fonts/Inter/Inter-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url('../fonts/Inter/Inter-Black.ttf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url('../fonts/Inter/Inter-ExtraBold.ttf');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    outline: none;
    color: #111010;
}
ul > li{
    list-style-type: none;
}
body{
    background-color: #0B0C14;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none;
}
.container{
    width: calc(100% - 60px);
    max-width: 79.116vw;
    margin: 0 auto;
}
header{
    position: sticky;
    top: 0;
    padding: 2.082vw 0;
    background: #0B0C14;
    /* backdrop-filter: blur(10px); */
    z-index: 9995;
    transition: .3s;
    /* border-bottom: 1px solid #0B0C14; */
}
header.active{
    padding: 1vw 0;
}

.btn{
    display: block;
    width: 17.003vw;
    padding: 0.8328vw 0;
    border-radius: 0.8328vw;
    background: var(--Border, rgba(119, 128, 154, 0.12));
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
.btn.primary{
    background-color: #5B63D3;
}
.btn_outline{
    margin-left: 50%;
    display: inline-flex;
    align-items: center;
    padding: 0.2776vw;
    gap: 0.347vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid rgba(119, 128, 154, 0.115);
    background: linear-gradient(0deg, rgba(119, 128, 154, 0.12) 0%, rgba(119, 128, 154, 0.12) 100%);
    transform: translateX(-50%);
}
.btn_outline.left{
    margin-left: 0;
    transform: none;
}
#header_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header_content > #logo{
    width: 12.6308vw;
    height: 1.735vw;
}
#header_content > #logo > img{
    width: 100%;
    height: 100%;
}
#header_content > ul{
    display: flex;
    gap: 1.9432vw;
    align-items: center;
}
#header_content > ul > li > a{
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    transition: .15s;
}
#header_content > ul > li > a:hover{
    color: #fff;
}
#header_content > ul > li.active{
    position: relative;
}
#header_content > ul > li.active > a{
    color: #fff;
}
#header_content > ul > li.active:before{
    content: '';
    position: absolute;
    width: 100%;
    bottom: -0.5552vw;
    border-bottom: 0.0694vw solid var(--Purple, #5B63D3);
}
#header_btns{
    display: flex;
    align-items: center;
    gap: 0.8328vw;
}
#header_btns > a{
    display: flex;
}
#header_btns > a > img{
    height: 60px;
}
#header_btns > .button{
    position: relative;
    display: block;
    margin: 0.2776vw;
    padding: 0.4164vw 1.1104vw;
    border-radius: 0.5552vw;
    background: var(--Purple, #5B63D3);
    color: var(--White, #FFF);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
#header_btns > .button:before{
    content: '';
    position: absolute;
    left: -0.2776vw;
    top: -0.2776vw;
    width: calc(100% + 0.5vw);
    height: calc(100% + 0.5vw);
    border-radius: 0.8328vw;
    border: 0.0694vw solid #77809A;
    background: var(--Border, rgba(119, 128, 154, 0.12));
    opacity: .20;
}
#mobile_nav_toggle{
    display: none;
}
#header_mobile_nav{
    display: none;
}
#hero_section_content{
    position: relative;
}
#hero_section_content > div{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#hero_section_content #hero_section_logo{
    width: 5.2744vw;
}
#hero_section_content #hero_section_title{
    display: block;
    margin-top: 1.1104vw;
    font-size: 5.552vw;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.2776vw;
    background: linear-gradient(90deg, #B1B3C2 0.15%, #FFF 61.28%, #B1B3C2 100.07%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#hero_section_content #hero_section_subtitle{
    display: block;
    margin-top: 1.388vw;
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: -0.0278vw;
}
#hero_section_content #hero_section_description{
    margin-top: 0.8328vw;
    max-width: 38.7252vw;
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.0222vw;
}
#hero_section_content .btn_outline{
    margin-top: 2.776vw;
}
#benefits{
    padding-top: 6.246vw;
}
#benefits_content{
    display: flex;
}
.cards_line{
    width: 0.0694vw;
    background: linear-gradient(180deg, rgba(119,128,154,0.16) 0%, rgba(119,128,154,0) 100%);
}
#benefits_content > div.card{
    width: 25%;
    padding: 1.6656vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
#benefits_content > div.card:hover{
    background: linear-gradient(180deg, rgba(91, 99, 211, 0.12) 0%, rgba(91, 99, 211, 0.00) 100%);
}
#benefits_content > div.card > img{
    width: 2.2208vw;
    margin-bottom: 0.8328vw;
}
#benefits_content > div.card > span{
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
#benefits_content > div.card > p{
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
#specialize_in{
    padding-top: 128px;
}
.section_title{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 67%;
    margin: 0 auto;
}
.section_title.full{
    width: 100%;
    align-items: flex-start;
}
.section_title > img.icon{
    width: 4.9968vw;
}
.section_title > img.wide{
    width: 65.583vw;
}
.section_title.full > span{
    text-align: left;
}
.section_title.full > p{
    text-align: left;
}
.section_title > span{
    margin-top: 1.1104vw;

    text-align: center;
    font-size: 3.3312vw;
    font-weight: 700;
    line-height: 116%;
    letter-spacing: -0.1666vw;

    background: linear-gradient(90deg, #B1B3C2 25.31%, #FFF 55.82%, #B1B3C2 75.18%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section_title > p{
    margin-top: 1.388vw;
    text-align: center;
    color: var(--Grey, #77809A);
    font-family: Inter;
    font-size: 1.1104vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.0222vw;
}
#specialize_in_diagram{
    position: relative;
    margin-top: 2.776vw;
}
#specialize_in_diagram > div{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
#specialize_in_diagram > img{
    position: absolute;
    width: 13.88vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
#specialize_in_diagram > div > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.2618vw 0 3.6782vw; 
}
#specialize_in_diagram > div > div:nth-child(1){
    background: linear-gradient(308deg, rgba(91, 99, 211, 0.12) 14.11%, rgba(91, 99, 211, 0.00) 48.25%);
}
#specialize_in_diagram > div > div:nth-child(4){
    background: linear-gradient(104deg, rgba(91, 99, 211, 0.12) 14.11%, rgba(91, 99, 211, 0.00) 48.25%);
}
#specialize_in_diagram > div > div > img{
    width: 6.7318vw;
}
#specialize_in_diagram > div > div > span{
    display: block;
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.0222vw;
    margin-top: 1.1104vw;
}
#specialize_in_diagram > div > div > p{
    margin-top: 0.8328vw;
    color: #77809A;
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 142%;
    letter-spacing: -0.0194vw;
}
#specialize_in_content > .btn_outline{
    margin-top: 3.3312vw;
}

#nvd{
    margin-top: 8.8832vw;
}
#nvd_content{
    position: relative;
    padding-top: 8.8832vw;
}
.break_line{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.0694vw;
    background: linear-gradient(270deg, rgba(119, 128, 154, 0.16) 0%, rgba(119, 128, 154, 0.00) 0.01%, rgba(119, 128, 154, 0.16) 50.52%, rgba(119, 128, 154, 0.00) 100%);
}
#nvd_cards{
    display: flex;
    gap: 1.5268vw;
    padding-top: 2.776vw;
}
#nvd_cards > div{
    position: relative;
    width: 100%;
    padding: 2.2208vw 2.2208vw 10.41vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(122deg, rgba(91, 99, 211, 0.10) -39.25%, rgba(91, 99, 211, 0.00) 64.94%), linear-gradient(180deg, #0F111A 0%, rgba(15, 17, 26, 0.70) 100%);
    overflow: hidden;
}
#nvd_cards > div:before{
    content: '';
    position: absolute;
    width: 20%;
    height: 50%;
    top: 50%;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(15, 17, 26, 1));
    z-index: 2;
}
#nvd_cards > div > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#nvd_cards > div > div > img{
    width: 48px;
}
#nvd_cards > div > div > div{
    display: flex;
    align-items: center;
    padding: 0.4164vw 0.8328vw 0.4164vw 0.5552vw;
    gap: 0.5552vw;
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(0deg, rgba(91, 99, 211, 0.20) -7.5%, rgba(91, 99, 211, 0.00) 127.5%);
}
#nvd_cards > div > div > div > span{
    color: var(--Purple, #5B63D3);
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 142%;
    letter-spacing: -0.0194vw;
}
#nvd_cards > div > span{
    display: block;
    margin-top: 1.6656vw;
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: -0.0278vw;
}
#nvd_cards > div > p{
    margin-top: 12px;
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.0222vw;
}
#nvd_cards > div > img{
    position: absolute;
    top: calc(100% - 10.41vw);
    left: 40%;
    width: 27.5518vw;
}
#broker_problems{
    margin-top: 8.8832vw;
}
#broker_problems_content{
    position: relative;
    padding-top: 8.8832vw;
}
#broker_problems_cards{
    display: flex;
    gap: 3.8864vw;
}
#broker_problems_cards > div:nth-child(2) > .btn_outline{
    margin-top: 2.776vw;
}
#broker_problems_cards > div:nth-child(2){
    width: calc(50% - 3.8864vw / 2);
}
#broker_problems_cards > div:nth-child(1){
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 1.388vw;
    padding: 1.6656vw 55px 1.6656vw 1.6656vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    overflow: hidden;
}
#broker_problems_cards > div:nth-child(1)::before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 10%;
    background: linear-gradient(90deg, transparent, #0F111A);
    z-index: 3;
}
#broker_problems_cards > div:nth-child(1) > img{
    position: absolute;
    right: 0;
    top: 6%;
    height: 88%;
    z-index: 0;
}
#broker_problems_cards > div:nth-child(1) > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.1798vw;
    z-index: 2;
}
#broker_problems_cards > div:nth-child(1) > div > img{
    width: 3.3312vw;
}
#broker_problems_cards > div:nth-child(1) > div.small > img{
    margin-right: auto;
}
#broker_problems_cards > div:nth-child(1) > div > div{
    width: 72%;
    padding-bottom: 1.1798vw;
    border-bottom: 0.0694vw solid rgba(119, 128, 154, 0.12);
}
#broker_problems_cards > div:nth-child(1) > div:last-child > div{
    padding-bottom: 0;
    border-bottom: none;
}
#broker_problems_cards > div:nth-child(1) > div > div > span{
    position: relative;
    display: block;
    padding-left: 0.9022vw;
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.0222vw;
}
#broker_problems_cards > div:nth-child(1) > div > div > span:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0.1388vw;
    height: 100%;
    background: var(--Purple, #5B63D3);
    border-radius: 2px;
}
#broker_problems_cards > div:nth-child(1) > div > div > p{
    margin-top: 0.8328vw;
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 142%;
    letter-spacing: -0.0194vw;
}
#in_numbers{
    margin-top: 8.8832vw;
}
#in_numbers_content{
    position: relative;
    padding-top: 8.8832vw;
}
#in_numbers_cards{
    display: flex;
    margin-top: 2.776vw;
    margin-bottom: 3.8864vw;
}
#in_numbers_cards > .card{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.33%;
    gap: 0.8vw;
    padding: 1.6656vw;
}
#in_numbers_cards > .card > span{
    font-size: 3.3312vw;
    font-weight: 700;
    line-height: 116%;
    letter-spacing: -0.1666vw;

    background: linear-gradient(160deg, #FFF 17.08%, #8F85FE 42.5%, #5B63D3 93.41%, #4D58FF 207.42%, rgba(91, 99, 211, 0.00) 287.17%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#in_numbers_cards > .card > p{
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.0222vw;
}
#in_numbers_cards > .card.active{
    background: linear-gradient(180deg, rgba(91, 99, 211, 0.12) 0%, rgba(91, 99, 211, 0.00) 100%); 
}
#technological_solutions{
    margin-top: 8.8832vw;
}
#technological_solutions_content{
    position: relative;
    padding-top: 2.2208vw;
}
#technological_solutions_cards{
    display: flex;
    gap: 1.6656vw;
    margin-top: 2.776vw;
}
#technological_solutions_cards > div{
    width: 25%;
    padding: 1.1104vw 1.1104vw 1.6656vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
}
#technological_solutions_cards > div > img{
    width: 100%;
}
#technological_solutions_cards > div > span{
    display: block;
    margin-top: 1.6656vw;

    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.0222vw;
}
#technological_solutions_cards > div > p{
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 142%;
    letter-spacing: -0.0194vw;
}






#provide_broker{
    margin-top: 8.8832vw;
}
#provide_broker_content{
    position: relative;
    padding-top: 8.8832vw;
}
#provide_broker_cards{
    margin-top: 2.776vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 1.6656vw;
}
#provide_broker_cards > div{
    display: flex;
    flex-direction: column;
    padding: 1.6656vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(122deg, rgba(91, 99, 211, 0.10) -39.25%, rgba(91, 99, 211, 0.00) 64.94%), #0F111A;
}
#provide_broker_cards > div > img{
    width: 3.3312vw;
}
#provide_broker_cards > div > span{
    display: block;
    margin-top: 1.1104vw;
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.0222vw;
}
#contacts_form_content{
    display: flex;
    gap: 1.735vw;
    justify-content: center;
    margin-bottom: 3.817vw;
}

#contact-form{
    border: 0.0694vw solid rgb(28, 29, 40);
    width: 52.1888vw;
    height: 40.3908vw;
    flex-shrink: 0;
    border-radius: 1.1104vw;
    padding: 4.9968vw;
    background-image: url(../img/contacts/screen.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

#contact-form__title{
    width: 48.8576vw;
    font-family: Inter;
    font-size: 3.3312vw;
    font-style: normal;
    font-weight: 700;
    line-height: 3.8864vw;
    letter-spacing: -0.1666vw;
    background: linear-gradient(90deg, #B1B3C2 -9.62%, #FFF 50.14%, #B1B3C2 88.07%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.388vw;
    display: block;
}

#contact-form__subtitle{
    width: 48.8576vw;
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 1.388vw;
    font-style: normal;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    display: block;
    margin-bottom: 0.8328vw;
}

#contact-form__description{
    color: var(--Grey, #77809A);
    font-family: Inter;
    font-size: 1.1104vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    margin-bottom: 2.776vw;
}

.form_flex{
    display: flex;
    gap: 0.8328vw;
}

#contact-form input{
    width: 20.6118vw;
    height: 3.3312vw;
    flex-shrink: 0;
    border-radius: 0.8328vw;
    border: 0.0694vw solid #77809a0a;
    background: rgba(119, 128, 154, 0.08);
    backdrop-filter: blur(10px);
    color: var(--Grey, #77809A);
    font-family: Inter;
    font-size: 0.9716vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.9716vw 1.388vw;
}

#contact-form > textarea{
    width: 42.0564vw;
    height: 7.1482vw;
    flex-shrink: 0;
    border-radius: 0.8328vw;
    border: 0.0694vw solid #77809a0a;
    background: rgba(119, 128, 154, 0.08);
    backdrop-filter: blur(10px);
    padding: 0.8328vw 1.388vw;
    text-align:start;
    margin: 0.8328vw 0 2.776vw;
    color: var(--Grey, #77809A);
    font-family: Inter;
    font-size: 0.9716vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    resize: none;
}

#contact-form input::placeholder,
#contact-form > textarea::placeholder{
    color: var(--Grey, #77809A);
}

#contact-form .btn{
    border: none;
    cursor: pointer;
}

.contact-cards{
    display: flex;
    flex-direction: column;
    gap: 1.5962vw;
}

.contact-cards .card{
    width: 25.1922vw;
    height: 8.8832vw;
    display: flex;
    justify-content: space-between;
    padding: 2.2208vw;
    gap: 0.694vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: #0F111A;
    color: white;
    align-items: center;
}

.contact-cards .contact-card__title{
    color: var(--White, #FFF);
    display: block;
    font-family: Inter;
    font-size: 1.388vw;
    font-style: normal;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: 0.0278vw;
    margin-bottom: 0.5552vw;
}

.contact-cards .contact-card__subtitle{
    color: var(--Grey, #77809A);
    font-family: Inter;
    font-size: 1.1104vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}

.contact-cards .card__btn-arrow{
    width: 3.3312vw;
    min-width: 3.3312vw;
    height: 3.3312vw;
    justify-content: center;
    align-items: center;
    gap: 0.5552vw;
    border-radius: 0.5552vw;
    border: none;
    background: var(--Border, rgba(119, 128, 154, 0.12));
    background-image: url(../img/contacts/arrow-right.svg);
    background-size: 1.9432vw;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.5s;
}

.contact-cards .card:hover{
    background: rgb(91,99,211);
    background: linear-gradient(150deg, rgba(91, 99, 211, 0.24) 0%, rgba(15, 17, 26, 1) 60%);
    .card__btn-arrow{
        background-image: url(../img/contacts/arrow-right-light.svg);
        transition: 0.5s;
    }
    transition: 0.5s;
}

#middle_contact_content{
    align-items: center;
    height: 51.7724vw;
    position: relative;
    padding-top: 10.9vw;
}

.middle-background-circus{
    top: -5vw;
    left: 49%;
    transform: translateX(-50%);
    position: absolute;
    z-index: -2;
    width: 100%;
}

.middle-background-squares{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: -1;
    width: 100%;

}

.middle-contact__title{
    text-align: center;
    font-family: Inter;
    font-size: 3.3312vw;
    font-style: normal;
    font-weight: 700;
    line-height: 3.8864vw;
    letter-spacing: -0.1666vw;
    background: linear-gradient(90deg, #B1B3C2 25.31%, #FFF 55.82%, #B1B3C2 75.18%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.1104vw;
}

.middle-contact__description{
    color: var(--Grey, #77809A);
    text-align: center;
    font-family: Inter;
    font-size: 1.1104vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    display: block;
    margin-bottom: 3.3312vw;
}

.contact-address{
    margin: auto;
    width: 26.4414vw !important;
    text-align: center;
    font-family: Inter;
    font-size: 2.2208vw !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 2.776vw !important;
    letter-spacing: -0.111vw !important;
    background: linear-gradient(136deg, #FFF 7.83%, #8F85FE 32.98%, #5B63D3 83.35%, #4D58FF 196.13%, rgba(91, 99, 211, 0.00) 275.02%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.082vw;
}

/* .gradient-line{
    width: 100%;
    height: 0.0694vw;
    background: rgb(119,128,154);
    background: linear-gradient(90deg, rgba(119,128,154,0) 0%, rgba(119,128,154,0.1) 50%, rgba(119,128,154,0) 100%);
    margin-bottom: 9.022vw;
} */

#motivation_block {
    margin-top: 8.8832vw;
}
#motivation_block_content{
    position: relative;
    padding-top: 9.022vw;
}
#motivation_block_card{
    border-radius: 1.1104vw;
    background: url('../img/contacts/motivation-block.svg') no-repeat center;
    background-size: cover;
    padding: 4.7192vw 0;
    margin-bottom: 8.8832vw;
}

#motivation_block_card > div{
    margin-bottom: 2.776vw;
}
@font-face {
    font-family: Gluten;
    src: url('../fonts/Gluten/Gluten-ExtraLight.ttf');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
.main_block_content {
    position: relative;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    border-radius: 1.1104vw;
    overflow: hidden;
}
.main_block_content > img {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main_block_content > div {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main_block_content > div > img {
    width: 41.64vw;
    margin-top: 3.6088vw;
}
.main_block_content > div > img.mt-0 {
    margin-top: 0;
}
.main_block_content > div > .main_block_title {
    text-align: center;
    font-size: 3.3312vw;
    font-weight: 700;
    line-height: 3.8864vw;
    letter-spacing: -0.1666vw;
    background: linear-gradient(90deg, #B1B3C2 -9.62%, #FFF 50.14%, #B1B3C2 88.07%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 52.397vw;
    display: block;
    margin-top: 1.6656vw;
}
.main_block_content > div > .main_block_subtitle {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    display: block;
    margin-top: 1.388vw;
}
.main_block_content > div > .main_block_description {
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    width: 55.52vw;
    display: block;
    margin: 0.8328vw auto 0;
}
.main_block_content .btn_outline {
    margin-left: 0;
    transform: none;
    margin-top: 2.776vw;
}
.main_block.mini .main_block_content > div {
    padding: 4.9968vw 0;
}
.main_block.mini .main_block_title {
    margin-top: 0;
}
.main_block.mini .main_block_description {
    margin-top: 1.388vw;
}
.main_block .main_block_input {
    position: relative;
}
.main_block .main_block_input input {
    width: 38.5864vw;
    border-radius: 0.8328vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: rgba(119, 128, 154, 0.08);
    backdrop-filter: blur(0.694vw);
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.9716vw 4.164vw 0.9716vw 1.388vw;
}
.main_block .main_block_input input::placeholder {
    color: var(--Grey, #77809A);
}
.main_block.mini .main_block_input {
    margin-top: 2.2208vw;
}
.main_block .main_block_input {
    margin-top: 2.776vw;
}
.main_block .main_block_input img {
    width: 1.388vw;
    position: absolute;
    right: 1.388vw;
    top: 50%;
    transform: translateY(-50%);
}
.main_block.no_dealing_desk .main_block_content > div > img {
    width: 65.583vw;
}
.main_block.no_dealing_desk .main_block_content > div > .main_block_title,
.main_block.products .main_block_content > div > .main_block_title {
    margin-top: 0;
}

/* Section section_cards */

.section_cards {
    padding-top: 5.552vw;
}
.section_cards_content > span {
    text-align: center;
    font-size: 2.2208vw;
    font-weight: 700;
    line-height: 2.776vw;
    letter-spacing: -0.111vw;
    background: linear-gradient(90deg, #B1B3C2 36.7%, #FFF 52.89%, #B1B3C2 63.17%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin: 0 auto 2.776vw auto;
}
.section_cards_wrapper .cards_line {
    position: relative;
    height: 14.1576vw;
    background: linear-gradient(90deg, rgba(119, 128, 154, 0.16) 0%, rgba(119, 128, 154, 0.00) 100%);
}
.section_cards_wrapper .cards_line::before {
    position: absolute;
    content: '';
    width: 0.0694vw;
    height: 1.6656vw;
    left: 0;
    background-color: #5B63D3;
}
.section_cards_wrapper .cards_line_1::before  {
    top: 48%;
}
.section_cards_wrapper .cards_line_2::before  {
    top: 20%;
}
.section_cards_wrapper .cards_line_3::before  {
    top: 65%;
}
.section_cards_wrapper .cards_line_4::before  {
    top: 19%;
}
.section_cards_wrapper .cards_line_5::before  {
    top: 64%;
}
.section_cards_wrapper {
    display: flex;
}
.section_cards_wrapper > div.card{
    width: 25%;
    padding: 1.6656vw 1.6656vw 0 1.6656vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section_cards_wrapper > div.card:hover{
    background: linear-gradient(180deg, rgba(91, 99, 211, 0.12) 0%, rgba(91, 99, 211, 0.00) 100%);
}
.section_cards_wrapper > div.card > img {
    width: 2.2208vw;
}
.section_cards_wrapper > div.card > span {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    display: block;
    margin-top: 1.6656vw;
}
.section_cards_wrapper > div.card > p {
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.8328vw;
}

/* Section section_block */

.section_block {
    margin-top: 8.8832vw;
}
.section_block_content {
    position: relative;
    padding-top: 8.8832vw;
}
.section_block_wrapper {
    display: flex;
    align-items: center;
    gap: 3.8864vw;
}
.section_block_wrapper > div {
    width: 50%;
}
.section_block .section_title > p {
    margin-top: 1.1104vw;
}
.section_block_descr > .btn_outline {
    margin-top: 2.776vw;
}
.section_block_image {
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: #0F111A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.section_block .section_cards_wrapper {
    margin-top: 3.3312vw;
}
.section_block .section_cards_wrapper > div.card {
    width: 33.33%;
    align-items: flex-start;
    padding: 0.8328vw 1.5962vw;
}
.section_block .section_cards_wrapper > div.card:hover {
    background: none;
}
.section_block .section_cards_wrapper > div.card > span.number {
    width: 3.3312vw;
    height: 3.3312vw;
    color: var(--Purple, #5B63D3);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    border-radius: 100%;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(0deg, rgba(91, 99, 211, 0.20) -7.5%, rgba(91, 99, 211, 0.00) 127.5%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}
.section_block .section_cards_wrapper > div.card > span {
    margin-top: 1.1104vw;
}
.section_block .section_cards_wrapper > div.card > p {
    text-align: left;
}

/* Section Blocks */

.blocks {
    padding-top: 5.0662vw;
    /* margin-top: 3.817vw; */
}
.blocks_wrapper {
    display: flex;
    margin-top: 2.776vw;
    gap: 1.6656vw;
    justify-content: center;
}
.blocks_wrapper > div {
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    padding: 1.1104vw 1.1104vw 1.5268vw 1.1104vw;
    width: 33.33%;
}
.blocks_wrapper > div > img {
    width: 23.0408vw;
}
.blocks_wrapper > div > span {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    display: block;
    margin: 1.1104vw auto 0 auto;
}
.blocks_wrapper > div > p {
    color: #77809A;
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin: 0.8328vw auto 0 auto;
}

/* Section Your Steps */

#your_steps {
    margin-top: 3.817vw;
}
#your_steps_content {
    padding-top: 5.0662vw;
}
#your_steps_cards {
    display: flex;
    gap: 1.5268vw;
    margin-top: 2.6372vw;
}
#your_steps_cards > div {
    width: 50%;
}
#your_steps_cards > div:first-child {
    display: flex;
    flex-direction: column;
    row-gap: 1.1104vw;
}
#your_steps_cards > div:first-child > div {
    width: 100%;
    height: 4.9968vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    padding: 1.6656vw;
    display: flex;
    align-items: center;
}
#your_steps_cards > div:first-child > div > span {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.2.2208vw;
    display: inline-block;
}
#your_steps_cards > div:first-child > div > span.number {
    color: var(--Purple, #5B63D3);
    border-radius: 100%;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(0deg, rgba(91, 99, 211, 0.20) -7.5%, rgba(91, 99, 211, 0.00) 127.5%), #0F111A;
    margin-right: 0.8328vw;
    text-align: center;
    line-height: 2.082vw;
    width: 2.2208vw;
    height: 2.2208vw;
}
#your_steps_cards > div:first-child > div.active {
    background: linear-gradient(122deg, rgba(91, 99, 211, 0.32) -39.25%, rgba(91, 99, 211, 0.00) 64.94%), #0F111A;
}
#your_steps_cards > div:first-child > div.active > span.number {
    border: none;
    color: var(--White, #FFF);
    background: var(--Purple, #5B63D3);
}
#your_steps_cards > div:nth-child(2) {
    position: relative;
    height: 29.3562vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
}
#your_steps_cards > div:nth-child(2) > img.squares {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}
#your_steps_cards > div:nth-child(2) > img.your_steps {
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

/* Section Advantages Considered */

#advantages {
    padding-top: 8.8832vw;
}
#advantages_content {
    position: relative;
    padding-top: 8.8832vw;
}
#advantages_cards {
    display: flex;
    gap: 1.6656vw;
}
#advantages_cards > div {
    width: 50%;
    position: relative;
}
#advantages_cards > div:first-child {
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    padding: 2.2208vw;
    background: var(--Light-black, #0F111A);
    position: relative;
    overflow: hidden;
}
#advantages_cards > div:first-child > div > span {
    font-size: 2.776vw;
    font-weight: 700;
    line-height: 3.3312vw;
    letter-spacing: -0.1388vw;
    background: linear-gradient(90deg, #B1B3C2 0.06%, #FFF 61.19%, #B1B3C2 99.99%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
#advantages_cards > div:first-child > div > img.icon {
    margin-bottom: 1.1104vw;
}
#advantages_cards > div:first-child > div > p {
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    margin-top: 1.1104vw;
}
#advantages_cards > div:first-child > img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36.5044vw;
}
#advantages_cards > div:last-child {
    display: flex;
    flex-direction: column;
    row-gap: 1.1104vw;
}
#advantages_cards > div:last-child > div {
    padding: 1.8044vw 10.41vw 1.6656vw 1.6656vw;
    position: relative;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    overflow: hidden;
}
#advantages_cards > div:last-child > div > span {
    position: relative;
    z-index: 2;
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    padding-left: 0.8328vw;
}
#advantages_cards > div:last-child > div > span::before {
    position: absolute;
    content: '';
    left: -0.0694vw;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0.0694vw;
    width: 0.1388vw;
    height: 1.2492vw;
    background-color: #5B63D3;
}
#advantages_cards > div:last-child > div > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.8328vw;
    position: relative;
    z-index: 2;
}
#advantages_cards > div:last-child > div > img {
    position: absolute;
    top: 0;
    left: 0.1388vw;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Section Slider Block */

.slider_block {
    margin-top: 8.8832vw;
    position: relative;
}
.slider_block_animate{
    height: 400vh;
}
.slider_block > .container {
    height: 100%;
}
.slider_block_content {
    height: 100%;
}

.slider_block_content {
    position: relative;
    padding-top: 8.8832vw;
}
.slider_block_cards {
    display: flex;
    gap: 3.8864vw;
    align-items: flex-start;
}
.slider_block_cards > div {
    width: 50%;
}
.slider_block_cards > div:first-child > .section_title > p {
    width: 36.5044vw;
}
.slider_block_cards > div:first-child > .btn_outline {
    margin-top: 2.776vw;
}
.slider_block_cards > div:nth-child(2) {
    display: flex;
    gap: 2.2208vw;
}
.slider_block_cards > div:nth-child(2) > .vertical_slider {
    display: flex;
    flex-direction: column;
}
.slider_block_cards > div:nth-child(2) > .vertical_slider > div {
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: #0F111A;
    padding: 1.6656vw 2.2208vw 2.2208vw 2.2208vw;
    width: 36.2268vw;
    display: none;
}
.slider_block_cards > div:nth-child(2) > .vertical_slider > div.active {
    display: block;
}
.slider_block_cards > div:nth-child(2) > .vertical_slider > div > img {
    width: 100%;
    margin: 0 0.2082vw;
}
.slider_block_cards > div:nth-child(2) > .vertical_slider > div > span {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    margin-top: 1.1798vw;
    display: block;
}
.slider_block_cards > div:nth-child(2) > .vertical_slider > div > p {
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    margin-top: 0.8328vw;
}
.slider_scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.735vw 0;
}
.slider_scroll > span {
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 0.8328vw;
    font-weight: 500;
    line-height: 1.2492vw;
    letter-spacing: -0.0167vw;
}
.slider_scroll > div {
    width: 0.2776vw;
    height: 100%;
    border-radius: 0.1388vw;
    background: var(--Border, rgba(119, 128, 154, 0.12));
    position: relative;
    margin: 0.5552vw 0;
}
.slider_scroll > div:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0.2776vw;
    height: calc(100% / 3);
    border-radius: 0.1388vw;
    background: var(--Purple, #5B63D3);
    transition: .15s;
}
.slider_scroll.step_2 > div:before {
    height: calc(100% / 3 * 2);
}
.slider_scroll.step_3 > div:before {
    height: 100%;
}

/* Section Reviews */

.reviews {
    margin-top: 8.8832vw;
}
.reviews_top_content {
    position: relative;
    padding-top: 8.8832vw;
}
.reviews_bottom {
    margin-top: 2.776vw;
}
.reviews div.slick-slide {
    height: 14.0882vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    padding: 1.388vw;
    margin: 0 0.8328vw;
}
.name {
    display: flex;
    align-items: center;
}
.name > img {
    margin-right: 0.8328vw;
    width: 2.776vw;
}
.name > div > span {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
.name > div > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.reviews div.slick-slide > .review > p {
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    margin-top: 1.6656vw;
}
.reviews div.slick-slide > .review > p > span {
    color: var(--Purple, #5B63D3);
}
.reviews #review_slider_bottom {
    margin-top: 1.8738vw;
}

/* Section View */

.view {
    margin-top: 8.8832vw;
}
.view_content {
    position: relative;
    padding-top: 8.8832vw;
    background: url('../../assets/img/view.png') no-repeat center center;
    background-size: cover;
    border-radius: 1.1104vw;
    padding-bottom: 4.858vw;
}
.view_content > .btn_outline {
    margin-top: 2.776vw;
}
.view_content > form {
    width: 35.9492vw;
    margin: 2.776vw auto 0;
}
.view_content > form > div {
    display: flex;
    gap: 0.8328vw;
}
.view_content > form > div > input {
    width: 100%;
    height: 3.3312vw;
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.9716vw 1.388vw;
    border-radius: 0.8328vw;
    border: 0.0694vw solid rgba(119, 128, 154, 0.115);
    background: rgba(119, 128, 154, 0.08);
    backdrop-filter: blur(0.694vw);
}
.view_content > form > textarea {
    width: 100%;
    height: 6.4542vw;
    resize: none;
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.9716vw 1.388vw;
    border-radius: 0.8328vw;
    border: 0.0694vw solid rgba(119, 128, 154, 0.115);
    background: rgba(119, 128, 154, 0.08);
    backdrop-filter: blur(0.694vw);
    margin-top: 0.8328vw;
}
.view_content > form > div > input::placeholder,
.view_content > form > textarea::placeholder{
    color: var(--Grey, #77809A);
}
.view_content > form > .btn_outline {
    width: 17.5582vw;
    height: 3.8864vw;
    transform: none;
    margin: 2.2208vw auto 0;
    background: var(--Border, rgba(119, 128, 154, 0.12));
}
.view_content > form > .btn_outline > button {
    cursor: pointer;
    font-size: 1.1104vw;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    padding: 0.8328vw 0;
    border: none;
}

/* Footer */

.footer {
    position: relative;
    margin-top: 8.8832vw;
    padding-bottom: 1.1104vw;
}
.footer.sm-mt {
    margin-top: 4.6498vw;
}
.footer > .break_line {
    background: rgba(119, 128, 154, 0.12);
}
.footer_content_top {
    display: flex;
    padding-top: 2.6372vw;
    gap: 4.7886vw;
}
.footer_content_top > div {
    width: 20%;
}
.social_links > ul {
    display: flex;
    align-items: center;
}
.social_links > ul > a {
    width: 2.776vw;
    height: 2.776vw;
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: #0F111A;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.8328vw;
}
.social_links > ul > a > img {
    width: 1.2492vw;
}
.social_links > ul > a:last-child {
    margin-right: 0;
}
.footer_content_top > div.block_1 > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.9716vw;
}
.footer_content_top > div.block_2 > p {
    color: var(--Grey, #77809A);
    font-size: 0.85vw;
    font-weight: 400;
    line-height: 1.1vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.7vw;
}
.footer_content_top > div.block_2 > p strong {
    color: var(--White, #fff);
}
.footer_content_top > div.block_2 > p a {
    color: var(--White, #fff);
    text-decoration: underline;
}
.footer_content_top > div.block_1 > .btn_outline {
    margin: 1.6656vw 0 1.388vw;
    transform: none;
    height: 2.776vw;
    width: 13.6024vw;
    border-radius: 0.8328vw;
    padding: 0.2776vw;
}
.footer_content_top > div.block_1 > .btn_outline > a {
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.4164vw 0;
    border-radius: 0.5552vw;
}
.footer_content_top > div > ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
}
.footer_content_top > div > ul > li {
    padding-bottom: 1.388vw;
}
.footer_content_top > div > ul > li:last-child {
    padding-bottom: 0;
}
.footer_content_top > div > ul > li.white > a {
    color: var(--White, #FFF);
}
.footer_content_top > div > ul > li > a {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.footer_content .break_line {
    position: static;
    margin: 1.6656vw 0 1.1104vw;
}
.footer_content_bottom > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-style: italic;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.footer_content_bottom {
    display: flex;
    justify-content: space-between;
}
.footer_content_bottom > div {
    color: rgba(119, 128, 154, 0.12);
}
.footer_content_bottom > div > a {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}

/* Section Kraken Crypto */

#kraken_crypto {
    margin-top: 1.6656vw;   
}
#kraken_crypto_content {
    position: relative;
    border-radius: 0.8328vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.3186vw;
    padding: 0 3.9558vw 0 4.9968vw;
}
#kraken_crypto_content > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#kraken_crypto_descr > #kraken_crypto_title {
    color: var(--White, #FFF);
    font-size: 3.3312vw;
    font-weight: 700;
    line-height: 3.8864vw;
    letter-spacing: -0.1666vw;
    background: linear-gradient(90deg, #B1B3C2 0%, #FFF 50%, #B1B3C2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#kraken_crypto_descr > #kraken_crypto_subtitle {
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    display: block;
    margin: 1.388vw 0 0.8328vw 0;
}
#kraken_crypto_descr > #kraken_crypto_description {
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    display: block;
    margin-bottom: 2.776vw;
}
#kraken_crypto_img {
    width: 30.0502vw;
    height: 30.0502vw;
}
#kraken_crypto_img > img {
    width: 100%;
}

/* Section Tabs */

.tabs {
    margin-top: 2.2208vw;
}
.tabs_nav {
    padding-left: 4.9968vw;
    position: relative;
}
.tabs_nav:before {
    position: absolute;
    content: '';
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.0694vw;
    width: 100%;
    background: var(--Border, rgba(119, 128, 154, 0.12));
    z-index: 1;
}
.tab {
    position: relative;
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.8328vw 1.6656vw;
    z-index: 2;
}
.tab.active {
    color: #FFF;
    border-radius: 0.8328vw 0.8328vw 0 0;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    border-bottom: none;
    background: var(--Black, #0B0C14);
}
.tabs_content {
    margin-top: 4.4416vw;
    display: none;
}
.tabs_content.show {
    display: block;
}
.tabs_content.hide {
    display: none;
}
.tabs_content_title {
    font-size: 2.776vw;
    font-weight: 700;
    line-height: 3.3312vw;
    letter-spacing: -0.1388vw;
    background: linear-gradient(90deg, #B1B3C2 0%, #FFF 50%, #B1B3C2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tabs_content_subtitle_1 {
    position: relative;
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    margin: 2.776vw 0 1.1104vw 0;
    padding-left: 0.8328vw;
    display: block;
}
.tabs_content_subtitle_1:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 0.1388vw;
    height: 1.2492vw;
    background: #5B63D3;
    border-radius: 0.0694vw;
}
.tabs_content_subtitle_2 {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
.tabs_content_description {
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    margin-top: 0.8328vw;
}
.tabs .break_line, #faq_content .break_line {
    width: 100%;
    height: 0.0694vw;
    background: linear-gradient(270deg, rgba(119, 128, 154, 0.16) 0%, rgba(119, 128, 154, 0.00) 0.01%, rgba(119, 128, 154, 0.16) 50.52%, rgba(119, 128, 154, 0.00) 100%);
    margin: 4.4416vw 0;
    position: static;
}
.tabs_content_title_2 {
    font-size: 2.2208vw;
    font-weight: 700;
    line-height: 2.776vw;
    letter-spacing: -0.111vw;
    background: linear-gradient(90deg, #B1B3C2 0%, #FFF 50%, #B1B3C2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tabs .section_cards_wrapper {
    margin-top: 2.776vw;
}
.tabs .section_cards_wrapper .card {
    align-items: flex-start;
}
.tabs .section_cards_wrapper .card span, .tabs .section_cards_wrapper .card p {
    text-align: left;
}
.technical_specifications_cards {
    display: grid;
    grid-template-columns: 0.0694vw 1fr 0.0694vw 1fr 0.0694vw 1fr 0.0694vw;
    margin-top: 2.776vw;
}
.technical_specifications_cards > div.card {
    padding: 1.6656vw 1.6656vw 1.388vw 1.6656vw;
}
.technical_specifications_cards > div.card:hover {
    background: linear-gradient(180deg, rgba(91, 99, 211, 0.12) 0%, rgba(91, 99, 211, 0.00) 100%);
}
.vertical_1 {
    grid-row: 1 / 4;
    grid-column: 1;
}
.vertical_2 {
    grid-row: 1 / 4;
    grid-column: 3;
}
.vertical_3 {
    grid-row: 1 / 4;
    grid-column: 5;
}
.vertical_4 {
    grid-row: 1 / 4;
    grid-column: 7;
}
.technical_specifications_cards > div.vertical {
    position: relative;
    background: linear-gradient(90deg, rgba(119, 128, 154, 0.16) 0%, rgba(119, 128, 154, 0.00) 100%);
}
.technical_specifications_cards > div.vertical:before {
    position: absolute;
    content: '';
    width: 0.0694vw;
    height: 1.6656vw;
    background-color: #5B63D3;
}
.technical_specifications_cards > div.vertical_1:before {
    top: 16%;
}
.technical_specifications_cards > div.vertical_2:before {
    top: 61.8%;
}
.technical_specifications_cards > div.vertical_3:before {
    top: 16%;
}
.technical_specifications_cards > div.vertical_4:before {
    top: 61.8%;
}
.technical_specifications_cards > div.horizontal_1, 
.technical_specifications_cards > div.horizontal_2 {
    background: linear-gradient(270deg, rgba(119, 128, 154, 0.16) 0%, rgba(119, 128, 154, 0.00) 0.01%, rgba(119, 128, 154, 0.16) 50.52%, rgba(119, 128, 154, 0.13) 58.33%, rgba(119, 128, 154, 0.00) 100%);
}
.technical_specifications_cards > div.card > img {
    width: 2.2208vw;
    margin-bottom: 1.6656vw;
    display: block;
}
.technical_specifications_cards > div.card > span {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
.technical_specifications_cards > div.card > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.8328vw;
}
.tabs .faq {
    margin-top: 2.776vw;
    columns: 2;
}
.faq_item {
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    break-inside: avoid;
    margin-bottom: 1.388vw;
}
.faq_item:last-child {
    margin-bottom: 0;
}
.faq_item .faq_title {
    position: relative;
    height: 6.1072vw;
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    cursor: pointer;
    display: block;
    padding: 0 4.7886vw 0 1.388vw;
    user-select: none;
    display: flex;
    align-items: center;
}
.faq_item .faq_title::after {
    position: absolute;
    content: '';
    background: url('../img/icons/arrow_down.svg') center center / 1.1104vw 1.1104vw no-repeat var(--Border, rgba(119, 128, 154, 0.12));
    top: 50%;
    transform: translateY(-50%);
    right: 1.388vw;
    width: 1.6656vw;
    height: 1.6656vw;
    border-radius: 0.4164vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
}
.faq_item .faq_text {
    display: none;
    padding: 0 1.388vw 1.388vw 1.388vw;
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
.faq_item.active .faq_text {
    display: block;
}
.faq_item.active {
    background: var(--Border, rgba(119, 128, 154, 0.12));
}
.faq_item.active .faq_title::after {
    background-image: url('../img/icons/arrow_up.svg');
}

/* Section Simple Things */

#simple_things {
    margin-top: 4.3722vw;
}
#simple_things_content {
    position: relative;
}
#simple_things_content > #simple_things_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 3.817vw;
}
#simple_things_content > #simple_things_wrapper > .section_title > img {
    margin-top: 5.0662vw;
}
#simple_things_content > #simple_things_wrapper > .section_title > div {
    display: flex;
    align-items: flex-end;
    color: var(--Grey, #77809A);
    font-size: 1.388vw;
    font-weight: 500;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    margin-top: 2.776vw;
}
#simple_things_content > #simple_things_wrapper > .section_title > div > img {
    margin-right: 1.041vw;
    width: 6.3154vw;
}
#simple_things_content > #simple_things_wrapper > .section_title > p {
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
}
#simple_things_content > #simple_things_wrapper > .btn_outline {
    margin-top: 3.8864vw;
}
#simple_things_content > img {
    width: 50.662vw;
    height: 57.8102vw;
    margin: 0 auto;
    display: block;
}

/* Section FAQ */

#faq {
    margin-top: 2.4984vw;
}
#faq #faq_wrapper {
    position: relative;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    border-radius: 1.1104vw;
    overflow: hidden;
}
#faq #faq_wrapper > img {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#faq #faq_wrapper > .section_title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#faq #faq_wrapper > .section_title > span {
    margin-top: 0;
}
#faq #faq_wrapper > .section_title > p {
    margin-top: 1.388vw;
}
#faq #faq_wrapper > .section_title > .btn_outline {
    margin-left: 0;
    transform: none;
    margin-top: 2.2208vw;
    padding: 0;
    background: none;
    border: none;
}
#faq #faq_wrapper > .section_title > .btn_outline > a {
    padding: 0.8328vw 1.6656vw;
    width: auto;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: rgba(119, 128, 154, 0.08);
    backdrop-filter: blur(0.694vw);
}

/* Fixed buttons */

.btn_fixed {
    position: fixed;
    top: 4.6vw;
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 1.1104vw;
    padding: 0.8328vw 0;
    background: #0B0C14;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}
.btn_fixed.show {
    visibility: visible;
    opacity: 1;
}
.btn_fixed > a {
    display: inline-block;
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Border, rgba(119, 128, 154, 0.12));
    color: var(--White, #FFF);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.4164vw 0.8328vw;
}

/* Section FAQ Content */

#faq_content {
    margin-top: 5.552vw;
}
#faq_content_wrapper {
    width: 45.11vw;
    margin: 0 auto;
}
#faq_content .faq_item .faq_title {
    height: 4.9968vw;
}
#faq_content_wrapper > span {
    font-size: 2.776vw;
    font-weight: 700;
    line-height: 3.3312vw;
    letter-spacing: -0.1388vw;
    background: linear-gradient(90deg, #B1B3C2 0.06%, #FFF 13%, #B1B3C2 21.21%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.776vw;
    display: block;
}
#faq_content #title_3 {
    margin-bottom: 1.1104vw;
}
#faq_content_wrapper > p {
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
#faq_content .break_line {
    margin: 5.552vw 0;
}
#faq_content_contacts {
    display: flex;
    margin-top: 2.776vw;
    column-gap: 1.5962vw;
}
#faq_content_contacts > a {
    width: 50%;
    padding: 2.2208vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: #0F111A;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#faq_content_contacts > a:hover {
    background: linear-gradient(150deg, rgba(91, 99, 211, 0.24) 0%, rgba(15, 17, 26, 1) 60%);
}
#faq_content_contacts > a > div > span {
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
}
#faq_content_contacts > a > div > p {
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    margin-top: 0.5552vw;
}
#faq_content_contacts > a > div:nth-child(2) {
    position: relative;
    width: 3.3312vw;
    height: 3.3312vw;
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Border, rgba(119, 128, 154, 0.12));
    display: flex;
    justify-content: center;
    align-items: center;
}
#faq_content_contacts > a > div:nth-child(2)::before {
    position: absolute;
    content: '';
    background: url('../img/icons/arrow_right.svg') center center / 1.388vw 1.388vw no-repeat;
    width: 1.388vw;
    height: 1.388vw;
    display: block;
}
#faq_content_contacts > a:hover > div:nth-child(2)::before {
    background-image: url('../img/icons/arrow_right_light.svg');
}

/* Section Blog */

.posts_wrapper {
    display: flex;
    margin-top: 2.776vw;
    column-gap: 1.5962vw;
}
.post {
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    width: 33.33%;
    padding: 0.5552vw 0.5552vw 0 0.5552vw;
}
.post:hover {
    background: linear-gradient(122deg, rgba(91, 99, 211, 0.32) -39.25%, rgba(91, 99, 211, 0.00) 64.94%), #0F111A;
}
.post > img {
    width: 100%;
}
.post > .post_descr {
    padding: 1.6656vw 1.1104vw;
}
.category {
    display: inline-block;
    height: 2.2208vw;
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(334deg, rgba(119, 128, 154, 0.12) 8.56%, rgba(119, 128, 154, 0.00) 91.78%);
    color: var(--White, #FFF);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.4164vw 0.8328vw;
}
.post > .post_descr > span {
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    display: block;
    margin: 0.5552vw 0 1.6656vw 0;
}
.post > .post_descr > .post_descr_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.post > .post_descr > .post_descr_wrapper > p {
    color: var(--Grey, #77809A);
    font-size: 0.8328vw;
    font-weight: 400;
    line-height: 1.2492vw;
    letter-spacing: -0.0167vw;
}

/* Section Blog Page */

.blog_page {
    margin-top: 1.6656vw;
}
.blog_page_content {
    width: 45.11vw;
    margin: 0 auto;
}
.blog_page_content h1 {
    color: var(--White, #FFF);
    font-size: 2.776vw;
    font-weight: 700;
    line-height: 3.3312vw;
    letter-spacing: -0.1388vw;
    margin-bottom: 2.776vw;
}
.blog_page_content h2, .blog_page_content h3, .blog_page_content h4, .blog_page_content h5, .blog_page_content h6 {
    color: var(--Grey, #77809A);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    margin-top: 1.6656vw;
}
.blog_page_back {
    display: flex;
    align-items: center;
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.blog_page_back > img {
    width: 1.6656vw;
    margin-right: 0.5552vw;
}
.blog_page_image {
    margin: 1.388vw 0 2.776vw 0;
}
.blog_page .category {
    background: linear-gradient(0deg, rgba(91, 99, 211, 0.20) -7.5%, rgba(91, 99, 211, 0.00) 127.5%);
    color: var(--Purple, #5B63D3);
}
.blog_page_title_larger {
    color: var(--White, #FFF);
    font-size: 2.776vw;
    font-weight: 700;
    line-height: 3.3312vw;
    letter-spacing: -0.1388vw;
    display: block;
    margin: 0.5552vw 0;
}
.blog_page p {
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
.blog_page p a {
    color: var(--Grey, #77809A);
    font-size: 1.1104vw;
    font-weight: 400;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    text-decoration-line: underline;
}
.blog_page_wrapper {
    margin-top: 1.6656vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog_page_wrapper > div:first-child {
    display: flex;
    align-items: center;
}
.blog_page_wrapper .vertical_line {
    height: 2.776vw;
    width: 0.0694vw;
    background: rgba(119, 128, 154, 0.12);
    margin: 0 1.6656vw;
}
.blog_page_wrapper .date {
    font-size: 0.9716vw;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.blog_page_wrapper .name span {
    font-size: 0.9716vw;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    display: block;
    margin-top: 0.2776vw;
}
.blog_page_wrapper .name p {
    font-size: 0.8328vw;
    line-height: 1.2492vw;
    letter-spacing: -0.0167vw;
}
.blog_page .social_links button {
    width: 8.2586vw;
    height: 2.776vw;
    margin-right: 0.8328vw;
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    color: var(--White, #FFF);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.694vw 1.041vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.blog_page .social_links button img {
    width: 1.2492vw;
}
.blog_page .break_line {
    position: static;
    background: var(--Border, rgba(119, 128, 154, 0.12));
    margin-top: 1.6656vw;
}
.block_page_text {
    margin-top: 1.6656vw;
}
.blog_page_title_less {
    color: var(--White, #FFF);
    font-size: 2.2208vw;
    font-weight: 700;
    line-height: 2.776vw;
    letter-spacing: -0.111vw;
    margin: 4.4416vw 0 1.6656vw 0;
    display: block;
}
.block_page_btns {
    margin-top: 4.4416vw;
    display: flex;
    justify-content: space-between;
}
.block_page_btns a {
    width: 2.776vw;
    height: 2.776vw;
}
.block_page_btns a img {
    width: 100%;
}
.prev_btn, .next_btn {
    display: flex;
    align-items: center;
}
.prev_btn > div, .next_btn > div {
    margin: 0 1.1104vw;
}
.block_page_btns span {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
.block_page_btns p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.2776vw;
}
.block_page_title_small {
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    margin: 2.776vw 0 1.6656vw 0;
    display: block;
}
.blog_page .faq_title {
    height: 3.8864vw;
}
.blog_page .faq_item .faq_title::after {
    background-image: url('../img/icons/arrow_right_2.svg');
}
.blog_page .faq_item.active .faq_title::after {
    background-image: url('../img/icons/arrow_down.svg');
}

/* Section Technological Solutions */

.technological_solutions{
    margin-top: 8.8832vw;
}
.technological_solutions_content{
    position: relative;
    padding-top: 2.6372vw;
}
.technological_solutions .section_title > img {
    width: 42.1258vw;
}
.technological_solutions_cards {
    display: flex;
    gap: 1.6656vw;
    margin-top: 2.776vw;
}
.technological_solutions_cards > div {
    width: 25%;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(122deg, rgba(91, 99, 211, 0.10) -39.25%, rgba(91, 99, 211, 0.00) 64.94%), #0F111A;
    backdrop-filter: blur(0.5552vw);
    position: relative;
}
.technological_solutions_cards > div::before, .technological_solutions_cards > div::after {
    position: absolute;
    content: '';
    width: 0.0694vw;
    height: 1.6656vw;
    background: #5B63D3;
}
.technological_solutions_cards > div::before {
    left: -0.0694vw;
}
.technological_solutions_cards > div::after {
    right: -0.0694vw;
}
.technological_solutions_cards > div:first-child::before {
    bottom: 7%;
}
.technological_solutions_cards > div:first-child::after {
    top: 11.5%;
}
.technological_solutions_cards > div:nth-child(2)::before {
    bottom: 34%;
}
.technological_solutions_cards > div:nth-child(2)::after {
    top: 37%;
}
.technological_solutions_cards > div:nth-child(3)::before {
    bottom: 17%;
}
.technological_solutions_cards > div:nth-child(3)::after {
    top: 22%;
}
.technological_solutions_cards > div:nth-child(4)::before {
    bottom: 29%;
}
.technological_solutions_cards > div:nth-child(4)::after {
    top: 11.5%;
}
.technological_solutions_cards > div > img {
    width: 100%;
}
.technological_solutions_cards > div > div {
    padding: 1.1104vw 1.5962vw 5.2744vw 1.5962vw;
}
.technological_solutions_cards > div > div > span {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
.technological_solutions_cards > div > div > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.8328vw;
}
.technological_solutions_cards > div > div > a {
    position: absolute;
    bottom: 1.6656vw;
    left: 1.6656vw;
    color: var(--Purple, #5B63D3);
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.technological_solutions .btn_outline {
    margin-top: 3.3312vw;
}

/* Section Our Ideology */

#our_ideology {
    margin-top: 3.817vw;
    padding-top: 13.4636vw;
    position: relative;
}
#our_ideology > img {
    width: 100vw;
}
#our_ideology .section_title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 5.0662vw;
}
.section_title > span.small {
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    background: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

/* Section Three Blocks */

.three_blocks_content {
    position: relative;
    padding-top: 8.8832vw;
}
.three_blocks_cards {
    display: flex;
    margin-top: 2.776vw;
    margin-bottom: 3.8864vw;
}
.three_blocks_cards > .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.33%;
    gap: 0.8vw;
    padding: 1.6656vw;
}
.three_blocks_cards > .card > span {
    font-size: 3.3312vw;
    font-weight: 700;
    line-height: 116%;
    letter-spacing: -0.1666vw;
    background: linear-gradient(160deg, #FFF 17.08%, #8F85FE 42.5%, #5B63D3 93.41%, #4D58FF 207.42%, rgba(91, 99, 211, 0.00) 287.17%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.three_blocks_cards > .card > p {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.0222vw;
}
.three_blocks_cards > .card.active {
    background: linear-gradient(180deg, rgba(91, 99, 211, 0.12) 0%, rgba(91, 99, 211, 0.00) 100%); 
}
.three_blocks_cards > .cards_line {
    position: relative;
}
.three_blocks_cards > .cards_line::before {
    position: absolute;
    content: '';
    background: #5B63D3;
    width: 0.0694vw;
    height: 1.6656vw;
}
.three_blocks_cards > .cards_line_1::before {
    bottom: 12%;
}
.three_blocks_cards > .cards_line_2::before {
    top: 18%;
}
.three_blocks_cards > .cards_line_3::before {
    bottom: 13%;
}
.three_blocks_cards > .cards_line_4::before {
    top: 17%;
}

/* Section Our Partners */

#our_partners {
    margin-top: 13.3248vw;
}
#our_partners_content {
    position: relative;
    padding-top: 8.8832vw;
}
#our_partners_content .section_title {
    width: 54%;
}
#our_partners .section_title > p {
    margin-top: 2.776vw;
}
#our_partners .section_title > p, #about_us p {
    text-align: center;
}
#our_partners .section_title > p > span:first-child, #about_us p > span:first-child {
    font-size: 2.2208vw;
    font-weight: 700;
    line-height: 2.776vw;
    letter-spacing: -0.111vw;
    background: var(--Metal, linear-gradient(90deg, #B1B3C2 -9.62%, #FFF 50.14%, #B1B3C2 88.07%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#our_partners .section_title > p > span:nth-child(2), #about_us p > span:nth-child(2) {
    color: rgba(119, 128, 154, 0.24);
    font-size: 2.2208vw;
    font-weight: 700;
    line-height: 2.776vw;
    letter-spacing: -0.111vw;
}
#our_partners_content > img {
    position: absolute;
}
#our_partners_content > img.image_1 {
    width: 22.5vw;
    left: -6.5%;
    top: 27%;
}
#our_partners_content .section_title > img.image_2 {
    margin-top: 2.776vw;
    width: 23.1796vw;
}
#our_partners_content > img.image_3 {
    width: 23.5vw;
    right: -8%;
    top: 34%;
}

/* Section About Us */

#about_us {
    margin-top: 8.8832vw;
}
#about_us_content {
    position: relative;
    padding-top: 8.8832vw;
}
#about_us .section_title {
    width: 70%;
}
#about_us .vertical_line {
    width: 0.0694vw;
    height: 8.6056vw;
    background: linear-gradient(270deg, rgba(119, 128, 154, 0.24) 0%, rgba(119, 128, 154, 0.00) 100%);
    margin-top: 1.6656vw;
}
#about_us .year {
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Border, rgba(119, 128, 154, 0.12));
    width: 8.2586vw;
    height: 3.8864vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8328vw 1.6656vw 0.8328vw 1.388vw;
}
#about_us .year img {
    width: 1.2492vw;
}
#about_us .year span {
    text-align: center;
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    background: var(--Metal, linear-gradient(90deg, #B1B3C2 -9.62%, #FFF 50.14%, #B1B3C2 88.07%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#about_us .year.top_less {
    margin-top: 1.1104vw;
}
#about_us .year img {
    margin-right: 0.694vw;
}
#about_us .block .block_title {
    text-align: center;
    font-size: 2.2208vw;
    font-weight: 700;
    line-height: 2.776vw;
    letter-spacing: -0.111vw;
    background: linear-gradient(144deg, #FFF 15.25%, #8F85FE 49.43%, #5B63D3 100.57%, #4D58FF 215.1%, rgba(91, 99, 211, 0.00) 295.22%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1.6656vw;
}
#about_us .horizontal_line {
    height: 0.1388vw;
    width: 2.9148vw;
    border-radius: 0.0694vw;
    background: var(--Purple, #5B63D3);
    margin: 2.1514vw 0;
}
#about_us .block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#about_us .block .block_wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}
#about_us .block .block_wrapper .block_text {
    text-align: left;
    width: 38.7252vw;
}
.block_1, .block_3, .block_5 {
    width: 46.7756vw;
    margin: 0 auto;
}
.block_2, .block_6 {
    width: 100%;
}
.block_4 {
    width: 74.0498vw;
    margin: 0 auto;
}
.block_2 .block_wrapper, .block_6 .block_wrapper {
    column-gap: 3.3312vw;
}
.block_4 .block_wrapper {
    column-gap: 5.4826vw;
}
.block_2 .block_wrapper, .block_6 .block_wrapper, .block_1 .group_images {
    margin-top: 2.2208vw;
}
.block_4 .block_wrapper {
    margin-top: 3.2618vw;
}
.block_3 .group_images, .block_5 .group_images {
    margin-top: 1.735vw;
}
.group_images {
    position: relative;
}
.group_images > .icon {
    width: 5.552vw;
    position: absolute;
}
.first_group_images > .image, 
.third_group_images > .image,
.fifth_group_images > .image {
    width: 29.4256vw;
}
.first_group_images > .icon, 
.fifth_group_images > .icon {
    top: 50%;
    transform: translateY(-50%);
    right: -6%;
}
.second_group_images > .image, 
.fourth_group_images > .image, 
.sixth_group_images > .image {
    width: 28.801vw;
}
.second_group_images > .icon, 
.sixth_group_images > .icon {
    bottom: -3%;
    left: 43%;
}
.third_group_images > .icon {
    left: -6%;
    top: 50%;
    transform: translateY(-50%);
}
.fourth_group_images > .icon {
    bottom: -4%;
    left: 52%;
    transform: translateX(-50%);
}

/* Section Grid */

.grid {
    padding-top: 8.8832vw;
}
.grid .section_title {
    width: 70%;
}
.grid_diagram {
    position: relative;
    margin-top: 2.776vw;
}
.grid_diagram > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.grid_diagram > img {
    position: absolute;
    width: 13.88vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.grid_diagram > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.2618vw 0 3.6782vw; 
}
.grid_diagram > div > div:nth-child(1) {
    background: linear-gradient(308deg, rgba(91, 99, 211, 0.12) 14.11%, rgba(91, 99, 211, 0.00) 48.25%);
}
.grid_diagram > div > div:nth-child(4) {
    background: linear-gradient(104deg, rgba(91, 99, 211, 0.12) 14.11%, rgba(91, 99, 211, 0.00) 48.25%);
}
.grid_diagram > div > div > img {
    width: 6.7318vw;
}
.grid_diagram > div > div > span {
    display: block;
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.0222vw;
    margin-top: 1.1104vw;
}
.grid_diagram > div > div > p {
    margin-top: 0.8328vw;
    color: #77809A;
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 142%;
    letter-spacing: -0.0194vw;
    width: 25.1228vw;
}

/* Section Innovation */

#innovation {
    margin-top: 8.8832vw;
}
#innovation_content {
    position: relative;
    padding-top: 8.8832vw;
}
#wrapper_images {
    width: 59.7534vw;
    height: 23.596vw;
    margin: 2.2902vw auto 0 auto;
    position: relative;
}
#wrapper_images img {
    position: absolute;
}
#wrapper_images > img.image_1 {
    z-index: 10;
    top: 1%;
    left: 6.8%;
    width: 23.8042vw;
}
#wrapper_images > img.image_2 {
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    width: 27.9682vw;
}
#wrapper_images > img.image_3 {
    left: 0.8%;
    top: 22%;
    z-index: 5;
    width: 21.6528vw;
}
#wrapper_images > img.image_4 {
    width: 17.35vw;
    right: 3%;
    top: 20%;
    z-index: 5;
}

/* Section Professionals */

.professionals {
    margin-top: 8.8832vw;
}
.professionals.small-mt {
    margin-top: 5.1356vw;
}
.professionals_content {
    position: relative;
    padding-top: 8.8832vw;
}
.professionals .section_title > div {
    color: var(--Purple, #5B63D3);
    text-align: center;
    font-family: Gluten;
    font-size: 3.3312vw;
    font-weight: 200;
    line-height: 3.8864vw;
    letter-spacing: -0.1666vw;
}
.professionals .section_title > p {
    margin-top: 1.1104vw;
}
.professionals_content_body{
    position: relative;
    padding-top: 6.246vw;
}
.professionals_content_body > img{
    width: 100%;
}
.professionals_content_body > div > div{
    position: absolute;
}
.professionals_content_body > div > div:nth-child(1){
    left: 10%;
    top: -40%;
}
.professionals_content_body > div > div:nth-child(2){
    left: 30%;
    top: -2%;
}
.professionals_content_body > div > div:nth-child(3){
    right: 28%;
    top: -2%;
}
.professionals_content_body > div > div:nth-child(4){
    right: 11%;
    top: -33%;
}
.professionals_content_body > div > div:nth-child(1) > img{
    height: 25.678vw;
}

.professionals_content_body > div > div:nth-child(2) > img{
    height: 13.186vw;
}

.professionals_content_body > div > div:nth-child(3) > img{
    height: 18.044vw;
}

.professionals_content_body > div > div:nth-child(4) > img{
    height: 20.126vw;
}
.professionals_content_body > div > div.active > img.fill{
    display: block;
}
.professionals_content_body > div > div.active > img.stroke{
    display: none;
}
.professionals_content_body > div > div > img.fill{
    display: none;
}
.professionals_content_body .professionals_cards_info{
    display: flex;
    gap: 0.8328vw;
    position: absolute;
    width: 19.432vw;
}
.professionals_content_body .left_content{
    left: 50%;
}
.professionals_content_body .right_content{
    right: 50%;
}
.professionals_content_body .professionals_cards_info > div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 17.35vw;
}
.professionals_content_body .right_content > div{
    align-items: flex-end;
}
.professionals_content_body .professionals_cards_info > span{
    display: block;
    width: 1.1798vw;
    height: 1.1798vw;
    background-color: #5B63D3;
    border: 0.347vw solid #181A24;
    border-radius: 50%;
    margin-top: 0.5205vw;
    transition: .3s;
}
.professionals_content_body .professionals_card.active .professionals_cards_info > span{
    background-color: #fff;
    border: 0.347vw solid #5B63D3;
}
.professionals_content_body > div > div > div > div > span{
    display: inline-block;
    padding: 0.4164vw 0.8328vw;
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(334deg, rgba(119, 128, 154, 0.12) 8.56%, rgba(119, 128, 154, 0.00) 91.78%), #0B0C14;
    color: var(--White, #FFF);
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    transition: .3s;
}
.professionals_content_body > div > div.active > div > div > span{
    color: var(--Purple, #5B63D3);
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(0deg, rgba(91, 99, 211, 0.20) -7.5%, rgba(91, 99, 211, 0.00) 127.5%), #0B0C14;
}
.professionals_content_body > div > div > div > div > p{
    margin-top: 0.4164vw;
    padding: 1.1104vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(122deg, rgba(91, 99, 211, 0.10) -39.25%, rgba(91, 99, 211, 0.00) 64.94%), #0B0C14;
    color: #77809A;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.professionals_content_body > div > div.active > div > div > p{
    visibility: visible;
    opacity: 1;
}

/* Section Financial Strategy */

#financial_strategy {
    margin-top: 7.634vw;
}
/* #financial_strategy_content {
    padding-top: 5.7602vw;
} */
#financial_strategy_content > img {
    width: 100%;
    margin-top: 2.8454vw;
}
#financial_strategy .btn_outline {
    margin-top: 2.776vw;
}
.cards {
    display: flex;
    margin: 3.3312vw auto 0 auto;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    width: 68.9142vw;
    position: relative;
}
.cards .cards_line {
    position: relative;
}
.cards::before, 
.cards::after,
.cards .cards_line_1::before,
.cards .cards_line_2::before {
    position: absolute;
    content: '';
    width: 0.0694vw;
    height: 1.6656vw;
    background: #5B63D3;
}
.cards::before {
    bottom: 11%;
    left: -0.0694vw;
}
.cards::after {
    right: -0.0694vw;
    top: 8%;
}
.cards .cards_line_1::before {
    top: 10%;
}
.cards .cards_line_2::before {
    bottom: 11%;
}
.cards > div.cards_line {
    background: linear-gradient(90deg, rgba(119, 128, 154, 0.16) 0%, rgba(119, 128, 154, 0.00) 100%);
}
.cards > div.card {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.6656vw 1.735vw;
}
.cards > div.card > img {
    width: 2.2208vw;
}
.cards > div.card > span {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    margin-top: 1.6656vw;
    text-align: center;
}
.cards > div.card > p {
    color: var(--Grey, #77809A);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.8328vw;
}

/* Section Products */

#products {
    margin-top: 8.8832vw;
}
#products ul {
    display: flex;
    justify-content: center;
    margin-top: 2.2208vw;
}
#products ul li {
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(334deg, rgba(119, 128, 154, 0.12) 8.56%, rgba(119, 128, 154, 0.00) 91.78%);
    color: var(--White, #FFF);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.4164vw 0.8328vw;
    margin: 0 0.2776vw;
    cursor: pointer;
}
#products ul li.active {
    color: var(--White, #FFF);
    background: var(--Purple, #5B63D3);
    border: 0.0694vw solid var(--Purple, #5B63D3);
}
#products_cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.6656vw;
    row-gap: 6.246vw;
    margin-top: 2.776vw;
}
#products_cards .card {
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    width: calc(50% - 0.8328vw);
    position: relative;
}
#products_cards .card::before, #products_cards .card::after {
    position: absolute;
    content: '';
    width: 0.0694vw;
    height: 1.6656vw;
    background: #5B63D3;
}
#products_cards .card::before {
    top: 14.5%;
    left: -0.0694vw;
}
#products_cards .card::after {
    right: -0.0694vw;
    bottom: 14%;
}
#products_cards .card .card_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1104vw;
    padding: 1.6656vw 1.6656vw 0 1.6656vw;
}
#products_cards .card .card_header > img {
    width: 4vw;
    border-radius: 50%;
}
#products_cards .card .card_header > .btn_outline {
    margin-top: 1.388vw;
    margin-left: 0;
    transform: none;
    border-radius: 0.8328vw;
}
#products_cards .card .card_header > .btn_outline > a {
    width: auto;
    padding: 0.4164vw 1.4574vw;
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    border-radius: 0.5552vw;
}
#products_cards .card .card_content {
    margin: 0 1.6656vw;
}
#products_cards .card .card_content .title {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
#products_cards .card .card_content .rating img {
    width: 1.1104vw;
}
#products_cards .card .card_content .categories {
    display: flex;
    gap: 0.5552vw;
    margin-top: 0.8328vw;
}
#products_cards .card .card_content .categories .category {
    height: initial;
}
#products_cards .card .card_content .rating {
    margin-top: 1.1104vw;
}
#products_cards .card .card_content p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin: 1.388vw 0;
}
#products_cards .card .card_content a {
    color: var(--Purple, #5B63D3);
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
#products_cards .card .card_content .break_line {
    position: static;
    margin: 1.6656vw 0;
    background: linear-gradient(270deg, rgba(119, 128, 154, 0.00) -0.01%, rgba(119, 128, 154, 0.12) 99.99%);
}
#products_cards .card .card_content .advantages {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.8328vw;
    row-gap: 1.1104vw;
    margin-bottom: 1.6656vw;
}
#products_cards .card .card_content .advantages > div {
    width: calc(50% - 0.4164vw);
    display: flex;
    align-items: center;
}
#products_cards .card .card_content .advantages > div > img {
    width: 1.388vw;
    margin-right: 0.5552vw;
}
#products_cards .card .card_content .advantages > div > span {
    color: var(--White, #FFF);
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
#products_cards .card .card_content > img {
    width: 100%;
    display: block;
    cursor: pointer;
}
#products_cards .card .card_content > img.hidden {
    display: none;
}

/* Section Our Blog */

#our_blog {
    margin-top: 4.7886vw;
}
#our_blog_content {
    position: relative;
    padding-top: 8.8832vw;
}
#our_blog_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
#our_blog_top .btn_outline {
    margin-left: 0;
    transform: none;
}
#our_blog .tabs_content {
    display: block;
}

/* Section Features */

#features {
    margin-top: 8.8832vw;
}
#features_content {
    position: relative;
    padding-top: 8.8832vw;
}
#features_content_top {
    display: flex;
    column-gap: 3.8864vw;
}
#features_content_top > img {
    width: 38.7252vw;
}
#features_content_table {
    margin-top: 3.3312vw;
    display: flex;
}
#features_content_table > .column_line {
    width: 0.0694vw;
    min-height: 100%;
    background: linear-gradient(90deg, rgba(119, 128, 154, 0.16) 0%, rgba(119, 128, 154, 0.00) 100%);
}
#features_content_table > div.column {
    width: 33.33%;
    padding: 1.041vw 1.6656vw;
}
#features_content_table > div.column > img {
    width: 2.2208vw;
}
#features_content_table > div.column > span {
    color: var(--White, #FFF);
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    display: block;
    margin-top: 1.1104vw;
}
#features_content_table > div.column > div {
    display: flex;
    margin-top: 1.388vw;
}
#features_content_table > div.column > .wrapper > img {
    width: 1.1104vw;
    margin-right: 0.8328vw;
}
#features_content_table > div.column > .wrapper > span {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
#features_content_table > div.column > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.8328vw;
}
#features_content_table > div.column > .break_line {
    position: static;
    margin: 1.1104vw 0 1.388vw 0;
}
#features .btn_outline {
    margin-top: 2.776vw;
}
#features .column_line {
    position: relative;
}
#features .column_line::before {
    position: absolute;
    content: '';
    width: 0.0694vw;
    height: 1.6656vw;
    background: #5B63D3;
}
#features .column_line_1::before {
    top: 4%;
}
#features .column_line_2::before {
    top: 46.5%;
}
#features .column_line_3::before {
    bottom: 24%;
}
#features .column_line_4::before {
    bottom: 0;
}

/* Section Connection */

#connection {
    margin-top: 8.8832vw;
}
#connection_content {
    position: relative;
    padding-top: 8.8832vw;
}
#connection_content_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2.9148vw 0 5.8296vw 4.9274vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    overflow: hidden;
}
#connection_content_wrapper > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#connection_content_wrapper > div:nth-child(1) {
    width: 46%;
}
#connection_content_wrapper > div:nth-child(2) {
    width: 54%;
}
#connection .images {
    position: relative;
}
#connection .images > img {
    width: 100%;
}
#connection .images .connection_card {
    position: absolute;
}
#connection .images .connection_card:nth-child(1) {
    left: 24%;
    top: -12%;
}
#connection .images .connection_card:nth-child(2) {
    left: 1%;
    top: 38%;
}
#connection .images .connection_card:nth-child(3) {
    right: 23%;
    top: 3%;
}
#connection .images .connection_card:nth-child(4) {
    right: 8.5%;
    bottom: 38%;
}
#connection .images .connection_card:nth-child(1) > img {
    height: 2.4984vw;
}
#connection .images .connection_card:nth-child(2) > img {
    width: 8.1892vw;
}
#connection .images .connection_card:nth-child(3) > img {
    width: 8.328vw;
}
#connection .images .connection_card:nth-child(4) > img {
    width: 6.246vw;
}
#connection .images .connection_card > img.fill {
    display: none;
}
#connection .images .connection_card.active > img.stroke {
    display: none;
}
#connection .images .connection_card.active > img.fill {
    display: block;
}
#connection .images .connection_card > .connection_card_info {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 13.88vw;
    margin-top: 0.694vw;
}
#connection .connection_card_info_1 {
    left: -46%;
}
#connection .connection_card_info_2 {
   left: 16%;
}
#connection .connection_card_info_3 {
    right: 16.5%;
}
#connection .connection_card_info_4 {
    right: -12%;
}
#connection .images .connection_card > div > .dot {
    display: block;
    width: 1.1798vw;
    height: 1.1798vw;
    border: 0.347vw solid #23263A;
    border-radius: 50%;
    background: var(--Purple, #5B63D3);
    margin-bottom: 0.2776vw;
}
#connection .images .connection_card.active > div > .dot {
    border-color: var(--Purple, #5B63D3);
    background: var(--White, #FFF);
}
#connection .images .connection_card > div > span.position {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.4164vw 0.8328vw;
    display: inline-block;
    border-radius: 0.5552vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: linear-gradient(334deg, rgba(119, 128, 154, 0.12) 8.56%, rgba(119, 128, 154, 0.00) 91.78%), #161928;
}
#connection .images .connection_card.active > div > span.position {
    color: var(--Purple, #5B63D3);
    background: linear-gradient(0deg, rgba(91, 99, 211, 0.20) -7.5%, rgba(91, 99, 211, 0.00) 127.5%), #161928;
}
#connection .titles > span {
    position: relative;
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    padding-left: 0.8328vw;
    display: block;
    margin-top: 2.2208vw;
    display: none;
}
#connection .titles > span.active {
    display: block;
}
#connection .titles > span::before {
    position: absolute;
    content: '';
    width: 0.1388vw;
    height: 1.2492vw;
    border-radius: 0.0694vw;
    left: -0.0694vw;
    top: 50%;
    transform: translateY(-50%);
    background: var(--Purple, #5B63D3);
}
#connection .lists {
    padding-right: 2.2208vw;
}
#connection .lists > ul {
    margin-top: 1.6656vw;
    display: none;
}
#connection .lists > ul.active {
    display: block;
}
#connection .lists > ul > li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8328vw;
}
#connection .lists > ul > li:last-child {
    margin-bottom: 0;
}
#connection .lists > ul > li > img {
    width: 1.1104vw;
    height: 1.1104vw;
    margin-right: 0.5552vw;
}
#connection .lists > ul > li > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
#connection .lists > ul > li > p > span {
    color: var(--White, #FFF);
    font-size: 0.9716vw;
    font-weight: 500;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
#connection .btn_outline {
    margin-top: 2.776vw;
}

/* Section Higher Level */

#higher_level {
    margin-top: 8.8832vw;
}
#higher_level_content {
    position: relative;
    padding-top: 8.8832vw;
}
#higher_level_content > img {
    position: absolute;
    top: 36%;
}
#higher_level .btn_outline {
    margin-top: 2.776vw;
}
#higher_level .section_title {
    width: 58%;
}
#higher_level .cards {
    width: 52.1888vw;
    margin-top: 14.0882vw;
    background: rgba(147, 157, 188, 0.01);
    backdrop-filter: blur(0.5552vw);
}
#higher_level .cards .cards_line_1::before {
    top: 12%;
}
#higher_level .cards::after {
    top: 12%;
}

/* Section Become Broker */

#become_broker {
    margin-top: 8.8832vw;
}
#become_broker_content {
    position: relative;
    padding-top: 8.8832vw;
}
#become_broker_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#become_broker .section_title {
    margin: 0;
    width: 56%;
}
#become_broker .btn_outline {
    margin-left: 0;
    transform: none;
    margin-top: 4.4416vw;
}
#become_broker_cards {
    display: flex;
    column-gap: 1.735vw;
    margin-top: 7.981vw;
    position: relative;
}
#become_broker_cards > img {
    position: absolute;
    top: -37.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60.7vw;
}
#become_broker_cards > .card {
    position: relative;
    width: 25%;
    background: url('../img/become_broker_card_bg.svg') center center / 100% 100% no-repeat;
    padding: 4.3722vw 1.6656vw 1.6656vw 1.6656vw;
}
#become_broker_cards > .card > img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -26.5%;
    width: 7.5646vw;
    z-index: -1;
}
#become_broker_cards > .card > span {
    color: var(--White, #FFF);
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
}
#become_broker_cards > .card > p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    margin-top: 0.8328vw;
}

/* Modal */

.modal {
    background: rgba(11, 12, 20, 0.9);
    z-index: 99999;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
}
.modal.show {
    display: block;
}
.modal.hide {
    display: none;
}
.modal_wrapper {
    width: 38.7252vw;
    min-height: 26.0944vw;
    border-radius: 1.1104vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    margin: 0 auto;
    padding: 2.4984vw 2.2208vw 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
#modal_content_2 {
    display: none;
}
#modal_content_2 .section_title {
    flex-direction: column;
    margin-bottom: 2.2208vw;
}
#modal_content_2 .section_title > p {
    margin-top: 0.8328vw;
}
#modal_content_2 .btn_outline {
    position: static;
    margin-left: 50%;
    transform: translateX(-50%);
}
#modal_content_2 .btn {
    width: auto;
    padding: 0.4164vw 1.1798vw;
    font-size: 0.9716vw;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.modal_content_header {
    margin-bottom: 1.6656vw;
}
.modal_content_body .page.show {
    display: block;
}
.modal_content_body .page.hide {
    display: none;
}
.modal .steps {
    display: flex;
    column-gap: 0.1388vw;
}
.modal .steps > span {
    width: 5.0662vw;
    height: 0.2776vw;
    background: var(--Border, rgba(119, 128, 154, 0.12));
}
.modal .steps > span:first-child {
    background: var(--Purple, #5B63D3);
}
.modal .section_title {
    display: flex;
    flex-direction: row;
}
.modal .section_title {
    margin-bottom: 1.388vw;
    align-items: center;
}
.modal .section_title > img.icon {
    width: 3.8864vw;
}
.modal .section_title > span {
    color: #FFF;
    font-size: 1.388vw;
    font-weight: 600;
    line-height: 2.2208vw;
    letter-spacing: -0.0278vw;
    background: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    margin-left: 1.1104vw;
    margin-top: 0;
}
.modal .modal_close {
    width: 1.6656vw;
    height: 1.6656vw;
    position: absolute;
    top: 1.6656vw;
    right: 1.6656vw;
    cursor: pointer;
}
.modal textarea {
    border-radius: 0.8328vw;
    border: 0.1041vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Super-light-black, #181B25);
    backdrop-filter: blur(0.8328vw);
    padding: 0.9716vw 1.388vw 0.8328vw;
    width: 100%;
    height: 4.5804vw;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    overflow: hidden;
    resize: none;
    color: var(--White, #FFF);
}
.modal textarea::placeholder {
    color: var(--Grey, #77809A);
}
.modal #textarea_wrapper {
    position: relative;
    height: 4.5804vw;
}
.modal #textarea_wrapper textarea#characters {
    transition: border 0.5s ease;
    z-index: -1;
    height: 100%;
}
.modal #textarea_wrapper textarea#characters:focus {
    border: 0.1041vw solid var(--Purple, #5B63D3);
}

#order_dev_modal #textarea_wrapper label, 
#order_dev_modal #page_5 label,
#request_integration_modal #page_7 label {
    color: var(--Grey, #77809A);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4.2%;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    transition: all 100ms ease-in;
}
#order_dev_modal #textarea_wrapper label.show, 
#order_dev_modal #page_5 label.show,
#request_integration_modal #page_7 label.show {
    top: 0;
    visibility: visible;
    opacity: 1;
    font-size: 0.8328vw;
    font-weight: 400;
    line-height: 1.2492vw;
    letter-spacing: -0.0167vw;
}
.modal textarea#more, .modal textarea#company_name {
    height: 9.1608vw;
}
.modal #textarea_wrapper div {
    width: 1.8738vw;
    position: absolute;
    right: 0.5552vw;
    bottom: 0.5552vw;
    display: flex;
    align-items: center;
    color: var(--Grey, #77809A);
    font-size: 0.694vw;
    font-weight: 400;
    line-height: 0.9716vw;
    letter-spacing: -0.0139vw;
    justify-content: flex-end;
}
.modal #textarea_wrapper > div > span {
    color: var(--Grey, #77809A);
}
.modal .btn_outline {
    margin-left: 0;
    transform: none;
    position: absolute;
    bottom: 2.2208vw;
    right: 2.2208vw;
    border-radius: 0.8328vw;
}
.modal .btn_outline > button {
    position: relative;
    border: none;
    cursor: pointer;
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.4164vw 2.9148vw 0.4164vw 1.041vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--Grey, #77809A);
    width: auto;
    border-radius: 0.5552vw;
}
.modal .btn_outline > button::after {
    position: absolute;
    content: '';
    right: 1.1104vw;
    top: 50%;
    transform: translateY(-50%);
    background: url('../img/icons/arrow_right_gray.svg') center center / 1.1104vw 1.1104vw no-repeat;
    width: 1.1104vw;
    height: 1.1104vw;
}
.modal .btn_outline > button.active {
    background: var(--Purple, #5B63D3);
    color: var(--White, #FFF);
}
.modal .btn_outline > button.active::after {
    background-image: url('../img/icons/arrow_right_light_2.svg');
}
#order_dev_modal #page_3 form, #request_integration_modal #page_3 form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1104vw;
}
#order_dev_modal #page_3 form > label, #request_integration_modal #page_3 form > label {
    border-radius: 0.8328vw;
    height: 3.8864vw;
    background: var(--Super-light-black, #181B25);
    color: #FFF;
    text-align: center;
    font-size: 1.1104vw;
    font-weight: 600;
    line-height: 1.6656vw;
    letter-spacing: -0.0222vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0.694vw 0.8328vw;
}
#order_dev_modal #page_3 form > label:last-child {
    font-size: 0.8328vw;
    font-weight: 500;
    line-height: 1.2492vw;
    letter-spacing: -0.0167vw;
}
#order_dev_modal #page_3 form > input, #request_integration_modal #page_3 form > input {
    display: none;
}
#order_dev_modal #page_3 form > input.active + label, 
#request_integration_modal #page_3 form > input.active + label {
    border: 0.0694vw solid var(--Purple, #5B63D3);
}
#order_dev_modal #page_5 form div.input, #request_integration_modal #page_7 form div.input {
    position: relative;
    height: 3.3312vw;
}
.modal input#email {
    width: 100%;
    height: 100%;
    border-radius: 0.8328vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Super-light-black, #181B25);
    backdrop-filter: blur(0.8328vw);
    padding: 0.9716vw 1.388vw;
    color: var(--White, #FFF);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.modal input#email::placeholder {
    color: var(--Grey, #77809A);
}
.modal p {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.modal span.name {
    font-weight: 600;
    display: inline-block;
    color: var(--Grey, #77809A);
}
.modal a#resend {
    color: var(--Grey, #77809A);
    text-decoration: underline;
}
#order_dev_modal #page_6 .section_title {
    margin-bottom: 0.8328vw;
}
.modal .input_fields {
    width: 30.8136vw;
    display: flex;
    flex-direction: row;
    column-gap: 0.8328vw;
    margin: 1.388vw 0;
}
.modal .input_fields input {
    width: 16.6%;
    height: 4.4416vw;
    border-radius: 0.8328vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Super-light-black, #181B25);
    color: #FFF;
    text-align: center;
    font-size: 2.776vw;
    font-weight: 700;
    line-height: 40.5552vw;
    letter-spacing: -0.1388vw;
}
.modal .input_fields input:focus {
    border: 0.0694vw solid var(--Purple, #5B63D3);
}
.modal .input_wrapper {
    display: flex;
    align-items: center;
    height: 3.3312vw;
    border-radius: 0.8328vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Super-light-black, #181B25);
    backdrop-filter: blur(0.8328vw);
    padding: 0.9716vw 1.388vw;
} 
.modal .input_wrapper > input {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    height: 1.388vw;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    background: var(--Super-light-black, #181B25);
    border: none;
}
.modal .input_wrapper > input {
    width: 100%;
}
.modal .input_wrapper > input::placeholder {
    color: var(--Grey, #77809A);
    opacity: 1;
}
.modal .input_wrapper > input:-ms-input-placeholder,
.modal .input_wrapper > input::-ms-input-placeholder,
.modal .input_wrapper > input::-webkit-input-placeholder,
.modal .input_wrapper > input::-moz-placeholder {
    color: var(--Grey, #77809A);
}
.modal .input_wrapper .select {
    position: relative;
    margin-right: 0.8328vw;
}
.modal .input_wrapper .select.is_active .select_body {
    display: block;
}
.modal .input_wrapper .select .select_header {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 2.2208vw;
    width: 2.3596vw;
}
.modal .input_wrapper .select .select_current {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
.modal .input_wrapper .select .select_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 0.694vw;
    height: 0.694vw;
    margin-left: auto;
}
.modal .input_wrapper .select .select_icon > img {
    width: 100%;
}
.modal .input_wrapper .select .select_body {
    position: absolute;
    width: auto;
    top: 100%;
    left: 0;
    border-radius: 0.8328vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    padding: 0.5552vw;
    display: flex;
    flex-direction: column;
    row-gap: 0.5552vw;
    display: none;
}
.modal .input_wrapper .select .select_item {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.4164vw 0.5552vw;
    border-radius: 0.5552vw;
    transition: all 100ms ease-in;
}
.modal .input_wrapper .select .select_item:hover {
    color: var(--White, #FFF);
    background: var(--Border, rgba(119, 128, 154, 0.12));
}

/* Modal 2 */

#request_integration_modal #page_1 > form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1104vw;
}
#request_integration_modal #page_1 > form > input {
    display: none;
}
#request_integration_modal #page_1 > form > input.active + label {
    outline: 0.0694vw solid var(--Purple, #5B63D3);
}
#request_integration_modal #page_1 > form > label {
    border-radius: 0.8328vw;
    background: var(--Super-light-black, #181B25);
    padding: 0.4858vw 0.5552vw 1.9432vw;
    cursor: pointer;
}
#request_integration_modal #page_1 > form > label > span {
    color: #FFF;
    text-align: center;
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    display: block;
    margin: 1.6656vw auto 0 auto;
}
#request_integration_modal #page_1 > form > label > img {
    width: 100%;
}
#request_integration_modal .steps > span {
    width: 3.7476vw;
}
#request_integration_modal #page_2 .section_title {
    margin-bottom: 1.6656vw;
}
#request_integration_modal #page_2 form {
    display: flex;
    gap: 1.1104vw;
}
#request_integration_modal #page_2 form > input {
    display: none;
}
#request_integration_modal #page_2 form > input.active + label {
    outline: 0.0694vw solid var(--Purple, #5B63D3);
}
#request_integration_modal #page_2 form > label {
    width: 50%;
    border-radius: 0.8328vw;
    background: var(--Super-light-black, #181B25);
    padding: 1.388vw 1.3186vw;
    cursor: pointer;
    position: relative;
}
#request_integration_modal #page_2 form > label > div.label_header {
    position: absolute;
    top: -14%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2.2902vw);
    height: 1.2492vw;
    border-radius: 0.5552vw 0.5552vw 0 0;
    background: var(--Purple, #5B63D3);
    display: flex;
    justify-content: center;
    align-items: center;
}
#request_integration_modal #page_2 form > label > div.label_header > span {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 0.7634vw;
    font-weight: 600;
    line-height: 1.2492vw;
    letter-spacing: -0.0153vw;
}
#request_integration_modal #page_2 form > label > div.label_title {
    display: flex;
    align-items: center;
    column-gap: 0.8328vw;
}
#request_integration_modal #page_2 form > label > div.label_title > img {
    width: 2.776vw;
    height: 2.776vw;
}
#request_integration_modal #page_2 form > label > div.label_title > span {
    color: var(--White, #FFF);
    font-size: 0.9716vw;
    font-weight: 600;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding-right: 0.5552vw;
}
#request_integration_modal #page_2 form > label > p {
    color: var(--Grey, #77809A);
    font-size: 0.8328vw;
    font-weight: 400;
    line-height: 1.2492vw;
    letter-spacing: -0.0167vw;
    margin-top: 0.8328vw;
}
#request_integration_modal #page_3 form > label {
    padding: 0 1.8044vw;
}




#request_integration_modal #page_4 .select,
#request_integration_modal #page_5 .select {
    position: relative;
    z-index: 10;
}
#request_integration_modal #page_4 .select.is_active .select_body,
#request_integration_modal #page_5 .select.is_active .select_body {
    display: block;
}
#request_integration_modal #page_4 .select .select_header,
#request_integration_modal #page_5 .select .select_header {
    border-radius: 0.8328vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Super-light-black, #181B25);
    backdrop-filter: blur(0.8328vw);
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    height: 3.3312vw;
    padding: 0.9716vw 1.388vw;
}
#request_integration_modal #page_4 .select .select_placeholder_1,
#request_integration_modal #page_5 .select .select_placeholder_2 {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
#request_integration_modal #page_4 .select .select_header label,
#request_integration_modal #page_5 .select .select_header label {
    color: var(--Grey, #77809A);
    position: absolute;
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    opacity: 0;
    visibility: hidden;
    transition: all 100ms ease-in;
    top: 50%;
    transform: translateY(-50%);
}
#request_integration_modal #page_4 .select .select_header label.show,
#request_integration_modal #page_5 .select .select_header label.show {
    top: 0;
    opacity: 1;
    visibility: visible;
    font-size: 0.8328vw;
    font-weight: 400;
    line-height: 1.2492vw;
    letter-spacing: -0.0167vw;
}
#request_integration_modal #page_4 .select .select_current,
#request_integration_modal #page_5 .select .select_current {
    color: var(--White, #FFF);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
}
#request_integration_modal #page_4 .select .select_icon,
#request_integration_modal #page_5 .select .select_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 0.694vw;
    height: 0.694vw;
    margin-left: auto;
}
#request_integration_modal #page_4 .select .select_icon > img,
#request_integration_modal #page_5 .select .select_icon > img {
    width: 100%;
}
#request_integration_modal #page_4 .select .select_body,
#request_integration_modal #page_5 .select .select_body {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    border-radius: 0.8328vw;
    border: 0.0694vw solid var(--Border, rgba(119, 128, 154, 0.12));
    background: var(--Light-black, #0F111A);
    padding: 0.5552vw;
    display: flex;
    flex-direction: column;
    row-gap: 0.5552vw;
    display: none;
    max-height: 18.125vw;
    overflow-y: auto;
}
#request_integration_modal #page_4 .select .select_item,
#request_integration_modal #page_5 .select .select_item {
    color: var(--Grey, #77809A);
    font-size: 0.9716vw;
    font-weight: 400;
    line-height: 1.388vw;
    letter-spacing: -0.0194vw;
    padding: 0.55vw 0.8vw;
    border-radius: 0.5552vw;
    transition: all 100ms ease-in;
    cursor: pointer;
}
#request_integration_modal #page_4 .select .select_item:hover,
#request_integration_modal #page_5 .select .select_item:hover {
    color: var(--White, #FFF);
    background: var(--Border, rgba(119, 128, 154, 0.12)); 
}