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

body {
    font-family: 'Space Grotesk', sans-serif;;
    font-size: 1.4rem;
    line-height: 1.3;
    color: #fff;
    background: #0F1013;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
}

.table {
    color: #fff;
}

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: #436CBE;
}

@media (hover: hover) {
    a:hover {
        text-decoration: underline;
        color: #2563EB;
    }
}

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

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

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

.container {
    width: 100%;
    min-height: 100%;
    max-width: 1320px;
    padding: 0 20px;
}

.container-terms {
    max-width: 886px;
}

/*--------------------------------------------------------------

##general style

---------------------------------------------------------------*/

.title {
    margin: 0 0 2.4rem;
    font-weight: 700;
    font-size: 4.4rem;
    line-height: 1.2;
}

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

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 2.4rem;
    min-width: 213px;
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    white-space: nowrap;
    border: none;
    line-height: 2.8rem;
    background: #357E5B;
    background: linear-gradient(211deg, #357E5B 0%, #2E52AB 100%);
    border-radius: 8px;
    transition: all 0.3s;
}

.btn.btn-chrome-icon:before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: block;
    background: url("../images/home-page/chrome-icon.svg") center no-repeat;
}

.btn-shadow {
    display: inline-block;
    position: relative;
}

.btn-shadow .btn {
    position: relative;
    z-index: 1;
}

.btn-shadow:before,
.btn-shadow:after {
    content: '';
    position: absolute;
    width: 134px;
    height: 134px;
    bottom: 11px;
    border-radius: 50%;
    filter: blur(90px);
    transition: all 0.3s;
}

.btn-shadow:before {
    background: #2F53AB;
    left: -36px;
}

.btn-shadow:after {
    background: #367F5C;
    right: -36px;
}

.btn-shadow:hover:before,
.btn-shadow:hover:after {
    filter: blur(75px);
}

@media (hover: hover) {
    .btn:hover {
        color: #fff;
        background: linear-gradient(211deg, #357E5B 25%, #2E52AB 75%);
    }
}

/* Back To Top */
.return-to-top {
    position: fixed;
    bottom: -30px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: #2CB878;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    z-index: 998;
    border-radius: 50%;
    opacity: 0;
    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 #fff, 0 50px #fff;
    -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: 10px;
    height: 10px;
    border: solid 2px #fff;
    transform: rotate(135deg);
    border-top: 0;
    border-right: 0;
    top: 18px;
    left: 16px;
    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: 0 -50px #fff, 0 0 #fff;
}

.return-to-top.back-top {
    bottom: 20px;
    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
  --------------------------------------------------------------*/
.page-loader {
    background: #0F1013;
    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: #5FE198;
    background: linear-gradient(211deg, #5FE198 0%, #517ED6 100%);
    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 rgba(95, 225, 152, 0.7);
    box-shadow: 0 -10px 40px -5px rgba(95, 225, 152, 0.7);
}

.blob {
    position: absolute;
    background: #5FE198;
    background: linear-gradient(211deg, #5FE198 0%, #517ED6 100%);
    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;
    transition: all 0.3s ease-in-out;
    padding: 30px 0;
}

.logo {
    color: #fff;
    font-weight: 700;
}

.logo:hover {
    text-decoration: none;
    color: #fff;
}

.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: 190px;
    max-height: 48px;
    margin: 0 1rem 0 0;
    z-index: 100;
}

.site-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.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;
    position: relative;
    transition: all 0.4s;
}

.site-header .header-inner .site-nav:before {
    display: none;
    content: '';
    width: calc(100% + 48px);
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 57.81%, rgba(255, 255, 255, 0.4) 100%);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08), 0px 0.5px 1px rgba(0, 0, 0, 0.08);
    border-radius: 26px;
    transition: all 0.4s;
}

.pix-header-fixed.site-header .header-inner .site-nav:before {
    content: '';
    width: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 57.81%, rgba(255, 255, 255, 0.4) 100%), #e3f6ff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08), 0px 0.5px 1px rgba(0, 0, 0, 0.08);
    border-radius: 0;
}

.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;
    -o-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;
    transition: all 0.3s ease-in-out;
}

.site-header .site-main-menu li > a {
    color: #fff;
    display: block;
    font-size: 1.8rem;
    line-height:  2.2rem;
    margin: 0 2.4rem;
    padding: 1rem 0;
    font-weight: 500;
    transition: 0.2s ease;
    position: relative;
}

