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

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #2A2A2A;
    background: #C6E9FC;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.table {
    color: #2A2A2A;
}

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: #0060e7;
}

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

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

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

.container {
    width: 100%;
    max-width: 1368px;
    padding: 0 20px;
}

.title {
    font-weight: 800;
    font-size: 4.8rem;
    margin-bottom: 32px;
    line-height: 1.4;
    color: #313033;
}

.title-big {
    font-size: 8rem;
    line-height: 1.25;
}

.subtitle {
    font-weight: 600;
    font-size: 2.8rem;
    color: #313033;
}

.text {
    font-size: 2rem;
    line-height: 130%;
}

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

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

.btn {
    padding: 16px 24px;
    text-align: center;
    font-weight: 400;
    font-size: 1.8rem;
    color: #313033;
    white-space: nowrap;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 40px;
    max-width: 100%;
    transition: all 0.3s;
}

.btn:focus {
    border: 1px solid #83D3FC;
    color: #83D3FC;
}

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

@media (hover: hover) {
    .btn:hover {
        border: 1px solid #83D3FC;
    }
}

.btn-wide {
    width: 390px;
}
/* Back To Top */

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: #07A7F8;
    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: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}

.return-to-top:hover > i {
    text-shadow: 0px -50px #ffffff, 0px 0px #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: #07A7F8;
    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 #07A7F8;
    box-shadow: 0 -10px 40px -5px #07A7F8;
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 3.2rem 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.site-header .inverse-logo,
.site-header.header-light .inverse-logo {
    display: none !important;
}

.site-header.pix-header-fixed.header-light .sticky-logo {
    display: inline-block !important;
}

.site-header .header-inner {
    position: relative;
}

.site-header .header-inner .site-logo a {
    display: block;
}

.site-header .header-inner .site-logo a .sticky-logo {
    display: none;
}

.site-header .header-inner .site-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.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-mobile-logo {
    display: none;
}

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

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

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

.site-header .site-main-menu li > a {
    margin: 0 8px;
}

.site-header .site-main-menu li > a.current-page {
    color: #07A7F8;
    border-color: #07A7F8;
}

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

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

.logo-sticky {
    display: none;
}

.pix-header-fixed {
    padding: 1rem 0;
    z-index: 1000;
    background-color: #DDF2FD;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.2);
    -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;
}

.pix-header-fixed.site-header .site-main-menu li > a {
    font-size: 12px;
    padding: 12px;
}

.pix-header-fixed .header-inner .site-logo .logo-sticky {
    display: block;
}

.pix-header-fixed .header-inner .site-logo .logo-main {
    display: none;
}

.pix-header-fixed .site-logo .main-logo {
    display: none;
}

.pix-header-fixed .site-logo .sticky-logo {
    display: block;
}

.mask-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    top: 0;
    left: 0;
}

.close-menu {
    display: none;
}

.hidden {
    display: none;
}

/*--------------------------------------------------------------
  ##  Fullscreen
  --------------------------------------------------------------*/
.fullscreen {
    position: relative;
    z-index: 1;
    padding-top: 20rem;
    padding-bottom: 5rem;
    width: 100%;
    background: url('../images/main-page/fullscreen-bg-left.svg') left top no-repeat, url('../images/main-page/fullscreen-bg-right.svg') right top no-repeat;
}

.fullscreen:after {
    content: "";
    display: block;
    clear: both;
}

.fullscreen .title {
    font-size: 10rem;
    line-height: 1.6;
}

.fullscreen .title span {
    display: block;
}

.fullscreen .text {
    max-width: 470px;
    float: right;
    width: 50%;
    margin-top: 13rem;
}

.main-image {
    float: left;
    margin-top: -250px;
    max-width: 50%;
}

.btn-wrapper {
    margin-top: 32px;
}

.btn-main {
    min-width: 300px;
    background-color: #07A7F8;
    color: #fff;
    font-weight: 700;
}

.btn-main:hover {
    background-color: #39B8F9;
    color: #fff;
}
/*--------------------------------------------------------------
  ##  About
  --------------------------------------------------------------*/
