/* Front */
* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    line-height: 1.5;
    margin: 0;
    color: #000;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.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: #000;
}

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

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

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

p {
    text-wrap: pretty;
}

.container {
    width: 100%;
    max-width: 1360px;
    padding: 0 2rem;
    margin: 0 auto;
}

.title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 5.6rem;
    line-height: 1.2;
    color: #002242;
    text-wrap: balance;
}

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

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

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Space Grotesk', sans-serif;
    padding: 1.2rem 2.4rem;
    text-align: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #ffffff;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 100px;
    transition: all 0.3s;
}

.btn::before,
.btn::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, #5084AB 0%, #42B3D3 100%);
    border-radius: 100px;
    z-index: -1;
}

.btn::after {
    opacity: 0;
    background-color: #42B3D3;
    transition: opacity.3s ease-in-out;
}

.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: #42B3D3;
        text-decoration: none;
    }

    .btn:hover::after {
        opacity: 1;
    }
}

.mb-1 {
    margin-bottom: 1.6rem;
}

.mb-2 {
    margin-bottom: 3.2rem;
}

.mb-3 {
    margin-bottom: 4.8rem;
}


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

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

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

/* Back To Top */

.return-to-top {
    position: fixed;
    bottom: -3rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    background: #42B3D3;
    line-height: 4.2rem;
    text-align: center;
    cursor: pointer;
    z-index: 998;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease ;
}

.return-to-top > i {
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    width: inherit;
    height: inherit;
    line-height: inherit;
    display: block;
    color: transparent;
    text-shadow: 0px 0px #ffffff, 0px 50px #ffffff;
    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;
    transform: rotate(135deg);
    border-top: 0;
    border-right: 0;
    top: 1.8rem;
    left: 1.6rem;
    position: absolute;
}

.return-to-top:hover {
    transform: scale(1.07);
    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;
    }
}

@keyframes pixFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pixFade {
    animation-name: pixFade;
}

.pixFadeUp {
    animation-name: pixFadeUp;
}

/*--------------------------------------------------------------
  ##  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: #42B3D3;
    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%;
    -webkit-box-shadow: 0 -10px 40px -5px #42B3D3;
    box-shadow: 0 -10px 40px -5px #42B3D3;
}

.blob {
    position: absolute;
    background: #42B3D3;
    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;
}

@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 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 {
    background: transparent;
    padding: 1.2rem 0;
}

.site-logo {
    max-width: 215px;
}

.site-logo img {
    display: block;
}

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

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

.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 .site-main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

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

.site-header .site-main-menu li > a {
    margin: 0 1.5rem;
    display: inline-block;
    padding: 0;
    color: #002242;
    font-weight: 500;
    font-size: 1.6rem;
    transition: 0.3s ease;
}

.site-header .site-main-menu li > a.active {
    color: #808080;
    position: relative;
}

.site-header .site-main-menu li > a.active:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #808080 0%, #AEAEAE 100%);
}

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

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

.toggle-menu {
    display: none;
}

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

.logo-sticky {
    display: none;
}

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

.close-menu {
    display: none;
}

.hidden {
    display: none;
}

/*--------------------------------------------------------------
  ##  Fullscreen
  --------------------------------------------------------------*/

.title-highlight {
    background-image: linear-gradient(270deg, #5084AB 0%, #42B3D3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.fullscreen {
    padding: 4.2rem 0 0;
    display: flex;
    border-radius: 32px;
    background: #D8E7EE;
    align-items: center;
    overflow: hidden;
    min-height: calc(90vh - 7rem);
    position: relative;
    margin: 0 3.2rem;
}

.fullscreen-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4.8rem;
}

.fullscreen:before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 50%;
    padding-top: 50%;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(75px);
}

.fullscreen:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    background: #92BFD5;
    filter: blur(150px);
}

.main-image {
    display: block;
    max-width: 50%;
}

