h1,
h2 {
  font-size: 6.8rem;
  font-weight: 600;
  line-height: 1.17;
}
@media (max-width: 600px) {
  h1,
  h2 {
    font-size: 4.2rem;
  }
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-SemiBold.woff") format("woff"), url("../fonts/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Zeyada";
  font-display: swap;
  src: url("../fonts/Zeyada-Regular.woff") format("woff"), url("../fonts/Zeyada-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Rokkitt";
  font-display: swap;
  src: url("../fonts/Rokkitt-Regular.woff") format("woff"), url("../fonts/Rokkitt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
*,
*:before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

*:not(input, button, a) {
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-family: "Roboto", sans-serif;
  position: relative;
  width: 100vw;
  font-size: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 1601px) {
  html {
    font-size: 0.625vw;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 1.3vw;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 2.56vw;
  }
}

body {
  min-height: 100vh;
}

html,
body {
  background-color: #ecedf6;
  color: #232431;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex-grow: 1;
  width: 100%;
  margin-top: 13rem;
}
main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 600px) {
  main {
    margin-top: 14.3rem;
  }
}

section {
  overflow: hidden;
}

main.about::before {
  background: url(../assets/images/common/blue-rectangle_bg.png) center/164px 164px repeat;
}

main.features::before {
  background: url(../assets/images/common/green-rectangle_bg.png) center/164px 164px repeat;
}

.wrapper:has(main.contact-us) {
  background: url(../assets/images/common/green-rectangle_bg.png) center/164px 164px repeat;
}

.container {
  box-sizing: border-box;
  max-width: 160rem;
  max-width: 164.8rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.4rem;
}
@media (max-width: 1601px) {
  .container {
    max-width: 144.8rem;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 2.4rem;
  }
}

* {
  scrollbar-color: #ecedf6;
}

@supports (-moz-appearance: none) {
  * {
    scrollbar-color: #ecedf6 transparent;
    scrollbar-width: thin;
  }
}
::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9698b2;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #9698b2;
}

::-webkit-scrollbar-thumb:active {
  background: #9698b2;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  width: 100%;
}
.download-buttons a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 22rem;
  height: 5.6rem;
  background-color: #000000;
  color: #ffffff;
  border-radius: 1.6rem;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  transition: color 0.4s ease-in-out;
}
.download-buttons a img {
  transition: filter 0.4s ease-in-out;
  z-index: 1;
}
.download-buttons a span {
  z-index: 1;
}
.download-buttons a::before {
  content: "";
  position: absolute;
  width: 37.3rem;
  height: 37.3rem;
  background-color: #115fed;
  bottom: -40rem;
  left: -22rem;
  transition: bottom 0.5s ease-in-out, left 0.5s ease-in-out;
  border-radius: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .download-buttons a:hover::before {
    bottom: -22rem;
    left: -2rem;
  }
}
@media (max-width: 900px) {
  .download-buttons a {
    max-width: 31.6rem;
    width: 100%;
  }
}
.download-buttons a:nth-of-type(1) img {
  width: 1.7rem;
  height: 2rem;
}
.download-buttons a:nth-of-type(1)::before {
  background-color: #115fed;
}
.download-buttons a:nth-of-type(2) img {
  width: 2rem;
  height: 2rem;
}
.download-buttons a:nth-of-type(2)::before {
  background-color: #37d976;
}
@media (hover: hover) and (pointer: fine) {
  .download-buttons a:nth-of-type(2):hover {
    color: #000000;
  }
  .download-buttons a:nth-of-type(2):hover img {
    filter: invert(1);
  }
}
.download-buttons a:nth-of-type(3) img {
  width: 1.7rem;
  height: 1.9rem;
}
.download-buttons a:nth-of-type(3)::before {
  background-color: #ffaf59;
}
@media (hover: hover) and (pointer: fine) {
  .download-buttons a:nth-of-type(3):hover {
    color: #000000;
  }
  .download-buttons a:nth-of-type(3):hover img {
    filter: invert(1);
  }
}

.button-secondary {
  display: block;
  position: relative;
  max-width: 31.6rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.75rem 0;
  text-align: center;
  background-color: #37d976;
  border-radius: 1.6rem;
  text-decoration: none;
  color: #232431;
  transition: background-color 0.3s ease-in-out;
}
.button-secondary::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../assets/images/about/arrow_right.svg) center/cover no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .button-secondary:hover {
    background-color: #8affb8;
  }
}
@media (max-width: 900px) {
  .button-secondary {
    max-width: 31.6rem;
    width: 100%;
  }
}

