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 {
  position: relative;
  padding-bottom: 18.9rem;
  background: url(../assets/images/features/intro_bg.svg) center/cover repeat;
}
@media (max-width: 900px) {
  .intro {
    padding-bottom: 6.9rem;
  }
}
@media (max-width: 600px) {
  .intro {
    background: none;
  }
}
.intro__bg {
  display: none;
}
@media (max-width: 600px) {
  .intro__bg {
    position: absolute;
    left: 0;
    top: -12rem;
    display: block;
    width: 100%;
    height: 79.1rem;
  }
}
.intro .container {
  position: relative;
}
.intro h1 {
  text-align: center;
}
.intro__wrapper {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.6rem;
}
@media (max-width: 600px) {
  .intro__wrapper {
    margin-top: 4rem;
  }
}
.intro__content {
  display: flex;
  flex-direction: column;
  max-width: 34.2rem;
}
@media (max-width: 600px) {
  .intro__content {
    align-items: center;
  }
}
.intro__subtitle {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 600px) {
  .intro__subtitle {
    text-align: center;
  }
}
.intro__buttons {
  margin-top: 4.4rem;
  max-width: 31.6rem;
  flex-direction: column;
}
@media (max-width: 600px) {
  .intro__buttons {
    margin-top: 2.8rem;
  }
}
.intro__buttons a {
  width: 100%;
}
.intro__os {
  max-width: 31.6rem;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 600px) {
  .intro__os {
    margin-top: 1.2rem;
  }
}
.intro__image {
  max-width: 86.4rem;
}
@media (max-width: 600px) {
  .intro__image {
    display: none;
  }
}
.intro__image img {
  width: 100%;
}
.intro__image--mobile {
  display: none;
}
@media (max-width: 600px) {
  .intro__image--mobile {
    display: block;
    margin-top: 2.6rem;
    max-width: 32rem;
  }
}

.manage {
  position: relative;
}
.manage h2 {
  margin: 0 auto 13.3rem;
  text-align: center;
  max-width: 100rem;
}
@media (max-width: 900px) {
  .manage h2 {
    margin: 0 auto 6rem;
    max-width: 100%;
  }
}
.manage h2 span {
  color: #115fed;
}
.manage__content {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
@media (max-width: 900px) {
  .manage__content {
    gap: 9.8rem;
  }
}
.manage .card {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 11rem;
  padding-left: 10rem;
}
.manage .card__texts {
  position: relative;
  max-width: 41rem;
}
.manage .card__title {
  font-size: 4.2rem;
  font-weight: 700;
}
.manage .card__subtitle {
  font-size: 2.4rem;
  font-weight: 400;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .manage .card__subtitle {
    margin-top: 2rem;
  }
}
.manage .card__video {
  position: relative;
  width: 50rem;
  height: 50rem;
}
.manage .card__video::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  box-sizing: border-box;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 3rem;
  background: linear-gradient(252.92deg, rgba(255, 255, 255, 0) 37.96%, #115fed 54.62%, #37d976 71.92%, rgba(255, 255, 255, 0) 90.27%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .manage .card__video::before {
    padding: 1px;
  }
}
@media (max-width: 900px) {
  .manage .card__video {
    width: 41rem;
    height: 41rem;
  }
}
@media (max-width: 600px) {
  .manage .card__video {
    width: 34.2rem;
    height: 34.2rem;
  }
}
.manage .card__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 3rem;
}
.manage .card__video-label {
  position: absolute;
  z-index: 2;
  width: 8.4rem;
  height: 8.4rem;
  top: -3.6rem;
  left: -3.6rem;
}
@media (max-width: 900px) {
  .manage .card__video-label {
    top: -3.8rem;
    left: -0.8rem;
  }
}
.manage .card__video-label img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.manage .card::before {
  content: "";
  position: absolute;
  width: 115%;
  height: 60rem;
  top: -7rem;
  left: 50%;
  background-image: url(../assets/images/features/paper_bg.png);
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .manage .card:hover::before {
    opacity: 1;
  }
  .manage .card:hover .card__video::before {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .manage .card {
    flex-direction: column;
    padding: 0;
    gap: 2.4rem;
  }
}
.manage .card:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: flex-start;
  padding-right: 10rem;
  padding-left: 0;
}
.manage .card:nth-child(even)::before {
  transform: translateX(-50%) scale(-1, 1);
}
@media (max-width: 900px) {
  .manage .card:nth-child(even) {
    flex-direction: column;
    padding: 0;
  }
}

