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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #8EA4AF;
  background: #F3F8FC;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
}

.table {
  color: #8EA4AF;
}

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: #4270FB;
}

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

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

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

.section-default {
  padding: 5rem 0;
}

.container {
  width: 100%;
  min-height: 100%;
  max-width: 1360px;
  padding: 0 20px;
}

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

/*--------------------------------------------------------------

##general style

---------------------------------------------------------------*/

.title {
  font-weight: 700;
  font-size: 4.4rem;
  margin-bottom: 6rem;
  line-height: 1.1;
  position: relative;
  color: #314759;
}

.title-wrapper .title {
  display: inline-block;
}

.title-left {
  margin-bottom: 3rem;
}

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

.btn {
  padding: 1.1rem 3.3rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  border: none;
  font-size: 1.6rem;
  line-height: 1.8;
  background: #4270FB;
  border-radius: 60px;
  transition: all 0.3s;
}

.btn-outline {
  font-weight: 600;
  color: #0D5B0B;
  background: transparent;
  border: 1px solid #46D744;
  box-shadow: none;
  text-transform: initial;
}

.btn-big {
  padding: 1.6rem 4.8rem;
}

.btn:active {
  background-color: #5ddc5b;
  color: #0D5B0B;
}

@media (hover: hover) {
  .btn:hover {
    background-color: #5a82fc;
    color: #fff;
  }
  .btn-outline:hover {
    color: #0D5B0B;
  }
}

.btn-wrapper {
  margin-top: 4rem;
}
/* Back To Top */

.return-to-top {
  position: fixed;
  bottom: -30px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #4270FB;
  line-height: 42px;
  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: 12px;
  width: inherit;
  height: inherit;
  line-height: inherit;
  display: block;
  color: transparent;
  text-shadow: 0 0 #fff, 0 50px #fff;
  -webkit-transition: text-shadow 0.2s ease;
  -o-transition: text-shadow 0.2s ease;
  transition: text-shadow 0.2s ease;
  z-index: 1;
}

.return-to-top > i:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: solid 2px #fff;
  transform: rotate(135deg);
  border-top: 0;
  border-right: 0;
  top: 18px;
  left: 16px;
  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: 0 -50px #fff, 0 0 #fff;
}

.return-to-top.back-top {
  bottom: 20px;
  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: #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: #4270FB;
  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 rgba(66, 73, 218, 0.7);
  box-shadow: 0 -10px 40px -5px rgba(66, 73, 218, 0.7);
}

.blob {
  position: absolute;
  background: #4270FB;
  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: #F3F8FC;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

.logo {
  color: #fff;
  font-weight: 700;
}

.logo:hover {
  text-decoration: none;
  color: #fff;
}

.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-logo {
  max-width: 250px;
  margin: 0 10rem 0 0;
}

.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;
  transition: all 0.3s ease-in-out;
}

.site-header .site-main-menu li > a {
  display: block;
  color: #314759;
  font-size: 14px;
  margin: 0 1.6rem;
  padding: 2.4rem 0;
  font-weight: 500;
  transition: 0.2s ease;
}

.site-header .site-main-menu li:last-child > a {
  display: block;
  background: #4270FB;
  color: #fff;
  padding: 5px 24px;
  font-size: 1.6rem;
  margin: 0 1.6rem;
  text-align: center;
  font-weight: 500;
  transition: 0.2s ease;
  box-shadow: 0 4px 7px rgba(74, 58, 255, 0.13);
  border-radius: 40px;
}

.site-header .site-main-menu li:last-child > a:hover {
  color: #fff;
  background: #5a82fc;
  text-decoration: none;
}

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

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

.logo-sticky {
  display: none;
}

.pix-header-fixed {
  z-index: 1000;
  position: sticky;
  background: #fff;
  -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 .header-inner .site-logo .logo-sticky {
  display: block;
}

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

.pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a:hover,
.pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a.current_page {
  border-color: #0060E7;
}

.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;
  padding: 2rem 0;
  width: 100%;
  display: flex;
  align-items: center;
}