.site-header .site-main-menu li > a:hover {
    background: linear-gradient(211deg, #5FE198 0%, #517ED6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.site-header a.btn-header {
    min-width: 193px;
    display: flex;
    font-size: 1.8rem;
    font-family: Poppins, sans-serif;
    padding: 1rem 3.2rem;
    line-height: 2.6rem;
    font-weight: 600;
    color: #8A8AAF;

    border-radius: 4px;
    border: 1px solid #8A8AAF;
    background: #1A1D22;
}

.site-header a.btn-header svg {
    margin-right: 8px;
}

.site-header a.btn-header:hover {
    color: #fff;
    border: 1px solid #fff;
}

.site-header .toggle-menu .bar {
    background: linear-gradient(211deg, #357E5B 0%, #2E52AB 100%);
}

.logo-sticky {
    display: none;
}

.pix-header-fixed {
    z-index: 1000;
    position: sticky;
    top: 0;
    -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;
    overflow: hidden;
    padding: 12px 0;
    background: #0F1013;
}

.pix-header-fixed:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #15171B;
    opacity: 1;
}

body.home .pix-header-fixed {
    background: #0F1013;
}

.pix-header-fixed.site-header:before {
    opacity: 0;
}

.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 .header-inner .site-nav.nav-two .site-main-menu li a:hover,
.pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a.current_page {
    border-color: #0060E7;
}

.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 {
    padding: 20.6rem 0 13.8rem;
    display: flex;
    position: relative;
    overflow: hidden;
    margin: -108px 0 0;
    border-bottom: 2px solid #15171B;
    background: url("../images/home-page/main-bg.jpg") center no-repeat;
    background-size: cover;
}

.fullscreen-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fullscreen-title {
    position: relative;
    z-index: 1;
    font-weight: 800;
    line-height: 1.2;
    font-size: 6.4rem;
    margin: -1rem 0 2.4rem;
    color: #fff;
}

.fullscreen-text {
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #fff;
}

.fullscreen-buttons {
    margin-top: 4.8rem;
    margin-bottom: 4.8rem;
}

.fullscreen-img {
    position: relative;
    width: 100%;
    text-align: right;
}

.fullscreen-img:before,
.fullscreen-img:after {
    content: "";
    position: absolute;
    width: 214px;
    height: 214px;
    border-radius: 50%;
    filter: blur(150px);
}

.fullscreen-img:before {
    background: #367F5C;
    top: 136px;
    left: 62px;
}

.fullscreen-img:after {
    background: #2F53AB;
    top: -5px;
    right: 125px;
}

.fullscreen-img img {
    position: relative;
    z-index: 2;
}

    /*--------------------------------------------------------------
      ##  Hiw
      --------------------------------------------------------------*/

.hiw-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hiw-title {
    margin-bottom: 6rem;
}

.hiw-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hiw-item {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 24px;
    width: calc((100% - 48px) / 3);
    border-radius: 12px;
    background: linear-gradient(180deg, #1D2025 0%, #0F1013 100%);
    box-shadow: 0 23.187692642211914px 46.37538528442383px 0 rgba(0, 0, 0, 0.50);
    z-index: 2;
}

.hiw-item-head {
    padding: 2.4rem;
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.hiw-item-head .number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.9rem;
    height: 6.9rem;
    margin-right: 1.6rem;

    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(211deg, #357E5B 0%, #2E52AB 100%);
    border-radius: 50%;
}

.hiw-item-body {
    flex: 1 1 100%;
}

.hiw-left .hiw-item-body {
    padding-right: 24px;
    text-align: left;
}

.hiw-center .hiw-item-body {
    text-align: center;
}

.hiw-center .hiw-item-body img {
    margin-bottom: -38px;
}

.hiw-right .hiw-item-body {
    padding-left: 24px;
    text-align: right;
}

.hiw-item-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 1.6rem 2.4rem;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}


/*--------------------------------------------------------------
  ##  Keep
--------------------------------------------------------------*/

.keep {
    padding-top: 12.4rem;
    padding-bottom: 5rem;
}

.keep-text {
    margin-bottom: 4.8rem;
    color: #DDD;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.keep-img {
    position: relative;
}


/*--------------------------------------------------------------
    ##  Faq's
--------------------------------------------------------------*/

.faq {
    overflow: hidden;
    scroll-margin-top: 5rem;
    padding-top: 7.5rem;
    padding-bottom: 10rem;
}

.card {
    position: relative;
    border: none;
    transition: all 0.3s;
    background: none;
    border-bottom: 1px solid #1D2025;
}

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

.card-btn {
    display: flex;
    align-items: center;
    min-height: 10.4rem;
    padding: 2.4rem 8rem 2.4rem 0;
    position: relative;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    color: #ECECFB;
    font-size: 2.4rem;
    line-height: 3.1rem;
    transition: all 0.3s;
    font-weight: 700;
    border: none;
    background: none;
}

.card-btn-indicator {
    width: 5.6rem;
    height: 5.6rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    will-change: transform;
}

.indicator-icon {
    position: relative;
    display: block;
    width: 5.6rem;
    height: 5.6rem;
    transition: all 0.3s;
    background: #1D2025;
    border-radius: 50%;
    color: #fff;
    z-index: 1;
}

.card.active .card-btn-indicator:before,
.card.active .card-btn-indicator:after {
    content: "";
    position: absolute;
    width: 7.1rem;
    height: 7.1rem;
    top: 0;
    left: -4.8rem;
    filter: blur(45px);
    background: #2F53AB;
}

.card.active .card-btn-indicator:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: -4.8rem;
    background: #367F5C;
}

.card.active .indicator-icon {
    background: linear-gradient(211deg, #357E5B 0%, #2E52AB 100%);
}

.indicator-icon:before,
.indicator-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 2px;
    background: #fff;
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.indicator-icon:after {
    height: 16px;
    width: 2px;
}

.card.active .indicator-icon:after  {
    height: 2px;
}

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

.card-body {
    margin-top: -0.6rem;
    padding: 0 8rem 2.4rem 0;
}

.card-body p {
    max-width: 620px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #ddd;
}

/*--------------------------------------------------------------
    ##  Support
    --------------------------------------------------------------*/

.support {
    margin: 5rem 0 1rem;
}

.support-title {
    text-align: center;
}

.support-descr {
    max-width: 850px;
    text-align: center;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0 auto 6rem;
}

.support-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 48px) / 3);
    height: 120px;
    padding: 2.4rem;
    border-radius: 12px;
    background: #1D2025;
}