.about-section {
    position: relative;
    padding: 12rem 0 28rem;
    background: url("../images/main-page/about-bg.png") left 110% no-repeat;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section:before,
.about-section:after {
    content: "";
    width: 100%;
    height: 150%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.about-section:before {
    left: 0;
    background-image: url("../images/main-page/about-bg-left.svg");
    background-position: top left;
}

.about-section:after {
    right: 0;
    background-image: url("../images/main-page/about-bg-right.svg");
    background-position: top right;
}

.about-section-content {
    max-width: 420px;
}

.about-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.about-list-item {
    flex: 0 0 calc(50% - 12px);
    border-radius: 16px;
    border: 2px solid #FFF;
    background: #FFF;
    padding: 32px;
}

.highlight {
    font-weight: 700;
    color: #07A7F8;
}

/*--------------------------------------------------------------
    ##  how it works
    --------------------------------------------------------------*/
.hiw-section {
    background: url("../images/main-page/hiw-bg.png"), url("../images/main-page/hiw-bg-left.svg"), url("../images/main-page/hiw-bg-right.svg");
    background-position: 100% 0, left top, right top;
    background-repeat: no-repeat;
}

.hiw-items {
    display: flex;
    gap: 32px;
    margin-bottom: 24rem;
    margin-top: 5rem;
}

.hiw-item {
    border-radius: 16px;
    border: 3px solid #FFF;
    background: #DDF2FD;
    padding: 24px;
    text-align: center;
    flex: 1;
}

.hiw-item-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.hiw-item-text {
    margin-top: 16px;
}

.hiw-item.-highlight {
    background: #fff;
}

.hiw-item.-highlight .hiw-item-title {
    color: #07A7F8;
}

.hiw-item.-rotate {
    transform: rotate(6deg) translateX(-60px);
}

.hiw-item.-small {
    border-radius: 80px;
    transform: rotate(-3deg);
}

.hiw-item.-small.-highlight {
    transform: rotate(4deg);
}

.step {
    text-align: center;
    padding: 9rem 7rem 0;
    border-radius: 40px;
    background: linear-gradient(180deg, #FFF 0%, rgba(200, 234, 252, 0.00) 100%);
}

.step.-first {
    margin-top: 120px;
}

.step-title {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 auto;
    font-size: 2.8rem;
    color: #313033;
    font-weight: 600;
    border-radius: 16px;
    border: 2px solid #FFF;
    background: #DDF2FD;
    padding: 40px 24px;
    box-shadow: 0px 4px 8px 0px rgba(154, 198, 222, 0.30);
}

.step-content {
    display: flex;
    margin-top: -40px;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.step-text {
    font-weight: 700;
    max-width: 300px;
    margin-bottom: 9rem;
    font-size: 2rem;
}

.step-image {
    position: relative;
}

.step-image:after {
    content: "";
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #D2EDFD 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    min-height: 100vh;
    padding: 15rem 0 5rem;
    display: flex;
    align-items: center;
    background: url('../images/terms/terms-bg-left.svg') left center no-repeat, url('../images/terms/terms-bg-right.svg') right center no-repeat;
}

.contact-section svg {
    max-width: 100%;
    height: auto;
    margin-bottom: 48px;
}

.contact-section-bg {
    position: fixed;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/main-page/hiw-bg.png') center no-repeat;
}

.contact-card {
    border-radius: 16px;
    border: 3px solid #FFF;
    background: #DDF2FD;
    padding: 24px;
}

.contact-card .subtitle {
    margin-bottom: 16px;
}

.contact-card .btn {
    width: 100%;
    margin-top: 16px;
}

.contact-card.-second {
    margin-top: 100px;
}

.uninstall-block {
    border-radius: 24px;
    border: 2px solid #FFF;
    background: #DDF2FD;
    padding: 32px 56px;
}

.uninstall-list {
    padding-left: 20px;
}

.uninstall-list li {
    margin-bottom: 10px;
}

.removed-section {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.removed-section:before,
.removed-section:after {
    content: "";
    display: block;
    width: 500px;
    height: 500px;
    position: fixed;
    top: 50%;
    background: url('../images/terms/privacy-bg-left.png') center/contain no-repeat;
}

.removed-section:before {
    left: 0;
    transform: translate(-50%, -50%);
}

.removed-section:after {
    right: 0;
    transform: translate(50%, -50%) rotate(180deg);
}

.removed-section .container {
    position: relative;
    z-index: 1;
}

.thanks-content {
    padding: 5rem 25% 10rem 0;
    background: url('../images/terms/privacy-bg-left.png') right center / contain no-repeat;
}

.thanks-content .text {
    margin-bottom: 3.9rem;
    font-size: 1.6rem;
    line-height: 174%;
    color: #687e97;
    text-align: left;
}

.thanks-image {
    padding: 5rem 0 5rem 3.3rem;
    background-color: #e9eff8;
}

/*=================page terms===============================*/
.terms-section {
    padding: 20rem 0 8rem;
}

.terms-section-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("../images/terms/terms-bg-left.svg"), url("../images/terms/terms-bg-right.svg"), url("../images/terms/privacy-bg-left.png"), url("../images/terms/privacy-bg-right.png");
    background-repeat: no-repeat;
    background-position: left center, right center, left 10%, right center;
}

.terms-privacy {
    border-radius: 40px;
    border: 3px solid #FFF;
    background: #DDF2FD;
    padding: 48px;
    position: relative;
    z-index: 1;
}

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

th {
    font-weight: 700;
}

h3 {
    font-size: 2.4rem;
}

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

.footer {
    border-top: 2px solid #FFF;
    background: #DDF2FD;
    padding: 11rem 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    margin-bottom: 32px;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright p {
    font-size: 12px;
}
