html {
    font-size: 10px;
}

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.1rem;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #CDDCFE 0%, #8ED3F9 100%);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#main_content {
    position: relative;
    overflow: hidden;

    &:has(.uninstall-section, .removed-section, .contact-section, .section-404) {
        padding-top: 0;
    }

    &:has(.terms-privacy) {
        padding-top: 17rem;
    }

    &:has(.removed-section, .section-404) {

        background-image: url("../images/page-404/bg-404-page.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center 100px;
    }

    &:has(.contact-section) {
        background-image: url("../images/contact-page/contact-page-bg.svg");
        background-position: center 20px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    &:has(.uninstall-section) {
        background-image: url("../images/uninstall-page/uninstall-bg.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    &:has(.thanks-section) {
        background-image: url("../images/thanks-page/thanks-page-bg.svg");
        background-position: right top;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

.table {
    color: #000;
}

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: #7056F2;
}

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

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

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

.container {
    margin: 0 auto;
    width: 1360px;
    max-width: 100%;
    padding: 0 20px;
}

.title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.3rem;
    color: #000000;
}

.title-big span {
    color: #6758C8;
}

.title-big {
    font-size: 6rem;
    font-weight: 700;
    line-height: 7.3rem;
    color: #000000;
}

.title-medium {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 5.8rem;
    color: #000000;
}

.title-medium span,
.title-big span {
    background: linear-gradient(254.49deg, #27A8FD 39.85%, #FD20C6 106.18%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-small {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 3.9rem;
    background: linear-gradient(254.49deg, #27A8FD 39.85%, #FD20C6 106.18%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 3.9rem;
    background: linear-gradient(254.49deg, #27A8FD 39.85%, #FD20C6 106.18%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.1rem;
    color: #000000;
}

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

.text-left {
    text-align: left;
}

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

.flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.btn {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 6rem;
    white-space: nowrap;
    padding: 0 2rem;
    border: 0;
    background: linear-gradient(254.49deg, #568AFC 39.85%, #0CB9FE 106.18%);
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 4px 0 #0000001A;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.4rem;
    color: #FFFFFF;
    box-sizing: border-box;
    width: 100%;
    border-radius: 50px;
    max-width: 325px;
    transition: background 0.3s;
}

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

@media (hover: hover) {
    .btn:hover {
        color: #ffffff;
        text-decoration: none;
        background: linear-gradient(254.49deg, #568AFC 100%, #568AFC 100%);
    }
}

/* Back To Top */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-loader svg {
    display: none;
}

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

.blobs .blob-center {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    background: #568AFC;
    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 #568AFC;
    box-shadow: 0 -10px 40px -5px #568AFC;
}

.blob {
    position: absolute;
    background: #568AFC;
    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
  --------------------------------------------------------------*/

.header-inner {
    border-radius: 48px;
    padding: 12px 40px;
    background: #F0F5FF;
    transition: box-shadow 0.3s;
}


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

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

.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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

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

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

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

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

.site-header .site-main-menu li > a {
    margin: 0;
    display: inline-block;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.1rem;
    color: #000000;
    -webkit-transition: 0.2s ease;
    transition: all 0.3s;

    &:focus {
        text-decoration: none;
        color: #568AFC;
    }
}

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

.site-header .site-main-menu li > a.active {
    text-decoration: none;
    color: #568AFC;
}

@media (hover: hover) {
    .site-header .site-main-menu li > a:hover {
        text-decoration: none;
        color: #568AFC;
    }
}

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

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

.pix-header-fixed {
    z-index: 1000;
    background-color: transparent;
    -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;

    & .header-inner {
        box-shadow: 0 4px 14px 0 rgba(112, 86, 242, 0.12);
        background-color: #FEFEFE;
    }
}

.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;
}

/*--------------------------------------------------------------
  ##  Hero
  --------------------------------------------------------------*/

.fullscreen {
    height: 100%;
    position: relative;
    padding: 17rem 0 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    align-items: center;
    background-image: url("../images/main-page/hero-bg.svg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
}

.fullscreen .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.fullscreen .title-medium {
    margin-bottom: 2.4rem;
    max-width: 680px;
}

.fullscreen .text {
    max-width: 509px;
    text-align: left;
    margin-bottom: 3.2rem;
}

/*--------------------------------------------------------------
    ##  how it works
    --------------------------------------------------------------*/

.hiw-section {
    padding: 15rem 0 10rem;
    position: relative;
    overflow: hidden;
}

.hiw-section .container {
    display: flex;
    flex-direction: column;
}

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

.hiw-section .title {
    max-width: 414px;
    margin: 0 auto 10.5rem auto;
}

.hiw-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2.4rem;
    position: relative;
}

.hiw-card:nth-child(1) {
    margin-bottom: 5rem;
}

.hiw-image {
    position: relative;
}

.hiw-image::before {
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    width: 1000px;
    height: 735px;
    background-repeat: no-repeat;
}

.hiw-image.right::before {
    right: -100px;
    background-image: url('../images/main-page/hiw-back-right.svg');
    background-position: center right;
}

.hiw-image.left::before {
    background-image: url('../images/main-page/hiw-back-left.svg');
    background-position: center left;
    right: unset;
    left: -100px;
    top: -200px;
    z-index: -1;
    width: 927px;
}

.transparent-card {
    border: 1px solid #FFFFFF;
    background-color: transparent;
    max-width: 439px;
    width: 100%;
    min-height: 401px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 4rem;
    border-radius: 3rem;
}

.transparent-card .subtitle {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 3.9rem;
    color: #000000;
    background: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.transparent-card:nth-child(2) {
    max-width: 499px;
}

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

.contact-section {
    padding: 24rem 0;
}

.contact-cards {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    justify-content: center;
}

.contact-card {
    max-width: 632px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3.2rem;
    background: #FFFFFF;
    padding: 4.8rem;
    box-sizing: border-box;
    border-radius: 4.8rem;
    position: relative;
}

.contact-card:nth-child(1) {
    margin-top: 8rem;
}

.contact-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -18.9rem;
    right: 6.1rem;
    width: 26.7rem;
    height: 26.7rem;
    background-image: url("../images/contact-page/contact-card-icon-1.png");
    background-repeat: no-repeat;
    z-index: 1;
}

.contact-card:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: -18.9rem;
    right: 0;
    width: 25.4rem;
    height: 25.4rem;
    background-image: url("../images/contact-page/contact-card-icon-2.png");
    background-repeat: no-repeat;
    z-index: 1;
}

.contact-card .title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 5.3rem;
    color: #000000;
    text-align: center;
}

.contact-card__text {
    text-align: left;
    flex: 1 1 auto;
}


.uninstall-section .title-medium {
    max-width: 652px;
    margin: 0 auto 7.4rem;
}

.uninstall-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uninstall-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6.4rem;
    background-image: url("../images/uninstall-page/uninstall-icon.png");
    background-repeat: no-repeat;
    width: 405px;
    height: 405px;
}

.uninstall-section .text {
    max-width: 627px;
    margin: 0;
}

.section-404,
.removed-section {
    padding: 12rem 0;

}

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

.removed-section .title-big {
    max-width: 695px;
    margin: 0 auto 2.4rem;
}

.section-404 .text,
.removed-section .text {
    text-align: center;
    max-width: 519px;
    margin: 0 auto 2.4rem auto;
}

.removed-section .text {
    max-width: 362px;
}

.section-404 .btn,
.removed-section .btn {
    margin: 0 auto;
}

.thanks-section {
    padding: 17rem 0 5rem;
}

.thanks-block {
    display: flex;
    align-items: center;
    gap: 48px;
}

.thanks-content .title-big {
    margin-bottom: 2rem;
    max-width: 529px;
}

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

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

.terms-section .title-medium {
    margin-bottom: 4.8rem;
}

th {
    font-weight: 700;
}

.terms-privacy .container {
    width: 1020px;
}

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

.footer {
    background-color: #C7E7FC;
    border-radius: 3.2rem;
    z-index: 3;
    margin-bottom: 3.2rem;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 5.2rem 6rem 3.2rem;
}

.footer-content .flex-box {
    gap: 7.2rem;
}

.footer-link {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.1rem;
    color: #000000;
}

.footer-link:hover {
    text-decoration: none;
    color: #568AFC;
}

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

.footer-copyright {
    padding: 0 0 3.2rem 4.8rem;
    text-align: left;
}

.footer-copyright p {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.1rem;
    text-align: left;
    color: #000000;
}


/*--------------------------------------------------------------
  ##  MODAL WINDOW
  --------------------------------------------------------------*/

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 80%;
    max-width: 60rem;
    background-color: transparent;
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 0.5rem;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
}

.modal-header .close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    cursor: pointer;

    &:hover {
        opacity: 1;
    }
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}
