/* Front */

* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #3B3B3B;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

.table {
    color: #3B3B3B;
}

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: #3B3B3B;
}

p {
    margin: 0;
}

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

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

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

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

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

.title {
    font-weight: 600;
    font-size: 6.2rem;
    line-height: 1.2;
    text-wrap: balance;
    margin: 0;
    color: #3B3B3B;
}

.title-small {
    font-size: 4.2rem;
}

.mb-1 {
    margin-bottom: 16px;
}

.mb-2 {
    margin-bottom: 24px;
}

.mb-3 {
    margin-bottom: 48px;
}

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

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

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

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

.btn {
    display: inline-block;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #3B3B3B;
    line-height: 1.5;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 46px;
    background: linear-gradient(111deg, #B4D0FA 0%, #FEC5D0 100%), linear-gradient(111deg, #B4D0FA 0%, #FFF 100%);
    box-shadow: 4px 6px 11px 0 rgba(180, 208, 250, 0.50);
    transition: all 0.3s;
    border: 0;
    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 {
        text-decoration: none;
        box-shadow: none;
    }
}

@-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);
    }
}

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

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

/*--------------------------------------------------------------
  ##  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%;
    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: #FEC5D0;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform-origin: left top;
    transform: scale(0.9) translate(-50%, -50%);
    animation: blob-grow linear 3.4s infinite;
    border-radius: 50%;
    box-shadow: 0 -10px 40px -5px #FEC5D0;
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
    padding: 24px;
    position: absolute;
    z-index: 1;
    inset: 0 0 auto 0;
}
.site-logo {
    max-width: 154px;

    img {
        display: block;
    }
}

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

.site-header .header-inner .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .header-inner .site-nav .menu-wrapper {
    display: flex;
    align-items: 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: flex;
    align-items: center;
}

.toggle-menu {
    display: none;
}

.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 {
    display: inline-block;
    padding: 8px 12px;
    color: #3B3B3B;
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 38px;
    transition: 0.3s ease;

    &:focus {
        color: #3B3B3B;
    }
}

.site-header .site-main-menu li > a.active {
    background-color: #fff;
}


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

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

.site-header .header-inner .site-nav {
    justify-content: space-between;
}

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

.close-menu {
    display: none;
}

.hidden {
    display: none;
}

/*--------------------------------------------------------------
  ##  Fullscreen
  --------------------------------------------------------------*/
.fullscreen {
    position: relative;
    padding: 15vw 0;
    width: 100%;
    min-height: 100vh;
    background: url("../images/main-page/main-left.svg") no-repeat left bottom,
    url("../images/main-page/main-right.svg") no-repeat right bottom,
    linear-gradient(180deg, #F2F7FF 0%, #FFF 100%);
    background-blend-mode: darken;
    margin-bottom: -10vw;
}

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

.about-content {
    border-radius: 16px;
    background: linear-gradient(66deg, #FEC5CF 0%, #E4EFFF 72.91%);
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
}

.about-image {
    max-width: 50%;
}

.subtitle {
    color: #47A79F;
    font-size: 2.4rem;
}

.subtitle:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #47A79F;
    margin-right: 8px;
    vertical-align: middle;
}

.block-row {
    display: flex;
    gap: 55px;
    position: relative;
}

.block {
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient(101deg, #E6F0FF 1.01%, #FFF 49.91%);
    box-shadow: 9px 10px 21.2px 0 rgba(180, 208, 250, 0.20);
    min-height: 349px;
    flex: 1;
}

.block-title {
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.block-ghost {
    flex: 0 0 calc(50% - 105px);
}

.block-icon {
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #FEC5D0;
    flex-shrink: 0;
    box-shadow: 9px 12px 11.6px 0 rgba(254, 197, 208, 0.30);
}

.block-row:not(:last-child) .block-icon:after {
    content: "";
    position: absolute;
    top: 120px;
    display: block;
    border-left: 1px dashed #FEC5D0;
    height: calc(100% - 140px);
}

/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 24rem);
    position: relative;
    padding-top: clamp(10rem, 13vw, 20rem);
}

.inner-page:before {
    content: "";
    display: block;
    background: linear-gradient(180deg, #F2F7FF 0%, #FFF 100%);
    height: 100vh;
    position: absolute;
    inset: 0;
}

.inner-page .container {
    position: relative;
}

.contact-section .block {
    min-height: 0;
}

.contact-section .block .text {
    margin-bottom: 32px;
}

.thanks-page {
    background: url("../images/main-page/main-left.svg") no-repeat left bottom,
    url("../images/main-page/main-right.svg") no-repeat right bottom,
    linear-gradient(180deg, #F2F7FF 0%, #FFF 100%);
    background-blend-mode: darken;
}

.thanks-page .inner-page:before {
    display: none;
}

.uninstall-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.uninstall-item {
    flex: 0 0 calc(50% - 8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    padding: 40px 0 40px 40px;
    gap: 24px;
    border-radius: 16px;
    background: linear-gradient(76deg, #FEC5CF 0%, #E4EFFF 48.71%), linear-gradient(66deg, #FEC5CF 0%, #E4EFFF 72.91%), linear-gradient(103deg, #E6F0FF 0.78%, #FFF 100%);
}

.uninstall-item .subtitle {
    margin-bottom: 16px;
}

.uninstall-item .block-image {
    width: 60%;
    flex-shrink: 0;
}

.uninstall-item .block-image img {
    width: 100%;
}
    /*=================page terms===============================*/

.terms-privacy,
.terms-privacy p,
.terms-privacy table,
.terms-privacy ul,
.terms-privacy ol {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 140%;
    color: #3B3B3B;
}

th {
    font-weight: 700;
}

.terms-privacy .container {
    max-width: 100rem;
}

@media screen and (min-width: 992px) {
    .container-md {
        max-width: 90rem;
    }
}

@media screen and (min-width: 576px) {
    .container-sm {
        max-width: 50rem;
    }
}

/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/
footer {
    margin-top: 6rem;
    position: relative;
}

.footer-content {
    border-radius: 16px 16px 0 0;
    padding: 24px;
    background: #E4EFFF;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-link {
    color: #3B3B3B;
    display: block;
    line-height: 1.4;
    font-size: 1.6rem;
}

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

.footer-logo {
    display: block;
    width: 173px;
    margin: 0 auto 20px;
}

.footer-copyright {
    margin-top: 20px;
    text-align: center;
}

.footer-copyright p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}


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