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

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.45;
    color: #BABCD2;
    background: #8D40EE;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100%;
}

#main_content {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 1 auto;
}

body.privacy-page {

}

.home-page {
    background: #8D40EE;
}

.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: #0060e7;
}

@media (hover: hover) {
    a:hover {
        text-decoration: underline;
    }
}

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

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

strong {
    font-weight: 700;
}

strong.extra {
    font-weight: 900;
}

.section-default {
    padding: 6rem 0;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding: 0 30px;
}

.inner {
    width: 100%;
    padding: 0 104px;
}

.inner-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    color: #ECECFB;
    font-family: 'Poppins', sans-serif;
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 1.5;
}

.title-big {
    font-size: 7.9rem;
    line-height: 1;
    color: #FFF;
}

@media (max-width: 1200px) {
    .inner {
        padding: 0 48px;
    }

    .title-big {
        font-size: 7rem;
    }
}


.title-small {
    font-size: 4.2rem;
}

.title-smallest {
    font-size: 3.2rem;
}

.subtitle {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #334254;
}

.section-text {
    max-width: 600px;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 130%;
    margin: 0 auto;
    color: #687e97;
}

.mb-1 {
    margin-bottom: 1.6rem !important;
}

.mb-2 {
    margin-bottom: 2.1rem !important;
}

