@font-face {
    font-family: "fixel-ver";
    src: url('../font/FixelText-Light_fixed.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "fixel-ver";
    src: url('../font/FixelText-Regular_fixed.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "fixel-ver";
    src: url('../font/FixelText-Medium_fixed.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "fixel-ver";
    src: url('../font/FixelText-SemiBold_fixed.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "fixel-ver";
    src: url('../font/FixelText-Bold_fixed.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "fixel-ver";
    src: url('../font/FixelText-Black_fixed.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
html {
    scrollbar-gutter: stable;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior: none;
}
:root {
    --index: calc(1vw + 1vh);
    --accent-yellow: #ffe606;
    --accent-orange: #f76800;
    --accent-hover-orange: #df5d13;
    --accent-active-orange: #c54c19;
    --accent-navy: #3e04e0;
    --accent-backward: #52d5ff;
    --nav-bg: rgb(255 255 255 / 0);
    --nav-hover-bg: #3469b4;
    --nav-hover-blur: blur(20px);
    --nav-hover-blur-init: blur(0);
    --link: #1b4a8d;
    --link-hover: #2737df;
    --main-black: #151533;
    --main-white: #fff;
    --main-bg-beige: #f6f6ed;
}

body {
    background-color: black;
    font-family: "fixel-ver", sans-serif;
    position: relative;
    color:#fff;
    -webkit-font-smoothing: subpixel-antialiased;
    scroll-behavior: smooth;
}
body.blog {
    --nav-hover-bg: #222239;
}
a {
    text-decoration: none;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    z-index: 4;
}
.logo {
    padding: 34px 0;
}
nav ul {
    margin: 0;
    padding: 24px 0;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
}
nav ul li {
    padding: 10px 0;
}
nav ul li:not(:last-child) {
    margin-right: 32px;
}
nav ul li a,
nav ul li>span {
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
    cursor: pointer;
}
nav ul li a::after,
nav ul li>span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-orange);
    opacity: 0;
    z-index: 4;
}
nav ul li:hover>a,
nav ul li:hover>span {
    color: #fff;
    cursor: pointer;
}
nav ul li:hover>a::after,
nav ul li>a:active::after,
nav ul li>a:focus::after,
nav ul li:hover>span::after {
    opacity: 1;
}
nav ul li:hover>.child-nav_wrap {
    display: block;
}
nav ul li>a ._circle{
    width: 24px;
    height: 24px;
    fill: #ffe606;
    opacity: 0;
}
nav ul li>a._active ._circle {
    opacity: 1;
}
.nav-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 3;
    background-color: rgb(200 199 199 / .5);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}
header._bg-blog .child-nav_wrap{
    background-color: #222239;
}
.child-nav_wrap {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64%;
    padding: 34px 0 40px;
    background-color:var(--nav-hover-bg);
    z-index: 5;
}
.child-nav_wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100px;
    top: -90px;
}
.child-nav {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 16px;

}
.child-nav_elem {
    padding: 16px;
    border-radius: 20px;
    background-color: rgb(255 255 255 / .15);
    display: flex;
    align-items: center;
    transition: background-color .4s ease-in;
}
.child-nav_elem._active,
.child-nav_elem:not(._active):hover {
    background-color: rgb(255 255 255 / .3);
}
.child-nav_elem:hover>.child-nav_icon-arrow {
    opacity: 1;
}
.child-nav_icon {
    margin-right: 16px;
}
.child-nav_icon i{
    display: block;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    position: relative;
    transition: opacity 5s ease-in;
}

.child-nav_icon i.rv{
    background-color: #003f7a;
}
.child-nav_icon i.sb{
    background-color: #04757e;
}
.child-nav_icon i.rmm{
    background-color: #6b3ccf;
}
.child-nav_icon i.tetrad{
    background-color: #3679ec;
}
.child-nav_icon svg{
    position: absolute;
    top: 50%;
    left: 50%;transform: translate(-50%, -50%);
}
._nav_icon_in {
    opacity: 1;
}
._nav_icon_out {
    opacity: 0;
}
.child-nav_elem._active ._nav_icon_in,
.child-nav_elem:hover ._nav_icon_in {
    opacity: 0;
}
.child-nav_elem._active ._nav_icon_out,
.child-nav_elem:hover ._nav_icon_out {
    opacity: 1;
}
.child-nav_text {
    flex: auto 1 0;
}
.child-nav_title {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
.child-nav_desc {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.child-nav_icon-arrow {
    opacity: 0;
    transition: opacity .4s ease-in;
}
.child-nav_elem._active .child-nav_icon-arrow {
    opacity: 1;
}
.child-nav_icon-arrow svg {
    width: 24px;
    height: 24px;
}
.child-nav_icon-arrow ._arrow path {
    fill: #fff;
}
.child-nav_icon-arrow ._circle {
    display: none;
}
.child-nav_icon-arrow ._circle circle {
    fill: var(--accent-orange);
}
.child-nav_icon-arrow._active ._arrow {
    display: none;
}
.child-nav_icon-arrow._active ._circle {
    display: inline-block;
}
.mobile_nav-button {
    display: none;
}
._mobile-menu {
    display: none;
}

.ver-action {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}
.ver-action a{
    padding: 20px 45px;
    font-family: "fixel-ver", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background-color: var(--accent-orange);
    border-radius: 16px;
    box-shadow: 3px 6px 10px rgb(101 64 8 / .08);
    transition: background-color .4s ease-in;
}
.ver-action a:hover{
    background-color: var(--accent-hover-orange);
}
.ver-action a:active{
    background-color: var(--accent-active-orange);
}
.ver-1ths {
    min-height: 980px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    padding-top: 166px;
    text-align: center;
    position: relative;
    z-index: 0;
}
.ver-1ths::after {
    content:"";
    position: absolute;
    inset: 0 0 66vh 0;
    z-index: -1;
    background:linear-gradient(to bottom, rgb(52 105 180 / .9) 0%, rgb(52 105 180 / .2) 30%, transparent);
}
.ver-1ths_title {
    color: #fff;
    font-weight: 700;
    font-size: 74px;
    line-height: 88px;
}
.ver-1ths_desc {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 48px;
    line-height: 32px;
}
.ver-1ths_content .ver-action {
    justify-content: center;
}
.ver-1ths_content {
    position: relative;
}
.ver-1ths_content_label {
    position: absolute;
    top: -15px;
    right: -40px;
    background-color: #10b264;
    padding: 5px 10px;
    color: #f9f9f9;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    border-radius: 8px;
    text-transform: uppercase;
}
.ver-1ths_object {
    position: relative;
    min-width: 400px;
    flex: auto 1 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    margin-top: 30px;
}
.ver-1ths_object_mark {
    position: absolute;
    display: none;
}
.ver-1ths_object_mark._left {
    left: -68%;
    top: 50%;
}
.ver-1ths_object_mark._right {
    right: -45%;
    top: calc(50% + 80px);
}
.ver-1ths_object_mark svg{
    position: relative;
    z-index: 2;
}
._mark-blur {
    position: absolute;
    top: 0;
    padding: 8px 0;
    overflow: hidden;
    border-radius: 22px;
    z-index: 2;
    background-color: rgb(255 255 255 / .1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1.5px solid rgb(249 249 249);
    color: rgb(250 250 255);
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}
._mark-blur._right {
    width:117px;
    right: 0;
}
._mark-blur._left {
    width:225px;
    left: 0;
}
.ver-2ths {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 170px 0;
    background-color: #f6f6ed;
}
.ver-2ths_title {
    color: #151533;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    margin-bottom: 115px;
}
.ver-2ths_title ._accent {
    color:#3e04e0;
}
.ver-2ths_title ._devider {
    display: block;
}
.ver-2ths_cards {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 16px;
    padding-bottom: 44px;
    z-index: 0;
}
.ver-2ths_cards::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -77px;
    right: -77px;
    height: 270px;
    border-radius: 40px;
    background-color: #3e04e0;
    z-index: -1;
}
.ver-2ths_card {
    min-height: 340px;
    border-radius: 24px;
    overflow: hidden;
    scale: 1;
    transition: scale .5s ease-in;
    cursor: pointer;
    position: relative;
}
.ver-2ths_card:hover {
    scale: 1.06;
}
.ver-2ths_card ._card-front {
    height: 100%;
    position: relative;
    padding: 16px;
    z-index: 2;
    opacity: 1;
    transition: opacity .2s ease-in;
}
.ver-2ths_card ._card-back {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity .2s ease-in;
}
.ver-2ths_card ._card-back img {
    max-width: 100%;
}
.ver-2ths_card._active ._card-front {
    opacity: 0;
}
.ver-2ths_card._active ._card-back {
    opacity: 1;
    z-index: 3;
}
/*.ver-2ths_card._1st {
    background-color: #151533;
}*/
.ver-2ths_card._1st ._card-front {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    background-color: #151533;
}
.ver-2ths_card._1st ._card-row._elem1 img {
    max-width: 92px;
}
.ver-2ths_card._1st ._card-row._elem2 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.ver-2ths_card._1st ._card-row._elem3 {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
}
/*.ver-2ths_card._2st{
    background-color: #52d5ff;
}*/
.ver-2ths_card._2st ._card-front {
    background-image: url(../image/section-2_card-2st.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    background-color: #52d5ff;
}
.ver-2ths_card._2st ._card-row._elem1 {
    color: #151533;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
}
.ver-2ths_card._2st ._card-row._elem2 {
    color: #151533;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
/*.ver-2ths_card._3st {
    background-color: #ffe606;
}*/
.ver-2ths_card._3st ._card-front {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    background-image: url(../image/section-2_card-3st.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    background-color: #ffe606;
}
.ver-2ths_card._3st ._card-row._elem1 {
    color: #151533;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
}
.ver-2ths_card._3st ._card-row._elem1 ._thiner {
    font-weight: 300;
}
.ver-2ths_card._3st ._card-row._elem2 {
    color: #151533;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
/*.ver-2ths_card._4st {
    background-color: #9aa4ff;
}*/
.ver-2ths_card._4st ._card-front {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    background-color: #9aa4ff;
}
.ver-2ths_card._4st ._card-row._elem1 {
    color: #151533;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
}
.ver-2ths_card._4st ._card-row._elem2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row nowrap;
    border-radius: 24px;
    background-color: #151533;
    padding: 8px;
}
.ver-2ths_card._4st ._card-row._elem2 svg{
    margin-right: 16px;
}
.ver-3ths {
    background-color: #222239;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain, 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 80px 0 145px;
    min-height: initial;
}
.ver-3ths_title {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
}
.ver-3ths_title ._accent{
    color: #52d5ff;
}
.ver-3ths_title ._devider{
    display: block;
}
.ver-3ths_content {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.ver-3ths_object-left {
    position: relative;
    padding-top: 40px;
}
.ver-3ths_object-left::before {
    content: '';
    position: absolute;
    top: 63px;
    right: 100%;
    width: 100vw;
    height: 2px;
    border: none;
    border-top: 2px dashed #fff;
}
.ver-3ths_object-right {
    position: relative;
    align-self: flex-end;
    padding-bottom: 50px;
}
.ver-3ths_object-right::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 100%;
    width: 100vw;
    height: 2px;
    border: none;
    border-top: 2px dashed #fff;
}
.ver-3ths_object-main {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.ver-3ths_object-main ._object-tn-start {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    width: 4px;
    background: linear-gradient(to bottom, transparent,#ffe606);
    opacity: 0;
}
.ver-3ths_object-main ._object-tn-start ._item {
    height: 9px;
    width: 100%;
    background-color: #222239;
}
.ver-3ths_object-main ._object-tn-start ._last {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background-color: #ffe606;
    border-radius: 10px;
    opacity: 0;
}
.ver-3ths_object-main ._object-tn {
    color: #ffe606;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 24px 10px;
    border-radius: 20px;
    border: 3px solid #ffe606;
    position: relative;
    opacity: 0;    
}
.ver-3ths_object-main ._object-tn * {
    text-decoration: none;
    border: 0;
}
.ver-3ths_object-main ._object-tn a{
    color: #ffe606;
    text-decoration: none;
}
.ver-3ths_object-main ._object-image-start {
    height: 100px;
    width: 0;
    border: 0;
    border-right: 4px solid #ffe606;
    position: relative;
    opacity: 0;
}
.ver-3ths_object-main ._object-image-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% + 2px);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 8px solid;
    border-left-color: transparent;
    border-top-color: #ffe606;
    border-right-color: transparent ;
    border-bottom-color: transparent;
}
.ver-3ths_object-main ._object-image-start::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% + 2px);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 8px solid;
    border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: #ffe606;
}
.ver-3ths_object-main ._object-image {
    position: relative;
    border: 3px solid #ffe606;
    opacity: 0;
    z-index: 0;
}
.ver-3ths_object-main ._object-image img {
    max-width: 336px;
}
.ver-3ths_object-main ._object-image ._shine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    width: 220%;
    height: 200%;
    z-index: -1;
    background: radial-gradient(ellipse closest-side, rgb(162 135 244 / .6) 0%, rgb(162 135 244 / .1) 80%, rgb(162 135 244 / 0) 100%);
    background: -webkit-radial-gradient(ellipse closest-side, rgb(162 135 244 / .6) 0%, rgb(162 135 244 / .1) 80%, rgb(162 135 244 / 0) 100%);
    opacity: 0;
}
.ver-3ths._in-view .ver-3ths_object-main ._object-tn-start {
    animation: show-section .3s ease-in .4s forwards;
}
.ver-3ths._in-view .ver-3ths_object-main ._object-tn-start ._last {
    animation: show-section .3s ease-in .7s forwards;
}
.ver-3ths._in-view .ver-3ths_object-main ._object-tn {
    animation: show-section .3s ease-in 1s forwards;
}
.ver-3ths._in-view .ver-3ths_object-main ._object-image-start {
    animation: show-section .3s ease-in 1.3s forwards;
}
.ver-3ths._in-view .ver-3ths_object-main ._object-image {
    animation: show-section .3s ease-in 1.3s forwards;
}
.ver-3ths._in-view .ver-3ths_object-main ._object-image ._shine {
    animation: show-section .5s ease-in 1.6s forwards;
}
.ver-4ths {
    background-color: #f6f6ed;
    padding: 136px 0 215px;
}
.ver-4ths_text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}
.ver-4ths_text_title {
    color: #151533;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    margin-top: 114px;
    margin-bottom: 24px;
}
.ver-4ths_text_title ._accent{
    color: #3e04e0;
}
.ver-4ths_text_desc {
    color: #222239;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}
.ver-4ths_text_title ._devider,
.ver-4ths_text_desc ._devider{
    display: block;
}
.ver-4ths_text_desc .ver-4ths_text_desc_data{
    display: none;
    opacity: 0;
    margin: 0;
    transition: opacity .5s ease-in;
}
.ver-4ths_text_desc .ver-4ths_text_desc_data._active{
    display: block;
    opacity: 1;
}
.ver-4ths_text .ver-action {
    margin-top: auto;
    margin-bottom: 118px;
}
.ver-4ths_scene {
    display: grid;
    place-content: center left;
    position: relative;
    padding-left: 236px;
}
.ver-4ths_scene::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    width: 100vw;
    height: 100%;
    max-height: 270px;
    background-color: #3e04e0;
    border-radius: 40px 0 0 40px;
    z-index: 0;
}
.ver-4ths_scene_accent {
    position: absolute;
    top: -110px;
    left: calc(50% - 6px);
    opacity: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}
.ver-4ths_scene_accent-arrow {
    margin-left: -45px;
    margin-bottom: 10px;
}
.ver-4ths_scene._in-view .ver-4ths_scene_accent{
    animation: show-accent 3s ease-in .3s;
}
.ver-4ths_scene_object-main {
    position: relative;
    z-index: 3;
}
.ver-4ths_scene_object-main_controls {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin-bottom: 64px;
}
.ver-4ths_scene_object-main_control_icon::after {
    content: '';
    position: absolute;
    top: 47px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background-image: linear-gradient(to top, rgb(21 21 51) 0%,rgb(21 21 51) 49.9%,rgb(21 21 51 / 0) 50.1%, rgb(21 21 51 / 0) 100%);
    background-position: center;
    background-size: 100% 18px;
    background-repeat: repeat-y;
    display: none;
    opacity: 0;
    transition: opacity .2s ease-in;
}
.ver-4ths_scene_object-main_control_icon {
    padding: 10px;
    border-radius: 100px;
    background-color: rgb(45 45 45 / .1);
    border: 1px solid transparent;
    line-height: 1;
    position: relative;
    cursor: pointer;
    transition: all .2s ease-in;
}
.ver-4ths_scene_object-main_control_icon svg{
    width: 20px;
    height: 20px;
    fill: #151533;
}
.ver-4ths_scene_object-main_control_content {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    opacity: 0;
    transition: opacity .1s ease-in;
}
.ver-4ths_scene_object-main_control._active .ver-4ths_scene_object-main_control_content,
.ver-4ths_scene_object-main_control._active .ver-4ths_scene_object-main_control_icon::after {
    display: initial;
    opacity: 1;
}
.ver-4ths_scene_object-main_control._active .ver-4ths_scene_object-main_control_icon {
    border-color: #151533;
}
.ver-4ths_scene_object-main_control._active .ver-4ths_scene_object-main_control_icon svg{
    width: 26px;
    height: 26px;
}
.ver-4ths_scene_object-main_control_content img {
    max-width: 100%;
}
.ver-4ths_scene_object-main_image img {
    opacity: 0;
    max-width: 235px;
}
.ver-4ths_scene_object-left {
    position: absolute;
    top: 40%;
    left: -55px;
    display: flex;
    flex-flow: column nowrap;
    z-index: 1;
    padding-top: 60px;
}
.ver-4ths_scene_object-left_item {
    width: 195px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px;
    background-color: #fff;
    padding: 8px;
    box-shadow: 0 4px 6px rgb(0 0 0 / .05),0 10px 15px rgb(0 0 0 / .1);
}
.ver-4ths_scene_object-left_item._item1 {
    margin-left: 30px;
    margin-bottom: 40px;
}
.ver-4ths_scene_object-left_item_element-2p {
    width: 123px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px 8px 8px;
    border-radius: 100px;
}
.ver-4ths_scene_object-left_item_element-2p._item1 {
    background-color: #151533;
}
.ver-4ths_scene_object-left_item_element-2p._item2 {
    background-color: #9aa4ff;
}
.ver-4ths_scene_object-left_item_element-1p {
    padding: 4px;
    border-radius: 100px;
}
.ver-4ths_scene_object-left_item_element-1p._item1 {
    background-color: #ffe606;
}
.ver-4ths_scene_object-left_item_element-1p._item2 {
    background-color: #52d5ff;
}
.ver-4ths_scene_object-left_item_element-2p_icon {
    padding: 4px;
    border-radius: 100px;
    background-color: #fff;
}
.ver-4ths_scene_object-left_item_element-2p_content {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    padding-top: 5px;
}
.ver-4ths_scene_object-left_item_element-2p_content._item1 {
    color: #fff;
}
.ver-4ths_scene_object-left_item_element-2p_content._item2 {
    color: #151533;
}
.ver-4ths_scene_object-right {
    position: absolute;
    top: 140px;
    right: -120px;
    z-index: 1;
}
.ver-4ths_scene_object-right img {
    max-width: 195px;
}
.ver-5ths {
    padding: 105px 0;
    background-color: #222239;
}
.ver-5ths_inner {
    padding: 137px 0;
    position: relative;
    z-index: 0;
}
.ver-5ths_inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -76px;
    right: -76px;
    bottom: 0;
    background-color: #f6f6ed;
    border-radius: 60px;
    z-index: -1;
}
.ver-5ths_text_title {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    color: #222239;
}
.ver-5ths_text_title ._accent{
    color: #3e04e0;
}
.ver-5ths_text_title ._devider{
    display: block;
}
.ver-5ths_text_desc {
    color: #222239;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin: 24px 0 80px;
}
.ver-5ths_text_desc p{}
.ver-5ths_scene {
    position: relative;
    text-align: right;
    z-index: 0;
}
.ver-5ths_scene::after {
    content: '';
    position: absolute;
    bottom: 49px;
    right: 0;
    width: 100vw;
    height: 270px;
    background-color: #3e04e0;
    border-radius: 40px;
    z-index: -1;
}
.ver-5ths_scene ._note {
    background-color: #151533;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
}
.ver-5ths_scene_object-1 {
    position: absolute;
    top: 56px;
    left: -98px;
    z-index: 2;
}
.ver-5ths_scene_object-1 img {
    max-width: 448px;
}
.ver-5ths_scene_object-1_note-left {
    position: absolute;
    left: -60px;
    top: -110px;
    opacity: 0;
}
.ver-5ths_scene_object-1_note-left ._note-path {
    position: absolute;
    left: 58px;
    top: 32px;
}
.ver-5ths_scene_object-1_note-right {
    position: absolute;
    right: 143px;
    top: -45px;
    opacity: 0;
}
.ver-5ths_scene_object-1_note-right ._note-path {
    position: absolute;
    right: 23px;
    top: 32px;
}
.ver-5ths_scene_object-2 {
    position: relative;
    display: inline-block;
    padding-top: 40px;
    padding-right: 65px;
}
.ver-5ths_scene_object-2 img {
    max-width: 212px;
}
.ver-5ths_scene_object-2_note-left {
    position: absolute;
    top: -63px;
    left: -90px;
    z-index: 1;
    opacity: 0;
}
.ver-5ths_scene_object-2_note-left ._note-path{
    position: absolute;
    left: 72px;
    top: 32px;
    z-index: 2;
}
.ver-5ths_scene_object-2_note-right {
    position: absolute;
    right: -53px;
    top: -6px;
    z-index: 1;
    opacity: 0;
}
.ver-5ths_scene_object-2_note-right ._note-path{
    position: absolute;
    top: 32px;
    z-index: 2;
}
.ver-5ths._in-view .ver-5ths_scene_object-1_note-left,
.ver-5ths._in-view .ver-5ths_scene_object-2_note-left {
    animation: show-section .5s ease-in .5s forwards;
}
.ver-5ths._in-view .ver-5ths_scene_object-1_note-right,
.ver-5ths._in-view .ver-5ths_scene_object-2_note-right {
    animation: show-section .5s ease-in 1s forwards;
}
.ver-6ths {
    padding: 60px 0;
    background-color: #222239;
    
}
.ver-6ths_inner {
    padding: 152px 0 178px;
    background-repeat: no-repeat;
    background-position: calc(50% + 500px) center;
    background-size: contain;
}
.ver-6ths_text_title {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    color: #fff;
}
.ver-6ths_text_title ._accent{
    color: #52d5ff;
}
.ver-6ths_text_title ._devider{
    display: block;
}
.ver-6ths_text_desc {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin: 16px 0 80px;
}
.ver-6ths_scene {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.ver-6ths_scene_object-left img {
    max-width: 260px;
}
.ver-6ths_scene_object-right {
    position: relative;
    margin-left: 90px;
    z-index: 0;
    border: 2px solid;
    border-color: transparent;
    border-radius: 1px;
}
.ver-6ths_scene_object-right::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 220%;
    height: 200%;
    z-index: -1;
    background: radial-gradient(ellipse closest-side, rgb(243 255 172 / .6) 0%, rgb(243 255 172 / .1) 80%, rgb(243 255 172 / 0) 100%);
    background: -webkit-radial-gradient(ellipse closest-side, rgb(243 255 172 / .6) 0%, rgb(243 255 172 / .1) 80%, rgb(243 255 172 / 0) 100%);
    opacity: 0;
}
.ver-6ths_scene_object-right img{
    max-width: 240px;
}
.ver-6ths_scene_object-right_path {
    position: absolute;
    top: 55px;
    right: 20%;
    opacity: 0;
    z-index: 4;
}
.ver-6ths_scene_object-right_path svg {
    width: 286px;
    height: 99px;
}
.ver-6ths._in-view .ver-6ths_scene_object-right_path {
    animation: show-section .5s ease-in .5s forwards;
}
.ver-6ths._in-view .ver-6ths_scene_object-right {
    animation: ver-6ths_shine .5s ease-in 1s forwards;
}
.ver-6ths._in-view .ver-6ths_scene_object-right::after {
    animation: show-section .5s ease-in 1.5s forwards;
}
.ver-7ths {
    background-color: #f6f6ed;
    padding: 278px 0;
}
.ver-7ths_text_title {
    font-size: 62px;
    font-weight: 700;
    line-height: 72px;
    color: #151533;
}
.ver-7ths_text_title ._accent{
    color: #3e04e0;
}
.ver-7ths_text_title ._devider{
    display: block;
}
.ver-7ths_text_desc {
    color: #151533;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin: 16px 0 80px;
}
.ver-7ths_scene {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.ver-7ths_scene::before {
    content: "";
    background-color: #3e04e0;
    position: absolute;
    width: 270px;
    height: 1000px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 40px 40px;
}
.ver-7ths_scene::after {
    content: "";
    position: absolute;
    inset: -10px -93px;
    border: 1px solid #151533;
    border-radius: 40px;
}
.ver-7ths_scene_object-left {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 3;
}
.ver-7ths_scene_object-left img{
    max-width: 222px;
}
.ver-7ths_scene_object-right {
    position: absolute;
    top: 40px;
    right: 155px;
    z-index: 3;
}
.ver-7ths_scene_object-right img{
    max-width: 155px;
}
.ver-7ths_scene_object-right_main {
    position: absolute;
}
.ver-7ths_scene_object-right_1st,
.ver-7ths_scene_object-right_2st,
.ver-7ths_scene_object-right_3st,
.ver-7ths_scene_object-right_4st {
    position: absolute;
    opacity: 0;
}
.ver-7ths._in-view .ver-7ths_scene_object-right_1st {
    animation: show-section .5s ease-in .3s forwards;
}
.ver-7ths._in-view .ver-7ths_scene_object-right_2st {
    animation: show-section .5s ease-in .8s forwards;
}
.ver-7ths._in-view .ver-7ths_scene_object-right_3st {
    animation: show-section .5s ease-in 1.3s forwards;
}
.ver-7ths._in-view .ver-7ths_scene_object-right_4st {
    animation: show-section .5s ease-in 1.8s forwards;
}
.ver-8ths {
    padding: 105px 0;
    background-color: #222239;
}
.ver-8ths_inner {
    padding: 215px 0;
    position: relative;
    z-index: 0;
}
.ver-8ths_inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -76px;
    right: -76px;
    bottom: 0;
    background-color: #f6f6ed;
    border-radius: 60px;
    z-index: -1;
}
.ver-8ths_text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.ver-8ths_text_title {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    color: #222239;
}
.ver-8ths_text_title ._accent{
    color: #3e04e0;
}
.ver-8ths_text_title ._devider{
    display: block;
}
.ver-8ths_text_desc {
    color: #222239;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin: 24px 0 80px;
}
.ver-8ths_scene {
    position: relative;
    z-index: 0;
}
.ver-8ths_scene::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100vw;
    height: 270px;
    background-color: #3e04e0;
    border-radius: 40px;
    z-index: -1;
}
.ver-8ths_scene_object-left {
    position: absolute;
    bottom: 10px;
    left: -85px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.ver-8ths_scene_object-left_item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 4px 6px rgb(0 0 0 / .05), 0 10px 15px rgb(0 0 0 / .1);
}
.ver-8ths_scene_object-left_item._item2 {
    margin-top: 30px;
    margin-left: 73px;
}
.ver-8ths_scene_object-left_item-counter {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    padding-top: 9px;
    width: 64px;
    text-align: right;
    margin-right: 12px;
    color: #151533;
}
.ver-8ths_scene_object-main {
    position: absolute;
    top: calc(50% + 10px);
    right: 160px;
    transform: translateY(-50%);
}
.ver-8ths_scene_object-main img{
    max-width: 600px;
}
.ver-8ths_scene_object-main_item-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ver-8ths_scene_object-main_chart-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ver-8ths_scene_object-main_chart {
    width: 600px;
    height: 678px;
}
.ver-8ths_scene_object-main_chart circle{
    transform-box: fill-box;
    transform-origin: center;
    transform: rotate(-102deg);
}
.ver-8ths._in-view .ver-8ths_scene_object-main_chart-item1 {
    animation: ver-8ths_chart-item1 .5s ease-in .7s forwards;
}
.ver-8ths._in-view .ver-8ths_scene_object-main_chart-item2 {
    animation: ver-8ths_chart-item2 .5s ease-in .5s forwards;
}
.ver-9ths {
    padding: 130px 0;
    background-color: #222239;
}
.ver-9ths_inner {
    padding: 70px 0;
    position: relative;
    z-index: 0;
}
.ver-9ths_inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -76px;
    right: -76px;
    bottom: 0;
    border: 1px solid #f6f6ed;
    border-radius: 60px;
    z-index: -1;
}
.ver-9ths_text {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 104px;
    margin-bottom: 119px;
    align-self: stretch;
}
.ver-9ths_text_title {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    color: #fff;
    margin-bottom: 16px;
}
.ver-9ths_text_title ._accent{
    color: #52d5ff;
}
.ver-9ths_text_title ._devider{
    display: block;
}
.ver-9ths_text_desc {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}
.ver-9ths_text_desc ._devider{
    display: block;
}
.ver-9ths_text_desc_element {
    display: none;
}
.ver-9ths_text_desc_element._active {
    display: initial;
}
.ver-9ths_text .ver-action {
    margin-top: auto;
}
.ver-9ths_scene_slider_wrapper {
    margin-left: 90px;
    max-width: 280px;
    position: relative;
}
.ver-9ths_scene_slider_wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 275%;
    height: 120%;
    z-index: -1;
    background: radial-gradient(ellipse closest-side, rgb(162 135 244 / .6) 0%, rgb(162 135 244 / .1) 80%, rgb(162 135 244 / 0) 100%);
    background: -webkit-radial-gradient(ellipse closest-side, rgb(162 135 244 / .6) 0%, rgb(162 135 244 / .1) 80%, rgb(162 135 244 / 0) 100%);
    opacity: 0;
}
.ver-9ths_scene_slide img{
    max-width: 280px;
}
.ver-9ths_scene_slide_navigation {
    position: absolute;
    top: 50%;
    left: -14px;
    right: -14px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;    
}
.ver-9ths_scene_slide_navigation_element {
    width: 44px;
    height: 44px;
    background-color: rgb(255 255 255 / .1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ver-9ths_scene_slide_navigation_element.swiper-button-disabled {
    cursor: default;
}
.ver-9ths_scene_slide_navigation_element svg path{
    fill: #fff;
}
.ver-9ths_scene_slide_navigation_element.swiper-button-disabled svg path {
    fill: rgb(255 255 255 / .4);
}
.ver-9ths_scene_slider_accent {
    position: absolute;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    right: -90px;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
}
.ver-9ths_scene_slider_accent_text {
    margin-top: 30px;
}
.ver-9ths._in-view .ver-9ths_scene_slider_wrapper::after {
    animation: show-section 1s ease-in .5s forwards;
}
.ver-9ths._in-view .ver-9ths_scene_slider_accent {
    animation: show-accent 3s ease-in 1.5s forwards;
}

/* FAQ Block */
.ver-10ths {
    background-color: #f6f6ed;
    padding: 104px 0;
}

.ver-footer {
    padding: 60px 0 40px;
    background-color: #1f0e4f;
    position: relative;
}
.ver-footer_logo {
    margin-bottom: 24px;
}
.ver-footer_social-links {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 12px 0;
}
.ver-footer_social-links_element {
    margin-right: 24px;
}
.ver-footer_navigation_link a,
.ver-footer_navigation_link span {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}
.ver-footer_navigation_submenu {
    display: flex;
    flex-flow: column nowrap;
    margin-top: 16px;
    align-items: flex-start;
    justify-content: flex-start;
}
.ver-footer_navigation_submenu_element:not(:last-child) {
    margin-bottom: 8px;
}
.ver-footer_navigation_submenu_element a {
    color: rgb(249 249 249 / .6);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.ver-footer_devider {
    margin: 80px 0 24px;
    height: 1px;
    background-color: rgb(255 255 255 / .4);
    position: relative;
}
.ver-footer_to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% + 105px);
    right: 1%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 200px;
    cursor: pointer;
    background-color: rgb(255 255 255 / .05);
}
.ver-footer_secondary {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.ver-footer_copyright {
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.ver-footer_copyright_icon {
    font-size: 20px;
    margin-right: 8px;
}
.ver-footer_tcp {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.ver-footer_tcp_link:not(:last-child) {
    margin-right: 16px;
}
.ver-footer_tcp_link a {
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
}
.ver_blog-hero {
    padding-top: calc(92px + 64px);
    padding-bottom: 97px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ver_blog-hero_title { 
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
}
.ver_blog-hero_subscription {
    padding: 32px 25px;
    background-color: #3e04e0;
    border-radius: 24px;
    position: relative;
    margin: 0 15px;
}
.ver_blog-hero_subscription-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 32px;
}
.ver_blog-hero_subscription-title p {
    margin: 0;
}
.ver_blog-hero_subscription-form {
    display: flex;
    flex-flow: column nowrap;
}
.ver_blog-hero_subscription-form_input {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 18px 24px;
    border-radius: 12px;
    color: #151533;
    margin-bottom: 24px;
    border: 0;
    outline: 0;
}
.ver_blog-hero_subscription-form_input::-webkit-input-placeholder {
    color:rgb(10 10 38 / .4);
  }
.ver_blog-hero_subscription-form_input::-moz-placeholder {
    color:rgb(10 10 38 / .4);
  }
.ver_blog-hero_subscription-form_submit {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 12px;
    padding: 16px 24px;
    color: #fff;
    background-color: var(--accent-orange);
    border: 0;
}
.ver_blog-hero_subscription-accent {
    position: absolute;
    top: 93px;
    left: -5px;
    opacity: 0;
    animation: blog-form-accent 30s ease-in 2s infinite;
}
.ver_blog-content {
    padding: 80px 0;
    background-color: #fff;
}
.article {
    color: #151533;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    height: initial;
}
.article a {
    color: var(--link);
}
.article a:hover {
    color: var(--link-hover);
}
.article-media {
    margin: 32px 0;
    padding: 16px 0;
}
.article-media img {
    max-width: 100%;
}
.article-media._center {
    text-align: center;
}
.article-media_caption {
    color: #636363;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-top: 24px;
}
.article-media._blog-animation {
    margin-top: 0;
    transform: rotate(0);
    padding: 0;
}
.article-media._blog-animation img {
    max-width: 64px;
}
.ver_blog-content._in-view .article-media._blog-animation img{
    animation: blog-article-media-rotate .5s ease-in .3s forwards;
}
h2.article-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}
h3.article-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    margin-top: 32px;
    margin-bottom: 24px;
}
.article > ol,
.article > ul {
    padding-left: 18px;
}
.article > ol > li,
.article > ul > li {
    margin-bottom: 12px;
}
.article > ol.utility_list > li,
.article > ul.utility_list > li {
    margin: 0;
}
.article-more {
    display: none;
}
.article-collapse {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    color: var(--accent-orange);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 6px;
}
.article-collapse:active,
.article-collapse:hover {
    color: var(--accent-active-orange);
    text-decoration: underline;
}
.article-collapse._collapsed ._icon {
    transform: rotate(-90deg);
}
.article-collapse ._icon {
    margin-left: 12px;
    transition: margin-left .3s ease-in;
}
.article-collapse ._icon path {
    fill: var(--accent-orange);
}
.article-collapse:active ._icon {
    margin-left: 24px;
}
.article-collapse:active ._icon path {
    fill: var(--accent-active-orange);
}
.article-quote {
    font-weight: 400;
    line-height: 22px;
    padding: 32px 40px 32px 71px;
    margin: 48px 0;
    border: 2px solid rgb(82 213 255);
    background-color: rgb(82 213 255 / .2);
    border-radius: 24px;
    position: relative;
}
.article-quote_author {
    font-weight: 500;
}
.article-quote_icon {
    position: absolute;
    top: -24px;
    left: 4px;
}
.ver_blog-posts {
    padding-bottom: 48px;
    background-color: #fff;
    overflow: hidden;
}
.ver_blog-posts_categories-wrap {
    overflow: hidden;
    position: relative;
}
.ver_blog-posts_categories {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    overscroll-behavior: contain;
}
.ver_blog-posts_categories::-webkit-scrollbar {
    display: none;
}
.ver_blog-posts_categories._expand {
    flex-flow: row wrap;
}
.ver_blog-posts_categories-elem {
    color: var(--main-black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    white-space: nowrap;
    padding: 0 4px 4px;
    border-bottom: 2px solid transparent;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform .5s ease-in-out;
}


.faq-item{
  max-width: 85%;
  margin: 0 auto;
}

.ver_blog-posts_answer-faq{
    color: var(--main-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    border-bottom: 2px solid ;
    border-color: #94948E;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform .5s ease-in-out;
    max-height: 0;
    overflow: hidden;
    position: relative;
}

.ver_blog-posts_answer-faq a:hover{color: #2737DF;}
.ver_blog-posts_answer-faq a:visited{color: #000C8F;}
.ver_blog-posts_answer-faq a{color: #1B4A8D;}
.ver_blog-posts_answer-faq span{font-weight: 500;}


/*Add dot ul li list small size:*/
.ver_blog-posts_answer-faq ul li:before{
    content: "·";
    font-size: 2.5em;
    vertical-align: top;
    line-height: 50%;
    position: absolute;
    left: 25px;
    /*padding-right: 0.2em;*/
    margin-left: -0.15em;
}
#ul_telepathy_block li:before{content: none;}
.ver_blog-posts_answer-faq ul
{list-style-type: none;}

.ver_blog-posts_answer-faq ol.list-letter{list-style-type: lower-alpha; margin-left: 0.8rem;}
.ver_blog-posts_answer-faq ol.list-roman{list-style-type: lower-roman;}

.faq-item.active .ver_blog-posts_answer-faq:before{display: block;}

.faq-item.active .ver_blog-posts_answer-faq{
  max-height: 80rem; /* must be large enough to fit content */
  padding: 0 5rem 1.5rem 0;
}

._mark_note{color:#f76800;}
span._mark_note_block{color:#595959;font-weight: 300;}

.ver_blog-posts_categories-elem._active {
    font-weight: 600;
    border-bottom-color: var(--accent-orange);
}
.ver_blog-posts_categories-moreone {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    padding-left: 24px;
    padding-bottom: 16px; 
}
.ver_blog-posts_categories-moreone span {
    color: var(--main-black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
}
.ver_blog-posts_grid {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    column-gap: 32px;
    row-gap: 32px;
}
.ver_blog-posts_grid-elem {
    padding: 16px;
    background-color: var(--main-white);
    border-radius: 32px;
    border: 1px solid rgb(0 0 0 / .05);
    box-shadow: 0 4px 7.2px rgb(0 0 0 / .05), 0 10px 20px rgb(0 0 0 / .05);
}

.ver_blog-posts_grid-elem_image {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 16px;
}
.ver_blog-posts_grid-elem_image img {
    max-width: 100%;
    transition: all .3s ease-in;
}
.ver_blog-posts_grid-elem_container:hover .ver_blog-posts_grid-elem_image img {
    transform: scale(1.2);
}
.ver_blog-posts_grid-elem_meta {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.ver_blog-posts_grid-elem_meta-read-time {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.ver_blog-posts_grid-elem_meta-read-time span {
    margin-left: 8px;
    color: #636363;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.ver_blog-posts_grid-elem_meta-date {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.ver_blog-posts_grid-elem_meta-date span {
    margin-left: 8px;
    color: #636363;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.ver_blog-posts_grid-elem_title {
    display: block;
    color: #1b4a8d;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ver_blog-posts_grid-elem_title-faq h3 {
    /*display: block;*/
    color: var(--main-black);
    font-size: 1.75rem;
    line-height: 36px;
    font-weight: 600;
    padding: 1.5rem 1.88rem 1.5rem 0;
    margin-bottom: 0px;
    position: relative;
    cursor: pointer;
}

/* BOTA Add the "+" by default */
.faq-item:not(.active) .ver_blog-posts_grid-elem_title-faq h3::after {
  content: "\002B";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f76800;
  font-size: 40px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

/* Show the minus when the parent is active */
.faq-item.active .ver_blog-posts_answer-faq::before{
  content: "\2212";
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #f76800;
  line-height: 1;
  font-weight: 500;
}

.faq-item.active .ver_blog-posts_grid-elem_title-faq h3{
        padding: 1.5rem 1.88rem 1rem 0;

}



.ver_blog-posts_grid-elem_title:hover,
.ver_blog-posts_grid-elem_title:active {
    color: #2737df;
}
.ver_blog-posts_grid-elem_authors {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
}
.ver_blog-posts_grid-elem_authors_author {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.ver_blog-posts_grid-elem_authors_author:hover .ver_blog-posts_grid-elem_authors_author-name {
    color: #2737df;
}
.ver_blog-posts_grid-elem_authors_author-icon {
    border-radius: 100px;
    border: 1px solid #fff;
    margin-right: 12px;
    max-width: 36px;
}
.ver_blog-posts_grid-elem_authors_author-icon img {
    max-width: 100%;
}
.ver_blog-posts_grid-elem_authors_author-name {
    color: #151533;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.ver_blog-posts_grid-elem_authors._more-than {
    justify-content: flex-start;
    gap: 0;
}
.ver_blog-posts_grid-elem_authors._more-than .ver_blog-posts_grid-elem_authors_author:not(:first-child) {
    margin-left: -7px;
}
.ver_blog-posts_grid-elem_authors._more-than .ver_blog-posts_grid-elem_authors_author-icon {
    margin: 0;
}
.ver_blog-posts_grid-elem_authors._more-than .ver_blog-posts_grid-elem_authors_author-name {
    position: absolute;
    top: -40px;
    left: 0;
    white-space: nowrap;
    border-radius: 8px;
    padding: 8px;
    color: #1b4a8d;
    background-color: #fff;
    border: .5px solid rgb(21 21 51 / .1);
    box-shadow: 2px 10px 15px rgb(0 0 0 / .08);
    display: none;
}
.ver_blog-posts_grid-elem_authors._more-than .ver_blog-posts_grid-elem_authors_author:hover .ver_blog-posts_grid-elem_authors_author-name,
.ver_blog-posts_grid-elem_authors._more-than .ver_blog-posts_grid-elem_authors_author:active .ver_blog-posts_grid-elem_authors_author-name {
    display: initial;
}
.ver_blog-posts_more-wrap {
    text-align: center;
    padding-top: 32px;
}
.ver_blog-posts_more {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    cursor: pointer;
    padding: 12px 24px;
}
.ver_blog-posts_more:hover {
    text-decoration: underline;
    color: var(--accent-active-orange);
}
.cookies-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}
.cookies-popup_container {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    border-radius: 24px 24px 0 0;
    background-color: #f6f6ed;
    box-shadow: 0px 4px 7.2px 0px rgb(0 0 0 / .05), 0px 10px 20px 0px rgb(0 0 0 / .05);
}
.cookies-popup_container_content_description {
    color: var(--main-black);
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.cookies-popup_container_content_description a {
    color: var(--main-black);
    text-decoration: underline;
}
.cookies-popup_container_content_description_text-bold {
    font-weight: 600;
}
.cookies-popup_container_actions {
    align-self: stretch;
    display: flex;
    flex-flow: row nowrap;
    gap: 12px;
    justify-content: space-between;
}
.cookies-popup_container_actions_action {
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px 24px;
    border: 2px solid;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    flex: 1 1 auto;
}
.cookies-popup_container_actions_allow {
    color: var(--main-white);
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}
.cookies-popup_container_actions_deny {
    color: #71717a;
    border-color: #71717a;
}
.ver-footer_intro {
    display: flex;
    flex-flow: column nowrap;
    gap: 12px;
    margin-bottom: 24px;
}
.ver-footer_download {
    display: flex;
    flex-flow: row nowrap;
    gap: 18px;
    margin-top: 12px;
}
.ver-footer_download-element {
    flex: 0 0 130px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 5px 8px;
}
.ver-footer_download-element_content {
    color: #000;
}
.ver-footer_download-element_content-p1_apple {
    font-size: 9px;
    line-height: 9px;
    font-weight: 500;
}
.ver-footer_download-element_content-p2_apple {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
}
.ver-footer_download-element_content-p1_google {
    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
}
.ver-footer_download-element_content-p2 {
    line-height: 1;
}

@media (min-width: 1400px) {
    .container-xxl{ max-width: 1220px;}
}


@media (min-width:1040px){
    nav ul li>a svg {
        display: none;
    }
    .ver_blog-hero {
        padding-bottom: 154px;
    }
    .ver_blog-hero_title {
        font-size: 74px;
        font-weight: 600;
        line-height: 88px;
    }
    .ver_blog-hero_subscription {
        padding: 64px 132px;
        border-radius: 40px;
    }
    .ver_blog-hero_subscription-title {
        font-size: 28px;
        font-weight: 400;
        line-height: 36px;
        margin-bottom: 48px;
    }
    .ver_blog-hero_subscription-form {
        flex-flow: row nowrap;
        align-items: stretch;
        justify-content: center;
    }
    .ver_blog-hero_subscription-form_input {
        padding: 20px 24px;
        border-radius: 16px 0 0 16px;
        flex: 0 0 350px;
        margin: 0;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
    }
    .ver_blog-hero_subscription-form_submit {
        border-radius: 0 16px 16px 0;
        padding: 20px 24px;
        font-size: 18px;
        line-height: 24px;
    }
    .ver_blog-hero_subscription-form_submit:hover {
        background-color: var(--accent-hover-orange);
    }
    .ver_blog-hero_subscription-form_submit:active {
        background-color: var(--accent-active-orange);
    }
    .ver_blog-hero_subscription-accent {
        top: 78px;
        left: 72px;
        transform: rotate(-20deg);
    }
    .ver_blog-hero_subscription-accent svg {
        width: 155px;
        height: 185px;
    }
    .ver_blog-content {
        padding: 0;
    }
    .article {
        padding-top: 160px;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }
    .article-media {
        margin-bottom: 48px;
    }
    .article-media img {
        max-width: 512px;
    }
    .article-media._blog-animation img {
        max-width: 80px;
    }
    h2.article-title {
        font-size: 64px;
        font-weight: 700;
        line-height: 72px;
        margin-bottom: 48px;
    }
    h3.article-title {
        font-size: 32px;
        font-weight: 700;
        line-height: 40px;
        margin-bottom: 32px;
    }
    .article-quote {
        padding-left: 104px;
        line-height: 28px;
    }
    .article-quote_icon {
        left: 13px;
    }
    .article-quote_icon svg {
        width: 86px;
        height: 80px;
    }
    .article-collapse {
        margin-top: 32px;
        margin-bottom: 84px;
    }
    .article-collapse:hover ._icon {
        margin-left: 24px;
    }
    .article-collapse:hover ._icon path {
        fill: var(--accent-active-orange);
    }
    .ver_blog-posts_categories-wrap {
        overflow: auto;
    }
    .ver_blog-posts_categories {
        flex-flow: row nowrap;
        margin-bottom: 32px;
        gap: 24px;
    }
    .ver_blog-posts_categories-elem:not(._toggle-categories):hover {
        border-bottom-color: var(--accent-hover-orange);
    }
    .ver_blog-posts_grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        row-gap: 40px;
    }
    
    .ver_blog-posts_grid-elem {
        padding: 24px;
    }
    .ver_blog-posts_grid-elem_title {
        font-size: 28px;
        font-weight: 600;
        line-height: 36px;
    }

   /* .ver_blog-posts_grid-elem_title-faq {
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
    }*/

    .cookies-popup_container {
        align-items: flex-start;
        flex-flow: row nowrap;
        gap: 32px;
        padding: 24px;
    }
    .cookies-popup_container_content {
        flex: 0 1 57%;
    }
    .cookies-popup_container_actions {
        flex-flow: row nowrap;
        gap: 24px;
    }
    .cookies-popup_container_actions_action {
        flex-basis: 180px;
        flex-shrink: 0;
        font-size: 16px;
        line-height: 24px;
        padding: 16px 24px;
    }
    .ver-footer_download {
        gap: 24px;
    }
    .ver-footer_intro {
        gap: 24px;
    }
}

@media (max-width:1039px){
    .faq-item.active .ver_blog-posts_answer-faq{
        max-height: 180rem;
        padding: 0 2rem 0 0;
    }
    .ver-footer_to-top {
        top: 50px;
        width: 52px;
        height: 52px;
    }
    .ver-footer_to-top svg {
        width: 24px;
        height: 24px;
    }
    .ver-footer_tcp_link a {
        font-size: 12px;
    }
    .ver-footer_tcp_link:not(:last-child) {
        margin-right: 8px;
    }
    .ver-footer_copyright {
        font-size: 12px;
    }
    .ver-footer_copyright_icon {
        font-size: 18px;
        margin-right: 4px;
    }
    .ver-footer_navigation_link a,
    .ver-footer_navigation_link span {
        font-size: 16px;
        line-height: 24px;
    }
    .ver-footer_devider {
        margin: 24px 0;
    }
    .ver-footer_social-links {
        margin-bottom: 40px;
    }
    .ver-footer_logo {
        margin-bottom: 12px;
    }
    .ver-footer {
        padding: 24px 0;
    }
    .ver-9ths {
        padding: 70px 0;
    }
    .ver-9ths_inner {
        padding: 0;
    }
    .ver-9ths_inner::after {
        display: none;
    }
    .ver-9ths_text,
    .ver-8ths_text,
    .ver-7ths_text,
    .ver-6ths_text,
    .ver-5ths_text,
    .ver-4ths_text {
        align-items: center;
        margin: 0;
    }
    .ver-9ths_text_title,
    .ver-8ths_text_title,
    .ver-7ths_text_title,
    .ver-6ths_text_title,
    .ver-5ths_text_title,
    .ver-4ths_text_title {
        font-size: 32px;
        line-height: 40px;
    }
    .ver-9ths_text_desc,
    .ver-8ths_text_desc,
    .ver-7ths_text_desc,
    .ver-6ths_text_desc,
    .ver-5ths_text_desc,
    .ver-4ths_text_desc {
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 32px;
    }
    .ver-9ths_text_title ._devider,
    .ver-9ths_text_desc ._devider,
    .ver-8ths_text_title ._devider,
    .ver-8ths_text_desc ._devider,
    .ver-7ths_text_title ._devider,
    .ver-7ths_text_desc ._devider,
    .ver-6ths_text_title ._devider,
    .ver-6ths_text_desc ._devider,
    .ver-4ths_text_title ._devider,
    .ver-4ths_text_desc ._devider {
        display: initial;
    }
    .ver-9ths_text_desc {
        min-height: initial;
        text-align: center;
    }
    .ver-9ths_scene {
        display: flex;
        justify-content: center;
        margin-top: 56px;
        position: relative;
    }
    .ver-9ths_scene::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 343px;
        height: 374px;
        border: 1px solid #f6f6ed;
        border-radius: 60px;
        z-index: -1;
    }
    .ver-9ths_scene_slider_wrapper {
        margin: 0;
    }
    .ver-9ths_scene_slider_accent {
        top: calc(50% - -80px);
        right: -20px;
    }
    .ver-9ths_scene_slider_accent_arrow  {
        transform: rotate(226deg) scaleX(-1);
        margin-right: 45px;
    }
    .ver-9ths_scene_slider_accent_text {
        margin-top: 0;
        order: -1;
    }
    .ver-8ths {
        padding: 64px 15px 0;
    }
    .ver-8ths_inner {
        padding: 48px 0 74px;
    }
    .ver-8ths_inner::after {
        border-radius: 40px;
        left: 16px;
        right: 16px;
    }
    .ver-8ths_scene {
        margin-top: 56px;
    }
    .ver-8ths_scene::after {
        display: none;
    }
    .ver-8ths_text_title {
        text-align: center;
    }
    .ver-8ths_text_desc {
        text-align: center;
        margin: 16px 0 32px;
    }
    .ver-8ths_text_desc p {
        margin: 0;
    }
    .ver-8ths_scene_object-main {
        position: initial;
        transform: translateY(0);
        min-height: 441px;
    }
    .ver-8ths_scene_object-left {
        display: none;
    }
    .ver-8ths_scene_object-main img {
        max-width: 390px;
    }
    .ver-8ths_scene_object-main_chart {
        width: 390px;
        height: 441px;
    }
    .ver-8ths_scene_object-main_item-main,
    .ver-8ths_scene_object-main_chart-wrap {
        left: calc(50% + 9px);
    }
    .ver-7ths {
        padding: 48px 0 80px;
    }
    .ver-7ths_text {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    .ver-7ths_text_title {
        text-align: center;
    }
    .ver-7ths_text_desc {
        text-align: center;
    }
    .ver-7ths_text_desc p:last-child {
        margin: 0;
    }
    .ver-7ths_scene {
        margin-top: 56px;
        height: 453px;
    }
    .ver-7ths_scene::before {
        display: none;
    }
    .ver-7ths_scene::after {
        inset: 0 70px;
        border-color: #3e04e0;
    }
    .ver-7ths_scene_object-left {
        top: 30px;
        left: 20px;
    }
    .ver-7ths_scene_object-left img {
        max-width: 160px;
    }
    .ver-7ths_scene_object-right {
        top: 130px;
        right: 160px;
    }
    .ver-7ths_scene_object-right img {
        max-width: 130px;
    }
    .ver-6ths {
        padding: 70px 0;
    }
    .ver-6ths_inner {
        background-size: 0;
        padding: 0;
    }
    .ver-6ths_text {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    .ver-6ths_text_title {
        text-align: center;
    }
    .ver-6ths_text_desc {
        text-align: center;
    }
    .ver-6ths_text_desc p:last-child {
        margin: 0;
    }
    .ver-6ths_scene {
        margin-top: 64px;
    }
    .ver-6ths_scene::before {
        content: '';
        position: absolute;
        top: calc(50% + -8px);
        left: -145px;
        transform: translateY(-50%);
        background-image: url(../image/section-6_bg_m2.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 150px;
        height: 150px;

    }
    .ver-6ths_scene::after {
        content: '';
        position: absolute;
        top: calc(50% + -8px);
        right: -145px;
        transform: translateY(-50%);
        background-image: url(../image/section-6_bg_m1.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 159px;
        height: 150px;
    }
    .ver-6ths_scene_object-right {
        margin-left: 16px;
        margin-top: -16px;
    }
    .ver-6ths_scene_object-right img {
        max-width: 153px;
    }
    .ver-6ths_scene_object-right_path {
        top: 31px;
        right: 102px;
    }
    .ver-6ths_scene_object-right_path svg {
        width: 144px;
        height: 60px;
    }
    .ver-6ths_scene_object-left img {
        max-width: 164px;
    }
    .ver-5ths {
        padding: 64px 0 0; 
    }
    .ver-5ths_inner {
        padding: 48px 0 106px;
    }
    .ver-5ths_inner::after {
        left: 16px;
        right: 16px;
        border-radius: 48px;
    }
    .ver-5ths_text {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    .ver-5ths_text_title {
        text-align: center;
    }
    .ver-5ths_text_desc {
        padding: 0 32px;
        text-align: center;
    }
    .ver-5ths_text_desc p:last-child {
        margin: 0;
    }
    .ver-5ths_scene::after {
        height: 186px;
        right: initial;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0;
    }
    .ver-5ths_scene_object-1 {
        top: 206px;
        left: calc(50% - 30px);
        transform: translateX(-50%);
    }
    .ver-5ths_scene_object-2 {
        padding-top: 150px;
        padding-right: 35px;
    }
    .ver-5ths_scene_object-1 img {
        max-width: 280px;
    }
    .ver-5ths_scene_object-2 img {
        max-width: 164px;
    }
    .ver-5ths_scene_object-2_note-left {
        display: none;
    }
    .ver-5ths_scene_object-2_note-right {
        right: 28px;
        top: 67px;
    }
    .ver-5ths_scene_object-2_note-right ._note-path {
        right: 35px;
    }
    .ver-5ths_scene_object-2_note-right ._note-path path {
        display: none;
    }
    .ver-5ths_scene_object-2_note-left {
        display: none;
    }
    .ver-5ths_scene_object-1_note-right {
        display: none;
    }
    .ver-5ths_scene_object-1_note-left {
        left: 10px;
    }
    .ver-5ths_scene_object-1_note-left ._note-path ._horizontal {
        display: none;
    }
    .ver-5ths_scene_object-1_note-left ._note-path ._vertical {
        stroke: #151533;
    }
    .ver-4ths {
        padding: 48px 0;
    }
    .ver-4ths_text_title {
        margin-top: 0;
        text-align: center;
    }
    .ver-4ths_text_desc {
        text-align: center;
        min-height: 40px;
    }
    .ver-4ths_text_desc p:last-child {
        margin: 0;
    }
    .ver-4ths_text .ver-action {
        margin-bottom: 0;
    }
    .ver-4ths_scene {
        padding-left: 12px;
        margin-top: 88px;
        place-content: center center;
    }
    .ver-4ths_scene::after {
        max-height: 186px;
        top: 55%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0;
    }
    .ver-4ths_scene_object-left {
        display: none;
    }
    .ver-4ths_scene_object-right {
        display: none;
    }
    .ver-4ths_scene_accent {
        top: -86px;
        left: calc(50% - 60px);
        width: 71px;
        height: 85.5px;
    }
    .ver-4ths_scene_accent-arrow {
        transform: rotate(-45deg) translate(-20px, 8px);

    }
    .ver-3ths {
        padding: 70px 0;
        background-position: center, center 160px;
        background-size: 0, 450px;
    }
    .ver-3ths_title {
        font-size: 32px;
        line-height: 40px;
        font-weight: 700;
        margin-bottom: 16px;
    }
    .ver-3ths_object-left {
        display: none;
    }
    .ver-3ths_object-right {
        display: none;
    }
    .ver-3ths_object-main {
        flex: 1 0 auto;
    }
    .ver-3ths_object-main ._object-image img {
        max-width: 280px;
    }
    .ver-3ths_object-main ._object-tn {
        font-size: 20px;
        line-height: 1;
        letter-spacing: 1px;
        border-radius: 12px;
    }
    .ver-2ths {
        padding: 70px 0;
    }
    .ver-2ths_title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 40px;
    }
    .ver-2ths_cards {
        padding-bottom: 0;
        grid-template-columns: 1fr 1fr;
    }
    .ver-2ths_cards::after {
        display: none;
    }
    .ver-2ths_card {
        min-height: 232px;
    }
    .ver-2ths_card:hover {
        scale: 1;
    }
    .ver-2ths_card._1st ._card-row._elem2 {
        font-size: 14px;
        line-height: 18px;
    }
    .ver-2ths_card._1st ._card-row._elem3 {
        font-size: 40px;
        line-height: 48px;
    }
    .ver-2ths_card._2st ._card-row._elem1 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    .ver-2ths_card._2st ._card-row._elem2 {
        font-size: 14px;
        line-height: 18px;
    }
    .ver-2ths_card._3st ._card-row._elem1 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    .ver-2ths_card._3st ._card-row._elem2 {
        font-size: 14px;
        line-height: 18px;
    }
    .ver-2ths_card._4st ._card-row._elem1 {
        font-size: 22px;
        line-height: 28px;
    }
    .ver-2ths_card._4st ._card-row._elem2 svg {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    .ver-2ths_card._4st ._card-row._elem2 {
        padding: 4px;
    }
    .ver-2ths_card._4st ._card-row._elem2 span {
        font-size: 10px;
        line-height: 14px;
    }
    .ver-1ths {
        min-height: 840px;
        padding-top: 140px;
    }
    .ver-1ths_title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: 2px;
        margin-bottom: 16px;
        padding: 0 32px;
    }
    .ver-1ths_desc {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 32px;
    }
    .ver-1ths_content_label {
        top: -30px;
        right: 55px;
    }
    .ver-1ths_object {
        min-width: 290px;
        background-size: contain;
        background-position: bottom center;
    }
    ._mark-blur {
        font-size: 12px;
        line-height: 16px;
        border: 1px solid rgb(249 249 249);
    }
    .ver-1ths_object_mark._left {
        left: -8%;
        top: 75%;
    }
    .ver-1ths_object_mark._left svg {
        width: 184px;
        height: 34px;
    }
    ._mark-blur._left {
        width: 113px;
    }
    .ver-1ths_object_mark._right {
        right: -8%;
        top: calc(50% + 140px);
    }
    .ver-1ths_object_mark._right svg {
        width: 145px;
        height: 34px;
    }
    ._mark-blur._right {
        width: 60px;
    }
    .mobile_nav-button {
        display: initial;
        text-align: right;
        cursor: pointer;
    }
    .mobile_nav-close {
        display: none;
    }
    .mobile_nav-button._active .mobile_nav-open {
        display: none;
    }
    .mobile_nav-button._active .mobile_nav-close {
        display: initial;
    }
    header._mobile {
        height: 100vh;
        overflow-y: scroll;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        background-color: var(--nav-hover-bg);
        padding-bottom: 80px;
        z-index: 5;
    }
    header._mobile #main_nav {
        display: initial;
    }
    #main_nav {
        display: none;
    }
    #main_nav ul {
        justify-content: flex-start;
        flex-flow: column nowrap;
        padding: 0;
    }
    #main_nav ul li {
        margin: 10px 0;
        border: 0;
        font-size: 22px;
        line-height: 28px;
        font-weight: 400;
    }
    #main_nav ul li:not(:first-child) {
        margin-top: 0;
        padding-top: 0;
    }
    #main_nav ul li>span {
        color: rgb(255 255 255 / .7);
        font-weight: 400;
    }
    #main_nav ul li>a {
        font-weight: 600;
    }
    nav ul li:hover>a::after,
    nav ul li:active>a::after {
        opacity: 1;
    }
    .child-nav_wrap {
        display: block;
        position: initial;
        padding: 16px 0 0;
    }
    .child-nav {
        grid-template-columns: 1fr;
        column-gap: 12px;
    }
    .child-nav_title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    .child-nav_desc {
        font-size: 14px;
        line-height: 16px;
    }
    .child-nav_text {
        flex: 0 1 auto;
    }
    header {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    ._mobile-menu {
        display: initial;
    }
}


@media (max-width: 768px){
    .faq-item{width: 90%}

    /* FAQ Block */
    .ver-10ths {
    background-color: #f6f6ed;
    padding: 68px 0;
    }
    .ver_blog-posts_grid-elem_title-faq h3{
        font-size: 1.5rem;
        line-height: 32px;
    }
    .ver_blog-posts_answer-faq{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .section-text_title.section-text_title_single {
    margin: 0 0 16px 0;
}
    
}



@media (max-width: 374px) {

    .ver-1ths_object {
        min-width: 270px;
    }
    ._mark-blur {
        border: 1px solid rgb(249 249 249);
    }
    .ver-2ths_card ._card-front {
        padding: 12px;
    }
    .ver-2ths_card ._card-back img {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .ver-2ths_card._1st ._card-row._elem3 {
        font-size: 34px;
    }
    .ver-2ths_card._2st ._card-row._elem1 {
        font-size: 18px;
        line-height: 24px;
    }
    .ver-2ths_card._3st ._card-row._elem1 {
        font-size: 18px;
        line-height: 24px;
    }
    .ver-2ths_card._4st ._card-row._elem1 {
        font-size: 18px;
        line-height: 24px;
    }
    .ver-2ths_card._4st ._card-row._elem2 svg {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    .ver-2ths_card._4st ._card-row._elem2 span {
        font-size: 8px;
    }
    .ver-6ths_scene::after {
        display: none;
    }
    .ver-6ths_scene_object-right_path {
        top: 31px;
        right: calc(50% - 112px);
    }
    .ver-8ths_scene_object-main img {
        max-width: 330px;
    }
    .ver-8ths_scene_object-main_chart {
        width: 330px;
        height: 373px;
    }
    .ver-8ths_text_title {
        padding: 0 32px;
    }
    .ver-8ths_text_desc {
        padding: 0 32px;
    }
    .ver-9ths_text_desc {
        align-self: stretch;
        min-height: 40px;
        padding: 0 16px;
    }
    .ver-9ths_scene::after {
        width: 310px;
        border-radius: 32px;
    }
}
section {
    overflow: hidden;
}
@keyframes show-section {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes hide-section {
    to {opacity: 0;}
}
@keyframes show-visible {
    to {
        opacity: 0;
        visibility: visible;
    }
}
@keyframes show-accent {
    0% {opacity: 0;}
    50% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes blog-form-accent {
    0% {opacity: 0;}
    10% {opacity: 1;}
    15% {opacity: 1;}
    25% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes ver-1ths_blur {
    from {
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    to {
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
    }
}
@keyframes ver-6ths_shine {
    0% {border-color: transparent;}
    100% {border-color: #ffe606;}
}
@keyframes ver-8ths_chart-item1 {
    0% {stroke-dashoffset: 226.188;}
    100% {stroke-dashoffset: 99.52;}
}
@keyframes ver-8ths_chart-item2 {
    0% {stroke-dashoffset: 163.358;}
    100% {stroke-dashoffset: 76.79;}
}
@keyframes blog-article-media-rotate {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(90deg);}
}
._grid-over {
    background-color: rgb(200 0 0 / .3);
}
@media (hover: none) and (pointer: coarse) {
    .article-collapse:hover {
        color: var(--accent-orange);
        text-decoration: none;
    }
}