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

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

.table {
  color: #626262;
}

svg {
  display: block;
  max-width: 100%;
}

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: #0094FF;
}

@media (hover: hover) {
  a:hover {
    text-decoration: underline;
    color: #006EBE;
  }
}

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

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

.section-default {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-hero {
  padding: 12.8rem 0 4rem;
  position: relative;
  background: url("../images/main-page/hero-bg.png") no-repeat left top;
  background-size: 100% 920px;
}

.section-hero .text {
  font-weight: 500;
  font-size: 1.8rem;
}

.container {
  width: 100%;
  max-width: 132rem;
  padding: 0 2rem;
}

.container-half {
  max-width: 60rem;
}

.title {
  font-weight: 700;
  font-size: 3.9rem;
  margin-bottom: 2.4rem;
  line-height: 1.3;
  color: #000;
}

.title-big {
  font-size: 5.8rem;
  font-weight: 600;
}

.title-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2.67px 9.67px 0 #00000012;
  margin-bottom: 2.4rem;
}

.highlight {
  color: #3FDACB;
}

.section-highlight {
  background: #E8FAFE;
}

.text {
  font-size: 1.6rem;
  color: #000;
}

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

.decor {
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  border: solid 1px #E3E3E3;
  position: absolute;
}

.decor-big {
  width: 76rem;
  height: 76rem;
}

.decor-left-top {
  top: 0;
  left: 0;
  transform: translate(-50%, -30%);
}

.decor-left-bottom {
  top: 30%;
  left: 0;
  transform: translate(-20%, 0);
}

.decor-right-top {
  top: 0;
  right: 0;
  transform: translate(42%, -16%);
}

.decor-right-bottom {
  top: 45%;
  right: -3%;
}

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

.btn {
  padding: 1.45rem 2.4rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  white-space: nowrap;
  border: 0;
  background: #000;
  border-radius:  2.7rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 28.3rem;
}

.btn-small {
  padding: 1.35rem 1.6rem;
  font-size: 1.4rem;
  width: auto;
}

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

.btn:hover {
  color: #fff;
  box-shadow: 0 6px 4px 4px rgba(0, 0, 0, 0.12);
}

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

.btn-inverse {
  background-color: #fff;
  color: #000;
}

.btn-inverse:hover {
  color: #1E9A8E;
}

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

.btn-clear {
  background-color: transparent;
  border: 1px solid #3FDACB;
  color: #1E9A8E;
  font-size: 1.8rem;
  font-weight: 600;
  width: 100%;
  max-width: 28.3rem;
}

.btn-clear:hover {
  color: #1E9A8E;
}

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

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

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

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

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  background: #fff;
  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: #3FDACB;
  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 #2B7CF6;
  box-shadow: 0 -10px 40px -5px #2B7CF6;
}

.blob {
  position: absolute;
  background: #3FDACB;
  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: linear-gradient(180deg, white 80%, transparent);*/
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  margin-top: 16px;
}


.inner-page .site-header {
  margin-top: 4rem;
}

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

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

.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;
  -o-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;
  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 {
  font-size: 1.6rem;
  color: #fff;
  margin: 0 3.6rem;
  padding: 1rem 0;
  transition: 0.2s ease;
}

.site-header .site-main-menu li > a:hover {
  color: #29D1D1;
  text-decoration: none;
}

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

.site-header .header-inner .site-nav {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.8rem;
  background-color: #000;
  border-radius: 50rem;
}

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

.close-menu {
  display: none;
}

.hidden {
  display: none;
}

/*--------------------------------------------------------------
    ##  about section
    --------------------------------------------------------------*/

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-content.right {
  align-items: flex-end;
}

.about-content.left {
  max-width: 42.2rem;
}

.about-content img {
  max-width: 66rem;
}

.about-bg {
  border-radius: 2.4rem;
  background: #E7FAF9;
  padding-top: 10.6rem;
}


/*--------------------------------------------------------------
    ##  Faq's
    --------------------------------------------------------------*/

