/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.noUi-target {
    position: relative;
}
.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
    overflow: hidden;
    z-index: 0;
}
.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
    top: -100%;
    width: 0;
}
.noUi-horizontal .noUi-origin {
    height: 0;
}
.noUi-handle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
}
.noUi-touch-area {
    height: 100%;
    width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
}
.noUi-state-drag * {
    cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
    height: 18px;
}
.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    right: -17px;
    top: -6px;
}
.noUi-vertical {
    width: 18px;
}
.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
    background: #FAFAFA;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
    border-radius: 3px;
}
.noUi-connect {
    background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
    cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
    cursor: ns-resize;
}
.noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #E8E7E6;
    left: 14px;
    top: 6px;
}
.noUi-handle:after {
    left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
}
.noUi-vertical .noUi-handle:after {
    top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
    background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
    cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.noUi-pips {
    position: absolute;
    color: #999;
}
/* Values;
 *
 */
.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
}
.noUi-value-sub {
    color: #ccc;
    font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
    position: absolute;
    background: #CCC;
}
.noUi-marker-sub {
    background: #AAA;
}
.noUi-marker-large {
    background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
}
.noUi-value-horizontal {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}
.noUi-value-vertical {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}
.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
    white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(0, -18px);
    transform: translate(0, -18px);
    top: auto;
    right: 28px;
}
ul, ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
}
:root {
    --black-text: #000;
    --green-text: #2BF2AD;
    --red-text: #E6352D;
    --bg-black: #0B0D1E;
    --bg-light-black: #12152B;
    --bg-grey: #F2F4F7;
    --link-color: #1681FF;
    --mo-border-radius-xxl: 1.5rem;
}
body {
    font-family: Poppins, Arial, sans-serif;
    font-weight: 400;
    color: var(--black-text);
    background-color: #fff;
}
.table > thead {
    vertical-align: middle;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.box-bg {
    background-color: var(--black);
    border-radius: 50px;
}
.page-indent {
    padding-top: 128px;
}
.img-radius {
    border-radius: 8px;
}
a {
    color: var(--black-text);
    transition: opacity 0.25s ease;
}
video {
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.16));
}
.fix-scroll {
    overflow: hidden;
}
.align-center {
    text-align: center;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
.fill-light-grey {
    fill: var(--light-grey) !important;
}
.fill-white {
    fill: var(--white-text) !important;
}
.fill-green {
    fill: var(--green-text) !important;
}
.fill-grey3 {
    fill: var(--grey3-text) !important;
}
.bg-grey {
    background-color: var(--bg-grey);
}
@media (max-width: 991px) {
    .page-indent {
        padding-top: 64px;
    }
}
@media (max-width: 767px) {
    .box-bg {
        border-radius: 25px;
    }
}
.bg-gradient-succes {
    background: linear-gradient(35deg, rgba(37, 65, 164, 0) 31.24%, rgba(37, 65, 164, 0.13) 51.41%, rgba(43, 242, 173, 0.7) 95.77%);
    border-radius: 20px;
}
.text-gradient-primary {
    background: linear-gradient(45deg, rgb(41, 44, 98) 21%, rgb(129, 164, 156) 65%, rgb(191, 205, 202) 77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.link {
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}
.link:before {
    position: absolute;
    top: 1.25em;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(0, 0, 0);
    content: "";
    transition: width 0.3s ease;
}
.link.link--inverse:before {
    background-color: rgb(255, 255, 255);
}
.link:hover:before {
    width: 0;
}
.link:hover {
    opacity: 0.7;
}
.btn-circle {
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-circle:hover:before {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.btn-circle span {
    position: relative;
    z-index: 2;
}
.btn-circle:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: #edff19;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.btn-plus {
    background-color: #424E6E;
    padding: 18px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.35s ease;
}
.btn-plus svg {
    transition: all 0.35s ease;
}
.btn-plus:hover {
    background-color: #546592;
}
.btn-plus:hover svg {
    transform: rotate(20deg);
}
.btn-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    display: inline-block;
}
.btn-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to left, hsl(139.29, 15.22%, 63.92%) 0%, hsl(160.71, 12.72%, 25.15%) 8%, hsl(208.24, 18.49%, 22.59%) 92%, hsl(236.84, 48.24%, 11.69%) 100%);
}
.btn-pushable--light .btn-edge {
    background: linear-gradient(to left, hsl(0, 0%, 77.17%) 0%, hsl(0, 0%, 29.13%) 8%, hsl(0, 0%, 34.65%) 92%, hsl(0, 0%, 15.75%) 100%);
}
.btn-front {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px 45px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    background: #292C62;
    background: linear-gradient(45deg, rgb(41, 44, 98) 21%, rgb(129, 164, 156) 65%, rgb(191, 205, 202) 77%);
    will-change: transform;
    transform: translateY(-3px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-pushable--light .btn-front {
    background: linear-gradient(44deg, rgb(225, 225, 225) 21%, rgb(187, 191, 197) 70%, rgb(239, 239, 239) 86%);
    color: #000;
}
.btn-pushable:hover {
    filter: brightness(110%);
}
.btn-pushable:hover .btn-front {
    transform: translateY(-5px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
.btn-pushable:active .btn-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}
.btn-pushable:hover .btn-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
.btn-pushable:active .btn-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}
.btn-pushable:focus:not(:focus-visible) {
    outline: none;
}
button.is-loading .btn-pushable,
button.is-loading.btn-pushable {
    opacity: 0.6;
    pointer-events: none;
}
.bg-primary-gradient {
    background: #292C62;
    background: linear-gradient(44deg, rgb(41, 44, 98) 21%, rgb(129, 164, 138) 70%, rgb(191, 205, 202) 86%);
}
.bg-glass {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(7px);
}
.container-small {
    max-width: 940px;
    margin: 0 auto;
}
.container-xs {
    max-width: 740px;
    margin: 0 auto;
}
.container-large {
    max-width: 1580px;
}
.sub-h4 {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}
.sub-h2 {
    font-size: 25px;
}
.btn-outline-svg svg {
    fill: #111;
}
.btn-outline-svg:hover {
    opacity: 1;
}
.btn-outline-svg:hover svg {
    fill: white !important;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
.ul {
    list-style: none;
    font-size: 15px;
}
.ul li {
    position: relative;
    margin-bottom: 0.47em;
    padding-left: 1.6em;
}
.ul.ul--line li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    transform: translateY(-50%);
    height: 2px;
    width: 0.8em;
    background: #111;
}
.ul.ul--check li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    transform: translateY(-50%);
    height: 0.8em;
    width: 0.8em;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8.42152L3.59384 11.6414C3.68136 11.7512 3.79351 11.8405 3.92187 11.9025C4.05022 11.9644 4.19145 11.9975 4.33493 11.9992C4.47611 12.0008 4.61588 11.9719 4.74408 11.9149C4.87227 11.8577 4.98567 11.7737 5.07603 11.6689L13.3516 2' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
}
.ul.ul--check-white li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    transform: translateY(-50%);
    height: 0.8em;
    width: 0.8em;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8.42152L3.59384 11.6414C3.68136 11.7512 3.79351 11.8405 3.92187 11.9025C4.05022 11.9644 4.19145 11.9975 4.33493 11.9992C4.47611 12.0008 4.61588 11.9719 4.74408 11.9149C4.87227 11.8577 4.98567 11.7737 5.07603 11.6689L13.3516 2' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
}
/*===== FONTS =====*/
@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins/Poppins-Light.woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins/Poppins-Regular.woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins/Poppins-Medium.woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins/Poppins-SemiBold.woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins/Poppins-Bold.woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/*===== FONTS =====*/
.ani-pulse-ellipse {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #3b82f6;
    border-radius: 50%;
}
.ani-pulse-ellipse::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    animation: pulse-expand 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-expand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
.infinite-scroll {
    overflow: hidden;
}
.infinite-scroll__track {
    display: flex;
    gap: 40px;
    width: max-content;
}
.infinite-scroll__item {
    white-space: nowrap;
    flex-shrink: 0;
}
.infinite-scroll__track {
    animation: scroll-left 30s linear infinite;
}
.infinite-scroll--reverse .infinite-scroll__track {
    animation: scroll-right 30s linear infinite;
}
/* Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
[data-animate] {
    opacity: 0;
}
[data-animate=fade-up] {
    transform: translateY(40px);
}
html, body {
    height: 100%;
}
.h-decor {
    position: absolute;
    top: -90px;
}
.glow_container .bg-glow:nth-child(1) {
    top: 0%;
}
.glow_container .bg-glow:nth-child(2) {
    top: 25%;
}
.glow_container .bg-glow:nth-child(3) {
    top: 50%;
}
.glow_container .bg-glow:nth-child(4) {
    top: 65%;
}
.glow_container .bg-glow-primary {
    right: -450px;
}
.glow_container .bg-glow-secondary {
    left: -450px;
}
@media (max-width: 767px) {
    .glow_container .bg-glow-primary {
        right: -550px;
    }
    .glow_container .bg-glow-secondary {
        left: -550px;
    }
}
#scrollbar {
    max-width: 100%;
    height: 100%;
}
footer {
    margin-top: auto;
    position: relative;
}
.bg-glow-primary {
    background: #363a7e;
    background: linear-gradient(196deg, rgb(56, 60, 131) 0%, rgb(17, 17, 17) 30%);
}
.bg-glow-secondary {
    background: #708d82;
    background: linear-gradient(196deg, rgb(112, 141, 130) 0%, rgb(17, 17, 17) 30%);
}
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}
.particle {
    position: absolute;
    border-radius: 50%;
}
@keyframes particle-animation-1 {
    100% {
        transform: translate3d(653px, 670px, 28px);
    }
}
.particle:nth-child(1) {
    animation: particle-animation-1 50s infinite alternate;
    height: 5px;
    width: 5px;
    transform: translate3d(55px, 213px, 25px);
    background: var(--green-text);
}
@keyframes particle-animation-2 {
    100% {
        transform: translate3d(526px, 548px, 9px);
    }
}
.particle:nth-child(2) {
    animation: particle-animation-2 40s infinite alternate;
    height: 4px;
    width: 4px;
    transform: translate3d(353px, 424px, 68px);
    background: var(--green-text);
}
@keyframes particle-animation-3 {
    100% {
        transform: translate3d(692px, 210px, 20px);
    }
}
.particle:nth-child(3) {
    animation: particle-animation-3 50s infinite alternate;
    height: 6px;
    width: 6px;
    transform: translate3d(452px, 314px, 66px);
    background: var(--green-text);
}
@keyframes particle-animation-4 {
    100% {
        transform: translate3d(26px, 220px, 19px);
    }
}
.particle:nth-child(4) {
    animation: particle-animation-4 60s infinite alternate;
    height: 7px;
    width: 7px;
    transform: translate3d(120px, 638px, 65px);
    background: var(--green-text);
}
@keyframes particle-animation-5 {
    100% {
        transform: translate3d(694px, 558px, 47px);
    }
}
.particle:nth-child(5) {
    animation: particle-animation-5 50s infinite alternate;
    height: 5px;
    width: 5px;
    transform: translate3d(461px, 474px, 70px);
    background: var(--green-text);
}
@keyframes particle-animation-6 {
    100% {
        transform: translate3d(314px, 242px, 74px);
    }
}
.particle:nth-child(6) {
    animation: particle-animation-6 40s infinite alternate;
    height: 7px;
    width: 7px;
    transform: translate3d(533px, 688px, 82px);
    background: var(--green-text);
}
@keyframes particle-animation-7 {
    100% {
        transform: translate3d(611px, 82px, 26px);
    }
}
.particle:nth-child(7) {
    animation: particle-animation-7 60s infinite alternate;
    height: 6px;
    width: 6px;
    transform: translate3d(355px, 225px, 54px);
    background: var(--green-text);
}
@keyframes particle-animation-8 {
    100% {
        transform: translate3d(288px, 626px, 62px);
    }
}
.page-buyers, .page-sellers {
    display: none;
}
.js-page-buyers .page-buyers {
    display: block;
}
.js-page-sellers .page-sellers {
    display: block;
}
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.header .nav {
    border-radius: 10px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgb(255, 255, 255);
}
.header .nav .dropdown-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}
.header .nav .dropdown-link:hover {
    opacity: 0.7;
}
.header .nav .dropdown-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}
.header .nav .dropdown-icon svg {
    display: block;
}
.header .nav .dropdown-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 15px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.header .nav .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header .nav .dropdown-menu ul li {
    padding: 0;
}
.header .nav .dropdown-menu ul li a {
    display: block;
    padding: 10px 20px;
    color: #111;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.header .nav .dropdown-menu ul li a:hover {
    background-color: #F9F9FD;
}
.header .nav .dropdown.is-active .dropdown-icon {
    transform: rotate(180deg);
}
.header .nav .dropdown.is-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header .nav .nav__item > a {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    position: relative;
    display: inline-block;
    padding: 18px 0;
}
.header .nav .nav__item > a:hover {
    opacity: 0.5;
}
.header__action_text {
    font-size: 13px;
    margin-left: 15px;
}
.dropdown-menu-informer {
    display: block;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    color: white;
}
.dropdown-menu-informer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.4s ease;
}
.dropdown-menu-informer__title {
    font-weight: 500;
    font-size: 17px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    transition-delay: 0.05s;
}
.dropdown-menu-informer__subtitle {
    font-size: 14px;
    opacity: 0.7;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition-delay: 0.15s;
}
.dropdown-menu-informer:hover:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}
.dropdown-menu-informer:hover .dropdown-menu-informer__title {
    transform: translateY(-5px);
}
.dropdown-menu-informer:hover .dropdown-menu-informer__subtitle {
    transform: translateY(-5px);
    opacity: 1;
}
.dropdown-menu-informer-in {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 3;
}
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.has-dropdown-active .dropdown-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.logo img {
    width: 166px;
}
.header .hamburger__line, .header .hamburger__line:before, .header .hamburger__line:after {
    background-color: #111;
}
.footer {
    position: relative;
    overflow: hidden;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 238, 245) 100%);
    border-top: 1px solid #eaeef5;
}
.footer a {
    transition: all 0.2s ease;
}
.footer a:hover {
    opacity: 0.7;
}
.footer__container {
    padding-top: 8rem;
    padding-bottom: 9rem;
}
.footer__copyright {
    width: 100%;
    opacity: 0.5;
    font-size: 0.95rem;
}
.footer__action p {
    font-size: 16px;
    line-height: 1.7;
    color: #7C8087;
}
.footer__in {
    position: relative;
}
@media (max-width: 767px) {
    .footer__container {
        padding-top: 7rem;
    }
}
.footer2 {
    position: relative;
    overflow: hidden;
    background-color: #f4f4f7;
    font-size: 15px;
}
.footer2 .copyright__text, .footer2 .copyright__dev a {
    opacity: 0.5;
    font-size: 14px;
}
.footer2 li {
    margin-bottom: 1em;
}
.footer2 a {
    transition: all 0.15s ease;
    font-size: 15px;
}
.footer2 a:hover {
    opacity: 0.5;
}
.footer2__container {
    padding-top: 8rem;
    padding-bottom: 9rem;
}
.footer2__copyright {
    width: 100%;
    border-top: 1px solid #d4d4db;
}
.footer2__action p {
    font-size: 16px;
    line-height: 1.7;
    color: #7C8087;
}
.footer2__in {
    position: relative;
}
@media (max-width: 767px) {
    .footer2__container {
        padding-top: 7rem;
    }
}
.informer {
    overflow: hidden;
    position: relative;
    height: 100vh;
    min-height: 870px;
    max-height: 950px;
}
.informer .ani-pulse-ellipse {
    position: absolute;
    right: 31.3%;
    top: 47%;
    width: 18px;
    height: 18px;
    background-color: #079881;
}
.informer .blob-inner-container {
    right: 0;
}
.informer__title {
    font-size: 120px;
    line-height: 1.05;
}
.informer__text {
    font-size: 18px;
}
.informer__img img {
    width: 429px;
}
@media (max-width: 1399px) {
    .informer__title {
        font-size: 110px;
        line-height: 1.05;
    }
}
@media (max-width: 1199px) {
    .informer {
        height: 800px;
        min-height: auto;
        max-height: none;
    }
    .informer__title {
        font-size: 90px;
        line-height: 1.05;
    }
}
@media (max-width: 991px) {
    .informer__title {
        font-size: calc(2.8rem + 4.5vw);
    }
    .informer__text {
        font-size: 15px;
    }
    .informer {
        height: auto;
        max-height: none;
    }
    .informer .adv_tags {
        position: absolute;
        bottom: 20px;
        z-index: 10;
    }
    .informer .blob-inner-container {
        bottom: 0;
    }
}
@media (max-width: 767px) {
    .informer .adv_tags__item {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
}
.informer2 {
    overflow: hidden;
    position: relative;
}
.informer2__text {
    font-size: 18px;
}
.informer2 .blob-inner-container {
    bottom: 0;
}
.informer2 .blob-inner-container {
    width: 400px;
    height: 400px;
}
.informer2__adv_title {
    line-height: 1.4;
}
.informer2__adv_text {
    font-size: 15px;
    line-height: 1.4;
}
@media (max-width: 991px) {
    .informer2__title {
        font-size: 3.5rem;
    }
}
.rows .layer__parent {
    position: relative;
}
.rows .layer2 {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.rows__item__title {
    line-height: 1.4;
    font-weight: 700;
}
.rows__item__text {
    line-height: 1.9;
    color: #8C8D9B;
}
@keyframes levitation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes levitation_and_rotate {
    0% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(10deg);
        transform: translateY(10px) rotate(10deg);
    }
    to {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
    }
}
@media (min-width: 1200px) {
    .rows__container {
        max-width: 1000px;
    }
}
@media (max-width: 767px) {
    .rows img, .rows svg {
        max-width: 300px;
    }
    .rows__item__title {
        font-size: 1.8rem;
    }
    .rows__item__text {
        font-size: 0.9rem;
    }
}
@media (max-width: 575px) {
    .rows img, .rows svg {
        max-width: 250px;
    }
}
.faq {
    position: relative;
}
.faq .lines-animate__item {
    background-color: white;
}
.faq .accordion-button {
    color: #111;
}
.faq .accordion-item {
    border-bottom: 1px solid #E8E8E8;
    color: #111;
    transition: all 0.3s ease;
}
.faq .accordion-item:hover {
    border-color: #111;
}
.faq__item__title {
    line-height: 1.4;
}
.faq__item__text {
    line-height: 1.9;
}
.js-page-sellers .faq {
    background-color: white !important;
}
.toggle {
    margin-top: -75px;
    position: relative;
    z-index: 3;
}
.toggle__title {
    color: white;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.1rem;
}
/* Mode Toggle / */
.btn-mode {
    padding: 0 70px;
    position: relative;
}
.btn-mode__text {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    font-size: 0.85rem;
    position: absolute;
    top: 5px;
}
.btn-mode__text.active {
    color: white;
}
.btn-mode__text--left {
    right: 70px;
}
.btn-mode__text--right {
    left: 70px;
}
.btn-mode .checkbox {
    opacity: 0;
    position: absolute;
}
.btn-mode .checkbox-label {
    background-color: #000;
    width: 60px;
    height: 30px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-mode__icon {
    position: relative;
    z-index: 10;
}
.btn-mode__icon--moon {
    fill: #4F4F4F;
    margin-right: 3px;
}
.btn-mode__icon--sun {
    fill: #F0880D;
    margin-left: 3px;
}
.btn-mode .checkbox-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    transition: all 0.2s linear;
}
.btn-mode .checkbox:checked + .checkbox-label .ball {
    transform: translateX(30px);
}
/* Mode Toggle / */
/* Mode Toggle 2 / */
.btn-mode2 {
    display: flex;
    justify-content: center;
}
.btn-mode2 .checkbox {
    opacity: 0;
    position: absolute;
}
.btn-mode2 .checkbox-label {
    background-color: #22212F;
    width: 303px;
    height: 76px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border: 7px solid white;
}
.btn-mode2__text {
    position: relative;
    z-index: 10;
    display: inline-block;
    width: 50%;
    text-align: center;
    font-weight: 600;
}
.btn-mode2__text.active {
    color: #111;
}
.btn-mode2 .checkbox-label .ball {
    background-color: #fff;
    width: 133px;
    height: 48px;
    position: absolute;
    left: 8px;
    top: 7px;
    border-radius: 100px;
    transition: all 0.35s ease-out;
}
.btn-mode2 .checkbox:checked + .checkbox-label .ball {
    transform: translateX(141px);
}
/* Mode Toggle 2 / */
@media (max-width: 767px) {
    .btn-mode2__text {
        font-size: 0.9rem;
    }
    .btn-mode2 .checkbox-label {
        height: 70px;
        width: 240px;
    }
    .btn-mode2 .checkbox-label .ball {
        height: 42px;
        width: 100px;
    }
    .btn-mode2 .checkbox:checked + .checkbox-label .ball {
        transform: translateX(110px);
    }
}
.ticker .swiper-wrapper {
    transition-timing-function: linear !important;
}
.ticker .swiper-slide {
    text-align: center;
    width: auto;
    color: #111;
    font-weight: 600;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}
.warning .box-hide:before {
    background: rgb(244, 244, 247);
    background: linear-gradient(0deg, rgb(244, 244, 247) 0%, rgba(244, 244, 247, 0) 100%);
}
.warning__title {
    color: #d4d6dd;
}
.warning__text {
    color: #7e8089;
    font-size: 13px;
    line-height: 1.7;
}
.features__item {
    height: 100%;
}
.features__item_title {
    font-size: 24px;
    font-weight: 600;
}
.features__item_text {
    font-size: 16px;
    line-height: 1.65;
}
.features__item_bg1 {
    background: rgb(246, 250, 255);
    background: linear-gradient(45deg, rgb(246, 250, 255) 0%, rgb(234, 238, 245) 100%);
}
.features__item_bg2 {
    background: rgb(255, 253, 246);
    background: linear-gradient(45deg, rgb(255, 253, 246) 0%, rgb(241, 234, 223) 100%);
}
.features__item_border {
    border: 1px solid #F0F4FA;
}
.adv__in {
    background-color: #184DD4;
}
.adv__list_top {
    border-bottom: 1px solid #3261D9;
}
.adv_title {
    font-size: 24px;
    font-weight: 500;
}
.adv__item {
    color: #F2F2F2;
    font-size: 17px;
    position: relative;
    border-right: 1px solid #3261D9;
    height: 100%;
}
@media (max-width: 1199px) {
    .adv__list_top, .adv__item {
        border: none;
    }
}
.adv_grid__item_title {
    font-size: 20px;
    font-weight: 500;
}
.adv_grid__item_text {
    color: #747474;
    font-size: 14px;
    line-height: 1.65;
}
.adv_grid2__item {
    background-color: #F9F9FD;
    border: 1px solid #E6E7EE;
}

.adv_grid2__item svg{
    width: 50px;
}

.adv_grid2__item_title {
    font-size: 20px;
    font-weight: 500;
}
.adv_grid2__item_text {
    color: #747474;
    font-size: 14px;
    line-height: 1.65;
}
.adv_grid3__title {
    font-size: 23px;
    font-weight: 500;
}

.adv_grid3__item svg{
    width: 55px;
}

.adv_grid3__text {
    color: #111;
    font-size: 17px;
    line-height: 1.55;
}
.adv_grid3__description {
    color: #747474;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .adv_grid3__text{
        font-size: 16px;
    }
}