.header {
  position: fixed;
  z-index: 2;
  width: 90%;
  left: 50%;
  transform: translate3d(-50%, 2rem, 0);
  border-radius: 1.6rem;
  height: auto;
  padding: 1.4rem 0;
  background-color: transparent;
}
@media (min-width: 2560px) {
  .header {
    width: 164rem;
  }
}
@media (max-width: 900px) {
  .header {
    padding: 1.8rem 1.2rem 0;
    width: calc(100% - 2.4rem);
  }
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.6rem;
  border: 1px solid transparent;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
  pointer-events: none;
}
@media (max-width: 900px) {
  .header::before {
    border: none;
  }
}
.header [class*=__link] {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  color: rgba(35, 36, 49, 0.6);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3rem;
  padding: 0 1.2rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header [class*=__link]:not(a.dropdown-menu__link):hover {
    background-color: rgba(255, 255, 255, 0.6);
    color: #232431;
  }
  .header [class*=__link]:not(a.dropdown-menu__link):hover > .header-nav__arrow {
    opacity: 1;
  }
}
.header [class*=__link].current {
  color: #232431;
}
.header [class*=__link] > .header-nav__arrow {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  background: url(../assets/images/common/arrow_down.svg) center/cover no-repeat;
  opacity: 0.6;
}
.header-sign-up {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #bdc0d0;
  border-radius: 1.6rem;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.header-sign-up .text {
  color: #115fed;
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
}
.header-sign-up:hover {
  background-color: #115fed;
  border-color: #115fed;
}
.header-sign-up:hover .text {
  color: #ffffff;
}
@media (max-width: 900px) {
  .header-sign-up {
    display: none;
  }
}
.header-sign-up--mobile {
  display: none;
  flex-shrink: 0;
  margin-bottom: 1.8rem;
  height: 5rem;
}
@media (max-width: 900px) {
  .header-sign-up--mobile {
    display: flex;
  }
}
.header.isBlur::before {
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(50px);
  opacity: 1;
}
.header-wrapper {
  position: relative;
  height: 5rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .header-wrapper {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
  }
}
.header-container {
  box-sizing: border-box;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 1601px) {
  .header-container {
    max-width: 140rem;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .header-container {
    padding: 0;
  }
}
.header-logo {
  width: auto;
  height: 100%;
  transition: opacity 0.3s ease;
}
@media (max-width: 900px) {
  .header-logo {
    height: 5rem;
  }
}
.header-logo a {
  height: 100%;
}
.header-logo img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-nav {
  position: relative;
  width: auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 1.8rem;
  align-items: center;
}
@media (max-width: 900px) {
  .header-nav {
    position: relative;
    height: auto;
    max-height: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    justify-content: unset;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0 1.4rem;
    overflow: hidden;
  }
}
.header-nav__item {
  display: flex;
}
@media (max-width: 900px) {
  .header-nav__item:has(.dropdown-menu) {
    flex-direction: column;
  }
}
.header-nav .mobile-logo-item {
  display: none;
}
@media (max-width: 900px) {
  .header-nav .mobile-logo-item {
    display: block;
    width: 3.4rem;
    padding: 0 0.2rem;
    height: 3rem;
    opacity: 1;
  }
}
.header-nav .mobile-logo-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.header-nav .mobile-logo-item img {
  width: 100%;
  height: 100%;
}
.header-nav a {
  text-decoration: none;
}
.header-nav .dropdown-menu {
  position: absolute;
  bottom: -1.3rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  padding: 0 1.4rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    padding: 0;
    opacity: 1;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    pointer-events: all;
    border-bottom-left-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
  }
}
.header-nav .dropdown-menu:has(.dropdown-menu__list.show) {
  max-height: 100%;
}
.header-nav .dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  opacity: 0;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
  will-change: backdrop-filter, opacity;
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu::before {
    display: none;
  }
}
.header-nav .dropdown-menu__list {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.8rem;
  overflow: hidden;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu__list {
    padding: 0 1.4rem;
    flex-direction: column;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu__item:first-child {
    margin-top: 1.4rem;
  }
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu__item:last-child {
    margin-bottom: 1.4rem;
  }
}
.header-nav .dropdown-menu__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  background-color: none;
  color: rgba(35, 36, 49, 0.6);
}
.header-nav .dropdown-menu__link span {
  white-space: nowrap;
  padding: 0 0.8rem;
  border-radius: 0.6rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav .dropdown-menu__link:hover span {
    background-color: rgba(255, 255, 255, 0.6);
    color: #232431;
  }
}
.header-nav .dropdown-menu__image {
  flex-shrink: 0;
  width: 4.2rem;
  height: 4.2rem;
}
.header-nav .dropdown-menu__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10.5px;
  box-shadow: 0 5px 6px 0 rgba(35, 36, 49, 0.12);
}
.header-nav__item:has(.header-nav__arrow).hover .dropdown-menu {
  pointer-events: all;
}
.header-nav__item:has(.header-nav__arrow).hover .dropdown-menu::before {
  opacity: 1;
  backdrop-filter: blur(50px);
}
.header-nav__item:has(.header-nav__arrow).hover .dropdown-menu__list {
  opacity: 1;
}
.header .line {
  display: none;
}
@media (max-width: 900px) {
  .header .line {
    display: block;
    width: 100%;
    height: 0.1rem;
    margin: 1.4rem 0;
    background-color: #ffffff;
  }
}

.header-toggle,
.header-burger {
  display: none;
}

@media (max-width: 900px) {
  .header-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    position: absolute;
    overflow: visible;
    top: 1rem;
    right: 0;
    width: 3rem;
    height: 3rem;
    z-index: 1;
    cursor: pointer;
  }
  .header-burger span {
    position: absolute;
    display: block;
    width: 2.1rem;
    height: 0.2rem;
    background: rgb(30, 30, 42);
    border-radius: 0.2rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
  }
  .header-burger span:nth-child(1) {
    top: 0.8rem;
  }
  .header-burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
  .header-burger span:nth-child(3) {
    bottom: 0.8rem;
  }
  .header-toggle:checked + .header-burger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header-toggle:checked + .header-burger span:nth-child(2) {
    opacity: 0;
  }
  .header-toggle:checked + .header-burger span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  [type=checkbox]:not(:checked),
  [type=checkbox]:checked {
    display: none;
  }
  .header-toggle:checked ~ .header-nav {
    opacity: 1;
  }
}
.footer {
  position: relative;
  z-index: 3;
  width: 100%;
  background-color: #fff;
  color: #232431;
  border-radius: 3rem 3rem 0px 0px;
  overflow: hidden;
  padding: 10rem 0 6rem;
}
@media (max-width: 900px) {
  .footer {
    height: auto;
    padding: 8rem 0 4.6rem;
  }
}

.footer-flex {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 4rem;
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 2.2rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .menu-left {
    order: 0;
    margin-bottom: 6rem;
  }
}
.menu-left-description {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .menu-left-description {
    margin-bottom: 2rem;
    text-align: center;
  }
}
.menu-left-contact {
  padding: 1.2rem 2rem;
  margin-bottom: 5rem;
  display: flex;
  flex: 0 0 auto;
  width: auto;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 1.2rem;
  border: 1px solid #404040;
  background-color: transparent;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.33;
  color: #232431;
  text-decoration: none;
  transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}
