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 {
  margin-top: 5.2rem;
}
@media (max-width: 600px) {
  .intro {
    margin-top: 0rem;
  }
}
.intro h1 {
  text-align: center;
}
.intro h1 span {
  color: #115fed;
}
.intro__content {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12rem;
}
@media (max-width: 900px) {
  .intro__content {
    margin-top: 4rem;
    gap: 8rem;
  }
}
.intro .card {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 12rem;
  gap: 12rem;
}
.intro .card__texts {
  max-width: 48rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  z-index: 1;
}
.intro .card__title {
  font-size: 3.2rem;
  font-weight: 700;
}
.intro .card__subtitle {
  font-size: 2rem;
  font-weight: 600;
}
.intro .card__image {
  position: relative;
  height: 36.4rem;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 900px) {
  .intro .card__image {
    height: unset;
  }
}
@media (max-width: 600px) {
  .intro .card__image {
    height: 22.2rem;
  }
}
.intro .card__image img {
  width: 56rem;
  height: 36.4rem;
  border-radius: 3rem;
}
@media (max-width: 900px) {
  .intro .card__image img {
    width: 100%;
    height: unset;
  }
}
@media (max-width: 600px) {
  .intro .card__image img {
    width: 34.2rem;
    height: 22.2rem;
  }
}
.intro .card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 44rem;
  top: -7rem;
  left: 50%;
  background-image: url(../assets/images/about/paper_bg.png);
  transform: translateX(-50%) rotate(0deg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
@media (max-width: 1601px) {
  .intro .card::before {
    height: 40rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .intro .card:hover .card__image {
    transform: rotate(3deg);
  }
  .intro .card:hover::before {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .intro .card {
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
@media (max-width: 600px) {
  .intro .card {
    padding: 0;
  }
}
.intro .card:nth-child(even) {
  flex-direction: row-reverse;
}
.intro .card:nth-child(even)::before {
  top: -2rem;
}
@media (hover: hover) and (pointer: fine) {
  .intro .card:nth-child(even):hover .card__image {
    transform: rotate(-3deg);
  }
}
@media (max-width: 900px) {
  .intro .card:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.intro .card:nth-of-type(1) .card__subtitle {
  position: relative;
}
.intro .card:nth-of-type(1) .card__subtitle span {
  position: relative;
  color: #115fed;
}
.intro .card:nth-of-type(1) .card__subtitle::before {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  left: -0.7rem;
  width: 16.7rem;
  height: 4rem;
  background: url(../assets/images/about/text_line.svg) center/contain no-repeat;
}
.intro .card:nth-of-type(1) .card__image .card__image-label {
  position: absolute;
  bottom: 2.5rem;
  left: -4.6rem;
  width: 9.23rem;
  height: 9.45rem;
  background: url(../assets/images/about/image_label_1-1.svg) center/contain no-repeat;
}
@media (max-width: 600px) {
  .intro .card:nth-of-type(1) .card__image .card__image-label {
    width: 5.6rem;
    height: 5.7rem;
    bottom: -1.45rem;
    left: 0;
  }
}
.intro .card:nth-of-type(1) .card__image::before {
  content: "";
  position: absolute;
  bottom: 16rem;
  left: 9.8rem;
  width: 6.4rem;
  height: 6.56rem;
  background: url(../assets/images/about/image_label_1-1.svg) center/contain no-repeat;
}
@media (max-width: 600px) {
  .intro .card:nth-of-type(1) .card__image::before {
    width: 4rem;
    height: 4rem;
    bottom: 8.75rem;
    left: 6.68rem;
  }
}
.intro .card:nth-of-type(1) .card__image::after {
  content: "";
  position: absolute;
  bottom: 20.9rem;
  left: 24rem;
  width: 3.2rem;
  height: 3.28rem;
  background: url(../assets/images/about/image_label_1-1.svg) center/contain no-repeat;
}
@media (max-width: 600px) {
  .intro .card:nth-of-type(1) .card__image::after {
    width: 2rem;
    height: 2rem;
    bottom: 13.05rem;
    left: 14.68rem;
  }
}
.intro .card:nth-of-type(2) .card__subtitle span {
  position: relative;
  color: #37d976;
}
.intro .card:nth-of-type(2) .card__subtitle span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 120%;
  height: 120%;
  background: url(../assets/images/about/text_circle-1.svg) center/cover no-repeat;
}
.intro .card:nth-of-type(2) .card__image .card__image-label {
  position: absolute;
  top: -6.5rem;
  left: -6.2rem;
  width: 12.4rem;
  height: 13rem;
  background: url(../assets/images/about/image_label_2-1.svg) center/contain no-repeat;
}
@media (max-width: 600px) {
  .intro .card:nth-of-type(2) .card__image .card__image-label {
    width: 6rem;
    height: 6.3rem;
    top: -3.28rem;
    left: 0.19rem;
  }
}
.intro .card:nth-of-type(2) .card__image::before {
  content: "";
  position: absolute;
  bottom: -4rem;
  right: 0;
  width: 7.68rem;
  height: 7.68rem;
  background: url(../assets/images/about/image_label_2-2.svg) center/contain no-repeat;
}
@media (max-width: 600px) {
  .intro .card:nth-of-type(2) .card__image::before {
    width: 4.7rem;
    height: 4.7rem;
    bottom: -2.7rem;
  }
}
.intro .card:nth-of-type(3) .card__subtitle span {
  position: relative;
  color: #115fed;
}
.intro .card:nth-of-type(3) .card__subtitle span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-53%, -45%, 0);
  width: 115%;
  height: 120%;
  background: url(../assets/images/about/text_circle-2.svg) center/cover no-repeat;
}
.intro .card:nth-of-type(3) .card__image .card__image-label {
  position: absolute;
  top: -5.1rem;
  right: -6.2rem;
  width: 12.2rem;
  height: 13.9rem;
  background: url(../assets/images/about/image_label_3-1.svg) center/contain no-repeat;
}
@media (max-width: 600px) {
  .intro .card:nth-of-type(3) .card__image .card__image-label {
    width: 7.4rem;
    height: 8.5rem;
    top: -3.1rem;
    right: 2.2rem;
  }
}

.slider {
  position: relative;
  margin-top: 14rem;
  padding-top: 16rem;
  padding-bottom: 20rem;
  border-radius: 3rem;
  background-color: #2c2e3f;
  overflow: hidden;
}
@media (max-width: 900px) {
  .slider {
    margin-top: 5.4rem;
    padding: 8rem 0;
  }
}
.slider h2 {
  text-align: center;
  color: #ffffff;
}
.slider h2 span {
  color: #37d976;
}
.slider__subtitle {
  max-width: 87.6rem;
  margin: 0 auto;
  margin-top: 3.8rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #bdc0d0;
}
.slider .splide__track {
  overflow: visible;
}
.slider .splide__slide {
  margin-right: 4rem;
  width: 44rem !important;
  height: 34rem;
}
@media (max-width: 900px) {
  .slider .splide__slide {
    margin-right: 2rem;
    width: 22rem !important;
    height: 17rem;
  }
}
.slider .splide__slide img {
  width: 44rem;
  height: 34rem;
  border-radius: 3rem;
}
@media (max-width: 900px) {
  .slider .splide__slide img {
    width: 22rem;
    height: 17rem;
    border-radius: 1.5rem;
  }
}
.slider .splide:nth-of-type(1) {
  margin-top: 8rem;
}
@media (max-width: 900px) {
  .slider .splide:nth-of-type(1) {
    margin-top: 6rem;
  }
}
.slider .splide:nth-of-type(2) {
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .slider .splide:nth-of-type(2) {
    margin-top: 2rem;
  }
}

.media {
  position: relative;
  background: url(../assets/images/about/media_bg.svg) center no-repeat;
  background-size: cover;
  margin: 10rem auto;
}
@media (max-width: 900px) {
  .media {
    margin-top: 1.7rem;
    margin-bottom: 0rem;
    padding-bottom: 14rem;
    background-position: calc(50% - 41rem) calc(50% + 0.5rem);
  }
}
@media (max-width: 600px) {
  .media {
    padding-bottom: 9.6rem;
    background-position: calc(50% - 29rem);
    background-size: cover;
  }
}
.media .container {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .media .container {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .media__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.media__image {
  flex-shrink: 0;
  width: 72rem;
}
@media (max-width: 900px) {
  .media__image {
    max-width: 52rem;
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .media__image {
    width: 21.4rem;
  }
}
.media__image img {
  width: 100%;
  height: 81rem;
}
@media (max-width: 900px) {
  .media__image img {
    max-height: 81rem;
    height: 100%;
  }
}
@media (max-width: 600px) {
  .media__image img {
    height: 24rem;
  }
}
.media__subtitle {
  margin-top: 3.8rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .media__subtitle {
    text-align: center;
  }
}
.media__subtitle a {
  color: #115fed;
}
.media__text {
  font-size: 2rem;
  font-weight: 600;
}
.media__button {
  margin-top: 3.8rem;
  max-width: 32rem;
}

.ready {
  margin-top: 19.75rem;
  margin-bottom: 22rem;
}
@media (max-width: 900px) {
  .ready {
    margin-top: 4rem;
    margin-bottom: 14.5rem;
  }
}
@media (max-width: 600px) {
  .ready {
    margin-top: 0.4rem;
  }
}
.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 span {
  color: #115fed;
}
@media (max-width: 600px) {
  .ready h2 {
    font-size: 4.2rem;
  }
}
.ready__subtitle {
  font-size: 2rem;
  font-weight: 600;
}
.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;
  }
}
