html {
    font-size: 10px;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    background: #FFFFFF;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#main_content {
    position: relative;
    overflow: hidden;
    z-index: 1;

    &:has(.fullscreen) {
        background: url("../images/main-page/hero-shape.svg") no-repeat top center / contain;
    }

    &:has(.contact-section, .uninstall-section) {
        background: url("../images/inner-page/inner-page-shape.svg") no-repeat top center / cover;
    }

    &:has(.section-404) {
        background: url("../images/page-404/section-404-shape.svg") no-repeat top center / cover;
    }

    &:has(.removed-section) {
        background: url("../images/removed-page/removed-shape.svg") no-repeat top center / cover;
    }

    &:has(.thanks-section) {
        background: url("../images/thank-page/thank-shape.svg") no-repeat top center / cover;
    }

    &:has(.terms-privacy) {
        padding: 10.2rem 2rem 0;
    }
}

.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: 1rem 1.2rem;
    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;
    max-width: 1320px;
    width: 100%;
    padding: 0 2rem;
}

.title {
    color: #212121;
    font-weight: 800;
    font-size: 5rem;
    line-height: 140%;
    text-align: center;
    text-transform: capitalize;
}

.title-small {
    font-size: 3.6rem;
    line-height: 140%;
    font-weight: 600;
    color: #212121;
}

.subtitle {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 150%;
    color: #212121;
}

.text {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 150%;
    color: #212121;
}

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

.site-logo {
    height: 3.2rem;
}

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

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.6rem;
    border-radius: 3.8rem;
    background-color: #0D8CF1;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 140%;
    text-align: center;
    gap: 1rem;
    vertical-align: middle;
    color: #ffffff;
    padding: 0 5.6rem;
    transition: all 0.3s;
    max-width: 26rem;
    width: 100%;
    text-wrap: nowrap;
    border: 1px solid transparent;
}

.btn svg path {
    fill: #ffffff;
    transition: all 0.3s;
}

@media (hover: hover) {
    .btn:hover {
        background-color: transparent;
        text-decoration: none;
        color: #0D8CF1;
        border-color: #0D8CF1;
    }

    .btn:hover svg path {
        fill: #0D8CF1;
    }
}

/* Back To Top */

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: #0D8CF1;
    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: #0D8CF1;
    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 #0D8CF1;
    box-shadow: 0 -10px 40px -5px #0D8CF1;
}

.blob {
    position: absolute;
    background: #0D8CF1;
    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 {
    padding: 1.6rem 2.4rem;
    transition: all 0.3s;
    background: #FFFFFF;
    box-shadow: 0 0 14px 0 #0000001C;
    border-radius: 7rem;
}

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

.site-header.container {
    box-sizing: border-box;
    padding: 0;
    max-width: 1320px;
}

.site-header .container {
    max-width: unset;
}

.toggle-menu {
    display: none;
}

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

.site-header .site-main-menu li {
    position: relative;
    padding: 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;
    color: #212121;
    -webkit-transition: 0.2s ease;
    transition: all 0.3s;
    background-color: transparent;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 150%;
}

.site-header .site-main-menu li > a:focus {
    text-decoration: underline;
}

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

.site-header .site-main-menu li > a.active {
    text-decoration: underline;
}

@media (hover: hover) {
    .site-header .site-main-menu li > a:hover {
        text-decoration: underline;
    }
}

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

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

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

.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: 10.2rem 0 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fullscreen .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    min-height: 80rem;
}

.fullscreen .container::before {
    content: '';
    position: absolute;
    width: 82rem;
    height: 66.3rem;
    top: 50%;
    right: -30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../images/main-page/hero-image.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 2.4rem;
    z-index: 0;
}

.fullscreen-text-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
}

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

.fullscreen .text {
    max-width: 409px;
    margin-bottom: 24px;
}

/*--------------------------------------------------------------
    ##  About section
    --------------------------------------------------------------*/

.about-section {
    padding: 12.4rem 0 0;
    position: relative;
    overflow: hidden;
}

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

.about-card .subtitle {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 140%;
    text-transform: capitalize;
}

.about-card-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.6rem;
    width: 100%;
    margin: 0 auto;
}

.about-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    flex: 1;
}