.adv_tags {
    position: relative;
    overflow: hidden;
    max-height: 330px;
}
.adv_tags__item {
    font-size: 15px;
    padding: 12px 40px;
    backdrop-filter: blur(7px);
    background-color: rgba(255, 255, 255, 0.6);
}
.adv_tags__item img {
    width: 24px;
}
@media (max-width: 1199px) {
    .adv_tags__item {
        font-size: 14px;
        padding: 10px 30px;
    }
}
.adv_tags2 {
    position: relative;
    overflow: hidden;
    max-height: 330px;
}
.adv_tags2__item {
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}
.adv_tags2__item img {
    width: 24px;
}
.grid__item {
    background-color: #F9F9FD;
    border: 1px solid #E6E7EE;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
}
.grid__item_title {
    font-size: 23px;
    font-weight: 500;
}
.grid__item_icon {
    transition: transform 0.3s ease;
}
.grid__item_icon svg {
    fill: #111;
}
.grid__item:hover .grid__item_icon {
    transform: translateY(-5px);
}
.grid__item_text {
    font-size: 15px;
    color: #6B738A;
}
.grid__item--accent {
    border-color: #111;
    background: #111;
    color: #fff;
}
.grid__item--accent .grid__item_text {
    opacity: 0.5;
    color: #fff;
}
.grid__item--accent .grid__item_icon svg {
    fill: white;
    opacity: 0.5;
}
.grid__item--accent2 {
    background: #292C62;
    background: linear-gradient(45deg, rgb(41, 44, 98) 21%, rgb(129, 164, 156) 65%, rgb(191, 205, 202) 77%);
    color: #fff;
}
.grid__item--accent2 .grid__item_text {
    opacity: 0.5;
    color: #fff;
}
.grid__item--accent2 .grid__item_icon svg {
    fill: white;
    opacity: 0.5;
}
.grid2__item {
    background-color: #F9F9FD;
    border: 1px solid #E6E7EE;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
    display: block;
}