.ask {
  position: relative;
  margin-top: 11.7rem;
  padding-bottom: 18.6rem;
  background: url(../assets/images/features/ask_bg.svg) top/cover no-repeat;
}
@media (max-width: 900px) {
  .ask {
    margin-top: 5rem;
    padding-bottom: 12.5rem;
  }
}
.ask h2 {
  padding-top: 20rem;
  text-align: center;
  color: #ffffff;
}
.ask h2 span {
  color: #37d976;
}
@media (max-width: 900px) {
  .ask h2 {
    padding-top: 15rem;
  }
}
.ask__content {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12.5rem;
}
@media (max-width: 900px) {
  .ask__content {
    margin-top: 6rem;
  }
}
.ask__image {
  width: 70rem;
  height: 50rem;
  flex-shrink: 0;
  box-shadow: 8px 10px 10px 0px rgba(0, 24, 148, 0.05);
  border-radius: 3rem;
}
@media (max-width: 900px) {
  .ask__image {
    display: none;
  }
}
.ask__image img {
  width: 100%;
  border-radius: 3rem;
}
.ask__image-mobile {
  display: none;
  width: 34.2rem;
  height: 24.43rem;
  box-shadow: 8px 10px 10px 0px rgba(0, 24, 148, 0.05);
  border-radius: 1.46rem;
}
.ask__image-mobile img {
  width: 100%;
  border-radius: 1.46rem;
}
@media (max-width: 900px) {
  .ask__image-mobile {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .ask__image-mobile {
    display: block;
    max-width: 34.2rem;
    max-height: 24.43rem;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}
.ask [class^=ask__image] {
  position: relative;
}
.ask [class^=ask__image]::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  box-sizing: border-box;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 3rem;
  background: linear-gradient(252.92deg, rgba(255, 255, 255, 0) 37.96%, #115fed 54.62%, #37d976 71.92%, rgba(255, 255, 255, 0) 90.27%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media (max-width: 900px) {
  .ask [class^=ask__image]::before {
    padding: 1px;
    border-radius: 1.46rem;
  }
}
.ask__texts {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  font-size: 2.4rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 47.5rem;
}
@media (max-width: 900px) {
  .ask__texts {
    max-width: 100%;
  }
}
.ask__texts-image {
  width: 6.4rem;
  height: 6.4rem;
  box-shadow: 0px 7.62px 9.14px 0px rgba(35, 36, 49, 0.12);
  border-radius: 1.6rem;
}
.ask__texts-image img {
  width: 100%;
}
@media (max-width: 900px) {
  .ask__texts-image {
    display: none;
  }
}
.ask__texts .ask__text-first span {
  position: relative;
  white-space: nowrap;
  color: #37d976;
}
.ask__texts .ask__text-first span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-52%, -50%, 0);
  width: 110%;
  height: 160%;
  background: url(../assets/images/features/ask_text_circle.svg) center/cover no-repeat;
}
.ask__texts .ask__text-second {
  max-width: 41.2rem;
}
.ask__texts .ask__text-second span {
  position: relative;
  white-space: nowrap;
}
.ask__texts .ask__text-second span::before {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  left: -0.7rem;
  width: 106%;
  height: 4rem;
  background: url(../assets/images/features/ask_text_line.svg) center/contain no-repeat;
}
@media (max-width: 900px) {
  .ask__texts .ask__text-second {
    max-width: 100%;
  }
}

.stay-mobile {
  position: relative;
  margin-top: -5rem;
  padding-top: 16rem;
  background: url(../assets/images/features/stay-mobile_bg.png) center/5% repeat;
  border-radius: 3rem 3rem 0 0;
}
@media (max-width: 900px) {
  .stay-mobile {
    padding-top: 8rem;
  }
}
.stay-mobile h2 {
  color: #ffffff;
  text-align: center;
}
.stay-mobile h2 span {
  color: #ffaf59;
}
.stay-mobile__subtitle {
  max-width: 83.7rem;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 3.8rem;
  color: #ffffff;
  opacity: 0.7;
  text-align: center;
}
.stay-mobile__cards {
  margin-top: 8rem;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}