.fullscreen__wrapper {
  background: linear-gradient(81.62deg, #313860 2.25%, #151928 79.87%);
  border-radius: 40px;
  padding: 6rem 5.6rem 2rem;
  position: relative;
}

.fullscreen__wrapper:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 92%;
  background: url("../images/main-page/ring.svg") no-repeat right bottom / contain;
}

.fullscreen__title {
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 4.8rem;
  line-height: 1.1;
  color: #fff;
}

.fullscreen__title span {
  color: #7BDAC9;
}

.fullscreen__text {
  font-size: 14px;
  color: #fff;
  margin-bottom: 4rem;
  max-width: 450px;
  line-height: 1.45;
}
.store-btn{
  display: flex;
  gap: 20px;
}

.fullscreen__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  gap: 8px;
  width: 170px;
  background: #FFFFFF;
  border-radius: 25px;
  color: #314759;
  transition: all 0.3s;
}

.fullscreen__btn svg {
  transition: all 0.3s;
}

.fullscreen__btn:hover {
  text-decoration: none;
  color: #314759;
}

.fullscreen__btn:hover > svg:last-child {
  transform: translateX(30%);
}

.fullscreen__img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen__img img {
  margin-bottom: -2rem;
}

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

.about {
  margin-top: -10rem;
  padding-top: 10rem;
}

.about__wrapper {
  background: #FFFFFF;
  border-radius: 40px;
  padding: 8rem;
}

.about__title {
  margin-bottom: 2.4rem;
}

.about__item {
  display: block;
  padding: 2.4rem;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  border-radius: 15px;
  transition: all 0.3s;
  color: inherit;
}

.about__item:not(:first-child) {
  margin-top: -1rem;
}

.about__item:hover {
  padding: 2.4rem;
  background-color: #FFFFFF;
  border-color: #EEF2FE;
  box-shadow: 0px 57px 69px -18px rgba(144, 172, 196, 0.15);
  text-decoration: none;
  color: inherit;
}

.about__subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #314759;
  position: relative;
  padding-left: 34px;
}

.about__subtitle:before {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/main-page/about-item.svg") no-repeat center / contain;
}

.about__descr {
  color: inherit;
  margin: 0;
}

/*--------------------------------------------------------------
  ##  HIW
  --------------------------------------------------------------*/

.hiw-section {
  overflow: hidden;
  margin-top: -10rem;
  padding: 15rem 0 0;
}

.hiw__title {
  margin-bottom: 4.6rem;
  text-align: center;
}

