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

:root {
    --Extension-Neutral-dark-10: #1F1F1F;
    --Extension-Neutral-dark-20: #313131;
    --Extension-Neutral-dark-35: #595959;
    --Extension-Neutral-dark-50: #808080;
    --Extension-Neutral-dark-80: #C2C2C2;
    --Extension-White-white: #FFF;
    --Extension-White-white-90: #E6E6E6;
    --Extension-White-white-95: #F2F2F2;
    --Extension-White-white-97: #F7F7F7;
    --Extension-main: #13724C;
    --Extension-main-36: #1A9D68;
    --Extension-main-32: #178C5D;
    --Extension-accent: #C3ED78;
    --Extension-accent-90: #E5F7C4;
    --Extension-blue: #DAF2F9;
    --Extension-main-gradient: linear-gradient(130deg, #98DC1D 7.7%, #13724C 100.81%);
    --Extension-orange-gradient: linear-gradient(93deg, #FEAC32 29.91%, #FF9766 68.11%, #FF957D 99.45%);
    --Extension-Grey-gradient: linear-gradient(96deg, rgba(238, 238, 238, 0.61) 3.82%, rgba(153, 153, 153, 0.56) 95.97%);
}

body {
    font-family: Poppins, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--Extension-Neutral-dark-20, #313131);
    background: var(--Extension-White-white, #FFF);
    min-height: 100vh;
}

.table {
    color: #4A496A;
}

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: #5651F3;
}

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

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

h1,
.h1 {
    font-size: 7.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1.48px;
}

h2,
.h2 {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.5;
}

.sub-title {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.5;
}

.sub-title-small {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
}

.text-body {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.text-body-small {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
}


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

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

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

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

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

##general style

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

.title {
    margin: 0 0 2.4rem;
    font-weight: 700;
    font-size: 4.8rem;
    line-height: 1.5;
    text-align: center;
}

.title span {
    color: var(--Extension-main, #13724C);
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-container .title {
    margin-bottom: 0;
    margin-right: 20px;
    text-align: left;
    flex: 0 0 auto;
}

.title-container .container-sub-title {
    margin-left: 20px;
    text-align: left;
    color: var(--Extension-Neutral-dark-20, #313131);
}

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

.btn {
    min-width: 25rem;
    position: relative;
    display: inline-block;
    padding: 1.6rem 2.4rem;
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: -0.36px;
    color: var(--Extension-White-white, #FFF);
    white-space: nowrap;
    line-height: 1.5;
    border-radius: 32px;
    background: var(--Extension-main, #13724C);
    border: none;
    transition: all 0.3s;
    outline: none;
}

.btn:hover {
    background: var(--Extension-main-32, #178C5D);
    color: var(--Extension-White-white, #FFF);
}

.btn:active {
    background: var(--Extension-main-36, #1A9D68);
    color: var(--Extension-White-white, #FFF);
}

.btn.disabled,
.btn[disabled] {
    color: var(--Extension-Neutral-dark-80, #C2C2C2);
    background: var(--Extension-White-white-90, #E6E6E6);
    cursor: default;
}

.btn.chrome-icon:before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 10px;
    background: url("../images/icon-chrome.svg") center no-repeat;
    background-size: cover;
    vertical-align: sub;
}

.btn-outline {
    padding: 1.5rem 2.3rem;
    background: transparent;
    border: 1px solid var(--Extension-main, #13724C);
    color: var(--Extension-main, #13724C);
}

.btn-outline:hover {
    background: transparent;
    border-color: var(--Extension-main-32, #178C5D);
    color: var(--Extension-main-32, #178C5D);
}

.btn-outline:active {
    background: transparent;
    border-color: var(--Extension-main-36, #1A9D68);
    color: var(--Extension-main-36, #1A9D68);
}

.btn-outline.disabled,
.btn-outline[disabled] {
    background: transparent;
    border-color: var(--Extension-White-white-90, #E6E6E6);
    color: var(--Extension-White-white-90, #E6E6E6);
    cursor: default;
}

/* Back To Top */
.return-to-top {
    position: fixed;
    bottom: -30px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--Extension-accent-90, #E5F7C4);
    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 var(--Extension-main, #13724C);
    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: linear-gradient(0deg, #E9ECF2 0%, #E9ECF2 100%), #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: var(--Extension-accent, #C3ED78);
    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(195, 237, 120, 0.7);
    box-shadow: 0 -10px 40px -5px rgba(195, 237, 120, 0.7);
}

.blob {
    position: absolute;
    background: var(--Extension-accent, #C3ED78);
    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 {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    padding: 2.4rem 0;
    background: var(--Extension-White-white, #FFF);
}

.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: 210px;
    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 .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 .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: var(--Extension-Neutral-dark-10, #1F1F1F);
    display: block;
    font-size: 2rem;
    line-height:  1.5;
    margin: 0 2.4rem;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: 0.2s ease;
    position: relative;
}

.site-header .site-main-menu li > a:hover {
    color: var(--Extension-main, #13724C);
}

.site-header .site-main-menu li > a.btn-header {
    padding: 1.6rem 2.4rem;
    font-size: 1.8rem;
    color: var(--Extension-White-white, #FFF);
}

.site-header .toggle-menu .bar {
    background: var(--Extension-main, #13724C);
}

.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: 10px 0;
}


.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 {
    display: flex;
    position: relative;
    overflow: hidden;
    margin: 3.2rem 0 0;
    background: #fff;
}

.fullscreen-wrapper {
    position: relative;
    z-index: 1;
    padding: 12.9rem 4rem 12rem;
    border-radius: 8rem;
    text-align: center;
    background: var(--Extension-accent-90, #E5F7C4) url("../images/home-page/fullscreen-bg.svg") center 65% no-repeat;
}

.fullscreen-title {
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
}

.fullscreen-text {
    margin-top: 3.2rem;
    color: #414141;
}

.fullscreen-buttons {
    margin-top: 5.6rem;
}

/*--------------------------------------------------------------
  ##  Top 5
--------------------------------------------------------------*/

.top-5-section {
    overflow: hidden;
    padding-top: 12rem;
    padding-bottom: 9.6rem;
}

.top-5-section .title-container {
    margin-bottom: 6rem;
}

.top-5-section .title-container .title {
    max-width: 47.5rem;
}

.top-5-section .title-container .container-sub-title {
    max-width: 41.7rem;
}

.slider-item {
    width: calc(25% - 2.4rem);
    padding: 2.4rem;
    margin: 0 1.2rem;
    border-radius: 3.2rem;
    height: auto;
    background: var(--Extension-White-white-97, #F7F7F7);
}

.slider-item-logo {
    display: flex;
    align-items: center;
    height: 48px;
    margin-bottom: 4.8rem;
}

.slider-item-logo img {
    vertical-align: top;
}

.slider-item .sub-title-small {
    margin-bottom: 1.6em;
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
}

.slider-item .text-body-small {
    color: var(--Extension-Neutral-dark-35, #595959);
}

.top-5-slider .slick-list {
    overflow: visible;
}

.top-5-slider .slick-track {
    display: flex;
}

.top-5-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: auto;
    top: calc(100% + 2.4rem);
}

.top-5-slider .slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top-5-slider .slick-dots li button {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: var(--Extension-accent, #C3ED78);
}

.top-5-slider .slick-dots li.slick-active button {
    width: 1.8rem;
    height: 1.8rem;
    background: #98DC1D;
}

.top-5-slider .slick-dots li button:before {
    content: none;
}

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

.hiw-section {
    padding-top: 16rem;
    padding-bottom: 16rem;
    background: var(--Extension-White-white-97, #F7F7F7);
}

.hiw-title {
    margin-bottom: 2.4rem;
    text-align: center;
}

.hiw-sub-section {
    max-width: 94rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--Extension-Neutral-dark-35, #595959);
    margin-bottom: 6px;
}

.hiw-item-wrap {
    display: flex;
    justify-content: space-between;
}

.hiw-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 2.4rem;
    width: calc((100% - 4.8rem) / 3);
    border-radius: 2.4rem;
    background: var(--Extension-White-white, #FFF);
}

.hiw-item-step {
    position: relative;
    display: inline-block;
    margin-bottom: 2.4rem;
    border-radius: 2.4rem;

    background: var(--Extension-Grey-gradient);
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
    font-size: 2rem;
    font-weight: 500;
    line-height: 150%;
}

.hiw-item-step span {
    display: block;
    margin: 1px;
    padding: 0.7rem 1.5rem;
    border-radius: 2.4rem;
    background: var(--Extension-White-white, #FFF);
}

.hiw-item-title {
    margin-bottom: 1.6rem;
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
}

.hiw-item-description {
    margin-bottom: 2.2rem;
    color: var(--Extension-Neutral-dark-35, #595959);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
}

.hiw-item-img {
    text-align: center;
    padding-bottom: 4.2rem;
}

.hiw-item-img img {
    vertical-align: top;
}

/*--------------------------------------------------------------
  ##  tips
--------------------------------------------------------------*/

.tips-section {
    padding-top: 12rem;
    padding-bottom: 9.6rem;
}

.tips-section .title-container {
    margin-bottom: 6rem;
}

.tips-section .title-container .title {
    max-width: 50rem;
}

.tips-section .title-container .container-sub-title {
    max-width: 57.7rem;
}

.tips-item-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
    grid-auto-rows: minmax(max-content, 2fr);
}

.tips-item {
    padding: 2.4rem;
    border-radius: 3.2rem;
    background: var(--Extension-accent-90, #E5F7C4);
}

.tips-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 2.4rem;
    border-radius: 5rem;
    background: var(--Extension-main-gradient, linear-gradient(130deg, #98DC1D 7.7%, #13724C 100.81%));
}

.tips-item .sub-title-small {
    margin-bottom: 1.6rem;
    color: #000;
}

.tips-item .text-body-small {
    color: var(--Extension-Neutral-dark-35, #595959);
}

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

.faq-section {
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.faq-section .title {
    margin-bottom: 6rem;
}

.faq #accordion {
    margin: 0 auto;
}

.card {
    position: relative;
    border-radius: 2.4rem;
    background: var(--Extension-White-white-97, #F7F7F7);
    border: none;
    transition: all 0.3s;
}

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

.card.active {
    background: var(--Extension-accent-90, #E5F7C4);
}

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

.card-btn {
    padding: 2.4rem 8rem 2.4rem 8.8rem;
    position: relative;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    min-height: 8rem;
    color: var(--Extension-main, #13724C);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    transition: all 0.3s;
    border: none;
    background: none;
}

.card-btn:before {
    content: "";
    position: absolute;
    width: 3.2rem;
    height: 3.2rem;
    top: 2.4rem;
    left: 3.2rem;
    background: url("../images/faq-icon.svg") center no-repeat;
    background-size: contain;
}

.card-btn-indicator {
    position: absolute;
    top: 2.4rem;
    right: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    background: url("../images/faq-arrow-icon.svg") center no-repeat;
    background-size: contain;
    transition: all 0.3s;
    border: none;
}

.card-btn-indicator svg path {
    transition: all 0.3s;
}

.card.active .card-btn-indicator {
    transform: rotate(180deg);
}

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

.card-body {
    padding: 0 8rem 2.4rem 8.8rem;
}

.card-body p {
    margin: 0;
    color: var(--Extension-Neutral-dark-35, #595959);
}

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

.engines-section {
    padding: 7.2rem 0 9.5rem;
}

.engines-section-content {
    border-radius: 8rem;
    padding: 12rem;
    background: var(--Extension-White-white-97, #F7F7F7);
}

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

.engines-descr {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    color: var(--Extension-Neutral-dark-35, #595959);
    text-align: center;
}

.engines-wrapper {
    max-width: 805px;
    margin: 6rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.engines-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.inner-page > .container {
    position: relative;
    z-index: 2;
}

.inner-page .title {
    text-align: center;
    text-transform: none;
    margin-bottom: 6rem;
}

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

.removed-page__title.title {
    text-align: left;
    margin-bottom: 2.4rem;
}

.removed-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 12rem;
    border-radius: 3.2rem;
    background: var(--Extension-accent-90, #E5F7C4);
}

.removed-wrapper .title {
    margin-bottom: 4.8rem;
    text-align: left;
}

.remove-page-content p {
    margin-bottom: 2.4rem;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--Extension-main, #13724C);
}

.remove-page-content .btn {
    min-width: 36rem;
}

.page-404-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4.8rem 12rem;
    border-radius: 3.2rem;
    background: var(--Extension-blue, #DAF2F9);
}

.page-404-wrapper .title {
    margin-bottom: 3.2rem;
    text-align: left;
}

.page-404-text p {
    max-width: 59.5rem;
    color: var(--Extension-Neutral-dark-35, #595959);
}

.contact-card-row {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
}

.contact-section .col-md-4 {
    padding: 0 1.2rem;
}

.contact-card {
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 3.2rem;
    background: var(--Extension-White-white-97, #F7F7F7);
}

.contact-card.center-card {
    background: var(--Extension-accent-90, #E5F7C4);
}

.contact-card-text {
    flex: 0 0 auto;
}

.contact-card-icon {
    display: flex;
    width: 4.8rem;
    height: 4.8rem;
    padding: 1rem;
    margin-bottom: 2.4rem;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: var(--Extension-main-gradient, linear-gradient(130deg, #98DC1D 7.7%, #13724C 100.81%));
}

.contact-card .sub-title-small {
    margin-bottom: 2.4rem;
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
}

.contact-card .text-body-small {
    margin-bottom: 7rem;
    color: var(--Extension-Neutral-dark-35, #595959);
}


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

.page-404__order {
    padding-left: 80px;
}

.page-404__title.title {
    margin-bottom: 3.3rem;
    text-align: left;
}

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

.thanks-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    grid-auto-rows: minmax(max-content, 2fr);
}

.thanks-block-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.4rem 4.5rem;
    border-radius: 2.4rem;
    background: var(--Extension-White-white-95, #F2F2F2);
}

.thanks-block-item.step {
    padding: 2.4rem;
    justify-content: flex-start;
    background: var(--Extension-accent-90, #E5F7C4);
}

.thanks-block-item .title {
    margin-bottom: 0;
}

.thanks-block-item .sub-title-small {
    margin-bottom: 2.4rem;
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
}

.thanks-block-item .text-body-small {
    margin-bottom: 2.4rem;
    color: var(--Extension-Neutral-dark-35, #595959);
}

.thanks-block-item .btn {
    min-width: 27.7rem;
    padding: 1.3rem 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.2rem;
    letter-spacing: -0.295px;
}

.thanks-block-item-step-title {
    display: flex;
    align-items: center;
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.5;
}

.thanks-block-item-step-title .count {
    display: flex;
    width: 4.8rem;
    height: 4.8rem;
    margin-right: 2.1rem;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--Extension-White-white, #FFF);
}

.thanks-block-img {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.thanks-block-img img {
    vertical-align: top;
}

.thanks-img-1 {
    margin-bottom: -3rem;
}

.thanks-img-2 {
    margin-top: -6rem;
    margin-bottom: -2rem;
}

.uninstall-image {
    margin: 0 auto;
    display: block;
    border-radius: 16px;
}

.uninstall-page__title {
    margin-bottom: 3.2em;
    text-transform: none;
}

.uninstall-page__text {
    text-align: center;
    margin: 0 auto 6rem;
    color: var(--Extension-Neutral-dark-35, #595959);
    max-width: 74.2rem;
}

.uninstall-page__text span {
    color: var(--Extension-main, #13724C);
}

.uninstall__hiw {
    justify-content: center;
}

.uninstall__hiw .hiw-item {
    background: var(--Extension-White-white-95, #F2F2F2);
    margin: 0 1.2rem;
}

.uninstall__hiw .hiw-item-img {
    padding-bottom: 0;
}

.uninstall__hiw .hiw-item:last-child .hiw-item-img img{
    margin-right: -2.4rem;
}

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


.terms-privacy p {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.terms-privacy  h3 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.terms-privacy table {
    margin-bottom: 3rem;
}

.page-terms p,
.page-terms ul,
.page-terms table {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 2.7rem;
}

.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: 1.8rem;
}

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

.footer {
    position: relative;
    background: var(--Extension-White-white-97, #F7F7F7);
}

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

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

.footer-link {
    display: inline-block;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 5.8rem;
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
    vertical-align: top;
    transition: all 0.3s;
}

.footer-link:hover {
    text-decoration: none;
    color: var(--Extension-main-36, #1A9D68);
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 8.5rem;
    margin-bottom: 3.2rem;
}

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

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

.footer-text {
    max-width: 662px;
    margin-bottom: 3.2rem;
    color: var(--Extension-Neutral-dark-35, #595959);
}

.footer-copyright {
    padding-top: 5.6rem;
    text-align: left;
    color: var(--Extension-Neutral-dark-10, #1F1F1F);
}

.footer-copyright p {
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.5;
    margin: 0;
}