.engines-section {
  background: url("../images/main-page/hero-bg.png") no-repeat right top/cover;
  margin-top: 8rem;
  padding: 14.2rem 0;
}

.engines-title {
  max-width: 78rem;
  font-size: 5.8rem;
  margin: 0 auto 3.2rem;
  font-weight: 600;
}

.engines-text {
  max-width: 58.6rem;
  margin: 0 auto 3.2rem;
  font-size: 1.8rem;
}

#faq {
  padding: 14.8rem 0;
}

.faq-title {
  height: 100%;
  border-radius: 1.6rem;
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2.4rem;
  font-size: 4.8rem;
  font-weight: 600;
}

.card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  transition: background-color 0.3s;
  background-image: linear-gradient(to right, #fff 40%,#1ED9D1 0%);
  background-position: bottom;
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

.card + .card {
  margin-top: 1.6rem;
}

.card-header {
  border: 0;
  border-radius: 2.4rem !important;
  padding: 0;
  background: transparent;
  z-index: 1;
}

.card-btn {
  position: relative;
  text-decoration: none;
  white-space: normal;
  text-align: left;
  width: 100%;
  transition: all 0.3s;
  font-size: 1.8rem;
  color: #191A15;
  font-weight: 700;
  background: none;
  border: 0;
  padding: 0 15rem 2.4rem 13.4rem;
}

.card-btn:focus {
  outline: none;
}

.card-number {
  position: absolute;
  top: 0;
  left: 0;
}

.card-body {
  border-radius: 2.4rem;
  padding: 0 4rem 3rem 13.4rem;
}

.card-body p {
  margin-bottom: 0;
}

.card-btn:before {
  content: "";
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 1.2rem;
  width: 4rem;
  height: 4rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12H19' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/2.4rem 2.4rem, #C5F3F0;
  transition: all 0.3s;
}

.card-btn.collapsed:before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5V19M5 12H19' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/2.4rem 2.4rem, #29D1D1;
}

.inner-page {
  min-height: calc(100vh - 20rem);
  display: flex;
  align-items: center;
  padding: 10rem 0;
  position: relative;
}

.inner-page-header {
  padding-top: 20rem;
}

.inner-page .decor-right-bottom {
  top: 70%;
}

.inner-page .decor-left-bottom {
  top: 60%;
}

.relative {
  position: relative;
}

.removed-image {
  margin: 0 auto;
}

/*======================================================
================contact page============================
========================================================*/

.contact-page {
  position: relative;
  padding: 19.6rem 0 10.4rem;
}

.contact-page__bg {
  position: absolute;
  border-radius: 2.4rem;
  top: 2.4rem;
  left: 2.4rem;
  right: 2.4rem;
  height: 100%;
  z-index: -1;
}

.contact-page__bg img {
    width: 100%;
    height: calc(100% - 4.8rem);
    object-fit: cover;
    border-radius: 2.4rem;
}

.contact-page__wrap {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  padding: 0 2rem;
}

.contact-card {
  max-width: calc(33.33% - 1.6rem);
  padding: 4.8rem;
  display: flex;
  flex-direction: column;
  background: #F7F7F7;
  border-radius: 3.2rem;
}

.contact-card__title {
  font-size: 5.8rem;
  font-weight: 600;
  margin-bottom: 4.8rem;
}

.contact-card__text {
  margin-bottom: 3rem;
  flex: 1 1 auto;
  font-size: 1.6rem;
  line-height: 1.5;
}

.contact-card-icon {
  width: 100%;
  margin-bottom: 3.2rem;
}

.contact-card-icon svg {
  display: inline;
}

.contact-card-title {
  font-size: 3.9rem;
  font-weight: 500;
}

.uninstall-image {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
}

.uninstall-page {
  padding: 17.6rem 0 7.2rem;
}

.uninstall-headline {
  margin-bottom: 4.8rem;
}

.uninstall-headline .text {
  margin: 0 auto;
  font-size: 1.8rem;
  max-width: 68.6rem;
}

