/* Front */
html {
    font-size: 10px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #404247;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.table {
    color: #777e8f;
}

svg {
    display: block;
}

a,
button,
input,
textarea,
button,
select {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

button {
    cursor: pointer;
    outline: 0;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    outline: 0;
}

a {
    text-decoration: none;
    color: #666;
}

@media (hover: hover) {
    a:hover {
        color: #8EC6FF;
        text-decoration: none;
        outline: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1340px;
    padding: 0 20px;
}

.title {
    font-weight: 300;
    line-height: 130%;
    font-size: 4rem;
    text-transform: uppercase;
    color: #8EC6FF;
    letter-spacing: 0.8px;
}

.fw-800 {
    font-weight: 800;
}

.video-wrapper {
    position: relative;
}

.video-bg {
    position: absolute;
    right: -30px;
    top: -40px;
    max-width: 30%;
}

.video {
    max-width: 100%;
    border-radius: 20px;
}

.text-gradient {
    color: #644ce2;
    background: linear-gradient(97deg, #644ce2 0%, #7446cb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-big {
    font-size: 5.6rem;
    font-weight: 900;
}

.title-big .extra-bold {
    color: #25d3a9;
}

.subtitle {
    color: #644ce2;
    font-size: 2rem;
    font-weight: 700;
    line-height: 140%;
}

.text {
    color: #443c6f;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 160%;
}

.mb-1 {
    margin-bottom: 1.2rem !important;
}
.mb-2 {
    margin-bottom: 2.4rem !important;
}
.mb-4 {
    margin-bottom: 4rem !important;
}
.mb-5 {
    margin-bottom: 5.4rem !important;
}
.mb-6 {
    margin-bottom: 6.4rem !important;
}
.mb-7 {
    margin-bottom: 7.4rem !important;
}
.mb-8 {
    margin-bottom: 8rem !important;
}
.mb-9 {
    margin-bottom: 9.6rem !important;
}

/*--------------------------------------------------------------
  ##  Buttons
  --------------------------------------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 4rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    white-space: nowrap;
    border: 0;
    line-height: 1.4;
    background: linear-gradient(93deg, #7f9bff 0%, #73c4ff 50%, #73c4ff 100%) 0 0 / 200% 100%;
    border-radius: 5rem;
    min-width: 25.7rem;
    min-height: 6rem;
    -webkit-transition: all 0.3s;
    transition: background 0.3s;
    box-sizing: border-box;
}

.btn_google {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding-left: 8.4rem;
}

.btn_google::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -0.4rem;
    transform: translateY(-50%);
    width: 6.8rem;
    height: 6.8rem;
    border-radius: 50%;
    border: 0.4rem solid rgba(255, 255, 255, 0.75);
    background: url('../images/main-page/logos_chrome.svg') center / contain no-repeat;
}

.btn:focus {
    box-shadow: none;
}

.btn:active {
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .btn:hover {
        color: #fff;
        background-position: 100% 0;
    }
}

.btn-wrapper {
    margin-top: 4rem;
}

/* Back To Top */

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: #7291ff;
    line-height: 4.2rem;
    text-align: center;
    cursor: pointer;
    z-index: 998;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.return-to-top > i {
    position: relative;
    overflow: hidden;
    font-size: 12px;
    width: inherit;
    height: inherit;
    line-height: inherit;
    display: block;
    color: transparent;
    text-shadow: 0px 0px #fff, 0px 50px #fff;
    -webkit-transition: text-shadow 0.2s ease;
    transition: text-shadow 0.2s ease;
    z-index: 1;
}

.return-to-top > i:before {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    border: solid 2px #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-top: 0;
    border-right: 0;
    top: 1.8rem;
    left: 1.6rem;
    position: absolute;
}

.return-to-top:hover {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
    -webkit-box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}

.return-to-top:hover > i {
    text-shadow: 0px -50px #fff, 0px 0px #fff;
}

.return-to-top.back-top {
    bottom: 2rem;
    opacity: 1;
}

.text-xs-center {
    text-align: center !important;
}

@keyframes pixFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes pixFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pixFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pixFadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pixFadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pixFadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes pixFadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes pixFadeRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes pixFadeRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes pixZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pixZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes pixBounceIn {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pixBounceIn {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.pixFade {
    -webkit-animation-name: pixFade;
    animation-name: pixFade;
}

.pixFadeUp {
    -webkit-animation-name: pixFadeUp;
    animation-name: pixFadeUp;
}

.pixFadeDown {
    -webkit-animation-name: pixFadeDown;
    animation-name: pixFadeDown;
}

.pixFadeLeft {
    -webkit-animation-name: pixFadeLeft;
    animation-name: pixFadeLeft;
}

.pixFadeRight {
    -webkit-animation-name: pixFadeRight;
    animation-name: pixFadeRight;
}

.pixZoomIn {
    -webkit-animation-name: pixZoomIn;
    animation-name: pixZoomIn;
}

.pixBounceIn {
    -webkit-animation-name: pixBounceIn;
    animation-name: pixBounceIn;
}

.zoomIn {
    -webkit-animation-name: zoomin;
    animation-name: zoomin;
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999999;
}

.page-loader .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-loader svg {
    display: none;
}

.blobs {
    -webkit-filter: url(#goo);
    filter: url(#goo);
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 70px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.blobs .blob-center {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    background: #74d7d0;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    -ms-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-animation: blob-grow linear 3.4s infinite;
    animation: blob-grow linear 3.4s infinite;
    border-radius: 50%;
    -webkit-box-shadow: 0 -10px 40px -5px #74d7d0;
    box-shadow: 0 -10px 40px -5px #74d7d0;
}

.blob {
    position: absolute;
    background: #74d7d0;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-animation: blobs ease-out 3.4s infinite;
    animation: blobs ease-out 3.4s infinite;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    -ms-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
    opacity: 0;
}

.blob:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.blob:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.blob:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.blob:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.blob:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes blobs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
        transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
    1% {
        opacity: 1;
    }
    35%,
    65% {
        opacity: 1;
        -webkit-transform: scale(0.9) translate(-50%, -50%);
        transform: scale(0.9) translate(-50%, -50%);
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
        transform: scale(0) translate(calc(330px - 50%), -50%);
    }
}

@keyframes blobs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
        transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
    1% {
        opacity: 1;
    }
    35%,
    65% {
        opacity: 1;
        -webkit-transform: scale(0.9) translate(-50%, -50%);
        transform: scale(0.9) translate(-50%, -50%);
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
        transform: scale(0) translate(calc(330px - 50%), -50%);
    }
}

@-webkit-keyframes blob-grow {
    0%,
    39% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
    40%,
    42% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    43%,
    44% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    45%,
    46% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    47%,
    48% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    52% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    54% {
        -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
        transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
    58% {
        -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
        transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
    68%,
    70% {
        -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
        transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
    78% {
        -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
        transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
    80%,
    81% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    82%,
    83% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    84%,
    85% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    86%,
    87% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    90%,
    91% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    92%,
    100% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

@keyframes blob-grow {
    0%,
    39% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
    40%,
    42% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    43%,
    44% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    45%,
    46% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    47%,
    48% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    52% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    54% {
        -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
        transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
    58% {
        -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
        transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
    68%,
    70% {
        -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
        transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
    78% {
        -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
        transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
    80%,
    81% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    82%,
    83% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    84%,
    85% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    86%,
    87% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    90%,
    91% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    92%,
    100% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 1.6rem 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.removed-page .site-header {
    background: linear-gradient(270deg, #cdd8ff 0%, #7291ff 100%);
}

.removed-page .title-big {
    font-weight: 600;
}

.removed-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-header .inverse-logo,
.site-header.header-light .inverse-logo {
    display: none !important;
}

.site-header.pix-header-fixed.header-light .sticky-logo {
    display: inline-block !important;
}

.site-logo {
    max-width: 192px;
}

.site-header .header-inner {
    position: relative;
}

.site-header .header-inner .site-logo a {
    display: block;
}

.site-header .header-inner .site-logo a .sticky-logo {
    display: none;
}

.site-header .header-inner .site-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.site-header .header-inner .site-nav .menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.site-header .header-inner .site-nav .menu-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.site-header .site-mobile-logo {
    display: none;
}

.site-header .site-main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.site-header .site-main-menu li {
    position: relative;
    padding: 1rem 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-header .site-main-menu li:last-child {
    margin-right: 0;
    padding: 0;
}

.site-header .site-main-menu li > a {
    margin: 0 2.4rem;
    display: inline-block;
    padding: 0;
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) 0 100% /var(--d, 0) 1px no-repeat;
    background: linear-gradient(#fff 0 0) 0 100% /var(--d, 0) 1px no-repeat;
    -webkit-transition: 0.2s ease;
    transition: 0.3s ease;
}

@media (hover: hover) {
    .site-header .site-main-menu li > a:hover {
        --d: 80%;
        text-decoration: none;
    }
}

.site-header .header-inner .site-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.logo-sticky {
    display: none;
}

.pix-header-fixed {
    padding: 1.2rem 0;
    z-index: 1000;
    background: linear-gradient(270deg, #cdd8ff 0%, #7291ff 100%);
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
    -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.pix-header-fixed .header-inner .site-logo .logo-sticky {
    display: block;
}

.pix-header-fixed .header-inner .site-logo .logo-main {
    display: none;
}

.pix-header-fixed .site-main-menu li.menu-item-has-children:after {
    color: #333;
}

.pix-header-fixed .site-logo .main-logo {
    display: none;
}

.pix-header-fixed .site-logo .sticky-logo {
    display: block;
}

.mask-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    top: 0;
    left: 0;
}

.close-menu {
    display: none;
}

.hidden {
    display: none;
}

/*--------------------------------------------------------------
  ##  Fullscreen
  --------------------------------------------------------------*/
.fullscreen {
    position: relative;
    padding: 16rem 0 4rem;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #f6eadb;
    background: url('../images/main-page/main-section-bg.svg') center top / 100% auto no-repeat;
}

.fullscreen .title {
    margin-bottom: 4rem;
}
.fullscreen .text {
    max-width: 490px;
    text-align: left;
    color: #49389b;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
}

.fullscreen .scroll-button {
    display: inline-block;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%);
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    transition: background 0.3s;
}

.fullscreen .scroll-button svg {
    display: block;
    width: 100%;
    height: auto;
}

.fullscreen .scroll-button:hover {
    background: #f6eadb;
}

.main-image {
    display: block;
    width: 100%;
    max-width: 712px;
    height: auto;
}

/*--------------------------------------------------------------
  ##  About
  --------------------------------------------------------------*/
.hiw-about-wrapper {
    position: relative;
    z-index: 2;
    padding-bottom: 35rem;
    background: url('../images/main-page/hiw-section-bg.svg') center 20rem / 2000px auto no-repeat;
}

.about-section {
    padding: 12rem 0 0;
}

.about-section .title {
    margin-bottom: 2.4rem;
}

.about-title-text {
    max-width: 858px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}

.block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.about-section .block {
    padding: 3.2rem 3.2rem 2.4rem;
    border-radius: 10px;
    background: radial-gradient(110% 141% at 50% 0%, #fff 52%, rgba(255, 255, 255, 0.00) 52%), linear-gradient(180deg, #fff 0%, #f2f5ff 100%);
    box-shadow: 0 3px 2px 0 rgba(114, 145, 255, 0.04), 0 6px 5px 0 rgba(114, 145, 255, 0.05), 0 12px 10px 0 rgba(114, 145, 255, 0.06), 0 22px 18px 0 rgba(114, 145, 255, 0.08), 0 42px 33px 0 rgba(114, 145, 255, 0.09), 0 100px 80px 0 rgba(114, 145, 255, 0.13);
}

.about-section .block .text {
    margin: 0;
    font-size: 1.4rem;
    color: #49389B;
}

.about-list {
    list-style-type: none;
    padding: 0;
    margin-top: -12px;
    margin-bottom: -12px;
    display: flex;
    flex-wrap: wrap;
}

.about-list-item {
    flex: 1 1 20%;
    padding: 10px;
}

/*--------------------------------------------------------------
    ##  how it works
    --------------------------------------------------------------*/
.hiw-section {
    padding-top: 15rem;
}

.hiw-slider {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 10rem;
}

.hiw-slider .slick-list {
    max-width: 100%;
    width: 850px;
    padding: 0 !important;
    margin: 0 auto;
}

.slick-prev,
.slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(129, 77, 247, 0.15), 0 1px 0 0 rgba(129, 77, 247, 0.08);
    transition: background 0.3s;
}

.slick-dots {
    position: absolute;
    bottom: -2.4rem;
    transform: translateY(100%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-dots button {
    cursor: pointer;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    border: none;
    background: #fff;
    transition: background 0.3s;
}

.slick-dots button:focus {
    outline: none;
    border: none;
}

.slick-dots .slick-active button {
    cursor: default;
    background: radial-gradient(205.04% 141.42% at 100% 0%, #5a4ffc 0%, #5c4eff 50.26%, rgba(56, 96, 197, 0.80) 100%), #d9d9d9;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

@media (hover: hover) {
    .slick-prev:hover,
    .slick-next:hover {
        background: #f6eadb;
    }
}

.hiw-slide .hiw-block {
    padding: 4rem 5rem 4rem 6rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-radius: 2rem;
    background: #cdd8ff;
}

.hiw-slide {
    padding: 0 20px;
}

.hiw-num {
    display: inline-block;
    width: 40px;
    line-height: 40px;
    color: #4F5360;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.40);
}

.hidden {
    display: none !important;
}
/*--------------------------------------------------------------
    ##  settings
    --------------------------------------------------------------*/
.settings {
    margin-top: -10rem;
    padding: 15rem 0 22rem;
    background: #fff;
}

.settings-disabled {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: -70%;
    background: rgba(255,255,255,0.7);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.settings-block {
    border: solid 1px #E4E2F8;
    background-color: #fff;
    border-radius: 24px;
    padding: 24px;
}

.settings-disabled-label {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 24px;
}

.settings-header-label {
    color: #626FE0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.settings-header-label-highlight {
    text-transform: lowercase;
}

.settings-header-title {
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}

.switcher-checkbox {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.switcher {
    background-color: #C3CCF0;
    border-radius: 100px;
    width: 64px;
    height: 32px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    padding-right: 4px;
}

.switcher.active {
    background-color: #3445E2;
}

.switcher.active .switcher-toggle {
    background: linear-gradient(135deg, #67F8E8 0%, #3AEAD7 100%);
}

.switcher-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #EBF5FF;
    position: absolute;
    left: 4px;
    top: 4px;
    transition: transform 0.3s;
}

.switcher-checkbox:checked + .switcher-toggle {
    transform: translateX(125%);
}

input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.option-select-wrap {
    position: relative;
    height: 54px;
    z-index: 1;
}

.option-select {
    display: flex;
    width: 100%;
    height: 40px;
    left: 0;
    z-index: 4;
    flex-direction: column;
    overflow: hidden;
    border-radius: 100px;
    border: 1px solid #D9E2FD;
    background: #fff;
    box-shadow: 0px 1px 4px -2px #30644F;
}

.option-select:hover {
    border: 1px solid #3374D6;
}

.option-select.open {
    height: auto;
    border-radius: 24px;
}

.option-select .arrow {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 16px;
    top: 9px;
    background: url("../images/main-page/search/select-arrow.svg") center center no-repeat;
    pointer-events: none;
    border-radius: 0;
    transform: rotate(0);
}

.option-select.open .arrow {
    transform: rotate(180deg);
}

.option-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #444444;
    padding:  7px 16px;
    position: relative;
    cursor: pointer;
    order: 1;
    transition: background-color 0.3s ease;
    min-height: 40px;
    border-radius: 100px;
}

.option-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.option-label img {
    vertical-align: middle;
    margin-right: 10px;
}

input:checked + .option-label {
    order: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*--------------------------------------------------------------
    ##  hti
    --------------------------------------------------------------*/

.hti-section {
    padding: 18rem 0 0;
    background: url('../images/main-page/hti-bg.svg') center top / 2000px auto no-repeat;
}

/*--------------------------------------------------------------
    ##  supported
    --------------------------------------------------------------*/
.supported {
    padding: 10rem 0 20rem;
}

.supported-row {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6.4rem
}

.supported-image {
    flex: 0 0 35rem;
    width: 35rem;
    height: auto;
}

.supported-content {
    flex: 1 1 auto;
}

.supported-search-logo {
    max-width: 340px;
    margin-bottom: 2.4rem;
}

.supported-search-logo img {
    margin-bottom: 2.4rem;
}

.supported-search-logo img:first-child {
    margin-right: 6.6rem;
}

.supported .text {
    margin-bottom: 4.8rem;
    color: #49389b;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 160%;
}

/*--------------------------------------------------------------
    ##  Faq's
    --------------------------------------------------------------*/
.faq-section {
    padding: 25rem 0 15rem;
    background: url('../images/main-page/faq-bg.svg') center top / 2000px auto no-repeat;
    background-size: cover;
}

.faq-section .container {
    max-width: 900px;
}

.card {
    position: relative;
    border-radius: 4rem;
    background: rgba(255, 255, 255, 0.40);
    overflow: hidden;
    border: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.card.active {
    background: #fff;
}

.card + .card {
    margin-top: 0.8rem;
}

.card-header {
    border: 0;
    border-radius: 0;
    background: none;
    padding: 0;
}

.card-btn {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    position: relative;
    padding: 1.6rem 3.2rem;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 800;
    color: #49389b;
    background: none;
    border: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.card-btn span {
    flex: 1 1 auto;
}

.card-btn svg {
    flex-shrink: 0;
}

svg {
    transition: 0.3s;
}

.card.active .card-btn {
    color: #000;
}

.card.active .card-btn span + svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.card-btn:focus {
    outline: none;
}

.card-body {
    padding: 0 8.8rem 2.4rem;
    font-size: 1.6rem;
    color: #444;
    font-weight: 400;
    line-height: 180%;
}

.card-body p {
    margin-bottom: 0;
}

/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    min-height: calc(100vh - 70px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5rem 0;
}

.contact-section {
    padding: 10rem 0 20rem;
    background: url('../images/contact-page/bg.svg') center top / cover no-repeat;
}

.contact-card {
    max-width: 42rem;
    margin: 0 auto;
    padding: 4.6rem 2.6rem 3.9rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    -webkit-box-shadow: 0 5px 14px rgba(8, 15, 52, 0.04);
    box-shadow: 0 5px 14px rgba(8, 15, 52, 0.04);
    border-radius: 2rem;
}

.contact-card__text {
    margin-bottom: 1.6rem;
    font-size: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.contact-card__subtitle {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 3.6rem;
}

.contact-card__button {
    margin-top: auto;
    background: rgba(142, 233, 227, 0.17);
    border-radius: 1.2rem;
    padding: 1rem 2.4rem;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    color: #11aaa0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-card__button:hover {
    background: rgba(142, 233, 227, 0.5);
    color: #11aaa0;
}

.uninstall-section {
    padding: 7rem 0 13rem;
}

.uninstall-section .title {
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
    font-weight: 600;
}

.uninstall-section .text {
    max-width: 740px;
    margin: 0 auto;
    margin-bottom: 6rem;
    font-size: 1.6rem;
    line-height: 1.9;
    color: #687e97;
}

.uninstall-image {
    border: 1px solid #dae2e2;
    box-shadow: -0.9rem 3.8rem 3.8rem #eaebee;
    border-radius: 1.6rem;
}

.removed-section {
    padding: 15rem 0 7.6rem;
}

.removed-page {
    background: url("../images/removed/remove-header.svg") top/contain no-repeat;
}

.remove-page-content {
    margin-top: -13rem;
}

.removed-page .pix-header-fixed {
    background: none;
    box-shadow: none;
}

.font-bold {
    font-weight: 700;
}

.thanks-block {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.thanks-content {
    padding: 10rem 7.6rem;
}

.thanks-content .title {
    font-size: 3.5rem;
    color: #334254;
}

.thanks-content .text {
    margin-bottom: 3.9rem;
    font-size: 1.6rem;
    line-height: 174%;
    color: #687e97;
    text-align: left;
}

.thanks-content .btn {
    min-width: 130px;
    line-height: 4rem;
}

.thanks-image {
    padding: 5rem 0 5rem 3.3rem;
    background-color: #e9eff8;
}

/*=================page terms===============================*/
.terms-section {
    padding: 6rem 0;
}

.terms-section .title {
    font-size: 4.8rem;
}

.terms-privacy p,
.terms-privacy table,
.terms-privacy ul,
.terms-privacy ol {
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 160%;
    color: #687e97;
}

.error-section {
    height: 100vh;
    display: flex;
    align-items: center;
}

footer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 8px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

footer a {
    color: #000;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

th {
    font-weight: 700;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/

.footer {
    margin-top: -50px;
    padding: 13rem 0 4.5rem;
    background: url('../images/main-page/footer-bg.png') center top / cover no-repeat;
}

.content-wrapper .footer {
    margin-top: auto;
}

.footer .container {
    max-width: 1200px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.7fr;
    gap: 33px;
    align-items: stretch;
}

.footer-logo {
    grid-area: 1/1/2/2;
}

.footer-menu {
    grid-area: 1/2/2/3;
}

.footer-store-link {
    grid-area: 1/3/2/4;
}

.footer-button {
    grid-area: 2/1/3/2;
}

.footer-button .btn {
    max-width: 217px;
}

.footer-copyright {
    text-align: center;
}

.footer-logo-link {
    display: block;
    max-width: 19rem;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.footer-link {
    margin-bottom: 2.4rem;
    color: #fff;
    display: block;
    line-height: 1.5;
    font-weight: 600;
    font-size: 16px;
}

.footer-link:hover {
    text-decoration: underline;
    color: #fdfffe;
}

.footer-copyright p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.footer-copyright strong {
    font-weight: 900;
}
