html {
    font-size: 10px;
}

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

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

#main_content {
    position: relative;
    overflow: hidden;
    background-image: url("../images/main-page/bg-others-page.svg");
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    background-attachment: fixed;

    &:has(.fullscreen, .thanks-section) {
        background-attachment: unset;
        background-image: unset;
    }

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

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

}

.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: 1560px;
    max-width: 100%;
    padding: 0 20px;
}

.title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 6rem;
    color: #004474;
}

.title-big {
    font-family: Inconsolata, sans-serif;
    font-size: 10rem;
    font-weight: 900;
    line-height: 10.5rem;
    color: #004474;
}

.title-big span {
    color: #48B3FF;
}

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

.title-small {
    background: #DEF1FF;
    font-family: Inconsolata, sans-serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 3.1rem;
    padding: 1rem 3rem;
    border-radius: 7rem;
}

.subtitle {
    font-size: 3rem;
    font-weight: 900;
    line-height: 3.6rem;
    color: #004474;
}

.text {
    font-family: Urbanist, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 3rem;
    color: #004474;
}

.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: 48px;
    white-space: nowrap;
    padding: 0 23px;
    border: 0;
    width: fit-content;
    background: #48B3FF;
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-family: Inconsolata, sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.6rem;
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 50px;
    transition: background 0.3s;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: -53px;
    width: 48px;
    height: 48px;
    background-color: #48B3FF;
    background-image: url("../images/main-page/btn-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding: 11px 12px;
    border-radius: 50%;
    transition: background-color 0.5s, width 0.5s, border-radius 0.5s;
    z-index: -1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -11px;
    width: 17px;
    height: 48px;
    background-image: url("../images/main-page/btn-glue.svg");
    background-repeat: no-repeat;
    background-position: center;
}

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

@media (hover: hover) {
    .btn:hover::after {
        background-color: #48B3FF;
        width: calc(100% + 53px);
        border-radius: 50px;
    }

    .btn:hover {
        text-decoration: none;
        color: #ffffff;
    }
}

/* Back To Top */

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

.blob {
    position: absolute;
    background: #48B3FF;
    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: 2rem 7.3rem 2rem 2rem;
    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;
}

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

.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;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.9rem;
    color: #004474;
    -webkit-transition: 0.2s ease;
    transition: all 0.3s;
    padding: 6.5px 14.5px;
    background-color: transparent;
    border-radius: 16px;
}

.site-header .site-main-menu li > a:focus {
    text-decoration: none;
    color: #48B3FF;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.5);
}

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

.site-header .site-main-menu li > a.active {
    text-decoration: none;
    color: #48B3FF;
    text-shadow: 0 0 1px #48B3FF;
    background: rgba(255, 255, 255, 0.5);
}

@media (hover: hover) {
    .site-header .site-main-menu li > a:hover {
        text-decoration: none;
        color: #48B3FF;
        text-shadow: 0 0 1px #48B3FF;
        background: rgba(255, 255, 255, 0.5);
    }
}

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

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

.pix-header-fixed {
    z-index: 1000;
    margin-top: 0;
    box-shadow: 0 4px 14px 0 rgba(112, 86, 242, 0.12);
    background-color: #FEFEFE;
    -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: 12rem 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;
}

.fullscreen::before {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    right: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    border-radius: 3rem;
    height: 100%;
    background: url("../images/main-page/bg-others-page.svg") left top / contain no-repeat, linear-gradient(119.66deg, #FDFEFF 17.44%, #C1E5FF 87.73%);
    z-index: -1;
}

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

.fullscreen .title-big {
    text-wrap: nowrap;
    margin-bottom: 2rem;
}

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

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

.benefit-section {
    margin-top: 10rem;
    padding: 10rem 0 10rem;
    position: relative;
    overflow: hidden;
}

.benefit-section .benefit-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3rem;
}

.benefit-section .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    width: 1580px;
    flex-wrap: wrap;
}

.benefit-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-section .title {
    max-width: 467px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.6rem;
    padding: 5rem 10rem 5rem 4rem;
    min-height: 309px;
    width: 507px;
    max-width: 100%;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: contain;
}

.benefit-card:nth-child(1) {
    background-image: url("../images/main-page/hiw-card-1.svg");
}

.benefit-card:nth-child(2) {
    background-image: url("../images/main-page/hiw-card-2.svg");
    width: 506px;
}