.text-tag {
    font-weight: 700;
    padding: 4px 12px;
    background-color: #fff;
    border-radius: 100px ;
}

.scroll-down-link {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s;
}

.scroll-down-link:hover {
    opacity: 0.7;
}

/*--------------------------------------------------------------
    ##  how it works
    --------------------------------------------------------------*/
.hiw-section {
    padding-top: 8.8rem;
    margin-top: 3.2rem;
    margin-bottom: 12rem;
    background: url("../images/main-page/main-bg.svg") top center no-repeat;
}

.hiw-subtitle {
    margin-bottom: 7px;
    font-weight: 500;
    font-size: 2rem;
    line-height: 150%;
    color: #808080;
    text-transform: uppercase;
}

.hiw-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hiw-step {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg, #EFF8FC 0%, #D8E7EE 100%);
}

.hiw-step-img img {
    display: block;
}

.hiw-step-content {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 3.2rem;
}

.hiw-step-count {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: #fff;
    font-size: 7.2rem;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.hiw-step-count-text {
    background-image: linear-gradient(270deg, #5084AB 0%, #42B3D3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hiw-step-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    margin-bottom: 8px;
}

.search-highlight {
    padding: 1rem;
    display: inline-block;
    background: url("../images/main-page/word-highlight.svg") center/contain no-repeat;
}

/*======================================================
================inner pages============================
========================================================*/
.inner-page {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.inner-page-content {
    display: flex;
    gap: 3.2rem;
    justify-content: space-between;
    align-items: center;
}

.inner-page-content > div {
    flex: 1;
}

.uninstall-steps {
    display: flex;
    gap: 4rem;
    flex-direction: column;
    position: relative;
}

.uninstall-steps:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4.4rem;
    border-left: 2px dashed #5085AC;
    z-index: -1;
}

.uninstall-step {
    display: flex;
    align-items: center;
    padding: 2.4rem;
    gap: 1.6rem;
    border-radius: 2.4rem;
    background: linear-gradient(180deg, #EFF8FC 0%, #D8E7EE 100%), #FFF;
}

.uninstall-step svg {
    margin-left: auto;
}

.uninstall-step-count {
    border-radius: 50%;
    border: 2px solid #5085AC;
    background: #FFF;
    width: 4rem;
    height: 4rem;
    font-size: 2.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.uninstall-step-count-text {
    background-image: linear-gradient(270deg, #5084AB 0%, #42B3D3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.contact-cards {
    display: flex;
    gap: 3.2rem;
    justify-content: center;
}

.contact-card {
    max-width: 55rem;
    padding: 3rem;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, #EFF8FC 0%, #D8E7EE 100%);
    backdrop-filter: blur(7px);
}

.contact-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-card-icon {
    display: block;
    margin-bottom: 1.2rem;
}

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

.terms-privacy {
    border-radius: 1.2rem;
    border: 2px solid #5085AC;
    backdrop-filter: blur(7px);
    padding: 3.2rem;
}

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

th {
    font-weight: 700;
}

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

.footer {
    margin-bottom: 3.2rem;
}

.footer .container {
    max-width: 1448px;
}

.footer-content {
    padding: 4.8rem;
    border-radius: 24px;
    background: linear-gradient(90deg, #5084AB 0%, #42B3D3 100%), linear-gradient(180deg, #1E3851 0%, #244361 100%);
}

.footer-link {
    color: #fff;
    display: block;
    line-height: 1.5;
    font-weight: 500;
    font-size: 1.6rem;
}

.footer-menu {
    display: flex;
    gap: 48px;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 24px;
}

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

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

.footer-copyright p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.70);
}


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

/* Modal "ADD TO CHROME" – always visible on white background */
#modal .btn--modal-chrome {
    background: linear-gradient(90deg, #5084AB 0%, #42B3D3 100%);
    color: #fff;
}
#modal .btn--modal-chrome::before,
#modal .btn--modal-chrome::after {
    display: none;
}