.stay-mobile__cards .card__video {
  position: relative;
  width: 44rem;
  height: 44rem;
}
.stay-mobile__cards .card__video::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  box-sizing: border-box;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 3rem;
  background: linear-gradient(252.92deg, rgba(255, 255, 255, 0) 37.96%, #115fed 54.62%, #37d976 71.92%, rgba(255, 255, 255, 0) 90.27%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .stay-mobile__cards .card__video::before {
    opacity: 1;
    padding: 1px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .stay-mobile__cards .card__video:hover::before {
    opacity: 1;
  }
  .stay-mobile__cards .card__video:hover video {
    filter: brightness(1);
  }
}
@media (max-width: 600px) {
  .stay-mobile__cards .card__video {
    width: 34.2rem;
    height: 34.2rem;
  }
}
.stay-mobile__cards .card__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3rem;
  filter: brightness(0.14);
  transition: filter 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .stay-mobile__cards .card__video video {
    filter: brightness(1);
  }
}
.stay-mobile__cards .card__text {
  margin-top: 2rem;
  text-align: center;
  opacity: 0.5;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .stay-mobile__cards {
    flex-direction: column;
    margin-top: 6rem;
  }
}

.tools-slider {
  position: relative;
  margin-top: -1px;
  padding-top: 22rem;
  padding-bottom: 16rem;
  background: url(../assets/images/features/stay-mobile_bg.png) center/5% repeat;
  border-radius: 0 0 3rem 3rem;
}
@media (max-width: 900px) {
  .tools-slider {
    padding-top: 10rem;
    padding-bottom: 13.8rem;
  }
}
.tools-slider h2 {
  text-align: center;
  color: #ffffff;
}
.tools-slider h2 span {
  color: #37d976;
}
.tools-slider__content {
  margin-top: 8rem;
}
@media (max-width: 900px) {
  .tools-slider__content {
    margin-top: 6rem;
  }
}
.tools-slider .splide {
  visibility: visible;
}
.tools-slider .splide__track {
  overflow: visible;
}
.tools-slider .splide__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 2.2rem;
}
@media (max-width: 900px) {
  .tools-slider .splide__list {
    display: flex;
    gap: 0;
  }
}
@media (max-width: 600px) {
  .tools-slider .splide__list {
    display: flex;
    gap: 0;
  }
}
.tools-slider .splide__slide {
  width: 26.2rem;
  display: contents;
  color: #ffffff;
}
@media (max-width: 900px) {
  .tools-slider .splide__slide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-right: 2rem;
  }
}
@media (max-width: 600px) {
  .tools-slider .splide__slide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-right: 2rem;
  }
}
.tools-slider .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;
}
.tools-slider .splide__slide-image img {
  width: 100%;
}
.tools-slider .splide__slide-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 2rem;
}
.tools-slider .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) {
  .tools-slider .splide__slide-subtitle {
    opacity: 1;
    max-height: 8.7rem;
  }
}
.tools-slider .splide__slide {
  opacity: 15%;
  transition: opacity 0.3s ease;
}
.tools-slider .splide__slide.is-custom-active {
  opacity: 100%;
}
.tools-slider .splide__pagination {
  height: 1.8rem;
  bottom: -5.8rem;
}
.tools-slider .splide__pagination__page {
  width: 1.2rem;
  height: 1.2rem;
  background-color: rgba(189, 192, 208, 0.3);
  margin: 0 0.6rem;
}
.tools-slider .splide__pagination__page.is-active {
  transform: scale(1.5);
  background-color: #37d976;
}
.tools-slider .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) {
  .tools-slider .slide-item {
    background-color: #115fed;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tools-slider .slide-item:hover {
    cursor: pointer;
    background-color: #115fed;
  }
  .tools-slider .slide-item:hover .splide__slide-subtitle {
    opacity: 1;
    max-height: 8.7rem;
  }
}

.ready {
  position: relative;
  padding-top: 10.4rem;
  padding-bottom: 14rem;
  background: url(../assets/images/common/dots_bg.png) center/92px 92px repeat, #ecedf6;
}
@media (max-width: 900px) {
  .ready {
    padding-top: 3.2rem;
    padding-bottom: 8.94rem;
  }
}
.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;
  }
}