.hiw__item {
  background: #FFFFFF;
  border: 1px solid #EAF2F9;
  border-radius: 18px;
  padding: 1.5rem 1.5rem 4.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hiw__img {
  flex: 1 1 auto;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.2rem;
}

.hiw__img img {
  max-width: 100%;
  object-fit: contain;
}

.hiw__img_first {
  background: #D2E1ED;
}

.hiw__img_second {
  background: #89BBB2;
}

.hiw__img_third {
  background: #DBE3F8;
}

.hiw__big-img {
  margin-top: 5rem;
  background: #D3DCE9;
  border-radius: 32px;
  padding: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hiw__big-img:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 60%;
  background: url("../images/main-page/hiw-ring.svg") no-repeat left bottom / contain;
  z-index: 1;
}

.hiw__big-img img{
  position: relative;
  z-index: 10;
}


.hiw__info {
  padding: 0 4rem;
}

.hiw__subtitle {
  text-align: center;
  margin-bottom: 1rem;
  color: #101828;
  font-weight: 600;
}

.hiw__text {
  text-align: center;
  font-size: 14px;
}

.scroll-down {
  background: rgba(66, 73, 218, 0.7);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s;
}

.scroll-down:hover {
  transform: translate(-50%, 30%);
}

/*--------------------------------------------------------------
    ##  Support
    --------------------------------------------------------------*/

.support {
  padding: 3rem 0 0;
}

.support__main {
  background: #fff;
  padding: 4rem 19rem 10rem;
  border-radius: 32px;
}

.support__title {
  text-align: center;
  margin-bottom: 1rem;
}

.support__wrapper {
  display: flex;
  align-items: center;
}

.support__item {
  flex: 0 0 33.333%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support__text {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 5rem;
}


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

.faq {
  width: 100%;
  position: relative;
  margin-top: -10rem;
  padding: 15rem 0 5rem;
}

.faq__title {
  text-align: center;
  margin-bottom: 3.6rem;
}

.faq__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
}

.faq__acc {
  padding-left: 4rem;
}

.card {
  position: relative;
  background: transparent;
  border: none;
  border-bottom: 1px solid #E8E8E8;
}

.card-header {
  border: 0;
  border-radius: 0;
  background: none;
  padding: 0;
}

.card-btn {
  padding: 3.2rem 3.2rem 3.2rem 0;
  position: relative;
  text-decoration: none;
  white-space: normal;
  text-align: left;
  width: 100%;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 18px;
  color: #314759;
  border: none;
  background: none;
}

.card-btn-indicator {
  position: absolute;
  top: 28px;
  right: 0;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100%;
  transition: all 0.3s;
}

.card-btn-indicator:before, .card-btn-indicator:after {
  content: '';
  position: absolute;
  background: #4270FB;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-btn-indicator:before {
  height: 2px;
  width: 14px;
}

.card-btn-indicator:after {
  width: 2px;
  height: 14px;
  transition: all 0.3s;
}

.card.active .card-btn {
  padding-bottom: 1.6rem;
}

.card.active .card-btn-indicator {
  transform: rotate(-45deg);
}

.card-btn-indicator:hover,
.card-btn-indicator:focus {
  background: rgba(255, 255, 255, 0.15);
}

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

.card-body {
  padding: 0 3.2rem 3.2rem 0;
}

.card-body p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.article-item {
  display: block;
  color: #fff;
  padding: 2.4rem;
  border-radius: 20px;
}

.article-title {
  text-transform: uppercase;
  margin: 1.6rem 0 1.2rem;
  font-weight: 700;
  display: block;
}

.article-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 100px 80px rgba(129, 164, 255, 0.07), 0px 41.7776px 33.4221px rgba(129, 164, 255, 0.0605347), 0px 22.3363px 17.869px rgba(129, 164, 255, 0.0544737), 0px 12.5216px 10.0172px rgba(129, 164, 255, 0.0480538), 0px 6.6501px 5.32008px rgba(129, 164, 255, 0.0397424), 0px 2.76726px 1px rgba(129, 164, 255, 0.06);
}

.article-link {
  display: block;
  font-weight: 700;
}

.article-item:hover {
  background: #fff;
  color: #222;
  text-decoration: none;
}

.article-item:hover .article-link,
.article-item:hover .article-title {
  color: #00B977;
}
/*======================================================
================contact page============================
========================================================*/

.inner-page {
  width: 100%;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0;
  overflow-y: visible;
}

.privacy-section {
  font-size: 14px;
  color: #777E91;
  text-align: center;
  margin-bottom: 1.8rem;
}

.inner-page__title {
  margin-bottom: 4rem;
  font-size: 4.4rem;
}

.removed-page__title {
  text-align: center;
  margin-bottom: 4rem;
}

.removed-page__img {
  margin-bottom: 4rem;
}

.removed-page__text {
  text-align: center;
  margin-bottom: 2rem;
  color: #314759;
}

.removed-page__btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.page-404__page {
  background: #5E7FE2;
  min-height: calc(100vh - 50px);
}

.page-404__privacy {
  background: #5E7FE2;
  margin: auto 0 0;
  padding-bottom: 2rem;
  color: #8EA4AF;
}

.page-404__image {
  margin-bottom: 6rem;
}

.page-404__title {
  color: #fff;
  margin-bottom: 3rem;
}

.page-404__text {
  margin: 0 auto 3rem;
  max-width: 670px;
  color: #fff;
}