@media (max-width: 900px) {
  .menu-left-contact {
    margin: 0 auto 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-left-contact:hover {
    background-color: #37d976;
    border-color: transparent;
  }
}
.menu-left-contact img {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 0.8rem;
}
.menu-left ul {
  display: flex;
  gap: 1.8rem;
}
.menu-left li {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.4rem;
  background-color: transparent;
  transition: background-color 0.4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .menu-left li:hover {
    background-color: #37d976;
  }
}
.menu-left li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.menu-center {
  width: 36.8rem;
}
@media (max-width: 900px) {
  .menu-center {
    width: 100%;
    order: 2;
  }
}
.menu-center a {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.33;
  color: #232431;
  text-decoration: none;
  flex: auto 0 0;
}
.menu-center a span {
  text-decoration: none;
  color: #232431;
}
@media (hover: hover) and (pointer: fine) {
  .menu-center a span:hover {
    text-decoration: underline;
  }
}
.menu-center-top {
  position: relative;
  width: 100%;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  justify-content: end;
  gap: 1.4rem 2rem;
}
@media (max-width: 900px) {
  .menu-center-top {
    padding-bottom: 2.2rem;
    margin-bottom: 2.2rem;
  }
}
.menu-center-top a span {
  display: block;
  text-align: left;
}
.menu-center-top a:nth-of-type(even) {
  order: 1;
}
.menu-center-top a:nth-of-type(odd) {
  order: 2;
}
.menu-center-top a:nth-of-type(3),
.menu-center-top a:nth-of-type(4) {
  justify-self: start;
}
@media (max-width: 900px) {
  .menu-center-top a:nth-of-type(3),
  .menu-center-top a:nth-of-type(4) {
    justify-self: end;
  }
}
.menu-center-top a:nth-of-type(1),
.menu-center-top a:nth-of-type(2) {
  justify-self: start;
}
.menu-center-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(64, 64, 64, 0.6);
}
.menu-center-bottom {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.menu-center-bottom a:not(:last-child) {
  margin-bottom: 1.4rem;
}

.menu-right {
  max-width: 45.4rem;
}
@media (max-width: 900px) {
  .menu-right {
    order: 1;
    margin-bottom: 6rem;
    width: 100%;
  }
}
.menu-right-description {
  color: #232431;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .menu-right-description {
    margin-bottom: 2rem;
    text-align: center;
  }
}
.menu-right-buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.4rem;
}
@media (max-width: 900px) {
  .menu-right-buttons {
    justify-content: center;
  }
}
.menu-right-buttons a {
  display: flex;
  width: 22rem;
  height: 5.6rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 1.6rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
@media (max-width: 900px) {
  .menu-right-buttons a {
    width: 100%;
  }
}
.menu-right-buttons img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  filter: invert(0);
  transition: filter 0.4s ease-in-out;
}
.menu-right-buttons span {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2rem;
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.15;
  padding-top: 2rem;
}
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2.2rem;
  }
}
.footer-bottom::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(64, 64, 64, 0.6);
}

.scroll-top-button {
  position: fixed;
  z-index: 2;
  bottom: 5rem;
  right: 10rem;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #115fed;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 2560px) {
  .scroll-top-button {
    right: 25rem;
  }
}
@media (max-width: 900px) {
  .scroll-top-button {
    bottom: 2.4rem;
    right: 2.4rem;
  }
}
.scroll-top-button svg {
  width: 2.4rem;
  height: 2.4rem;
}
.scroll-top-button.show {
  opacity: 0.3;
  pointer-events: all;
}
@media (hover: hover) and (pointer: fine) {
  .scroll-top-button.show:hover {
    opacity: 1;
  }
}