.add-ai {
  position: relative;
  padding-top: 16rem;
  padding-bottom: 14.6rem;
  margin-bottom: -4.6rem;
  background: url(../assets/images/features/stay-mobile_bg.png) center/5% repeat;
  border-radius: 3rem 3rem 0 0;
}
@media (max-width: 900px) {
  .add-ai {
    padding-top: 8rem;
    padding-bottom: 22.6rem;
  }
}
.add-ai h2 {
  text-align: center;
  color: #ffffff;
}
.add-ai h2 span {
  color: #37d976;
}
.add-ai__subtitle {
  margin-top: 3.8rem;
  color: #ffffff;
  text-align: center;
  opacity: 0.8;
  font-size: 2rem;
  font-weight: 600;
}
.add-ai__content {
  margin-top: 5.7rem;
  display: flex;
  gap: 8.8rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .add-ai__content {
    flex-direction: column-reverse;
    margin-top: 4rem;
    gap: 4rem;
  }
}
@media (max-width: 600px) {
  .add-ai__items {
    padding: 0 1.3rem;
  }
}
.add-ai .texts-items {
  max-width: 35.8rem;
  display: flex;
  flex-direction: column;
  gap: 8.8rem;
  color: #ffffff;
}
.add-ai .texts-items .item {
  position: relative;
}
.add-ai .texts-items .item__title {
  font-size: 2.4rem;
  font-weight: 700;
}
.add-ai .texts-items .item__subtitle {
  font-size: 2rem;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 1.2rem;
}
.add-ai .texts-items .item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -4.8rem;
  left: 0;
  width: 100%;
  height: 0.8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) -0.04%, rgba(255, 255, 255, 0) 100.72%);
}
@media (max-width: 600px) {
  .add-ai .texts-items {
    max-width: 100%;
  }
}
.add-ai__button {
  margin-top: 6rem;
}
.add-ai__image {
  max-width: 75.6rem;
  max-height: 67.3rem;
}
.add-ai__image img {
  width: 100%;
}
@media (max-width: 600px) {
  .add-ai__image {
    transform: scale(1.16) translateX(1rem);
  }
}