.page-404__btn {
  background: rgba(255, 255, 255, 1);
  color: #5E7FE2;
}

.page-404__btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #5E7FE2;
}

.thanku-page__wrapper {
  padding: 2rem 2rem 2rem 6rem;
  background: #fff;
  border-radius: 40px;
}

.thanku-page__title {
  text-align: center;
  max-width: 610px;
  margin: 0 auto 4rem;
}

.thanku-page__subtitle {
  font-size: 3.5rem;
  color: #314759;
  margin-bottom: 2rem;
  font-weight: 700;
}

.thanku-page__text {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.thanku-page__btn {
  min-width: 184px;
}

.thanku-page__img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 4rem 0 4rem;
  background: linear-gradient(81.62deg, #313860 2.25%, #151928 79.87%);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.thanku-page__img:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 90%;
  background: url("../images/main-page/ring.svg") no-repeat right bottom / contain;
}

.contact-card {
  padding: 4rem 2.4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0 5px 14px rgba(8, 15, 52, 0.04);
  border-radius: 20px;
}

.contact-card__title {
  color: #314759;
  margin-bottom: 3rem;
  font-size: 3.2rem;
  font-weight: 700;
}

.contact-card__text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.contact-card__button {
  font-size: 14px;
  width: fit-content;
  padding: 1rem 2.4rem;
  margin-top: auto;
  background: rgba(66, 112, 251, 0.05);
  border-radius: 12px;
  color: #4270FB;
  transition: all 0.3s;
}

.contact-card__button:hover {
  background: #4270FB;
  color: #fff;
}

.contact-card .features-section__title {
  color: #06B073;
}

.contact-card .features-section__text {
  color: #3037C9;
  margin-bottom: 1rem;
}

.contact-card .features-section__title,
.contact-card .features-section__text {
  position: relative;
}

.uninstall-page__text, .uninstall-page__title {
  max-width: 760px;
  margin: 0 auto;
}

.uninstall-image {
  border-radius: 17px;
  margin: 0 auto;
  display: block;
}

.uninstall-page__title {
  margin-bottom: 3rem;
}

.uninstall-page__text {
  font-size: 1.6rem;
  margin-bottom: 4rem;
}

.uninstall-page__img {
  border: 1px solid #DAE2E2;
  box-shadow: -9px 38px 38px #DEEAF3;
  border-radius: 16px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}


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

.page-terms__wrapper {
  padding: 5rem 11rem 11rem 11rem;
  background: #fff;
  border-radius: 40px;
}

.page-terms p,
.page-terms ul,
.page-terms table {
  font-size: 1.6rem;
  color: #314759;
  margin-bottom: 2rem;
}

.page-terms strong,
.page-terms h3 {
  color: #314759;
  font-size: 2rem;
  font-weight: 700;
}

.page-terms__title {
  font-size: 5.2rem;
  line-height: 1.25;
  margin-bottom: 4.4rem;
  text-align: center;
}

.remove-page-image {
  display: block;
  margin: 0 auto;
  width: 100%;
  object-fit: contain;
  max-height: 480px;
}

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

.footer {
  background: #fff;
}

.footer-content {
  padding: 4.8rem 0 4.2rem;
  border-bottom: 1px solid rgba(24, 63, 67, 0.11);
}

.footer-info {
  color: #314759;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.footer-link {
  margin-bottom: 2rem;
  color: #8EA4AF;
  display: block;
  line-height: 1.5;
  font-size: 1.6rem;
}

.footer-link:hover {
  color: #4270FB;
  text-decoration: none;
}

.footer-link:focus {
  color: #8EA4AF;
  text-decoration: none;
}

.footer-logo {
  display: block;
  margin-bottom: 2rem;
}

.footer-logo:hover {
  color: #fff;
  text-decoration: none;
}

.footer-text {
  margin-bottom: 2rem;
}

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

.footer-copyright p {
  font-size: 1.4rem;
}

.footer-chrome {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.footer-chrome img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