a.grid2__item{
    background-color: #fff;
    color: #4153a5;
}

a.grid2__item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.grid2__item svg{
    width: 50px
}

.grid2__item_title {
    font-size: 17px;
    font-weight: 500;
}
.grid2__item_icon {
    transition: transform 0.3s ease;
}
.grid2__item_icon svg {
    fill: #111;
}
.grid2__item:hover .grid2__item_icon {
    transform: translateY(-5px);
}
.grid2__item_text {
    font-size: 15px;
    color: #6B738A;
}
.grid2__item--accent {
    border-color: #111;
    background: #111;
    color: #fff;
}
.grid2__item--accent .grid2__item_text {
    opacity: 0.5;
    color: #fff;
}
.grid2__item--accent .grid2__item_icon svg {
    fill: white;
    opacity: 0.5;
}
.grid2__item--accent2 {
    background: #292C62;
    background: linear-gradient(45deg, rgb(41, 44, 98) 21%, rgb(129, 164, 156) 65%, rgb(191, 205, 202) 77%);
    color: #fff;
    border: none;
}
.grid2__item--accent2 .grid2__item_text {
    opacity: 0.5;
    color: #fff;
}
.grid2__item--accent2 .grid2__item_icon svg {
    fill: white;
    opacity: 0.5;
}