.uninstall-wrapper {
  margin: 0 auto;
  width: 128rem;
  max-width: 100%;
}

.uninstall-section {
  border-radius: 3.2rem;
  background: #F7F7F7;
  padding: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.uninstall-section--1 {
  padding: 3.2rem 7.2rem;
}

.uninstall-section + .uninstall-section {
  margin-top: 2.4rem;
}

.uninstall-section .container {
  padding: 0;
}

.uninstall-section img {
  width: fit-content;
}

.uninstall-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 51rem;
}

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

.uninstall-content.right {
  text-align: right;
  align-items: flex-end;
}

.uninstall-icon {
  font-size: 4rem;
  width: 6.8rem;
  height: 6.8rem;
  font-weight: 800;
  border-radius: 50%;
  color: white;
  background-color: #3FDACB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.2rem;
}

.uninstall-section .title {
  font-size: 3.9rem;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin: 0 0 1.8rem;
}

.uninstall-section .text {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

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

.is-404 {
  padding: 20rem 0 14.5rem;
}

.is-404__wrapper {
  display: flex;
  gap: 8.4rem;
  align-items: center;
  justify-content: space-around;
}

.is-404__title {
  margin-bottom: 4.8rem;
}

.is-404__text {
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}

.remove-page {
  padding-top: 20rem;
}

.remove-page-content {
  padding-left: 6rem;
}
/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/

.footer {
  position: relative;
}

.footer-inner {
  border-radius: 2.4rem;
  overflow: hidden;
  margin-bottom: 2.4em;
}

.footer-content {
  color: #000;
  padding: 2.4rem;
  background-color: #F7F7F7;
  position: relative;
}

.footer-menu {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 7.2rem;
}

.footer-link {
  color: #000;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 400;
}

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

.footer-logo {
  display: block;
}

.footer-copyright {
  padding: 1.6rem;
  background-color: #F7F7F7;
}

.footer-copyright p {
  font-size: 1.4rem;
  color: #6B6B6B;
  text-align: center;
  margin: 0;
}

.fullscreen {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  z-index: -1;
}

.return-to-top {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  width: 4rem;
  height: 4.1rem;
  cursor: pointer;
  border-radius: 0.8rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='41' viewBox='0 0 40 41' fill='none'%3E%3Crect y='0.786621' width='40' height='40' rx='12' fill='white'/%3E%3Cg clip-path='url(%23clip0_156_1731)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.94 16.7265C19.2213 16.4456 19.6025 16.2878 20 16.2878C20.3975 16.2878 20.7788 16.4456 21.06 16.7265L26.718 22.3825C26.8573 22.5219 26.9677 22.6873 27.0431 22.8693C27.1184 23.0513 27.1572 23.2464 27.1571 23.4434C27.1571 23.6404 27.1182 23.8354 27.0428 24.0174C26.9674 24.1994 26.8568 24.3648 26.7175 24.504C26.5782 24.6433 26.4128 24.7537 26.2307 24.8291C26.0487 24.9044 25.8536 24.9432 25.6566 24.9431C25.4596 24.9431 25.2646 24.9043 25.0826 24.8288C24.9006 24.7534 24.7353 24.6429 24.596 24.5035L20 19.9085L15.404 24.5045C15.2657 24.6479 15.1002 24.7622 14.9173 24.8409C14.7343 24.9196 14.5375 24.9611 14.3383 24.9629C14.1392 24.9647 13.9416 24.9269 13.7572 24.8515C13.5729 24.7762 13.4053 24.6649 13.2644 24.5241C13.1235 24.3833 13.0121 24.2159 12.9366 24.0316C12.861 23.8473 12.823 23.6498 12.8246 23.4506C12.8263 23.2515 12.8676 23.0546 12.9461 22.8716C13.0246 22.6885 13.1388 22.523 13.282 22.3845L18.94 16.7265Z' fill='%2329D1D1'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_156_1731'%3E%3Crect width='24' height='24' fill='white' transform='translate(8 8.78662)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center/cover;
  z-index: 5;
}

.return-to-top:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}