.intro {
  padding-top: 5.2rem;
  padding-bottom: 14rem;
  background-image: url("../assets/images/homepage/line-1.svg");
  background-size: auto 62rem;
  background-repeat: no-repeat;
  background-position: center 55%;
}
@media (min-width: 2560px) {
  .intro {
    background-size: 100% auto;
    background-position: center 65%;
  }
}
@media (max-width: 1601px) {
  .intro {
    background-position: center 68.6rem;
  }
}
@media (max-width: 900px) {
  .intro {
    padding-top: 0rem;
  }
}
@media (max-width: 600px) {
  .intro {
    background-size: auto 25rem;
    background-position: 55% 29%;
  }
}
.intro h1 {
  font-size: 8.4rem;
  font-weight: 600;
  line-height: 1.17;
}
@media (max-width: 600px) {
  .intro h1 {
    font-size: 4.6rem;
  }
}
.intro__title {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 110rem;
}
@media (max-width: 900px) {
  .intro__title {
    max-width: 100%;
  }
}
.intro__subtitle {
  color: #232431;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 3rem;
}
.intro__buttons {
  margin-bottom: 2rem;
}
.intro__description {
  text-align: center;
  color: #232431;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1875;
  margin-bottom: 5.4rem;
}
.intro__image-wrapper {
  position: relative;
  width: 120rem;
  height: 82rem;
  margin: 0 auto 25rem;
}
@media (max-width: 900px) {
  .intro__image-wrapper {
    width: 66rem;
    height: 45rem;
  }
}
@media (max-width: 600px) {
  .intro__image-wrapper {
    width: 25.9rem;
    height: 54.2rem;
    margin-bottom: 69rem;
  }
}
.intro__image-wrapper .video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  border: 7px solid #000;
  border-radius: 4rem;
  overflow: hidden;
}
@media (max-width: 600px) {
  .intro__image-wrapper .video-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 4.2rem;
    background-color: #ecedf6;
  }
}
.intro__image-wrapper .video-wrapper::before {
  content: "";
  z-index: 2;
  visibility: hidden;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7.8rem;
  height: 2.3rem;
  background-color: rgb(0, 0, 0);
  border-radius: 2.4rem;
}
@media (max-width: 600px) {
  .intro__image-wrapper .video-wrapper::before {
    visibility: visible;
  }
}
.intro__image-wrapper .intro__video {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__image-wrapper .image-mobile {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.intro__image-wrapper .image-additional-1 {
  position: absolute;
  left: -8%;
  top: 12%;
  width: 25.2rem;
  height: 25.2rem;
}
@media (max-width: 900px) {
  .intro__image-wrapper .image-additional-1 {
    width: 10.9rem;
    height: 10.9rem;
  }
}
@media (max-width: 600px) {
  .intro__image-wrapper .image-additional-1 {
    z-index: 3;
    left: -22%;
    top: 10%;
  }
}
.intro__image-wrapper .image-additional-2 {
  position: absolute;
  right: -15%;
  top: 40%;
  width: 30.9rem;
  height: 30.9rem;
}
@media (max-width: 900px) {
  .intro__image-wrapper .image-additional-2 {
    right: -10%;
    width: 13.4rem;
    height: 13.4rem;
  }
}
@media (max-width: 600px) {
  .intro__image-wrapper .image-additional-2 {
    z-index: 3;
    right: -32%;
    top: 47%;
  }
}
.intro .badge {
  position: absolute;
  top: 72.8rem;
  margin-bottom: 9.4rem;
  left: 50%;
  height: 24.8rem;
  width: 100rem;
  transform: translate3d(-50%, 0, 0);
  background-color: #fff;
  border-radius: 3rem;
  padding: 4rem 4.3rem;
  box-shadow: 0px -4rem 6rem 0px rgba(75, 78, 105, 0.3);
}
@media (max-width: 900px) {
  .intro .badge {
    top: 40rem;
    margin-bottom: 6.2rem;
    height: 28rem;
    width: 72rem;
  }
}
@media (max-width: 600px) {
  .intro .badge {
    top: 50rem;
    width: 34.2rem;
    height: auto;
    padding: 4rem 4.2rem;
  }
}
.intro .badge__cards {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7rem;
}
@media (max-width: 900px) {
  .intro .badge__cards {
    gap: 3rem;
  }
}
@media (max-width: 600px) {
  .intro .badge__cards {
    flex-direction: column;
  }
}
.intro .badge__card {
  position: relative;
  padding-left: 3.8rem;
}
@media (max-width: 900px) {
  .intro .badge__card {
    font-size: 2.6rem;
  }
}
@media (max-width: 600px) {
  .intro .badge__card {
    font-size: 3.8rem;
  }
}
.intro .badge__card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.8rem;
  height: 9.2rem;
  border-radius: 10rem;
  background: linear-gradient(180deg, rgba(17, 95, 237, 0.2) 37.95%, rgba(17, 95, 237, 0) 100%);
}
.intro .badge img {
  width: 17.6rem;
  height: 5.6rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left bottom;
     object-position: left bottom;
  margin-bottom: 2rem;
}
.intro .badge__title {
  color: #232431;
  font-size: 3.2rem;
  line-height: 1.1875;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
@media (max-width: 900px) {
  .intro .badge__title {
    font-size: 2.6rem;
  }
}
@media (max-width: 600px) {
  .intro .badge__title {
    font-size: 3.2rem;
  }
}
.intro .badge__description {
  color: #232431;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.167;
}
.intro__platforms {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.intro__platforms .devices-desktop {
  width: 54.8rem;
  height: 11.9rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  .intro__platforms .devices-desktop {
    display: none;
  }
}
.intro__platforms .devices-mobile {
  display: none;
  width: 34.2rem;
  height: 27.8rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  .intro__platforms .devices-mobile {
    display: block;
  }
}
.intro__platforms p {
  color: #616161;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.167;
}
.intro__platforms .cursor {
  position: absolute;
  bottom: -4rem;
  right: 23rem;
  width: 8rem;
  height: 8rem;
}
@media (max-width: 900px) {
  .intro__platforms .cursor {
    display: none;
  }
}

.features {
  position: relative;
  padding: 16rem 0;
  border-radius: 3rem;
  background-color: #232431;
  background-image: url("../assets/images/homepage/docEditing_bg.jpg");
  background-position: center top;
  background-size: auto 181rem;
  background-repeat: no-repeat;
}
@media (min-width: 2560px) {
  .features {
    background-size: 100% auto;
    background-position: center 65%;
  }
}
@media (max-width: 900px) {
  .features {
    background-size: auto 75rem;
    background-position: 0% 0%;
    padding: 8rem 0 12rem;
  }
}
@media (max-width: 600px) {
  .features {
    background-size: auto 60rem;
    background-position: 22% 16%;
  }
}
.features h2 {
  text-align: center;
  color: #ffffff;
}
.features h2 strong {
  color: #37d976;
}
.features__content {
  width: 82.8rem;
  margin-top: 8rem;
  margin-left: auto;
}
@media (max-width: 900px) {
  .features__content {
    margin-top: 34.8rem;
    width: 100%;
  }
}
.features .splide {
  visibility: visible;
}
.features .splide__track {
  overflow: visible;
}
.features .splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
}
.features .splide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, auto);
  gap: 2rem;
}
@media (max-width: 900px) {
  .features .splide__list {
    display: flex;
    gap: 0;
  }
}
@media (max-width: 600px) {
  .features .splide__list {
    display: flex;
    gap: 0;
  }
}
.features .splide__slide {
  width: 26.2rem;
  display: contents;
  color: #ffffff;
}
@media (max-width: 900px) {
  .features .splide__slide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-right: 2rem;
  }
}
@media (max-width: 600px) {
  .features .splide__slide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-right: 2rem;
  }
}
.features .splide__slide-image {
  width: 6.4rem;
  height: 6.4rem;
  box-shadow: 0px 10px 12px 0px rgba(35, 36, 49, 0.4);
  border-radius: 1.6rem;
}
.features .splide__slide-image img {
  width: 100%;
}
.features .splide__slide-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 2rem;
}
.features .splide__slide-subtitle {
  opacity: 0;
  max-height: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  .features .splide__slide-subtitle {
    opacity: 1;
    max-height: 8.7rem;
  }
}
.features .splide__slide {
  opacity: 15%;
  transition: opacity 0.3s ease;
}
.features .splide__slide.is-custom-active {
  opacity: 100%;
}
.features .splide__pagination {
  height: 1.8rem;
  bottom: -5.8rem;
}
.features .splide__pagination__page {
  width: 1.2rem;
  height: 1.2rem;
  background-color: rgba(189, 192, 208, 0.3);
  margin: 0 0.6rem;
}
.features .splide__pagination__page.is-active {
  transform: scale(1.5);
  background-color: #37d976;
}
.features .slide-item {
  height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  background-color: #494b59;
  padding: 1.8rem;
  transition: background-color 0.5s ease-in-out;
  overflow: hidden;
}
@media (max-width: 900px) {
  .features .slide-item {
    background-color: #115fed;
  }
}
@media (hover: hover) and (pointer: fine) {
  .features .slide-item:hover {
    cursor: pointer;
    background-color: #115fed;
  }
  .features .slide-item:hover .splide__slide-subtitle {
    opacity: 1;
    max-height: 8.7rem;
  }
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  padding: 4rem 0;
  background-image: url("../assets/images/homepage/square_green.svg");
  background-position: center center;
  background-size: 164px 164px;
  background-repeat: repeat;
}
@media (max-width: 900px) {
  .advantages-list {
    gap: 6rem;
  }
}