.benefit-card:nth-child(3) {
    background-image: url("../images/main-page/hiw-card-3.svg");
    padding-right: 2rem;
}

.benefit-card:nth-child(4) {
    padding-right: 2rem;
    background-image: url("../images/main-page/hiw-card-4.svg");
    width: 506px;
}

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

.hiw-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.hiw-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3rem;
    margin-bottom: 5rem;
}

.hiw-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4.2rem;
}

.hiw-list {
    display: flex;
    flex-direction: column;
    gap: 7.9rem;
    position: relative;
}

.hiw-item .subtitle {
    margin-bottom: 2rem;
}

.hiw-item .text {
    max-width: 506px;
}

.hiw-list::before {
    content: '';
    position: absolute;
    top: 95px;
    left: 45px;
    width: 1px;
    height: 95px;
    background: #48B3FF;
}

.hiw-item-number {
    flex-shrink: 0;
}
/*======================================================
================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: 15rem;
    align-items: flex-start;
    justify-content: center;
}

.contact-card {
    max-width: 100%;
    width: 507px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    background-image: url("../images/contact-page/contact-card-1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    padding: 5rem 6rem 5rem 5rem;
    box-sizing: border-box;
    position: relative;
    min-height: 350px;
}

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

.contact-card:nth-child(2) {
    position: relative;
    top: -10rem;
    background-image: url("../images/contact-page/contact-card-2.svg");
}

.contact-card .subtitle {
    margin-bottom: 2.6rem;
    font-weight: 700;
}

.contact-card__text {
    text-align: left;
    flex: 1 1 auto;
    max-width: 391px;
    margin-bottom: 2rem;
}

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

.section-404 .title-big {
    margin-bottom: 3rem;
    max-width: 712px;
}

.section-404 .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 6rem;
}

.section-404 .text {
    max-width: 690px;
    margin-bottom: 5rem;
}

.removed-section {
    padding: 17rem 0;
}

.removed-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    flex-wrap: wrap;
}

.removed-section .title-big {
    max-width: 638px;
    margin-bottom: 5rem;
}

.uninstall-section .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.uninstall-section .title-big {
    max-width: 100%;
    width: 700px;
}

.uninstall-section .uninstall-card {
    background-image: url("../images/uninstall-page/uninstall-card.svg");
    background-size: contain;
    background-repeat: no-repeat;
    padding: 5rem 13rem 5rem 5rem;
    min-height: 460px;
    max-width: 100%;
    width: 751px;
    position: relative;
}

.uninstall-card .subtitle {
    margin-bottom: 3rem;
}

.thanks-section {
    padding: 17rem 2rem 0;
    margin-bottom: 5rem;
    position: relative;
}

.thanks-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.thanks-section::before {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    right: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    border-radius: 3rem;
    height: 100%;
    background: url("../images/main-page/bg-others-page.svg") left top / contain no-repeat, linear-gradient(119.66deg, #FDFEFF 17.44%, #C1E5FF 87.73%);
    z-index: -1;
}

.thanks-section .title-big {
    max-width: 700px;
    margin-bottom: 3rem;
}

.thanks-section .text {
    max-width: 700px;
    margin-bottom: 5rem;
}
/*=================page terms===============================*/

.terms-privacy p,
.terms-privacy table,
.terms-privacy ul,
.terms-privacy ol {
    margin-bottom: 2.5rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: 3rem;
    color: #004474;
}

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

th {
    font-weight: 700;
}

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

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

.footer {
    background: linear-gradient(119.66deg, #FDFEFF 17.44%, #C1E5FF 87.73%);
    border-radius: 3rem;
    z-index: 3;
    margin-bottom: 2rem;
}

.container:has(.footer) {
    width: 1580px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 5rem 2rem 5rem;
}

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

.footer-link {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.9rem;
    color: #004474;
    padding: 6.5px 14.5px;
    background-color: transparent;
    transition: all 0.5s;
    border-radius: 1.6rem;
}

.footer-link:hover {
    text-decoration: none;
    color: #48B3FF;
    text-shadow: 0 0 1px #48B3FF;
    background: rgba(255, 255, 255, 0.5);
}

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

.footer-copyright {
    padding: 0 0 5rem 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2rem;
    text-align: center;
    color: #004474;
}


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

.modal-footer .btn {
    margin-right: 53px;
}