.support-item img {
    max-width: 100%;
    object-fit: contain;
}

/*======================================================
================contact page============================
========================================================*/

.inner-page {
    min-height: calc(100vh - 184px);
    margin-top: -108px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12rem 0 10rem;
}

.inner-page .title {
    text-align: center;
}

.contact-page__title {
    margin-bottom: 4.8rem;
}

.removed-page__title.title {
    text-align: center;
    margin-bottom: 420px;
}

.removed{
    margin-bottom: 10px; !important;
}


.page-404__image {
    display: block;
    margin: 2rem auto 4rem;
}

.thanku-page__image {
    display: block;
    margin: 0 auto 4rem;
}

.contact-card {
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(180deg, #1D2025 0%, #0F1013 100%);
    box-shadow: 0 23.187692642211914px 46.37538528442383px 0 rgba(0, 0, 0, 0.50);
}

.contact-card__title {
    margin-bottom: 1.6rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-card__text {
    margin-bottom: 4.8rem;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
}

.contact-card__button {
    display: inline-block;
    margin-top: auto;
    min-width: 0;
    font-size: 1.6rem;
    line-height: 1.6rem;
}

.contact-card .features-section__title {
    color: #06B073;
}

.contact-card .features-section__text {
    color: #3037C9;
    margin-bottom: 1rem;
}

.contact-card .features-section__title,
.contact-card .features-section__text {
    position: relative;
}

.page-404 , .thanku-page{
    padding-bottom: 2rem;
}

.removed-page {
    flex-direction: column;
    padding-bottom: 0;
    background: url("../images/removed/removed-image.png") center bottom no-repeat;
}

.removed-page .container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    flex: 1 1 100%;
}

.page-404__title.title {
    max-width: 490px;
    margin: 0 auto 3.2rem;
    text-align: center;
    font-size: 3.2rem;
    line-height: 1.3;
}

.page-404__text {
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thanku-page__title {
    max-width: 630px;
    margin: 0 auto 3.4rem;
}

.thanku-page__subtitle {
    margin-bottom: 1.6rem;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.2;
}

.thanku-page__text {
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2.4rem;
}

.uninstall-image {
    margin: 0 auto;
    display: block;
    box-shadow: 0 23.187692642211914px 46.37538528442383px 0 rgba(0, 0, 0, 0.50);
    border-radius: 16px;
}

.uninstall-page__title {
    margin: 0 auto 4.8rem;
    max-width: 630px;
}

.uninstall-page__text {
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 3rem;
    text-align: center;
    margin: 0 auto 5.4rem;
    max-width: 1030px;
}

/*=================page terms===============================*/

.page-terms p,
.page-terms ul,
.page-terms table {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 2rem;
}

.page-terms table.table th,
.page-terms table.table td {
    border-color: #D3E6FF;
    border-width: 1px;
}

.page-terms strong,
.page-terms h3 {
    font-weight: 700;
    font-size: 2rem;
}

.page-terms__title {
    margin-bottom: 7.2rem;
}

.removed-page__image {
    display: block;
    margin: -20px auto 5.6rem;
    width: 100%;
    object-fit: contain;
    max-height: 480px;
}

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

.footer {
    position: relative;
    background: #1D2025;
}

.footer-content {
    padding: 4.8rem 0 4.8rem;
}

.footer-info {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 2.9rem;
    color: #fff;
}

.footer-links {
    padding: 0;
    margin: 0 0 48px;
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.footer-links li {
    margin: 0 2.4rem;
}

.footer-links li:first-child {
    margin-left: 0;
}

.footer-links li:last-child {
    margin-right: 0;
}

.footer-link {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.2rem;
    color: #fff;
    transition: all 0.3s;
}

.footer-link:hover {
    text-decoration: none;
    background: linear-gradient(211deg, #5FE198 0%, #517ED6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 48px;
    margin-bottom: 1.6rem;
}

.footer-logo img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-text {
    margin: 0;
    color: #DDD;
    font-size: 1.6rem;
    line-height: 1.5;
}

.footer-copyright {
    color: #7D7D7D;
}

.footer-copyright p {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1;
    text-align: right;
    margin: 0;
}

