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

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

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

#main_content {
    padding-top: 12rem;

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

.home-page #main_content {
    padding-top: 18rem;
}

.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 {
    margin-top: 0;
}

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

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

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

.title {
    font-weight: 600;
    font-size: 3.8rem;
    line-height: 1.1;
    color: #000;
    margin-bottom: 56px;
}

.title-big {
    font-size: 4.8rem;
}

.subtitle {
    margin-bottom: 1.6rem;
    font-weight: 600;
    font-size: 2.4rem;
}

.text {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 130%;
}

.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: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.8rem;
  color: #fff;
  line-height: 5.8rem;
  white-space: nowrap;
  padding: 0 32px 0 42px;
  border: 0;
  background-color: #7056F2;
  border-radius: 24px;
  max-height: 5.4rem;
  min-width: 29rem;
  transition: all 0.3s;
  cursor: pointer;
}

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

.btn:active {
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .btn:hover {
        background-color: #5F42F0;
        color: #ffffff;
        text-decoration: none;
    }
}

.btn-wrapper {
    margin-top: 2rem;
}

/* Back To Top */

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

.blob {
    position: absolute;
    background: #5F42F0;
    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;
    background: #FFF;
    box-shadow: 0px 4px 14px 0px rgba(112, 86, 242, 0.12);
    padding: 12px 32px;
}


.site-header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2.6rem 0;
    -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;
}

.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 33px;
    display: inline-block;
    padding: 0;
    color: #000;
    font-size: 1.6rem;
    -webkit-transition: 0.2s ease;
    transition: 0.3s ease;

    &:focus {
        text-decoration: underline;
    }
}

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

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

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

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

.pix-header-fixed {
    padding: 1.2rem 0;
    z-index: 1000;
    background-color: #fff;
    -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
  --------------------------------------------------------------*/

.hero {
    padding-bottom: 48px;
}
.hero-content {
    background: url('../images/main-page/main-hero-back.svg') no-repeat top left;
    position: relative;
}

.hero-title {
    padding-left: 280px;
    max-width: 710px;
    padding-top: 30px;
}

.hero-title .title {
    margin-bottom: 0;
}

.hero-link {
    position: absolute;
    display: grid;
    width: 214px;
    height: 202px;
    place-items: center;
    border-radius: 29px;
    background: linear-gradient(180deg, #E6E7FE 0%, #FFF 100%);
}

.hero-text {
    padding: 55px;
    width: 35%;
    margin-top: 20px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
}

/*--------------------------------------------------------------
  ##  About
  --------------------------------------------------------------*/
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.feature {
    border-radius: 20px;
    border: 1px solid #C8D0FE;
    padding: 20px;
    flex: 0 0 calc(38% - 18px);
}

.feature-just-icon {
    flex-basis: calc(24% - 12px);
    padding: 0;
    display: grid;
    place-items: center;
}
/*--------------------------------------------------------------
    ##  how it works
    --------------------------------------------------------------*/

.hiw-item {
    position: relative;
    display: flex;
    margin-bottom: 24px;
}

.hiw-item-content {
    width: 60%;
    margin-right: -100px;
    padding: 48px;
    padding-right: 24%;
    background: url("../images/main-page/hiw-bg-1.svg") left/contain no-repeat;
    background-position: left top;
}

.hiw-item:nth-child(1) .hiw-item-content,
.hiw-item:nth-child(3) .hiw-item-content {
  margin-right: 0;
  margin-left: -100px;
  text-align: right;
  padding-right: 48px;
  padding-left: 24%;
  background-image: url("../images/main-page/hiw-bg-2.svg");
}

.hiw-item-content .subtitle {
    font-size: 2.8rem;
}

.hiw-item-content .text {
    font-size: 2rem;
}

.hiw-image {
    right: 0;
    top: 0;
}

/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    min-height: calc(100vh - 183px);
    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: 20rem 0;
}

.contact-cards {
    display: flex;
}

.contact-card {
    margin: 0 auto;
    padding: 48px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    border-radius: 16px;
    background: linear-gradient(180deg, #E6E7FE 0%, #FFF 100%);
}

.contact-card + .contact-card {
    margin-left: 24px;
}

.contact-card .title {
    margin-bottom: 24px;
}

.contact-card__text {
    margin-bottom: 3.2rem;
    font-size: 1.6rem;
    flex: 1 1 auto;
}

.uninstall-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.uninstall-content .title {
    margin-bottom: 0;
}

.uninstall-content-inner {
    position: relative;
    padding: 60px 0 0 60px;
}

.uninstall-image {
    margin-left: 300px;
    margin-top: 40px;
}

.uninstall-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.uninstall-square {
    width: 207px;
    height: 195px;
    border-radius: 30px;
    background: #E6E7FE;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.uninstall-list {
    border-radius: 32px;
    background: #7056F2;
    padding: 48px;
    color: #fff;
    max-width: calc(100% - 820px);
}

.uninstall-list ol {
    margin: 0;
}

.uninstall-list li {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.uninstall-list li:last-child {
    margin-bottom: 0;
}

.uninstall-list svg {
    display: inline;
    vertical-align: middle;
}

.section-404 {
    padding: 20rem 0;
}

.section-404 .image-404 {
    margin: 48px auto;
}

.section-404 .title {
    margin-bottom: 0;
}

.section-404 .text {
    max-width: 600px;
    margin: 24px auto;
    font-size: 1.6rem;
    line-height: 1.3;
}

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

.thanks-content {
  padding-right: 10%;
  max-width: 40%;
  flex: 1;
  margin-bottom: 10%;
}

.thanks-content .title {
    margin-bottom: 24px;
}

.thanks-content .text {
    margin-bottom: 32px;
}

.thanks-image-block {
    position: relative;
    flex: 1;
}

.thanks-shield {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-80%);
    max-width: 30%;
}

.highlight {
    color: #7056F2;
}

.removed-image {
    background: url("../images/terms-page/back.svg") center/contain no-repeat;
    text-align: center;
    min-height: calc(100vh - 500px);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*=================page terms===============================*/

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

th {
    font-weight: 700;
}

.terms-section {
    padding-top: 5rem;
    background: url("../images/terms-page/back.svg") left 30%, url("../images/terms-page/back.svg") right 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

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

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

.footer {
    border-radius: 32px 32px 0 0;
    border-top: 1px solid #C8D0FE;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
}

.footer-link {
    margin: 0 24px 18px 24px;
    color: #000;
    display: block;
    line-height: 1.5;
    font-size: 1.6rem;
}

.footer-link:last-child {
    margin-bottom: 0;
    margin-right: 0;
}

.footer-link:hover {
    text-decoration: underline;
}

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

.footer-copyright {
    padding-bottom: 32px;
    text-align: center;
}

.footer-copyright p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #000;
}


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