@media (max-width: 767px) {
    .grid2__item_icon svg{
        width: 45px;
    }
}

@media (max-width: 575px) {
    .grid2__item_title {
        font-size: 15px;
    }
}
.accent-info > .accent-info_right {
    height: 500px;
}
.accent-info .blob-inner-container {
    width: 400px;
    height: 400px;
    min-width: auto;
    right: 30%;
    top: 20%;
}
.accent-info .blob-inner-container .blob {
    opacity: 1;
    background: conic-gradient(from 0deg, #58b178, #583ec1);
}
.accent-info__in {
    background-color: #000;
}
.accent-info_left {
    min-height: 800px;
}
.accent-info_right {
    display: flex;
    align-items: end;
    background-color: #0B0B0B !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.accent-info_right__text {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    line-height: 1.7;
}
.accent-info__img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.accent-info__box_text {
    font-size: 15px;
}
@media (max-width: 1199px) {
    .accent-info_left {
        height: auto;
        min-height: auto;
    }
    .accent-info__img {
        right: 0;
        left: auto;
    }
}
@media (max-width: 991px) {
    .accent-info__text {
        line-height: 1.6;
    }
    .accent-info__box_title {
        font-size: 1.6rem !important;
    }
    .accent-info__box_text {
        font-size: 15px;
        line-height: 1.6;
    }
    .accent-info__in {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}
.accent-info2 .blob-inner-container {
    width: 400px;
    height: 400px;
}
.accent-info2__in {
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.accent-info2__right {
    max-width: 200px;
}
.accent-info2__right img {
    margin-right: 45px;
}
.accent-info2 .btn-plus {
    position: absolute;
    right: 0;
    top: -3px;
}
@media (max-width: 991px) {
    .accent-info2__in {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}
.accent-info3__subtitle {
    font-size: 20px;
}
.accent-info3__in:before {
    content: "";
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
.card_1__item {
    background-color: #f4f4f7;
    border: 1px solid #f4f4f7;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    transition: background-color 0.25s ease;
    height: 100%;
}
.card_1__item .infinite-scroll-wrapper:before {
    content: "";
    width: 150px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #f4f4f7;
    background: linear-gradient(90deg, rgba(244, 244, 247, 0) 0%, rgb(244, 244, 247) 100%);
    z-index: 10;
}
.card_1__item .infinite-scroll-wrapper:after {
    content: "";
    width: 150px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #f4f4f7;
    background: linear-gradient(90deg, rgb(244, 244, 247) 0%, rgba(244, 244, 247, 0) 100%);
    z-index: 10;
}
.card_1__item .swiper-slide {
    width: auto !important;
}
.card_1__item:hover {
    background-color: #f9f9fb;
}
.card_1__item:hover .card_1__item_img {
    transform: translateY(-10px);
}
.card_1__item_in {
    padding: 50px 50px 0 50px;
    text-align: left;
}
.card_1__item_title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}
.card_1__item_img {
    margin-bottom: -50px;
    transition: transform 0.25s ease;
}
.card_1__item_text {
    font-size: 14px;
    color: #6B738A;
}
.card_1__item--long:hover {
    background-color: #f4f4f7;
}
.card_1__item--accent {
    background: #292C62;
    background: linear-gradient(45deg, rgb(41, 44, 98) 21%, rgb(129, 164, 156) 65%, rgb(191, 205, 202) 77%);
}
.card_1__item--accent .card_1__item_title, .card_1__item--accent .card_1__item_text {
    color: white;
}
@media (max-width: 575px) {
    .card_1__item_in {
        padding: 35px 35px 0 35px;
    }
    .card_1__item_img {
        max-width: 200px;
    }
}
.card_2 .swiper-slide {
    height: auto;
}
.card_2__item {
    background-color: #f4f4f7;
    border: 1px solid #e7e7ed;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    padding: 50px;
    height: 100%;
    transition: background-color 0.25s ease;
}
.card_2__item img {
    max-width: 100%;
    margin-bottom: 30px;
    transition: transform 0.25s ease;
}
.card_2__item_title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}
.card_2__item_text {
    color: #6B738A;
    font-size: 15px;
    font-weight: 400;
}
.card_2__item:hover {
    background-color: white;
}
.card_3 {
    background: #F9F9FD;
    border: 1px solid #E6E7EE;
    border-radius: 15px;
}
.card_3--accent {
    background-color: #0A0A0A;
    background-image: url("../img/patterns/lines.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-position 20s ease;
}
.card_3--accent:hover {
    background-position: right bottom;
}
.card_3--accent .card_3__title {
    color: white;
}
.card_3--accent .card_3__body {
    border-top: none;
    color: white;
}
.card_3__title {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}
.card_3__body {
    border-top: 1px solid #DFDFDF;
    backdrop-filter: blur(2px);
}
@media (max-width: 991px) {
    .card_3__title {
        font-size: 25px;
    }
}
.text_block {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
}
.text_block .btn-circle {
    margin-top: -70px;
}
@media (max-width: 767px) {
    .text_block .btn-circle {
        margin-top: 0px;
    }
}
.video_action {
    position: relative;
    min-height: 550px;
    cursor: pointer;
    overflow: hidden;
}
.video_action:hover .video_action__title {
    transform: translateY(-10px);
}
.video_action:hover .video_action__icon {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.video_action:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
}
.video_action__title {
    position: relative;
    z-index: 3;
    font-size: 35px;
    line-height: 1.5;
    transition: transform 0.5s ease-out;
}
.video_action__icon {
    position: absolute;
    width: 132px;
    height: 132px;
    border: 1px solid white;
    border-radius: 132px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.5s ease-out;
}
.video_action__icon:before {
    content: "";
    background: url("../img/arrow-right.svg") no-repeat;
    position: absolute;
    left: 58px;
    top: 51px;
    color: white;
    width: 20px;
    height: 25px;
}
.video_action .pulse-1 {
    position: absolute;
    width: 132px;
    height: 132px;
    border: 1px solid white;
    border-radius: 132px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    animation: pulse-wave 4s ease-out infinite both;
}
@media (max-width: 575px) {
    .video_action {
        min-height: 450px;
    }
    .video_action__title {
        font-size: 23px;
    }
}
.services {
    background-color: #184DD4;
}
.services__item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgb(255, 255, 255);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
}
.services__item:hover {
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.services__item_title {
    font-size: 24px;
    font-weight: 600;
}
.services__item_icon {
    transition: transform 0.3s ease;
}
.services__item:hover .services__item_icon {
    transform: translateY(-5px);
}
.services__item_text {
    font-size: 16px;
    color: #B1C4F4;
}
.plans__item {
    width: 25%;
    margin-bottom: 4px;
}
.plans__item_in {
    transition: transform 0.3s ease;
    margin: 0 2px;
}
.plans__item_in:hover {
    transform: translateY(-5px);
}
.plans__item_title {
    font-size: 17px;
    font-weight: 500;
    color: #184DD4;
}
.plans__item_price {
    font-size: 46px;
    font-weight: 400;
}
.plans__item_subtitle {
    font-size: 17px;
}
.plans__item_body {
    border-top: 1px solid #F1F4F9;
}
.plans__item_body li {
    border-bottom: 1px solid #F1F4F9;
    font-size: 17px;
}
.plans__item_body li:last-child {
    border: none;
}
.plans__item_body li span {
    color: #777777;
    display: block;
    font-size: 15px;
}
.plans__item-accent {
    color: white;
}
.plans__item-accent .plans__item_body {
    border-top: 1px solid #3B6DEA;
}
.plans__item-accent .plans__item_body li {
    border-bottom: 1px solid #3B6DEA;
}
.plans__item-accent .plans__item_body li:last-child {
    border: none;
}
.plans__item-accent .plans__item_body span {
    color: #D7E0F8;
}
.plans__item-accent .plans__item_in {
    background-color: #184DD4 !important;
}
.plans__item-accent .plans__item_title {
    color: #EDFF19;
}
.payment .btn-circle {
    position: relative;
    top: -20px;
}
.payment__img {
    border: 1px solid #EBEBEB;
}
@media (max-width: 1199px) {
    .plans__item {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .plans__item {
        width: 100%;
    }
}
.plans2__item_in {
    transition: transform 0.3s ease;
    background-color: #f4f4f7;
    height: 100%;
}
.plans2__item_in:hover {
    transform: translateY(-5px);
}
.plans2__item_badge {
    padding: 6px 18px;
    position: absolute;
    top: 0;
    right: 30px;
    font-size: 14px;
    color: white;
    z-index: 10;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border: none;
}
.plans2__item_title {
    font-size: 30px;
    font-weight: 600;
}
.plans2__item_text {
    font-size: 15px;
    color: #848484;
}
.plans2__item_body li {
    font-size: 15px;
    margin-bottom: 0.9em;
}
.plans2__item_body li span {
    color: #777777;
    display: block;
    font-size: 15px;
}
.plans2__item--accent .plans2__item_in {
    background: #708d82;
    background: linear-gradient(196deg, rgb(112, 141, 130) 0%, rgb(17, 17, 17) 30%);
}
.plans2__item--accent .plans2__item_title {
    color: #fff;
}
.plans2__item--accent .plans2__item_text {
    color: #848484;
}
.plans2__item:nth-child(3) .plans2__item_in {
    background-color: #F3F0EB;
}
.swiper_gallery__item {
    background-color: #fff;
}
.swiper_gallery .swiper-slide {
    text-align: center;
    color: #111;
    font-weight: 600;
    transition: transform 1s ease-in-out;
}
.about {
    font-size: 17px;
}
.about p {
    margin-bottom: 50px;
    line-height: 1.6;
}
.founders {
    line-height: 1.7;
}
.category__item {
    height: 100%;
    transition: all 0.3s ease;
}
.category__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}
.category__title a:hover{
    opacity: 0.5;
}
.category__btn {
    color: #4153a5;
}
.category__ul {
    font-size: #888;
    margin-bottom: 20px;
}
.category__ul li a {
    width: 100%;
    font-size: 15px;
    color: #888888;
    text-decoration: underline;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
.category__ul li a:hover {
    color: #111;
    text-decoration: none;
}
.box-hide {
    position: relative;
    overflow: hidden;
    max-height: 110px;
}
.box-hide.show {
    max-height: none;
}
.box-hide.show:before {
    display: none;
}
.box-hide:before {
    z-index: 10;
    background: rgb(238, 242, 247);
    background: linear-gradient(0deg, rgb(238, 242, 247) 0%, rgba(238, 242, 247, 0) 100%);
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100px;
    bottom: 0;
}
.box-hide__bt.hide {
    display: none !important;
}
.box-hide__bt {
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    border-bottom: 1px dotted #606060;
    line-height: normal;
}
.box-hide__bt:hover {
    border-bottom: none;
    margin-bottom: 1px;
}
.box-hide-color1:before {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f4f6f6 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #f4f6f6));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f4f6f6 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f4f6f6 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f4f6f6 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f4f6f6 100%);
}
/*===== box_content =====*/
.h-section {

    position: relative;
}
.h-section__text {
    line-height: 1.6;
}
.h-section__img {
    position: absolute;
    right: 0;
    bottom: -80px;
}
.h-section .blob-inner-container {
    right: 0;
}
@media (max-width: 767px) {
    .h-section__title{
        font-size: calc(2.8rem + 4.5vw);
    }
    .informer .adv_tags__item {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
}
.copyright__dev a {
    color: #111;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.copyright__dev a:hover {
    opacity: 1;
}
.copyright__dev a:hover .copyright__dev-icon {
    color: #e10000;
}
.copyright__dev a:hover .copyright__dev-icon span {
    animation: heartbeat 1s infinite;
}
.copyright__dev a:hover .copyright__dev-icon span svg {
    fill: #e10000;
    stroke: #e10000;
}
.copyright__dev a:hover .copyright__dev-name {
    color: #111;
}
.copyright__dev-icon {
    display: inline-block;
}
.copyright__dev-icon span {
    display: inline-block;
    width: 15px;
}
.copyright__dev-icon span svg {
    fill: #7C8087;
    stroke: #7C8087;
    transition: fill 0.3s ease, stroke 0.3s ease;
}
.copyright__dev-name {
    transition: color 0.3s ease;
}
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}
.search-block__input {
    font-size: 15px;
    line-height: 1.6;
    width: 100%;
    padding: 12px 25px;
    border: none;
    outline: none;
    border-radius: 10px;
}
.search-block__btn {
    font-size: 15px;
    line-height: 0;
    position: absolute;
    top: 11px;
    right: 11px;
    border: none;
    outline: none;
    background: transparent;
}
.search-block__info {
    font-size: 15px;
    text-align: center;
}
.search-block__info a {
    font-weight: 500;
}

/* Live search dropdown */
.search-block__results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    margin-top: 4px;
}
.search-block__results.is-active {
    display: block;
}
.search-block__results-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: #1a1a1a;
    transition: background 0.15s;
    border-bottom: 1px solid #f0f0f0;
}
.search-block__results-item:last-child {
    border-bottom: none;
}
.search-block__results-item:hover {
    background: #f7f7f9;
    color: #1a1a1a;
}
.search-block__results-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}
.search-block__results-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.search-block__results-empty,
.search-block__results-loading {
    padding: 16px 20px;
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

/* Full search results page */
.search-results__title {
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}
.search-results__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.search-results__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #1a1a1a;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.15s;
    border-radius: 8px;
}
.search-results__item:hover {
    background: #f7f7f9;
    color: #1a1a1a;
}
.search-results__item-title {
    font-size: 16px;
    font-weight: 500;
}
.search-results__item-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .search-results__item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.search-results__empty {
    font-size: 16px;
    color: #6c757d;
}

/* Content (WYSIWYG) */
.content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a5a;
    margin-bottom: 16px;
}
.content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}
.content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
}
.content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}
.content ul,
.content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a5a;
    margin-bottom: 6px;
}
.content ul li {
    list-style: disc;
}
.content ol li {
    list-style: decimal;
}
.content a {
    color: #0d6efd;
    text-decoration: underline;
}
.content a:hover {
    color: #0a58ca;
}
.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}
.content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.content table th,
.content table td {
    padding: 12px 16px;
    border: 1px solid #E6E7EE;
    font-size: 15px;
    text-align: left;
}
.content table th {
    background: #F9F9FD;
    font-weight: 600;
}
.content table tr:hover td {
    background: #f7f7f9;
}
.content blockquote {
    border-left: 4px solid #0d6efd;
    padding: 12px 20px;
    margin: 16px 0;
    background: #F9F9FD;
    border-radius: 0 8px 8px 0;
    color: #4a4a5a;
    font-style: italic;
}