.mb-3 {
    margin-bottom: 3.2rem !important;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

/*--------------------------------------------------------------
  ##  Buttons
  --------------------------------------------------------------*/

.btn {
    padding: 0.8rem 2.4rem;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 500;
    white-space: nowrap;
    border: 0;
    min-width: 10rem;
    min-height: 4rem;
    color: #010314;
    border-radius: 24px;
    background: #FFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

header .btn {
    font-size: 1.5rem;
    line-height: 2.6rem;
}

.btn_main {
    padding: 1.6rem;
    font-weight: 700;
    color: #2C2C2C;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    background: #2DD3AC;
    border: 1px solid #2DD3AC;
    border-radius: 200px;
    min-height: 5.4rem;
}

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

.btn:active {

}

@media (hover: hover) {
    .btn:hover {
        background: #2DD3AC;
    }

    header .btn:hover {
        background: #2DD3AC;
    }

    .btn_main:hover {
        background: #fff
    }
}

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

/* Back To Top */

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: #2DD3AC;
    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: 0 0 #ffffff, 0 50px #ffffff;
    -webkit-transition: text-shadow 0.2s ease;
    -o-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 #ffffff;
    -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 #ffffff, 0px 0px #ffffff;
}

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

@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
  --------------------------------------------------------------*/
.default-section {
    padding: 7.3rem 0;
    border-radius: 2.4rem;
    background: #7C2DE0;
}

.default-section-dark {
    background: #2C2C2C;
}

.page-loader {
    background: #ffffff;
    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: #52b478;
    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 #52b478;
    box-shadow: 0 -10px 40px -5px #52b478;
}

.blob {
    position: absolute;
    background: #52b478;
    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: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.site-header .header-inner {
    position: relative;
    padding: 3.8rem 4.9rem;
    border-radius: 0 0 24px 24px;
    background: #2C2C2C;
    transition: 0.3s ease-in-out;
}

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

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

.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: flex;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.site-header .header-inner .menu-wrapper {
    margin-left: auto;
    padding: 0 3.4rem;
}

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

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

.site-header .site-main-menu li {
    position: relative;
    padding: 0 0.9rem;
}

.site-header .site-main-menu li > a {
    padding: 0.8rem 0;
    color: #FFF;
    font-size: 1.5rem;
    line-height: 1.45;
    background: -webkit-linear-gradient(currentColor 0 0) 0 calc(100% - 0.8rem) /var(--d, 0) 1px no-repeat;
    background: linear-gradient(currentColor 0 0) 0 calc(100% - 0.8rem) /var(--d, 0) 1px no-repeat;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.site-header .site-main-menu li > a:hover {
    --d: 40%;
    color: #2DD3AC;
    text-decoration: none;
}

.site-header .toggle-menu .bar {
    background: #fff;
}

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

.logo-sticky {
    display: none;
}

.pix-header-fixed .header-inner {
    padding: 1.2rem 4.9rem;
    z-index: 1000;
    position: sticky;
    -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
    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 .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: 7.8rem 0;
    width: 100%;
}

.fullscreen-content {
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}

.fullscreen .title {
    margin-bottom: 1.6rem;
}

.fullscreen .section-text {
    color: #ECECFB;
    margin-bottom: 2.2rem;
}

@media (max-width: 1300px) {
    .fullscreen-image {
        padding-left: 4rem;
    }
}

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

/*--------------------------------------------------------------
  ##  About
  --------------------------------------------------------------*/
.about-section {
    padding-bottom: 9.6rem;
}

.about-section .row {
    margin: 0 -34px;
}

.about-section-col {
    padding: 0 34px;
}

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

.about-section .subtitle {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.32px;
}

.about-section .text {
    color: #BABCD2;
}

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

.hiw-section-header {
    padding-bottom: 3.6rem;
    border-bottom: 1px solid #8D40EE;
}

.hiw-section-body {
    padding: 4.5rem 0;
}

.hiw-section-body li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 9.2rem;
}

.hiw-section-body li:last-child {
    margin-bottom: 0;
}

.hiw-section-image img {
    width: 100%;
    height: auto;
}

.hiw-section-count {
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    color: #ECECFB;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    line-height: 3.6rem;
    letter-spacing: -0.8px;
    background: #2C2C2C;
    border-radius: 50%;
}

.hiw-section-content {
    max-width: 430px;
}

.hiw-section-caption {
    color: #ECECFB;
    font-size: 32px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -1.28px;
    text-transform: capitalize;
}

.hiw-section-text {
    color: #BABCD2;
}

.hiw-section-picture {
    padding: 5.5rem 0 6rem;
}

.hiw-section-picture img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
    ##  engines
    --------------------------------------------------------------*/
.engines-section {
    padding: 4rem 0 6rem;
}

.engines-section .text {
    max-width: 1100px;
    margin: 0 auto;
}

.engines-section ul {
    padding: 0;
    list-style: none;
    max-width: 850px;
    margin: 0 auto;
}

.engines-section-image img {
    max-height: 6rem;
    height: 100%;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

/*--------------------------------------------------------------
##  Faq's
--------------------------------------------------------------*/
.faq-section {
    padding: 11.3rem 0 9rem;
    margin-top: -6rem;
}

.faq-section .inner {
    max-width: 890px;
    margin: 0 auto;
    padding: 0;
}

.card {
    position: relative;
    background: #ffffff;
    border-radius: 6.8rem;
    overflow: hidden;
    border: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

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

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

.card-btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 2.4rem 2.8rem 2.4rem 4rem;
    white-space: normal;
    text-align: left;
    width: 100%;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    color: #2C2C2C;
    background: none;
    letter-spacing: 0.2px;
    border: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.card-btn-icon {
    -webkit-box-flex: 0;
    flex: 0 0 6.1rem;
    width: 6.1rem;
    height: 6.1rem;
    margin-left: 3.2rem;
    position: relative;
    border-radius: 50%;
    background-color: #EFF1F9;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

@media (hover: hover) {
    .card-btn:hover .card-btn-icon {
        background-color: #dbdce5;
    }
}

.card-btn-icon::before,
.card-btn-icon::after {
    content: '';
    display: block;
    width: 1.8rem;
    height: 0.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #000;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.card-btn-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.card.active .card-btn {
    padding-bottom: 0;
}

.card.active .card-btn-icon:after {
    content: none;
}

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

.card-body {
    padding: 0 12rem 4rem 4rem;
    color: rgba(20, 20, 20, 0.64);
    font-size: 14px;
    font-weight: 400;
    line-height: 152.023%; /* 21.283px */
}

.card-body p {
    margin-bottom: 0;
    max-width: 620px;
}

/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 6.4rem 0 5rem;
}

.inner-page .inner {
    padding: 0;
}

.inner-page .title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #fff;
    text-transform: none;
}

.inner-page .section-text {
    max-width: 740px;
    margin: 0 auto;
    margin-bottom: 6rem;
    font-size: 1.6rem;
    line-height: 1.9;
    text-align: center;
    color: #fff;
}

.contact-section {
    padding: 4.5rem 0 9rem;
}

.contact-section .title {
    margin-bottom: 7.6rem;
    font-size: 4rem;
    font-weight: 700;
}

.contact-card {
    max-width: 42rem;
    margin: 0 auto;
    padding: 2.4rem 1.6rem;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background: #ffffff;
    -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 svg {
    flex: 0 0 4.8rem;
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 3.3rem;
}

.contact-card__text {
    margin-bottom: 1.2rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    color: #2C2C2C;
    max-width: 250px;
}

.contact-card__subtitle {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3.2rem;
    line-height: 1.1;
    color: #2C2C2C;
}

.contact-card__button {
    padding: 1.4rem 2.4rem;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.56px;
    line-height: 1;
    min-height: 38px;
}

.contact-section ul {
    padding: 0;
    list-style: none;
}

.uninstall-page .inner {
    max-width: 740px;
    margin: 0 auto;
    padding: 0;
}

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

.uninstall-image {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.removed-section {
    padding: 3.7rem 0 2rem;
}

.removed-section-row {
    align-items: center;
}

.removed-section-content {
    display: flex;
    justify-content: center;
}

.removed-section .title {
    font-size: 4rem;
    font-weight: 700;
}

.removed-section-content p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.section-404 {
    padding: 1.4rem 0 7.4rem;
}
.section-404-image img {
    max-width: 100%;
    width: 690px;
    height: auto;
    margin-bottom: 5rem;
}
.section-404-title {
    margin-bottom: 2.5rem;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    color: #fff;
}

.thanks-image {
    padding-top: 2rem;
}

.thanks-image img {
    display: inline-block;
    max-width: 100%;
    width: 49rem;
    height: auto;
}

/*=================page terms===============================*/
.terms-section {
    padding: 6rem 0;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 150%;
    color: #fff;
}

.terms-section .title {
    color: #fff;
    margin-bottom: 6.4rem;
}

.terms-section p {
    font: inherit;
    margin-bottom: 2.6rem;
}

.terms-section table {
    font: inherit;
    color: #fff;
    margin-bottom: 2.6rem;
}

.contact-section .inner,
.removed-section .inner,
.terms-section .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

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

.footer {
    padding: 4.5rem 4rem 0;
    border-radius: 4.4rem 4.4rem 0 0;
    background: #2C2C2C;
}

.footer-link {
    margin-bottom: 1.7rem;
    color: #BABCD2;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor)) 0 100% /var(--d, 0) 1px no-repeat;
    background: linear-gradient(currentColor 0 0) 0 100% /var(--d, 0) 1px no-repeat;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-link:hover {
    text-decoration: none;
    --d: 40%;
    color: #2DD3AC;
}

.footer-col-first {
    margin-top: -10px;
}

.footer-logo {
    display: block;
    max-width: 34.6rem;
    margin-bottom: 8px;
}

.footer-nav {
    padding-left: 20px;
    max-width: 330px;
    margin: 0 auto;
}

.footer-text {
    max-width: 350px;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #ECECFB;
    margin-bottom: 0;
}

.footer-btn.btn_main {
    display: block;
    margin: 0 12px 0 auto;
    padding: 1.2rem 1.6rem;
    width: fit-content;
    min-width: 20rem;
    font-size: 1.6rem;
    border-radius: 2.4rem;
    font-weight: 500;
}

.footer-copyright {
    padding: 0 2rem 1.2rem;
    text-align: center;
}

.footer-copyright p {
    font-size: 1.4rem;
    line-height: 1.2;
    color: #7C7C8F;
}