.advantage-container-hover {
  padding: 6rem 0;
  position: relative;
}
@media (min-width: 2560px) {
  .advantage-container-hover {
    padding: 2rem 0;
  }
}
@media (max-width: 1601px) {
  .advantage-container-hover {
    padding: 2rem 0;
  }
}
.advantage-container-hover > div {
  position: relative;
  z-index: 1;
}
.advantage-container-hover::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/homepage/hover.svg");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 2560px) {
  .advantage-container-hover::after {
    background-size: auto 100%;
  }
}
@media (max-width: 1366px) {
  .advantage-container-hover::after {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .advantage-container-hover::after {
    opacity: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .advantage-container-hover:hover::after {
    opacity: 1;
  }
  .advantage-container-hover:hover .advantage-item__link {
    opacity: 1;
    visibility: visible;
  }
}

.advantage-item {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.advantage-item.direction-left {
  flex-direction: row;
}
@media (max-width: 900px) {
  .advantage-item.direction-left {
    flex-direction: column;
  }
}

.advantage-item:not(.direction-left) {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .advantage-item:not(.direction-left) {
    flex-direction: column;
  }
}

.advantage-item__images {
  position: relative;
  flex: 50% 1 0;
  width: 50rem;
  height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .advantage-item__images {
    width: 34.2rem;
    height: 34.2rem;
  }
}

.advantage-item__video video {
  display: block;
  max-width: 50rem;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 8px 10px 10px 0px rgba(0, 24, 148, 0.05);
}
@media (max-width: 900px) {
  .advantage-item__video video {
    max-width: 34.2rem;
  }
}

.advantage-item__sticker {
  position: absolute;
  transform: translate(0, -50%);
  z-index: 2;
  width: 27rem;
}
@media (max-width: 900px) {
  .advantage-item__sticker {
    width: 18rem;
  }
}

.advantage-item__badge {
  position: absolute;
  z-index: 2;
  width: 36.8rem;
}
@media (max-width: 900px) {
  .advantage-item__badge {
    width: 19.7rem;
  }
}

.advantage-item__sticker img,
.advantage-item__badge img {
  display: block;
  width: 100%;
}

.advantage-item__content {
  flex: 50% 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advantage-item__text {
  max-width: 46.1rem;
  color: #232431;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.1875;
}
@media (max-width: 900px) {
  .advantage-item__text {
    max-width: 65%;
  }
}
@media (max-width: 600px) {
  .advantage-item__text {
    max-width: 100%;
  }
}
.advantage-item__text strong {
  color: #115fed;
}

.advantage-item__link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #115fed;
  text-decoration: none;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .advantage-item__link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1366px) {
  .advantage-item__link {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 900px) {
  .advantage-item__link {
    width: 65%;
  }
}
@media (max-width: 600px) {
  .advantage-item__link {
    width: 100%;
  }
}
.advantage-item__link-text {
  display: inline-block;
  height: 1.8rem;
  line-height: 1.8rem;
}
.advantage-item__link-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../assets/images/homepage/arrow_right.svg");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.advantage-item.direction-left .advantage-item__sticker {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 900px) {
  .advantage-item.direction-left .advantage-item__sticker {
    transform: translate(-20%, -50%);
  }
}
.advantage-item.direction-left .advantage-item__badge {
  bottom: 0;
  right: 0;
}
@media (max-width: 900px) {
  .advantage-item.direction-left .advantage-item__badge {
    transform: translate(15%, 10%);
  }
}
.advantage-item.direction-left .advantage-item__text,
.advantage-item.direction-left .advantage-item__link {
  margin-left: 6rem;
}
@media (max-width: 900px) {
  .advantage-item.direction-left .advantage-item__text,
  .advantage-item.direction-left .advantage-item__link {
    margin: 0 auto;
  }
}

.advantage-item.direction-right .advantage-item__sticker {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 900px) {
  .advantage-item.direction-right .advantage-item__sticker {
    transform: translate(20%, -50%);
  }
}
.advantage-item.direction-right .advantage-item__badge {
  bottom: 0;
  left: 0;
}
@media (max-width: 900px) {
  .advantage-item.direction-right .advantage-item__badge {
    transform: translate(-10%, 10%);
  }
}
.advantage-item.direction-right .advantage-item__content {
  align-items: flex-end;
}
@media (max-width: 900px) {
  .advantage-item.direction-right .advantage-item__content {
    align-items: flex-start;
  }
}
.advantage-item.direction-right .advantage-item__text,
.advantage-item.direction-right .advantage-item__link {
  margin-right: 6rem;
}
@media (max-width: 900px) {
  .advantage-item.direction-right .advantage-item__text,
  .advantage-item.direction-right .advantage-item__link {
    margin: 0 auto;
  }
}

.security {
  position: relative;
  padding-top: 5.2rem;
  padding-bottom: 23rem;
  background-image: url("../assets/images/homepage/line-2.png");
  background-size: auto 100rem;
  background-repeat: no-repeat;
  background-position: center 70%;
}
@media (min-width: 2560px) {
  .security {
    background-size: 100% auto;
  }
}
@media (max-width: 900px) {
  .security {
    padding-top: 8.3rem;
    background-size: auto 120rem;
    background-position: 66% 29%;
  }
}
@media (max-width: 600px) {
  .security {
    background-size: auto 100rem;
    background-position: 66% 29%;
  }
}
.security__blur-transition {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  height: 20%;
  backdrop-filter: blur(2px);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .security__blur-transition {
    display: none;
  }
}
.security:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background-image: url("../assets/images/homepage/dot_bg.svg");
  background-size: 92px 92px;
  background-position: center;
  background-repeat: repeat;
  z-index: -1;
}
@media (max-width: 900px) {
  .security:before {
    height: 0;
  }
}
.security__square {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background-image: url("../assets/images/homepage/square_green.svg");
  background-size: 164px 164px;
  background-position: center;
  background-repeat: repeat;
  z-index: -1;
}
@media (max-width: 900px) {
  .security__square {
    height: 100%;
    bottom: inherit;
    top: 0;
  }
}
.security__title {
  padding: 0 24.5rem;
  text-align: center;
  margin-bottom: 10rem;
}
@media (max-width: 900px) {
  .security__title {
    padding: 0 2.4rem;
    margin: 0;
    width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 600px) {
  .security__title {
    top: 31.8rem;
  }
}
.security__title strong {
  color: #f60060;
}
@media (max-width: 900px) {
  .security__title strong {
    color: #fa6fc3;
  }
}
.security .badge {
  display: flex;
  width: 100%;
  padding: 0 5rem;
  height: 59.2rem;
  gap: 8.4rem;
  align-items: flex-end;
}
@media (max-width: 900px) {
  .security .badge {
    flex-direction: column;
    align-items: center;
    padding: 0;
    height: auto;
  }
}
.security .badge__image {
  flex: 43% 0 0;
  height: 100%;
  padding-bottom: 1.2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 900px) {
  .security .badge__image {
    width: 52%;
    height: auto;
  }
}
.security .badge__cards {
  display: flex;
  gap: 6rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 900px) {
  .security .badge__cards {
    flex-wrap: nowrap;
    gap: 1.2rem;
  }
}
@media (max-width: 900px) {
  .security .badge .desktop {
    display: none;
  }
}
.security .badge .mobile {
  display: none;
}
@media (max-width: 900px) {
  .security .badge .mobile {
    display: block;
    margin-top: 18rem;
  }
}
@media (max-width: 600px) {
  .security .badge .mobile {
    margin-top: 15.6rem;
  }
}
.security .badge .splide__pagination {
  height: 1.8rem;
  bottom: -5.8rem;
  display: flex;
}
.security .badge .splide__pagination__page {
  width: 1.2rem;
  height: 1.2rem;
  background-color: rgba(189, 192, 208, 0.3);
  margin: 0 0.6rem;
}
.security .badge .splide__pagination__page.is-active {
  transform: scale(1.5);
  background-color: #ffffff;
  opacity: 1;
}
.security .badge__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1 1 calc(50% - 3rem);
  padding-left: 3.8rem;
}
@media (max-width: 900px) {
  .security .badge__card {
    flex: 1 0 29.8rem;
    width: 100%;
  }
}
.security .badge__card:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0.8rem;
  height: 100%;
  border-radius: 10rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 37.95%, rgba(255, 255, 255, 0) 100%);
}
.security .badge__card img {
  max-width: 100%;
  display: block;
  width: 8.4rem;
  height: 8.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background-color: #2388e9;
  border-radius: 2.1rem;
  box-shadow: 0px 10px 12px 0px rgba(35, 36, 49, 0.12);
}
.security .badge__title {
  font-size: 2.4rem;
  color: #ffffff;
  font-weight: 700;
  margin-top: 3.4rem;
  margin-bottom: 1.8rem;
  line-height: 1.17;
}
.security .badge__description {
  font-size: 1.8rem;
  color: #ffffff;
  opacity: 0.8;
  line-height: 1.17;
}