/* FAQ Related */
.faq-related {
    background: #F9F9FD;
    border: 1px solid #E6E7EE;
    position: sticky;
    top: 100px;
}
.faq-related__title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #E6E7EE;
}
.faq-related__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.faq-related__list li {
    border-bottom: 1px solid #E6E7EE;
}
.faq-related__list li:last-child {
    border-bottom: none;
}
.faq-related__list a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.faq-related__list a:hover {
    color: #4153a5;
    text-decoration: underline;
}

.columns__title {
    font-size: 23px;
}
.columns__subtitle {
    font-size: 16px;
}
.columns__text {
    font-size: 15px;
}
.columns .layer__parent {
    position: relative;
}
.columns .layer2 {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.columns__item__title {
    line-height: 1.4;
    font-weight: 700;
}
.columns__item__text {
    line-height: 1.9;
    color: #8C8D9B;
}

@media (max-width: 767px) {
    .columns__subtitle {
        font-size: 16px;
    }
}

@keyframes levitation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes levitation_and_rotate {
    0% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(10deg);
        transform: translateY(10px) rotate(10deg);
    }
    to {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
    }
}
@media (min-width: 1200px) {
    .rows__container {
        max-width: 1000px;
    }
}
@media (max-width: 767px) {
    .rows img, .rows svg {
        max-width: 300px;
    }
    .rows__item__title {
        font-size: 1.8rem;
    }
    .rows__item__text {
        font-size: 0.9rem;
    }
}
@media (max-width: 575px) {
    .rows img, .rows svg {
        max-width: 250px;
    }
}
.text-section__text {
    font-size: 17px;
    line-height: 1.6;
}
.text-section__description {
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 991px) {
    .text-section__text {
        font-size: 16px;
    }
}
.text-section2__text {
    font-size: 17px;
    line-height: 1.6;
}
.text-section2__in {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}
/* Block: calculator */
.calculator {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgb(195, 208, 205);
    width: 100%;
}
.calculator__title {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 600;
}
/* Element: calculator__field */
.calculator__field {
    margin-bottom: 30px;
}
/* Element: calculator__label */
.calculator__label {
    display: block;
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 8px;
}
/* Element: calculator__input-wrapper */
.calculator__input-wrapper {
    position: relative;
}
/* Element: calculator__input */
.calculator__input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}
/* Modifier: calculator__input--focus */
.calculator__input:focus {
    border-color: #7898a1;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
/* Element: calculator__dropdown-icon */
.calculator__dropdown-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #a0aec0;
}
/* Element: calculator__slider */
.calculator__slider {
    margin-bottom: 30px;
}
/* Element: calculator__slider-header */
.calculator__slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
/* Element: calculator__slider-label */
.calculator__slider-label {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}
/* Element: calculator__slider-value */
.calculator__slider-value {
    font-size: 16px;
    color: #2d3748;
    font-weight: 600;
    background: #f7fafc;
    padding: 4px 12px;
    border-radius: 6px;
}
/* Element: calculator__slider-range */
.calculator__slider-range {
    width: 100%;
    height: 8px;
    background: linear-gradient(45deg, rgb(41, 44, 98) 21%, rgb(129, 164, 156) 65%, rgb(191, 205, 202) 77%);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.calculator__slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #7898a1;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(120, 152, 161, 0.4);
    transition: all 0.2s ease;
}
.calculator__slider-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(120, 152, 161, 0.4);
}
.calculator__slider-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #7898a1;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(120, 152, 161, 0.4);
    transition: all 0.2s ease;
}
.calculator__slider-range::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
/* Element: calculator__total */
.calculator__total {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Element: calculator__total-label */
.calculator__total-label {
    font-size: 24px;
    color: #2d3748;
    font-weight: 600;
}
/* Element: calculator__total-amount */
.calculator__total-amount {
    font-size: 36px;
    background: linear-gradient(45deg, rgb(41, 44, 98) 21%, rgb(129, 164, 156) 65%, rgb(191, 205, 202) 77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: transform 0.3s ease;
}
/* Modifier: calculator__total-amount--animate-up */
.calculator__total-amount--animate-up {
    animation: calculatorScaleUp 0.4s ease;
}
/* Modifier: calculator__total-amount--animate-down */
.calculator__total-amount--animate-down {
    animation: calculatorScaleDown 0.4s ease;
}
@keyframes calculatorScaleUp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        color: #48bb78;
    }
    100% {
        transform: scale(1);
    }
}
@keyframes calculatorScaleDown {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
        color: #f56565;
    }
    100% {
        transform: scale(1);
    }
}
/* Remove spinner from number input */
.calculator__input[type=number]::-webkit-inner-spin-button,
.calculator__input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.calculator__input[type=number] {
    -moz-appearance: textfield;
}
.noUi-target {
    background-color: #DEE4EC;
    border: none;
    box-shadow: none;
}
.noUi-horizontal {
    height: 7px;
}
.noUi-connect {
    background: #e6352d;
}
.noUi-handle {
    border: none;
    border-radius: 30px;
    background: #E6352D;
    box-shadow: none;
}
.noUi-horizontal .noUi-handle {
    width: 20px;
    height: 20px;
    right: -17px;
    top: -7px;
}
.noUi-handle:before, .noUi-handle:after {
    display: none;
}
.noUi-tooltip {
    border: none;
    border-radius: 30px;
    background: #E6352D;
    color: white;
    padding: 7px 25px;
    font-size: 1rem;
    font-weight: 500;
}
@media (max-width: 767px) {
    .noUi-tooltip {
        padding: 7px 15px;
    }
}
.hamburger {
    cursor: pointer;
}
.active > .hamburger .hamburger__line {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.active > .hamburger .hamburger__line::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.active > .hamburger .hamburger__line::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger__box {
    width: 28px;
    height: 24px;
    position: relative;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background-color: white;
    position: absolute;
    transition-property: transform, width;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger__line:before {
    top: -8px;
    content: "";
    display: block;
}
.hamburger__line:after {
    bottom: -8px;
    content: "";
    display: block;
}
.nav-mobile__inner {
    padding: 110px 85px 30px 85px;
}
.nav-mobile {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 110;
    top: 0;
    left: -100%;
    background: #fff;
    overflow-y: auto;
    visibility: hidden;
    transition: all 0.5s ease;
}
.nav-mobile .nav-mobile__dropdown li {
    margin-bottom: 20px;
    margin-top: 20px;
}
.nav-mobile .nav-mobile__dropdown li a {
    font-size: 16px;
    font-weight: 400;
    color: #7a7a7a;
}
.nav-mobile.active {
    transform: translateX(100%);
    visibility: visible;
}
.nav-mobile li {
    margin-bottom: 32px;
    margin-top: 32px;
}
.nav-mobile li a {
    font-size: 25px;
    line-height: 1.3;
    color: #111;
    font-weight: 500;
}
.nav-mobile li a:hover {
    color: #111;
    opacity: 1;
}
.nav-mobile__button {
    position: absolute;
    top: 30px;
    right: 30px;
}
.nav-mobile__link {
    font-size: 36px;
    line-height: 1.2;
    cursor: pointer;
    color: #111;
    font-weight: 500;
}
.nav-mobile__link svg {
    width: 35px;
    height: 35px;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.15s ease;
}
@media (max-width: 767px) {
    .nav-mobile__inner {
        padding: 110px 30px 30px 30px;
    }
}
/* Make clicks pass-through */
#nprogress {
    pointer-events: none;
}
#nprogress .bar {
    background: #596f7e;
    position: fixed;
    z-index: 100031;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}
