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

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

@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
    html {
        position: relative;
        overflow-x: hidden;
    }
}

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

.container {
    width: 100%;
    min-height: 100%;
    max-width: 140rem;
    padding: 0 2rem;
}

.container-terms {
    max-width: 76rem;
}

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

.empty {
    flex: 1 1 auto;
}

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

##general style

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

.title {
    font-weight: 700;
    font-size: 8rem;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 5rem;
    text-transform: capitalize;
}

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

.btn {
    padding: 2.2rem 4.6rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    color: #043639;
    white-space: nowrap;
    border: none;
    letter-spacing: -0.32px;
    line-height: 1;
    background: linear-gradient(263deg, #D8FBFF 6.2%, #09ACBC 111.46%);
    border-radius: 50px;
    width: fit-content;
    position: relative;
    transition: all 0.3s;
}

.btn span {
    position: relative;
}

.btn:before {
    content: "";
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: #2A2E39;
    position: absolute;
    opacity: 0;
    left: 2px;
    top: 2px;
    border-radius: 50px;
    transition: opacity 0.3s;
}

@media (hover: hover) {
    .btn:hover span {
        color: #fff;
        background: linear-gradient(263deg, #D8FBFF 6.2%, #09ACBC 111.46%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .btn:hover:before {
        opacity: 1;
    }
}

.btn:focus {
    background: #2A2E39;
    color: #4A5060;
}

    /* Back To Top */
.return-to-top {
    position: fixed;
    bottom: -30px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: #09ACBC;
    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 #09ACBC, 0 0 #09ACBC;
}

.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: #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: #09ACBC;
    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(66, 73, 218, 0.7);
    box-shadow: 0 -10px 40px -5px rgba(66, 73, 218, 0.7);
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/

.site-header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    padding: 32px 0;
    border-bottom: 1px solid transparent;
}

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

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

.header-container {
    padding: 0 7rem;
}

.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 {
    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;
    padding: 8px;
}

.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: 14px;
    padding: 0.6rem 1.6rem;
    font-weight: 400;
    transition: 0.3s ease;
    background: transparent;
    border-radius: 24px;
    margin: 0 4px;
}

.site-header .site-main-menu li > a:hover {
    text-decoration: none;
    color: #09ACBC;
}

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

.logo-sticky {
    display: none;
}

.pix-header-fixed {
    z-index: 1000;
    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: rgba(1, 3, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 0 0 24px 24px;
}

.pix-header-fixed.site-header .header-inner .site-nav .menu-wrapper:before {
    border-color: transparent;
}

.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: 2rem 0 10rem;
    display: flex;
    position: relative;
    background: url("../images/main-page/bg.svg") right top no-repeat;
    min-height: 100vh;
}

.decor {
    height: 120rem;
    width: 120rem;
    border-radius: 50%;
    background: rgba(15, 165, 174, 0.20);
    z-index: -1;
    filter: blur(10rem);
    position: absolute;
}

.fullscreen .decor {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.fullscreen-content {
    background: rgba(255, 255, 255, 0.05);
    border: solid 1px rgba(255, 255, 255, 0.27);
    backdrop-filter: blur(5px);
    border-radius: 2rem;
    padding: 20rem 9rem 9rem;
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
}

.fullscreen-text {
    margin-bottom: 5rem;
    font-size: 1.8rem;
}

.fullscreen-col {
    position: static;
}

.fullscreen-img {
    position: absolute;
    height: 100%;
    top: -20%;
    left: 60%;
    z-index: 3;
}

.fullscreen-btn {
    position: relative;
    z-index: 4;
}

.fullscreen-img img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
  ##  Hiw
  --------------------------------------------------------------*/
.about-section .decor {
    bottom: 0;
    right: 0;
    transform: translate(30%, 50%);
}

.feature {
    padding: 0 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    position: relative;
    margin-bottom: 5rem;
    width: fit-content;
}

.feature-icon img {
    position: relative;
}

.feature-icon:before {
    content: "";
    display: block;
    background-color: #09ACBC;
    filter: blur(20px);
    width: 80%;
    height: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-25%, -50%);
}

.feature-title {
    font-weight: 700;
    color: #09ACBC;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    min-height: 6rem;
}