.reviews-slider {
  position: relative;
  padding-top: 14rem;
  padding-bottom: 24.6rem;
  background: url(../assets/images/features/reviews-main_bg.svg) 15%/125% no-repeat, url(../assets/images/common/blue-rectangle_bg.png) center 5.7rem/15.5rem repeat, #ecedf6;
}
@media (max-width: 600px) {
  .reviews-slider {
    background: url(../assets/images/common/blue-rectangle_bg.png) center 2.4rem/15.5rem repeat, url(../assets/images/features/reviews-main_bg-mobile.svg) center/cover no-repeat, #ecedf6;
  }
}
@media (max-width: 900px) {
  .reviews-slider {
    padding-top: 6rem;
    padding-bottom: 20rem;
  }
}
@media (max-width: 600px) {
  .reviews-slider {
    padding-top: 0;
  }
}
.reviews-slider .splide {
  padding-top: 13rem;
}
@media (max-width: 600px) {
  .reviews-slider .splide {
    padding-top: 11rem;
  }
}
.reviews-slider .splide__track {
  overflow: visible;
}
.reviews-slider .splide__slide {
  position: relative;
  margin-right: 6rem;
  border-radius: 3rem;
  height: 35.6rem;
  background: url(../assets/images/features/reviews_bg.jpg) center/cover no-repeat;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide {
    height: 100%;
    background: url(../assets/images/features/reviews_bg-mob.jpg) center/cover no-repeat;
  }
}
.reviews-slider .splide__slide.is-custom-active {
  transform: rotate(2deg);
}
.reviews-slider .splide__slide:nth-of-type(even).is-custom-active {
  transform: rotate(-2deg);
}
.reviews-slider .splide__slide::before, .reviews-slider .splide__slide::after {
  content: "";
  position: absolute;
}
.reviews-slider .splide__slide.images-part-1 .slide-content__text span {
  position: relative;
}
.reviews-slider .splide__slide.images-part-1 .slide-content__text span:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 113%;
  height: 155%;
  background: url(../assets/images/features/text_circle-1.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-1 .slide-content__text span:last-child::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1rem;
  bottom: -2.1rem;
  left: -0.7rem;
  width: 105%;
  height: 4rem;
  transform: rotate(-2deg);
  background: url(../assets/images/features/text_line.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-1::before {
  bottom: -5rem;
  right: 24rem;
  width: 10.2rem;
  height: 10.2rem;
  background: url(../assets/images/features/reviews-slide-label_1.png) center/cover no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-1::before {
    right: unset;
    left: 3rem;
  }
}
.reviews-slider .splide__slide.images-part-2 .slide-content__text span {
  position: relative;
}
.reviews-slider .splide__slide.images-part-2 .slide-content__text span:first-child::before {
  content: "";
  position: absolute;
  bottom: -1.8rem;
  left: -0.7rem;
  width: 105%;
  height: 4rem;
  transform: rotate(-2deg);
  background: url(../assets/images/features/text_line.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-2 .slide-content__text span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 108%;
  height: 155%;
  background: url(../assets/images/features/text_circle-2.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-2::before {
  top: -10rem;
  left: 6.3rem;
  width: 5rem;
  height: 6rem;
  background: url(../assets/images/features/reviews-slide-label_2-1.png) center/cover no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-2::before {
    left: 2rem;
    top: -7rem;
  }
}
.reviews-slider .splide__slide.images-part-2::after {
  top: -2.5rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  background: url(../assets/images/features/reviews-slide-label_2-2.png) center/cover no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-2::after {
    top: -1.65rem;
    width: 5.3rem;
    height: 5.3rem;
    right: 2rem;
  }
}
.reviews-slider .splide__slide.images-part-3 .slide-content__text span {
  position: relative;
}
.reviews-slider .splide__slide.images-part-3 .slide-content__text span:first-child::before {
  content: "";
  position: absolute;
  bottom: -2.2rem;
  left: 0.2rem;
  width: 12rem;
  height: 4rem;
  transform: rotate(-2deg);
  background: url(../assets/images/features/text_line.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-3 .slide-content__text span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate3d(-50%, -50%, 0);
  width: 115%;
  height: 155%;
  background: url(../assets/images/features/text_circle-3.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-3::before {
  bottom: -7rem;
  left: 7rem;
  width: 16.1rem;
  height: 16.1rem;
  background: url(../assets/images/features/reviews-slide-label_3.png) center/cover no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-3::before {
    left: 0;
  }
}
.reviews-slider .splide__slide.images-part-4 .slide-content__text span {
  position: relative;
}
.reviews-slider .splide__slide.images-part-4 .slide-content__text span:first-child::before {
  content: "";
  position: absolute;
  bottom: -2.2rem;
  left: 0.2rem;
  width: 12rem;
  height: 4rem;
  transform: rotate(-2deg);
  background: url(../assets/images/features/text_line.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-4 .slide-content__text span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate3d(-50%, -50%, 0);
  width: 115%;
  height: 155%;
  background: url(../assets/images/features/text_circle-3.svg) center/contain no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-4 .slide-content__text span:last-child::before {
    width: 120%;
    height: 160%;
  }
}
.reviews-slider .splide__slide.images-part-4::before {
  bottom: -4rem;
  right: 20rem;
  width: 8.8rem;
  height: 8.8rem;
  background: url(../assets/images/features/reviews-slide-label_4.png) center/cover no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-4::before {
    left: 6rem;
  }
}
.reviews-slider .splide__slide.images-part-5 .slide-content__text span {
  position: relative;
}
.reviews-slider .splide__slide.images-part-5 .slide-content__text span:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate3d(-50%, -50%, 0);
  width: 115%;
  height: 155%;
  background: url(../assets/images/features/text_circle-3.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-5 .slide-content__text span:last-child::before {
  content: "";
  position: absolute;
  bottom: -2.2rem;
  left: -0.6rem;
  width: 22.8rem;
  height: 4rem;
  transform: rotate(-2deg);
  background: url(../assets/images/features/text_line_6.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-5::before {
  top: -9rem;
  left: 13rem;
  width: 4.8rem;
  height: 5.2rem;
  background: url(../assets/images/features/reviews-slide-label_5.png) center/cover no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-5::before {
    top: -7rem;
    left: 4.9rem;
  }
}
.reviews-slider .splide__slide.images-part-6 .slide-content__text span {
  position: relative;
}
.reviews-slider .splide__slide.images-part-6 .slide-content__text > span:first-child::before {
  content: "";
  position: absolute;
  bottom: -3.3rem;
  left: 0.2rem;
  width: 33rem;
  height: 6.8rem;
  background: url(../assets/images/features/text_line_6.svg) center/contain no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-6 .slide-content__text > span:first-child::before {
    bottom: 2.4rem;
    left: 0;
    width: 13rem;
    height: 0.5rem;
    background-size: cover;
  }
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-6 .slide-content__text > span:first-child span {
    display: inline-block;
  }
  .reviews-slider .splide__slide.images-part-6 .slide-content__text > span:first-child span::before {
    content: "";
    position: absolute;
    bottom: -3.6rem;
    left: 0rem;
    width: 23rem;
    height: 7rem;
    background: url(../assets/images/features/text_line_6.svg) center/contain no-repeat;
  }
}
.reviews-slider .splide__slide.images-part-6 .slide-content__text > span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate3d(-50%, -50%, 0);
  width: 115%;
  height: 155%;
  background: url(../assets/images/features/text_circle-3.svg) center/contain no-repeat;
}
.reviews-slider .splide__slide.images-part-6::before {
  top: -5rem;
  right: 6.8rem;
  width: 10.2rem;
  height: 10.1rem;
  background: url(../assets/images/features/reviews-slide-label_6.png) center/cover no-repeat;
}
@media (max-width: 600px) {
  .reviews-slider .splide__slide.images-part-6::before {
    left: 0;
  }
}
.reviews-slider .splide__arrows {
  position: absolute;
  bottom: -10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}
.reviews-slider .splide__arrow {
  position: relative;
  width: 5.6rem;
  height: 5.6rem;
  left: unset;
  right: unset;
  top: unset;
  transform: unset;
  background-color: #115fed;
  opacity: 1;
}
.reviews-slider .splide__arrow svg {
  display: none;
}
.reviews-slider .splide__arrow:disabled {
  background-color: #bdc0d0;
}
.reviews-slider .splide__arrow::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: url(../assets/images/features/arrow_right.svg) center/cover no-repeat;
}
.reviews-slider .splide__arrow--prev::before {
  transform: translate3d(-50%, -50%, 0) scale(-1, 1);
}
.reviews-slider .slide-content {
  position: relative;
  height: 35.6rem;
  padding-top: 8rem;
  margin: 0 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .reviews-slider .slide-content {
    margin: 0 3rem;
  }
}
@media (max-width: 600px) {
  .reviews-slider .slide-content {
    padding-top: 6rem;
    height: 100%;
    padding-bottom: 9.9rem;
  }
}
.reviews-slider .slide-content__photo {
  position: absolute;
  width: 12rem;
  height: 12rem;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .reviews-slider .slide-content__photo {
    width: 8rem;
    height: 8rem;
    top: -4rem;
  }
}
.reviews-slider .slide-content__photo img {
  width: 100%;
}
.reviews-slider .slide-content__stars {
  width: 18.8rem;
  height: 3.4rem;
}
.reviews-slider .slide-content__stars img {
  width: 100%;
}
.reviews-slider .slide-content__name {
  position: absolute;
  top: 6.5rem;
  left: 0;
  font-family: "Zeyada", sans-serif;
  font-size: 2.4rem;
  transform: rotate(-6.15deg);
}
@media (max-width: 600px) {
  .reviews-slider .slide-content__name {
    display: none;
  }
}
.reviews-slider .slide-content__text {
  margin-top: 2.6rem;
  font-family: "Rokkitt", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 600px) {
  .reviews-slider .slide-content__text {
    margin-top: 1.2rem;
  }
}
.reviews-slider .slide-content__date {
  position: absolute;
  width: 12.4rem;
  bottom: 2.5rem;
  right: -2.5rem;
  font-family: "Zeyada", sans-serif;
  font-size: 2.4rem;
  line-height: 2.6rem;
  text-align: center;
  transform: rotate(-5.41deg);
}
@media (max-width: 600px) {
  .reviews-slider .slide-content__date {
    display: none;
  }
}
.reviews-slider .slide-content__name-date {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  font-family: "Zeyada", sans-serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-align: center;
  transform: rotate(-8deg);
  display: none;
}
@media (max-width: 600px) {
  .reviews-slider .slide-content__name-date {
    display: block;
  }
}