/* Fancy blur effect */
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #fdb72f, 0 0 5px #fdb72f;
    opacity: 1;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px;
}
#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border: solid 2px transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;
    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}
@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.results__pair_text {
    height: 90px;
}
button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
.get_started__line {
    width: 1px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3477766106) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: -50px;
    left: 50%;
    height: 110%;
}
.get_started__item {
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}
.get_started__item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 0.5s ease;
    background: rgb(255, 255, 255);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.3477766106) 100%);
}
.get_started__item_in {
    position: relative;
    z-index: 10;
}
.get_started__item:hover {
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.75);
}
.get_started__item:hover:before {
    opacity: 0;
}
.get_started__item_name {
    font-size: 20px;
    font-weight: 500;
    color: white;
}
.sticker {
    position: relative;
}
.sticker__text {
    position: absolute;
    top: 55px;
    left: 48px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}
.bg-gray {
    background: #f4f4f7;
}
.bg-gray-gradient-top {
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(234, 238, 245) 100%);
}
.bg-gray-gradient-bottom {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 238, 245) 100%);
}
.lite-shadow {
    -webkit-box-shadow: 0px 4px 28px 0px rgba(215, 221, 232, 0.4);
    -moz-box-shadow: 0px 4px 28px 0px rgba(215, 221, 232, 0.4);
    box-shadow: 0px 4px 28px 0px rgba(215, 221, 232, 0.4);
}
.table.custom {
    color: #000;
}
.table.custom th {
    font-weight: 400;
    font-size: 15px;
}
.table.custom tr:nth-child(even) td {
    background-color: #F9FAFC;
}
.table.custom tr:hover td {
    background-color: #ebeff6;
}
.table.custom td {
    font-size: 16px;
    border-bottom: none;
    transition: background-color 0.25s ease-in-out;
}
.big-text {
    line-height: 0.8;
    font-size: calc(5rem + 4.5vw);
}
.swiper-wrapper {
    transition: transform 2s ease-in-out;
}
.swiper-custom-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.swiper-custom-button {
    cursor: pointer;
    transition: transform 0.2s ease;
}
.swiper-custom-button svg {
    stroke: #BDBFC9;
    transition: stroke 0.2s ease;
}
.swiper-custom-button:hover svg {
    stroke: #000;
}
.swiper-custom-button-prev:hover {
    transform: translateX(-5px);
}
.swiper-custom-button-next:hover {
    transform: translateX(5px);
}
.modal__close {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    background: transparent;
    transition: transform 0.25s ease-out;
}
.modal__close:hover {
    transform: rotate(180deg);
}
.form-input__block button {
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    width: 100%;
}
.form-input__block input, .form-input__block textarea, .form-input__block select {
    border: none;
    outline: none;
    border-bottom: 1px solid #d6dadf;
    padding: 12px 0 12px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 17px;
    font-size: 16px;
    background-color: transparent;
    transition: all 0.2s ease-out;
    border-radius: 0;
}
.form-input__block input:focus, .form-input__block textarea:focus, .form-input__block select:focus {
    border-bottom: 1px solid #111;
}
@media (max-width: 991px) {
    .display-11 {
        font-size: 2rem;
    }
    .display-5 {
        font-size: 3rem;
    }
    .display-8 {
        font-size: 2.8rem;
    }
    .display-7 {
        font-size: 2.5rem;
    }
}
input.input-line, textarea.input-line {
    border: none;
    outline: none;
    border-bottom: 1px solid hsla(213.33, 15%, 85%, 0.3);
    padding: 12px 0 12px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 17px;
    font-size: 16px;
    background-color: transparent;
    transition: all 0.2s ease-out;
    border-radius: 0;
    color: white;
}
input.input-line:focus, textarea.input-line:focus {
    border-bottom: 1px solid white;
}
input.input-line::placeholder,
textarea.input-line::placeholder {
    color: hsla(213.33, 15%, 85%, 0.6);
    transition: opacity 0.2s ease-out;
    font-size:15px;
}
input.input-line:focus::placeholder,
textarea.input-line:focus::placeholder {
    opacity: 0;
}
.input-line:-webkit-autofill,
.input-line:-webkit-autofill:hover,
.input-line:-webkit-autofill:focus,
.input-line:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #111 inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
}
.form-input__block input:-webkit-autofill,
.form-input__block input:-webkit-autofill:hover,
.form-input__block input:-webkit-autofill:focus,
.form-input__block input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #333 !important;
    caret-color: #333;
    transition: background-color 5000s ease-in-out 0s;
}
.blob-outer-container {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
    inset: 0;
    margin: auto;
    filter: blur(100px);
}
.blob-inner-container {
    border-radius: 999px;
    position: absolute;
    margin: auto;
    width: 800px;
    height: 800px;
    min-width: 1000px;
    overflow: hidden;
    background-color: #fff;
}
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    inset: 0;
    margin: auto;
    background: conic-gradient(from 0deg, #97d7b1, #8197cb, #daf5c1);
    animation: spinBlob 5s linear infinite;
    opacity: 1;
}
@keyframes spinBlob {
    0% {
        transform: rotate(0deg) scale(2);
    }
    100% {
        transform: rotate(1turn) scale(2);
    }
}

.columns__text {
    font-size: 15px;
}
.columns .layer__parent {
    position: relative;
}
.columns .layer2 {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.columns__item__title {
    line-height: 1.4;
    font-weight: 700;
}
.columns__item__text {
    line-height: 1.9;
    color: #8C8D9B;
}