.highlight {
    background: linear-gradient(88deg, #09ACBC 46.65%, #044F56 127.87%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
  ##  Keep
  --------------------------------------------------------------*/
.steps-section .decor {
    bottom: 0;
    left: 0;
    transform: translate(-30%, 0);
}

.steps {
    background-color: rgba(255, 255, 255, 0.05);
    border: solid 1px rgba(255, 255, 255, 0.27);
    backdrop-filter: blur(5px);
    border-radius: 2rem;
    padding: 8rem 12rem;
}

.step {
    position: relative;
}

.step:not(.-last):before {
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: -2.6rem;
    top: 0;
    background-color: #09acbc;
}

.step-content {
    padding-left: 8rem;
}

.step-title {
    font-size: 3.2rem;
    color: #09acbc;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.step-label {
    color: #09ACBC;
    font-weight: 700;
    font-size: 2.4rem;
    position: relative;
    margin-bottom: 5rem;
}

.step-label:before {
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #09ACBC;
    margin-right: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-4rem);
}

.step-text {
    max-width: 40rem;
}

.step-btn {
    margin-top: 5rem;
}

/*--------------------------------------------------------------
    ##  Faq's
    --------------------------------------------------------------*/
.faq-section {
    overflow: hidden;
    padding-bottom: 0;
}

.faq-content {
    background-color: rgba(255, 255, 255, 0.05);
    border: solid 1px rgba(255, 255, 255, 0.27);
    backdrop-filter: blur(5px);
    padding: 10rem 9rem;
    border-radius: 2rem;
}

.card {
    position: relative;
    border: none;
    transition: all 0.3s;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.card-btn {
    padding: 3.8rem 8rem 3.8rem 0;
    position: relative;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    font-size: 2.4rem;
    line-height: 1;
    transition: all 0.3s;
    font-weight: 700;
    color: #fff;
    border: none;
    background: none;
}

.card-btn-indicator {
    position: absolute;
    top: 2.4rem;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.card-btn:hover .card-btn-indicator {
    background: #272937;
}

.card-btn-indicator:before,
.card-btn-indicator:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ECECFB;
    transition: all 0.3s;
}

.card-btn-indicator:before {
    width: 3px;
    height: 17px;
}

.card-btn-indicator:after {
    height: 3px;
    width: 17px;
}

.card.active {
    background: transparent;
}

.card.active .card-btn {
    color: #09ACBC;
    padding-bottom: 0;
}

.card.active .card-btn-indicator:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.card.active .card-btn-indicator:after {
    transform: translate(-50%, -50%) rotate(180deg);
}

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

.card-body {
    padding: 2.2rem 10rem 3.6rem 0;
}

.card-body p {
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #FFFFFF;
}

/*--------------------------------------------------------------
    ##  Support
    --------------------------------------------------------------*/
.support-section .decor {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

.support-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding: 0 9rem;
}

.support-item {
    flex: 0 1 33.333%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.27);
    backdrop-filter: blur(3px);
}

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

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

.inner-page-content {
    position: relative;
    padding: 15rem 4rem 10rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.27);
    backdrop-filter: blur(5px);
    border-radius: 2rem;
    min-height: 66vh;
}

.inner-page.-thanks {
    background-image: url("../images/main-page/bg.svg");
    background-position: right top;
    background-repeat: no-repeat;
}

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

.mb-6 {
    margin-bottom: 5rem;
}

.contact-card {
    padding: 2.4rem 3.2rem 3.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card-second {
    background: #242830;
}

.contact-card-title {
    margin-bottom: 2rem;
    margin-top: 5rem;
    font-size: 2.4rem;
    color: #09ACBC;
    font-weight: 700;
}

.contact-card__text {
    margin-bottom: 2.4rem;
    font-size: 14px;
}

.contact-card__button {
    margin-top: auto;
}

.image-404 {
    max-height: 44vh;
}

.text-404 {
    font-size: 18px;
}

.inner-page .decor {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.uninstall-image {
    border-radius: 16px;
    border: 1px solid #D6EBE9;
    box-shadow: -9px 38px 38px 0px rgba(0, 0, 0, 0.32);
}

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

.terms-privacy {
    max-width: 76rem;
    margin: 0 auto;
}

.faq-section .decor {
    left: 0;
    bottom: 0;
    transform: translate(-50%, 50%);
}

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

.footer {
    margin-top: 5rem;
}

.main-page .footer {
    margin-top: 10rem;
}

.footer-btn {
    margin-bottom: 5rem;
}

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

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

.footer-link {
    font-size: 14px;
    line-height: 2;
    margin: 0.8rem 0;
    color: #fff;
    transition: all 0.3s;
}

.footer-link:hover {
    text-decoration: none;
    color: #09ACBC;
}

.footer-logo {
    display: block;
    margin-bottom: 1.8rem;
}

.footer-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
}

.footer-btn {
    text-align: right;
}

.footer-btn-mob {
    display: none;
}

.footer-copyright {
    color: #fff;
    margin-top: 3rem;
}

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

.fullscreen-img.-mobile {
    display: none;
}