.reviews {
  position: relative;
  padding-top: 5.2rem;
  padding-bottom: 22rem;
  background-image: url("../assets/images/homepage/line-1.svg");
  background-size: auto 62rem;
  background-repeat: no-repeat;
  background-position: center 93%;
}
@media (min-width: 2560px) {
  .reviews {
    background-size: 100% auto;
  }
}
@media (max-width: 1601px) {
  .reviews {
    background-position: center 68.6rem;
  }
}
@media (max-width: 900px) {
  .reviews {
    padding-top: 1rem;
    padding-bottom: 15.4rem;
    background-image: none;
  }
}
@media (max-width: 600px) {
  .reviews {
    background-size: auto 25rem;
    background-position: 55% 29%;
  }
}
.reviews:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/homepage/square_green.svg");
  background-position: center center;
  background-size: 164px 164px;
  background-repeat: repeat;
  z-index: -1;
}
.reviews .additional-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .reviews .additional-image-container {
    display: none;
  }
}
.reviews .additional-image {
  position: absolute;
  width: 12rem;
  height: 12rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.reviews .additional-image:nth-child(1) {
  background-image: url("../assets/images/homepage/add-1.svg");
  top: 25.6rem;
  left: 0;
}
.reviews .additional-image:nth-child(2) {
  background-image: url("../assets/images/homepage/add-2.svg");
  top: 10.3rem;
  left: calc(95% - 12rem);
}
.reviews .additional-image:nth-child(3) {
  background-image: url("../assets/images/homepage/add-3.svg");
  top: 49.4rem;
  left: calc(105% - 12rem);
}
.reviews__title {
  max-width: 87.6rem;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 900px) {
  .reviews__title {
    letter-spacing: -0.5px;
    width: 90%;
  }
}
@media (max-width: 600px) {
  .reviews__title {
    width: 100%;
  }
}
.reviews__title strong {
  font-weight: 600;
  color: #ffaf59;
}
.reviews__wrapper {
  position: relative;
  max-width: 80rem;
  margin: 8rem auto;
  padding: 1rem 0 10rem;
}
@media (max-width: 900px) {
  .reviews__wrapper {
    margin-top: 5rem;
    padding: 0 0 9rem;
  }
}
.reviews__stars {
  display: block;
  margin: 0 auto 2.6rem;
  height: 3.5rem;
  width: 18.8rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 900px) {
  .reviews__stars {
    height: 3rem;
    width: 16rem;
    margin-bottom: 2rem;
  }
}
.reviews__text {
  padding: 0 3.5rem;
  text-align: center;
  font-family: "Rokkitt", serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 3.9rem;
}
@media (max-width: 900px) {
  .reviews__text {
    padding: 0;
    font-size: 2.4rem;
    line-height: 2.7rem;
  }
}
.reviews__author, .reviews__date {
  position: absolute;
  font-family: "Zeyada", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.8rem;
}
@media (max-width: 900px) {
  .reviews__author, .reviews__date {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.reviews__author {
  top: 0;
  left: 0;
  transform: rotate(-7deg);
}
@media (max-width: 900px) {
  .reviews__author {
    top: 1.5rem;
    left: -0.5rem;
  }
}
.reviews__date {
  bottom: 0;
  right: 0;
  transform: rotate(-6deg);
}
@media (max-width: 900px) {
  .reviews__date {
    bottom: 5rem;
  }
}
.reviews__videos {
  visibility: visible;
  width: 100%;
  height: auto;
  margin-top: 7.8rem;
}
.reviews__list {
  width: 100%;
  height: 48rem;
  gap: 4rem;
  justify-content: center;
}
@media (max-width: 900px) {
  .reviews__list {
    gap: inherit;
    justify-content: inherit;
  }
}
.reviews .splide__track {
  overflow: visible;
}
.reviews .splide.is-initialized:not(.is-active) .splide__list {
  display: flex;
}
.reviews .splide__pagination {
  bottom: -4rem;
}
.reviews .splide__pagination__page {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #bdc0d0;
  margin: 0 0.6rem;
}
.reviews .splide__pagination__page.is-active {
  background-color: #115fed;
}
.reviews .review {
  position: relative;
  width: 27rem;
  height: 48rem;
  border-radius: 3rem;
  border: 0.4rem solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out;
}
.reviews .review__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews .review__controls {
  position: absolute;
  z-index: 999;
  transform: translateZ(0);
  bottom: 2.2rem;
  left: 2.2rem;
  height: 4.8rem;
  width: 4.8rem;
}
.reviews .review .play,
.reviews .review .pause {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.reviews .review .play {
  display: block;
}
.reviews .review .pause {
  display: none;
}
.reviews .review.played {
  border-color: #37d976;
}
.reviews .review.played .play {
  display: none;
}
.reviews .review.played .pause {
  display: block;
}

.ready {
  position: relative;
  padding-top: 0;
  padding-bottom: 14rem;
  background-image: url("../assets/images/homepage/square_green.svg");
  background-position: center center;
  background-size: 164px 164px;
  background-repeat: repeat;
}
@media (max-width: 900px) {
  .ready {
    padding-top: 3.2rem;
    padding-bottom: 8.94rem;
  }
}
.ready__blur-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  backdrop-filter: blur(3px);
  z-index: 0;
  pointer-events: none;
}
.ready .additional-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .ready .additional-image-container {
    display: none;
  }
}
.ready .additional-image {
  position: absolute;
  width: 10rem;
  height: 10rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.ready .additional-image:nth-child(1) {
  background-image: url("../assets/images/homepage/add2-1.svg");
  top: 4rem;
  left: 12.5%;
}
.ready .additional-image:nth-child(2) {
  background-image: url("../assets/images/homepage/add2-2.svg");
  top: 44rem;
  left: 4%;
}
.ready .additional-image:nth-child(3) {
  background-image: url("../assets/images/homepage/add2-3.svg");
  top: 15.4rem;
  left: calc(93% - 10rem);
}
.ready__content {
  max-width: 87.6rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ready__content div:not(:last-child) {
  margin-top: 3.8rem;
}
.ready__content .ready__os {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.ready h2 {
  text-align: center;
}
.ready h2 strong {
  color: #115fed;
}
@media (max-width: 600px) {
  .ready h2 {
    font-size: 4.2rem;
  }
}
.ready__subtitle {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.ready__image {
  position: relative;
  margin-top: 8rem;
}
.ready__image::before {
  content: "";
  position: absolute;
  top: -14rem;
  left: 0;
  width: 10rem;
  height: 10rem;
  background: url(../assets/images/about/ready_label-1.svg) center/contain no-repeat;
}
@media (max-width: 900px) {
  .ready__image::before {
    display: none;
  }
}
.ready__image::after {
  content: "";
  position: absolute;
  top: -18.2rem;
  right: -1.3rem;
  width: 10rem;
  height: 10rem;
  background: url(../assets/images/about/ready_label-2.svg) center/contain no-repeat;
}
@media (max-width: 900px) {
  .ready__image::after {
    display: none;
  }
}
.ready__image img {
  max-width: 100%;
  width: 100%;
  max-height: 77.76rem;
  height: 100%;
  -o-object-position: calc(50% + 5rem);
     object-position: calc(50% + 5rem);
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .ready__image img {
    -o-object-position: center;
       object-position: center;
    max-height: 100%;
  }
}
@media (max-width: 600px) {
  .ready__image {
    margin-top: 4rem;
  }
}

.lastposts {
  position: relative;
  padding-top: 12.4rem;
  padding-bottom: 22rem;
  background-image: url("../assets/images/homepage/dot_bg.svg");
  background-size: 92px 92px;
  background-position: center;
  background-repeat: repeat;
}
@media (max-width: 900px) {
  .lastposts {
    padding-top: 6.5rem;
    padding-bottom: 13rem;
  }
}
.lastposts__title {
  text-align: center;
  margin-bottom: 2.8rem;
}
@media (max-width: 900px) {
  .lastposts__title {
    margin-bottom: 3rem;
  }
}
.lastposts__title strong {
  color: #37d976;
}
.lastposts__link {
  position: relative;
  margin-bottom: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #115fed;
  text-decoration: none;
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .lastposts__link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 900px) {
  .lastposts__link {
    margin-bottom: 4rem;
  }
}
.lastposts__link-text {
  display: inline-block;
  height: 1.8rem;
  line-height: 1.8rem;
}
.lastposts__link-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../assets/images/homepage/arrow_right.svg");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.lastposts__list {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (max-width: 900px) {
  .lastposts__list {
    flex-direction: column;
    gap: 4rem;
  }
}
.lastposts__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 44rem;
  padding: 4rem 4rem 6rem;
  margin-bottom: 6.2rem;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease;
}
@media (max-width: 900px) {
  .lastposts__item {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .lastposts__item {
    width: 100%;
    padding: 3rem 3rem 4.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .lastposts__item:hover {
    transform: translate3d(0, 6.2rem, 0);
  }
}
.lastposts__item:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 8px 10px 10px 0px rgba(0, 24, 148, 0.05);
  border-radius: 2.5rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5rem), calc(100% - 6rem) 100%, 0 100%);
}
@media (max-width: 900px) {
  .lastposts__item:after {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), calc(100% - 3.5rem) 100%, 0 100%);
  }
}
.lastposts__item:nth-child(1):before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -0.6rem;
  right: -0.4rem;
  width: 8rem;
  height: 7.1rem;
  background-image: url("../assets/images/homepage/triangle-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 900px) {
  .lastposts__item:nth-child(1):before {
    width: 6.2rem;
    height: 4.3rem;
    bottom: -0.4rem;
    right: -1rem;
  }
}
.lastposts__item:nth-child(2):before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -0.6rem;
  right: -0.4rem;
  width: 8rem;
  height: 7.1rem;
  background-image: url("../assets/images/homepage/triangle-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 900px) {
  .lastposts__item:nth-child(2):before {
    width: 6.2rem;
    height: 4.3rem;
    bottom: -0.4rem;
    right: -1rem;
  }
}
.lastposts__item:nth-child(3):before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -0.6rem;
  right: -0.4rem;
  width: 8rem;
  height: 7.1rem;
  background-image: url("../assets/images/homepage/triangle-3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 900px) {
  .lastposts__item:nth-child(3):before {
    width: 6.2rem;
    height: 4.3rem;
    bottom: -0.4rem;
    right: -1rem;
  }
}
.lastposts__item a {
  width: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}
.lastposts__image-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.lastposts__image-wrapper img {
  width: 100%;
  height: 36rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .lastposts__image-wrapper img {
    height: 28rem;
  }
}
.lastposts__post-title {
  position: relative;
  z-index: 3;
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 4rem;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 900px) {
  .lastposts__post-title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

.faq {
  position: relative;
  padding-top: 6.2rem;
  padding-bottom: 39rem;
  background-image: url("../assets/images/homepage/line-3.svg");
  background-size: auto 90.8rem;
  background-repeat: no-repeat;
  background-position: center 80%;
}
@media (min-width: 2560px) {
  .faq {
    background-size: 100% auto;
    background-position: center 0%;
  }
}
@media (max-width: 1601px) {
  .faq {
    background-position: center 75%;
  }
}
@media (max-width: 900px) {
  .faq {
    padding-top: 2rem;
    padding-bottom: 18rem;
    background-image: url("../assets/images/homepage/line-4.svg");
    background-size: 100% auto;
    background-position: center 0%;
  }
}
.faq__title {
  text-align: center;
  margin-bottom: 8rem;
}
.faq__title strong {
  color: #115fed;
}
.faq__wrapper {
  width: 100%;
}
.faq__item {
  position: relative;
  padding: 4rem 0;
  font-size: 1.8rem;
  line-height: 1.33;
  cursor: pointer;
}
.faq__item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.8rem;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(17, 95, 237, 0.2) 0%, rgba(17, 95, 237, 0.05) 100%);
}
.faq__link {
  color: #1e1e2a;
}
.faq__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item-title {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease-in, color 0.4s ease-in;
}
.faq__item-image {
  width: 2.8rem;
  height: 2.8rem;
  stroke: #232431;
  transition: all 0.4s ease-in;
}
.faq__item-content {
  overflow: hidden;
  height: 0px;
  transition: height 0.4s ease-in;
}
.faq__item.open .faq__item-title {
  color: #115fed;
  margin-bottom: 2.6rem;
}
.faq__item.open .faq__item-image {
  stroke: #115FED;
  transform: rotate(180deg);
}