.about-card-inner {
    border-radius: 3.2rem;
    max-width: 416px;
    width: 100%;
    min-height: 461px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-card:nth-child(1) .about-card-inner {
    background: url("../images/main-page/about-image-1.png") center center / contain no-repeat, linear-gradient(180deg, rgba(202, 230, 252, 0) 0%, #C0E1FC 100%);
}

.about-card:nth-child(2) .about-card-inner {
    background: url("../images/main-page/about-image-2.png") center center / contain no-repeat, linear-gradient(180deg, rgba(202, 230, 252, 0) 0%, #C0E1FC 100%);
}

.about-card:nth-child(3) .about-card-inner {
    background: url("../images/main-page/about-image-3.png") center bottom / contain no-repeat, linear-gradient(180deg, rgba(202, 230, 252, 0) 0%, #C0E1FC 100%);
}

.about-card .number-tag {
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 150%;
    color: #18A6C0;
    margin-bottom: 2.4rem;
}

/*DOWNLOAD  SECTION*/
.download-section {
    padding: 12.4rem 2rem 0;
    position: relative;
    overflow: hidden;
}

.download-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #B3D9FB;
    border-radius: 32px;
    background-image: url("../images/main-page/download-section-shape.svg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 12.4rem 2rem;
    max-width: 1280px;
}

.download-section .container .title {
    max-width: 610px;
    margin-bottom: 16px;
}

.download-section .container .text {
    max-width: 356px;
    margin-bottom: 16px;
}

/*FAQ SECTION*/
.faq-section {
    padding: 14.8rem 0;
}

.faq-section .title-small {
    text-transform: capitalize;
}

.faq-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.8rem;
}

.accordion {
    width: 100%;
    max-width: 1048px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.accordion-item {
    padding: 2.4rem;
    position: relative;
    background-color: #ECF6FE;
    border-radius: 2.4rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.accordion-header {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    display: none;
    padding: 1.6rem 0 0 0;
    max-width: 740px;
}

.accordion .question {
    text-align: left;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 150%;
    color: #000000;
}

.accordion .answer {
    text-align: left;
    margin: 0;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
    color: #000000;
}

.accordion-content p {
    margin: 0;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active {
    border-color: #B3D9FB;
}

.icon-container {
    flex-shrink: 0;
    position: relative;
    width: 19px;
    height: 19px;
}

.icon-minus,
.icon-plus {
    border-radius: 2px;
    position: absolute;
    background-color: #000000;
    transition: all 0.3s ease;
}

.icon-minus {
    top: 50%;
    left: 0;
    width: 19px;
    height: 2px;
    transform: translateY(-50%);
}

.icon-plus {
    top: 0;
    left: 50%;
    width: 2px;
    height: 19px;
    transform: translateX(-50%);
    opacity: 1;
}

.accordion-item.active .icon-minus {
    opacity: 1;
}

.accordion-item.active .icon-plus {
    opacity: 0;
}

/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    min-height: 760px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 102px 0 16px;
}

.contact-section {
    padding: 102px 20px 16px;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 760px;
}

.contact-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-direction: row;
}

.contact-card {
    flex: 1;
    max-width: 392px;
    width: 100%;
    min-height: 355px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    box-sizing: border-box;
    position: relative;
    border-radius: 24px;
    background: #FFFFFF;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    z-index: -1;
}

.contact-card .subtitle {
    margin-bottom: 1.6rem;
    font-size: 3.6rem;
    line-height: 140%;
    font-weight: 600;
}

.contact-section .title {
    margin-bottom: 5.6rem;
}

.contact-card__text {
    text-align: left;
    margin-bottom: 3.9rem;
}

.contact-card .btn {
    color: #0D8CF1;
    border: 1px solid #0D8CF1;
    border-radius: 4rem;
    background-color: transparent;
    min-height: 5.1rem;
    max-width: unset;
}

@media (hover: hover) {
    .contact-card .btn:hover {
        background-color: #0D8CF1;
        color: #FFFFFF;
    }
}

.contact-card__img {
    margin-bottom: 3.9rem;
}

.section-404 {
    padding: 19.2rem 2rem 12.4rem;
}

.section-404 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 660px;
}

.section-404 .btn {
    margin: 0 auto 7.3rem;
}

.section-404 .title {
    max-width: 597px;
    margin-bottom: 3.2rem;
}

.thanks-section {
    padding: 19.2rem 2rem 12.4rem;
}

.thanks-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 660px;
}

.thanks-section .btn {
    margin: 0 auto 7.3rem;
}

.thanks-section .title {
    max-width: 597px;
    margin-bottom: 3.2rem;
}

.removed-section {
    padding: 16.4rem 2rem 1.6rem;
}

.removed-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 760px;
    gap: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.removed-section .title {
    margin-bottom: 24px;
    max-width: 405px;
}

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

.uninstall-section.inner-page {
    padding: 15.2rem 2rem 12.5rem;
}

.uninstall-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 758px;
}

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

.uninstall-section .text {
    max-width: 584px;
    margin-bottom: 3.2rem;
}

.uninstall-card-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.uninstall-card-wrapper .uninstall-card {
    max-width: 416px;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-color: #FFFFFF;
    border-radius: 3.2rem;
    z-index: 1;
    padding: 3.2rem;
}

.img-wrapper {
    display: flex;
}

.uninstall-section .uninstall-card-wrapper .uninstall-card .uninstall-number {
    background-color: #0D8CF1;
    width: 4.8rem;
    height: 4.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 100%;
    border-radius: 50%;
    margin-bottom: 3.2rem;
    color: #ffffff;
}

.uninstall-card .subtitle {
    min-height: 6.2rem;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 130%;
    color: #000000;
    margin-bottom: 1.6rem;
}

.uninstall-section .uninstall-card .text {
    min-height: 9.6rem;
    margin-bottom: 3.2rem;
    font-weight: 400;
}

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

.terms-privacy p,
.terms-privacy table,
.terms-privacy ul,
.terms-privacy ol {
    margin-bottom: 2.5rem;
    color: #212121;
    font-weight: 500;
    font-size: 1.6rem;
}

.terms-section .title {
    margin-bottom: 48px;
}

th {
    font-weight: 700;
}

.terms-section {
    min-height: 760px;
    margin: 0 auto 16px;
    width: 100%;
    padding: 72px 0;
}

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

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

.footer {
    z-index: 3;
    border-top: 1px solid #B3D9FB;
    background-color: #FFFFFF;
    background-image: url("../images/main-page/footer-shape.svg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px 24px 0 0;
}

.container:has(.footer) {
    max-width: 1300px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 24px 56px;
}

.footer-content .flex-box {
    gap: 24px;
}

.footer-link {
    color: #212121;
    padding: 1.2rem 2.4rem;
    background: #ECF6FE;
    border-radius: 24px;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 150%;
}

.footer-link:hover {
    text-decoration: none;
    border-color: rgba(149, 216, 228, 1);
}

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

.footer-copyright {
    padding: 8px 0 16px 56px;
    text-align: left;
}

.footer-copyright p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: left;
    color: rgba(0, 0, 0, 0.7);
}


/*--------------------------------------------------------------
  ##  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;
}
