:root {
  /****************/
  /**** COLORS ****/
  /****************/
  /* Primary colors */
  --carnation: #fa4f4f;
  --cornflower: #7563ff;
  --dodger: #0b99ff;
  /* Black to white */
  --color-black: #000000;
  --color-grey-950: #000000;
  --color-grey-900: #3d3d3d;
  --color-grey-300: #b0b0b0;
  --color-grey-200: #d1d1d1;
  --color-grey-50: #f6f6f6;
  --color-white: #ffffff;
  /* Background */
  --background-dark: var(--color-black);
  --background-light: var(--color-white);
  /* Generic */
  --primary-color: var(--carnation);
  --secondary-color: var(--cornflower);
  --tertiary-color: var(--dodger);
  --background-primary-color: var(--primary-color);
  --background-secondary-color: var(--secondary-color);
  --background-tertiary-color: var(--tertiary-color);
  --text-color: var(--color-grey-950);
  --title-gradient: linear-gradient(
    112deg,
    var(--primary-color) 15%,
    var(--secondary-color) 50%,
    var(--tertiary-color) 80%
  );
  /***************/
  /**** FONTS ****/
  /***************/
  --satoshi-variable: "Satoshi-Variable";
  --text-font: var(--satoshi-variable);
  --title-font: var(--satoshi-variable);
  /*********************/
  /**** BREAKPOINTS ****/
  /*********************/
  --xs-max: 600px;
  --sm-min: 601px;
  --sm-max: 900px;
  --md-min: 901px;
  --md-max: 1200px;
  --lg-min: 1201px;
  --lg-max: 1440px;
  /*********************/
  /**** EASING ****/
  /*********************/
  --easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --easing-decelerate: cubic-bezier(0, 0, 0.2, 1);
  --easing-accelerate: cubic-bezier(0.4, 0, 1, 1);
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font: 100% inherit;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

/* Change Autocomplete styles in Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px white inset !important;
}

@font-face {
  font-family: "Satoshi-Variable";
  font-style: normal;
  font-weight: 300 900;
  src: url("../fonts/Satoshi/Satoshi-Variable.woff2") format("woff2"), url("../fonts/Satoshi/Satoshi-Variable.woff") format("woff");
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  width: 100%;
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text-color);
  font-family: var(--text-font);
  background-color: var(--color-white);
}

a {
  color: var(--tertiary-color);
}
a:visited {
  color: var(--secondary-color);
}

.-hidden {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .-hidden-xs-down {
    display: none !important;
  }
}
@media screen and (min-width: 601px) {
  .-hidden-sm-up {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .-hidden-sm-down {
    display: none !important;
  }
}
@media screen and (min-width: 901px) {
  .-hidden-md-up {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .-hidden-md-down {
    display: none !important;
  }
}
@media screen and (min-width: 1201px) {
  .-hidden-lg-up {
    display: none !important;
  }
}
@media not print {
  .-visible-print {
    display: none !important;
  }
}
@media print {
  .-hidden-print {
    display: none !important;
  }
}

.-sr-only {
  position: absolute !important;
  padding: 0 !important;
  margin: -1px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
}

.l-siteWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-contentWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--color-white);
  z-index: 1;
}

.l-blockWrapper {
  position: relative;
  z-index: 1;
}
.l-blockWrapper {
  padding-top: 80px;
}
@media screen and (min-width: 601px) {
  .l-blockWrapper {
    padding-top: calc(80px + 40 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .l-blockWrapper {
    padding-top: 120px;
  }
}
.l-blockWrapper {
  padding-bottom: 80px;
}
@media screen and (min-width: 601px) {
  .l-blockWrapper {
    padding-bottom: calc(80px + 40 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .l-blockWrapper {
    padding-bottom: 120px;
  }
}
.l-blockWrapper:focus {
  outline: none;
}
.l-blockWrapper.-light + .l-blockWrapper.-light {
  padding-top: 0;
}
.l-blockWrapper.-dark {
  color: var(--color-white);
  background-color: var(--color-grey-950);
}
.l-blockWrapper.-dark + .l-blockWrapper.-dark {
  padding-top: 0;
}
.l-blockWrapper.-noPadding {
  padding: 0;
}

.l-blockContent {
  margin: 0 auto;
  width: 100%;
  max-width: 1360px;
}
.l-blockContent {
  padding-left: 16px;
}
@media screen and (min-width: 601px) {
  .l-blockContent {
    padding-left: calc(16px + 4 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .l-blockContent {
    padding-left: 20px;
  }
}
.l-blockContent {
  padding-right: 16px;
}
@media screen and (min-width: 601px) {
  .l-blockContent {
    padding-right: calc(16px + 4 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .l-blockContent {
    padding-right: 20px;
  }
}
.l-blockContent.-wide {
  max-width: 1400px;
}
.l-blockContent.-medium {
  max-width: 1240px;
}
.l-blockContent.-small {
  max-width: 1136px;
}

.a-cta {
  position: relative;
  display: block;
  align-content: center;
  padding: 10px 24px 12px;
  min-height: 32px;
  font: 500 1.6rem/1.2 var(--text-font);
  text-align: center;
  text-decoration: none;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.a-cta.-filled {
  color: var(--color-white);
  background: var(--color-black);
  border: none;
}
.a-cta.-filled:active, .a-cta.-filled:focus, .a-cta.-filled:hover {
  background: var(--tertiary-color);
}
.a-cta.-filled.-white {
  color: var(--color-black);
  background: var(--color-white);
}
.a-cta.-filled.-white:active, .a-cta.-filled.-white:focus, .a-cta.-filled.-white:hover {
  color: var(--color-white);
  background: var(--tertiary-color);
}
.a-cta.-border {
  color: var(--color-black);
  border: 1px solid var(--color-black);
}
.a-cta.-border:active, .a-cta.-border:focus, .a-cta.-border:hover {
  border-color: var(--tertiary-color);
}
.a-cta.-link {
  padding: 4px 0 0;
  color: var(--tertiary-color);
  background-image: transparent;
  background-clip: text;
  border-radius: 0;
  transition: padding 0.3s ease-in-out, background 0.3s ease-in-out;
}
.a-cta.-link::after {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
}
.a-cta.-link:active, .a-cta.-link:focus, .a-cta.-link:hover {
  padding-top: 0;
  color: transparent;
  background-image: var(--title-gradient);
}
.a-cta.-link:active::after, .a-cta.-link:focus::after, .a-cta.-link:hover::after {
  background-image: var(--title-gradient);
}
.a-cta.-disabled, .a-cta.-disabled:active, .a-cta.-disabled:focus, .a-cta.-disabled:hover {
  color: #888888;
  background: #e7e7e7;
  border-color: #e7e7e7;
  cursor: wait;
}

.a-heading {
  display: block;
  color: var(--text-color);
  /****************/
  /**** LEVELS ****/
  /****************/
  /*****************/
  /**** WEIGHTS ****/
  /*****************/
}
.a-heading span {
  color: transparent;
  background-image: var(--title-gradient);
  background-clip: text;
}
.a-heading.-white {
  color: var(--color-white);
}
.a-heading.-l1 {
  font: 700 4rem/1.2 var(--title-font);
}
.a-heading.-l1 {
  font-size: 4rem;
}
@media screen and (min-width: 601px) {
  .a-heading.-l1 {
    font-size: calc(40px + 32 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .a-heading.-l1 {
    font-size: 7.2rem;
  }
}
.a-heading.-l2 {
  font: 700 2.4rem/1.2 var(--title-font);
}
.a-heading.-l2 {
  font-size: 2.4rem;
}
@media screen and (min-width: 601px) {
  .a-heading.-l2 {
    font-size: calc(24px + 8 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .a-heading.-l2 {
    font-size: 3.2rem;
  }
}
.a-heading.-l3 {
  font: 700 2rem/1.5 var(--title-font);
}
.a-heading.-l3 {
  font-size: 2rem;
}
@media screen and (min-width: 601px) {
  .a-heading.-l3 {
    font-size: calc(20px + 4 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .a-heading.-l3 {
    font-size: 2.4rem;
  }
}
.a-heading.-w500 {
  font-weight: 500;
}
.a-heading.-w700 {
  font-weight: 700;
}

.a-icon {
  width: 20px;
  height: 20px;
}

.a-switch {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  background: var(--color-grey-50);
  border-radius: 58px;
}

.a-switch__group {
  position: relative;
}

.a-switch__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.a-switch__input:checked + .a-switch__label {
  color: var(--color-white);
  background: var(--color-black);
}

.a-switch__label {
  position: relative;
  display: block;
  padding: 8px 20px 12px;
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
}

.a-text {
  display: block;
  color: var(--text-color);
  /****************/
  /**** LEVELS ****/
  /****************/
  /*****************/
  /**** WEIGHTS ****/
  /*****************/
}
.a-text.-white {
  color: var(--color-white);
}
.a-text.-l1 {
  font: 400 1.6rem/1.5 var(--title-font);
}
.a-text.-l2 {
  font: 400 1.4rem/1.5 var(--title-font);
}
.a-text.-l3 {
  font: 400 1.2rem/1.5 var(--title-font);
}
.a-text.-w400 {
  font-weight: 400;
}
.a-text.-w500 {
  font-weight: 500;
}

.m-badge {
  position: relative;
  width: 60px;
  height: 60px;
}
.m-badge.-big {
  width: 80px;
  height: 80px;
}

.m-badge__icon {
  --stroke-1: var(--color-white);
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: -5;
  aspect-ratio: 1/1;
  z-index: 0;
}

.m-badge__text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  z-index: 10;
}
.m-badge__text.a-text {
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}
.m-badge__text span {
  display: block;
  font-size: 12px;
}

.m-cardKey {
  padding: 80px 24px;
  width: 100%;
  border-radius: 30px;
  box-shadow: -35px 15px 85px 0px rgb(from var(--primary-color) r g b/0.2), 0px 35px 85px 0px rgb(from var(--secondary-color) r g b/0.2), 35px 15px 85px 0px rgb(from var(--tertiary-color) r g b/0.2);
}
@media screen and (min-width: 901px) {
  .m-cardKey {
    padding: 32px 50px 46px;
  }
}
.m-cardKey.-white {
  background: var(--color-white);
  z-index: 5;
}
.m-cardKey.-black {
  background: var(--color-black);
  z-index: 0;
}

.m-cardKey__title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-align: center;
}
.m-cardKey__title.a-heading {
  font-size: 6rem;
}
@media screen and (min-width: 901px) {
  .m-cardKey__title.a-heading {
    font-size: calc(60px + 60 * (100vw - 901px) / 300);
  }
}
@media screen and (min-width: 1201px) {
  .m-cardKey__title.a-heading {
    font-size: 12rem;
  }
}
.m-cardKey__title span {
  font-size: 66.6666%;
}
.m-cardKey__title sup {
  align-self: flex-start;
  margin-top: 16px;
  margin-left: 8px;
  font-size: 36px;
}
.m-cardKey__title sup.-m-large {
  margin-left: 28px;
}
.m-cardKey.-white .m-cardKey__title, .m-cardKey.-white .m-cardKey__title span {
  color: var(--tertiary-color);
}
.m-cardKey.-black .m-cardKey__title, .m-cardKey.-black .m-cardKey__title span {
  color: var(--color-white);
}

.m-cardKey__content {
  text-align: center;
}
.m-cardKey.-black .m-cardKey__content {
  color: var(--color-white);
}

.m-cardLink {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
  padding: 24px 40px 24px 24px;
  min-height: 200px;
  text-decoration: none;
  background: var(--color-white);
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 901px) {
  .m-cardLink {
    padding: 40px 80px 40px 40px;
    min-height: 320px;
  }
}
.m-cardLink.-hover, .m-cardLink:active, .m-cardLink:focus, .m-cardLink:hover {
  background: var(--color-black);
}

.m-cardLink__iconWrapper {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-white);
  border-radius: 12px;
}

.m-cardLink__icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.m-cardLink__title.a-heading {
  font-size: 24px;
  hyphens: auto;
}
@media screen and (min-width: 901px) {
  .m-cardLink__title.a-heading {
    font-size: 50px;
  }
}
.m-cardLink.-hover .m-cardLink__title, .m-cardLink:active .m-cardLink__title, .m-cardLink:focus .m-cardLink__title, .m-cardLink:hover .m-cardLink__title {
  color: transparent;
  background-image: var(--title-gradient);
  background-clip: text;
}

@media screen and (max-width: 900px) {
  .m-cardLink__content.a-text {
    font-size: 18px;
  }
}
.m-cardLink__content.a-text {
  font-size: 24px;
}
.m-cardLink.-hover .m-cardLink__content, .m-cardLink:active .m-cardLink__content, .m-cardLink:focus .m-cardLink__content, .m-cardLink:hover .m-cardLink__content {
  color: var(--color-white);
}

.m-cardOffer {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 30px;
}

.m-cardOffer__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.m-cardOffer__wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
}

.m-cardOffer__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  min-height: 60px;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
}
.m-cardOffer__banner:not(.-empty) {
  background: var(--title-gradient);
}
.m-cardOffer__banner.a-text {
  font-size: 20px;
  font-weight: 900;
}

@media screen and (min-width: 901px) {
  .m-cardOffer__subtitle {
    min-height: 48px;
  }
}

.m-cardOffer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.m-cardOffer__item {
  --stroke-1: var(--color-black);
  --fill-2: var(--tertiary-color);
  display: flex;
  gap: 10px;
  align-items: center;
}
.m-cardOffer__item .a-icon {
  min-width: 20px;
}

.m-cardOffer__input .m-inputField__input {
  border-radius: 0;
}

.m-cardOffer__footer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 32px;
  min-height: 230px;
  background: var(--color-black);
}
.m-cardOffer__footer {
  padding-left: 16px;
}
@media screen and (min-width: 601px) {
  .m-cardOffer__footer {
    padding-left: calc(16px + 16 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-cardOffer__footer {
    padding-left: 32px;
  }
}
.m-cardOffer__footer {
  padding-right: 16px;
}
@media screen and (min-width: 601px) {
  .m-cardOffer__footer {
    padding-right: calc(16px + 16 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-cardOffer__footer {
    padding-right: 32px;
  }
}
@media screen and (max-width: 900px) {
  .m-cardOffer__footer {
    padding-right: 32px;
    padding-left: 32px;
  }
}

.m-cardOffer__badge {
  position: absolute;
  top: -30px;
  right: 20px;
  transform: rotate(-15deg);
}
.m-cardOffer__badge .m-badge__text {
  font-size: 16px;
  text-align: center;
}

.m-cardOffer__group {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
}

.m-cardOffer__price {
  display: flex;
}
.m-cardOffer__price .m-cardOffer__priceField,
.m-cardOffer__price .m-cardOffer__priceCondition {
  color: var(--color-white);
  background: none;
}

.m-cardOffer__priceField {
  display: flex;
  gap: 4px;
  align-items: baseline;
  font-size: 50px;
}
.m-cardOffer__priceField .-small {
  font-size: 32px;
}
.m-cardOffer__priceField span {
  color: var(--color-white);
  background: none;
}

.m-cardOffer__priceCondition {
  display: inline-block;
}

.m-cardOffer__priceDetail {
  height: 16px;
  color: var(--color-white);
}

.m-cardOffer__cta {
  align-self: flex-start;
}

.m-disclosure {
  border-bottom: 1px solid var(--color-grey-200);
}

.m-disclosure__title {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 32px 20px;
  width: 100%;
  font-family: var(--text-font);
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  background-color: transparent;
  border: none;
  cursor: pointer;
  appearance: none;
}
.m-disclosure__title {
  font-size: 2.4rem;
}
@media screen and (min-width: 601px) {
  .m-disclosure__title {
    font-size: calc(24px + 8 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-disclosure__title {
    font-size: 3.2rem;
  }
}
.m-disclosure__title[aria-expanded=true] .m-disclosure__icon::before {
  transform: translate(-50%, -50%) rotate(360deg);
  opacity: 0;
}
.m-disclosure__title[aria-expanded=true] .m-disclosure__icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.m-disclosure__icon {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-grey-950);
  border-radius: 50%;
}
.m-disclosure__icon::before, .m-disclosure__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: var(--tertiary-color);
  transform: translate(-50%, -50%);
  transition: transform 225ms var(--easing-standard), opacity 225ms var(--easing-standard);
  content: "";
}
.m-disclosure__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.m-disclosure__content {
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 1.5;
}

.m-disclosure__definition {
  display: grid;
  grid-template-rows: 1fr;
  padding: 2px 20px 20px;
  border-bottom: 1px solid var(--color-grey-200);
  transition: grid-template-rows 225ms var(--easing-standard), padding-top 225ms var(--easing-standard), padding-bottom 225ms var(--easing-standard);
}
.m-disclosure__definition:not(.-expanded) {
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
}

.m-expertise {
  --percent: 0%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border-color: var(--primary-color);
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 900px) {
  .m-expertise {
    align-items: center;
  }
}
@media screen and (min-width: 901px) {
  .m-expertise.-active {
    padding-left: 32px;
  }
  .m-expertise.-active:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: var(--percent);
    background: linear-gradient(112deg, var(--primary-color) 60%, var(--secondary-color) 120%, var(--tertiary-color) 160%);
    content: "";
  }
}

.m-expertise__title {
  color: var(--color-black);
  transition: font-size 0.2s ease-in-out;
}
@media screen and (max-width: 900px) {
  .m-expertise__title {
    text-align: center;
  }
}
@media screen and (min-width: 901px) {
  .m-expertise:not(.-active) .m-expertise__title {
    color: var(--color-grey-300);
    font-size: 20px;
    cursor: pointer;
  }
  .m-expertise:not(.-active):active .m-expertise__title, .m-expertise:not(.-active):focus .m-expertise__title, .m-expertise:not(.-active):hover .m-expertise__title {
    color: var(--color-grey-900);
  }
}

.m-expertise__content {
  color: var(--color-black);
}
@media screen and (max-width: 900px) {
  .m-expertise__content {
    color: var(--color-grey-900);
    text-align: center;
  }
}
@media screen and (min-width: 901px) {
  .m-expertise:not(.-active) .m-expertise__content {
    color: var(--color-grey-300);
    cursor: pointer;
  }
  .m-expertise:not(.-active):active .m-expertise__content, .m-expertise:not(.-active):focus .m-expertise__content, .m-expertise:not(.-active):hover .m-expertise__content {
    color: var(--color-grey-900);
  }
}

.m-expertise__cta {
  display: inline;
}
@media screen and (min-width: 901px) {
  .m-expertise:not(.-active) .m-expertise__cta {
    display: none;
  }
}

.m-expertise__video {
  margin-top: 4px;
}
@media screen and (min-width: 901px) {
  .m-expertise__video {
    display: none;
  }
}

.m-imageText {
  display: flex;
  align-items: center;
  max-width: 1360px;
  counter-increment: image-text-counter;
  row-gap: 24px;
}
.m-imageText {
  column-gap: 24px;
}
@media screen and (min-width: 601px) {
  .m-imageText {
    column-gap: calc(24px + 96 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-imageText {
    column-gap: 120px;
  }
}
.m-imageText {
  padding-left: 0px;
}
@media screen and (min-width: 601px) {
  .m-imageText {
    padding-left: calc(0px + 20 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-imageText {
    padding-left: 20px;
  }
}
.m-imageText {
  padding-right: 0px;
}
@media screen and (min-width: 601px) {
  .m-imageText {
    padding-right: calc(0px + 20 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-imageText {
    padding-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .m-imageText {
    flex-direction: column;
  }
}
@media screen and (min-width: 901px) {
  .m-imageText.-image-left .o-imageText__videoWrapper {
    order: -1;
  }
  .m-imageText.-image-left .m-imageText__contentWrapper {
    justify-content: flex-start;
  }
}

.m-imageText__contentWrapper {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .m-imageText__contentWrapper {
    justify-content: flex-end;
  }
}

.m-imageText__content {
  display: grid;
  grid-template-areas: "number title" "number text";
  gap: 12px 24px;
  max-width: 440px;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .m-imageText__content {
    grid-template-areas: "number" "title" "text";
    gap: 8px 0;
    padding: 0 16px;
  }
}
.m-imageText__content::before {
  grid-area: number;
  color: currentColor;
  font: 900 3.2rem/1.2 var(--text-font);
  content: counter(image-text-counter) ".";
}
.m-imageText__content::before {
  font-size: 3.2rem;
}
@media screen and (min-width: 601px) {
  .m-imageText__content::before {
    font-size: calc(32px + 40 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-imageText__content::before {
    font-size: 7.2rem;
  }
}

.m-imageText__title {
  grid-area: title;
  font: 700 2.4rem/1.3 var(--text-font);
}

.m-imageText__text {
  grid-area: text;
  color: var(--color-grey-300);
  font: 400 1.6rem/1.5 var(--text-font);
}

.o-imageText__videoWrapper {
  flex-shrink: 0;
  max-width: 446px;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 14px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 901px) {
  .o-imageText__videoWrapper {
    width: 43%;
  }
}

.o-imageText__video {
  width: 100%;
  height: auto;
}

.m-inputField {
  display: block;
}

.m-inputField__label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--text-font);
  font-size: 12px;
  font-weight: 500;
}

.m-inputField__input {
  padding: 12px 16px;
  width: 100%;
  color: var(--color-black);
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  background: var(--color-grey-50);
  border: 1px solid transparent;
  border-radius: 72px;
  appearance: none;
}
.m-inputField__input:active, .m-inputField__input:focus, .m-inputField__input:hover {
  border-color: #e7e7e7;
}
.m-inputField__input:active, .m-inputField__input:focus {
  background: white;
  border-color: var(--tertiary-color);
}
.m-inputField__input:not(:focus):not(:placeholder-shown):invalid, .m-inputField__input.-error {
  border-color: var(--primary-color);
}

.m-inputField__message {
  margin-top: 2px;
  font-size: 12px;
}
.m-inputField__input:invalid + .m-inputField__message, .m-inputField__input.-error + .m-inputField__message {
  color: var(--primary-color);
  font-size: 12px;
}

.m-inputSelect {
  position: relative;
  z-index: 5;
}
.m-inputSelect:not(.-open) {
  overflow: hidden;
}

.m-inputSelect__label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--text-font);
  font-size: 12px;
  font-weight: 500;
}

.m-inputSelect__wrapper {
  position: relative;
}

.m-inputSelect__inputWrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  color: var(--color-black);
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  background: var(--color-grey-50);
  border: 1px solid transparent;
  border-radius: 72px;
  cursor: pointer;
}
.m-inputSelect.-open .m-inputSelect__inputWrapper {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.m-inputSelect.-open .m-inputSelect__inputWrapper, .m-inputSelect__inputWrapper:active, .m-inputSelect__inputWrapper:focus, .m-inputSelect__inputWrapper:hover {
  border-color: #e7e7e7;
}
.m-inputSelect.-open .m-inputSelect__inputWrapper, .m-inputSelect__inputWrapper:active, .m-inputSelect__inputWrapper:focus {
  background: white;
  border-color: var(--tertiary-color);
}
.m-inputSelect__inputWrapper.-error {
  border-color: var(--primary-color);
}

.m-inputSelect__input {
  width: 100%;
  background: transparent;
  border: none;
  appearance: none;
  cursor: pointer;
}

.m-inputSelect__icon {
  width: 24px;
  height: 24px;
  color: var(--color-black);
  transition: all 0.2s ease-in-out;
}
.m-inputSelect.-open .m-inputSelect__icon {
  transform: rotate(-180deg);
}

.m-inputSelect__listWrapper {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 0;
  max-height: 250px;
  overflow: hidden;
  background: var(--color-white);
  border: 0px solid transparent;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
.m-inputSelect.-open .m-inputSelect__listWrapper {
  top: calc(100% - 1px);
  height: auto;
  overflow-y: auto;
  border: 1px solid var(--tertiary-color);
}

.m-inputSelect__list {
  position: relative;
  width: 100%;
}

.m-inputSelect__option {
  padding: 6px 16px;
}
.m-inputSelect__option.-active, .m-inputSelect__option:active, .m-inputSelect__option:focus, .m-inputSelect__option:hover {
  background: var(--tertiary-color);
  cursor: pointer;
}
.m-inputSelect__option.-active .a-text, .m-inputSelect__option:active .a-text, .m-inputSelect__option:focus .a-text, .m-inputSelect__option:hover .a-text {
  color: var(--color-white);
}

.m-inputSelect__wrapper.-error + .m-inputSelect__message {
  color: var(--primary-color);
}

.m-inputTel {
  display: block;
}

.m-inputTel__label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--text-font);
  font-size: 12px;
  font-weight: 500;
}

.m-inputTel__group {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.m-inputTel__select .m-inputSelect__inputWrapper, .m-inputTel__select.-open .m-inputSelect__inputWrapper {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.m-inputTel__field .m-inputField__input {
  height: 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.m-languageSelector {
  position: relative;
  display: inline-block;
  padding: 0 4px;
  cursor: pointer;
}

.m-languageSelector__toggler {
  display: flex;
  align-items: center;
  padding: 4px 4px;
  font: 700 1.6rem/1.5 var(--text-font);
  text-transform: uppercase;
  background: transparent;
  border: none;
  appearance: none;
  cursor: pointer;
}
.m-languageSelector__toggler {
  font-size: 1.4rem;
}
@media screen and (min-width: 601px) {
  .m-languageSelector__toggler {
    font-size: calc(14px + 2 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-languageSelector__toggler {
    font-size: 1.6rem;
  }
}
.m-languageSelector__toggler[aria-expanded=true] .m-languageSelector__chevron {
  transform: rotate(-180deg);
}

.m-languageSelector__flag {
  width: 24px;
  height: 17px;
  border-radius: 2px;
}

.m-languageSelector__chevron {
  transition: transform 250ms var(--easing-standard);
}
.m-languageSelector__chevron {
  width: 16px;
}
@media screen and (min-width: 601px) {
  .m-languageSelector__chevron {
    width: calc(16px + 8 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-languageSelector__chevron {
    width: 24px;
  }
}
.m-languageSelector__chevron {
  height: 16px;
}
@media screen and (min-width: 601px) {
  .m-languageSelector__chevron {
    height: calc(16px + 8 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-languageSelector__chevron {
    height: 24px;
  }
}

.m-languageSelector__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  list-style: none;
  background: rgb(from var(--color-white) r g b/70%);
  border: 1px solid var(--color-grey-50);
  border-radius: 0 0 8px 8px;
  border-radius: 8px;
  box-shadow: 2px 4px 12px 0 rgb(from var(--color-black) r g b/4%);
  backdrop-filter: blur(12px);
  transition: max-height 250ms var(--easing-decelerate), border-color 250ms var(--easing-standard), border-width 250ms var(--easing-standard);
  z-index: 1;
}
.m-languageSelector__content:not(.-expanded) {
  border: 0px solid transparent;
}
.m-languageSelector__content.-expanded {
  max-height: 250px;
  transition-timing-function: var(--easing-accelerate);
}

.m-languageSelector__link {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  color: var(--color-black);
  font: 700 1.6rem/1.5 var(--text-font);
  text-decoration: none;
  text-transform: uppercase;
}
.m-languageSelector__link:visited {
  color: var(--color-black);
}

.m-logoSlider {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, rgb(from var(--color-black) r g b/0%) 2%, rgb(from var(--color-black) r g b/100%) 10%, rgb(from var(--color-black) r g b/100%) 90%, rgb(from var(--color-black) r g b/0%) 98%);
}

.m-logoSlider__logoList {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.m-logoSlider__logoItem {
  flex-shrink: 0;
  padding-right: 30px;
  padding-left: 30px;
}

.m-logoSlider__logoImage {
  width: 140px;
  height: 70px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-50%, 0);
  }
}
.m-range {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-range__wrapper {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.m-range__prefix {
  position: relative;
  top: 4px;
}

.m-range__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.m-range__suffix {
  position: relative;
  top: 4px;
}

.m-range__input {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--color-black);
  border-radius: 1px;
  user-select: none;
  touch-action: none;
  -webkit-appearance: none;
  appearance: none;
}
.m-range__input::-webkit-slider-container {
  min-block-size: 1px;
}
.m-range__input::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  background: var(--color-white);
  border: 5px solid var(--tertiary-color);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.5s ease;
  -webkit-appearance: none;
  appearance: none;
}
.m-range__input:focus, .m-range__input:active {
  outline: none;
}

.m-range__valueContainer {
  position: relative;
}

.m-range__value {
  position: relative;
  left: 0;
  display: inline-block;
  width: 100px;
  text-align: center;
}
.m-range__value span {
  font-size: 16px;
  font-weight: 500;
}

.m-testimony {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 484px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
}
.m-testimony {
  padding-left: 12px;
}
@media screen and (min-width: 601px) {
  .m-testimony {
    padding-left: calc(12px + 16 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-testimony {
    padding-left: 28px;
  }
}
.m-testimony {
  padding-right: 12px;
}
@media screen and (min-width: 601px) {
  .m-testimony {
    padding-right: calc(12px + 16 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-testimony {
    padding-right: 28px;
  }
}
.m-testimony {
  padding-top: 10px;
}
@media screen and (min-width: 601px) {
  .m-testimony {
    padding-top: calc(10px + 10 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-testimony {
    padding-top: 20px;
  }
}
.m-testimony {
  padding-bottom: 10px;
}
@media screen and (min-width: 601px) {
  .m-testimony {
    padding-bottom: calc(10px + 10 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-testimony {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1201px) {
  .m-testimony {
    border-radius: 100px;
  }
}

.m-testimony__image {
  border-radius: 50%;
}
.m-testimony__image {
  width: 40px;
}
@media screen and (min-width: 601px) {
  .m-testimony__image {
    width: calc(40px + 20 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-testimony__image {
    width: 60px;
  }
}
.m-testimony__image {
  height: 40px;
}
@media screen and (min-width: 601px) {
  .m-testimony__image {
    height: calc(40px + 20 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .m-testimony__image {
    height: 60px;
  }
}

.m-testimony__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: flex-start;
}

.m-testimony__quote {
  font-size: 1.6rem;
  line-height: 1.5;
}

.m-testimony__author {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  color: var(--tertiary-color);
  font: 700 1.2rem/1.5 var(--text-font);
}

.m-testimony__author__company {
  color: var(--text-color);
  font-weight: 500;
}

.o-404 {
  position: relative;
  flex-grow: 1;
  padding-top: 40px;
  padding-bottom: 160px;
  overflow: hidden;
  z-index: 0;
}
.o-404:before {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 150%;
  background: radial-gradient(29.78% 27.62% at 37.76% 55.46%, rgba(from var(--primary-color) r g b/30%) 0%, rgba(from var(--primary-color) r g b/0) 100%), radial-gradient(31.43% 29.29% at 56.2% 56.88%, rgba(from var(--tertiary-color) r g b/30%) 0%, rgba(from var(--tertiary-color) r g b/0) 100%), radial-gradient(34.59% 36.36% at 50% 44.42%, rgba(from var(--secondary-color) r g b/30%) 0%, rgba(from var(--secondary-color) r g b/0) 100%);
  content: "";
}

.o-404__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .o-404__wrapper {
    gap: 80px;
  }
}
@media screen and (min-width: 901px) {
  .o-404__wrapper {
    flex-direction: row;
  }
}

.o-404__column {
  position: relative;
}
.o-404__column.-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-content: center;
  align-items: center;
}
@media screen and (min-width: 901px) {
  .o-404__column.-text {
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    padding-right: 95px;
    padding-left: 95px;
  }
}

.o-404__title.a-heading {
  color: transparent;
  font-size: 45vw;
  line-height: 1;
  text-align: center;
  background-image: var(--title-gradient);
  background-clip: text;
}
@media screen and (min-width: 901px) {
  .o-404__title.a-heading {
    font-size: 400px;
  }
}

.o-404__image {
  position: absolute;
  top: 35%;
  left: calc(50% - 13vw);
  width: 32vw;
  height: auto;
}
@media screen and (min-width: 901px) {
  .o-404__image {
    top: calc(50% - 70px);
    left: calc(50% - 140px);
    width: 321px;
    height: 356px;
  }
}

@media screen and (max-width: 900px) {
  .o-404__subtitle {
    text-align: center;
  }
}
.o-404__subtitle.a-heading {
  font-weight: 400;
}

.o-contact {
  scroll-margin-top: 100px;
  position: relative;
}

.o-contact__background {
  position: absolute;
  top: -25%;
  width: 100%;
  height: calc(125% + 30px);
  overflow: hidden;
  z-index: -1;
}
.o-contact__background:before {
  position: absolute;
  top: 0;
  left: calc(25% - 720px);
  width: 1440px;
  height: 200%;
  background: radial-gradient(32.83% 25.95% at 25.84% 50%, rgba(from var(--primary-color) r g b/30%) 0%, rgba(from var(--primary-color) r g b/0) 100%), radial-gradient(36.3% 33.83% at 73.35% 50%, rgba(from var(--tertiary-color) r g b/30%) 0%, rgba(from var(--tertiary-color) r g b/0) 100%), radial-gradient(34.59% 36.36% at 50% 44.42%, rgba(from var(--secondary-color) r g b/30%) 0%, rgba(from var(--secondary-color) r g b/0) 100%);
  content: "";
  z-index: -5;
}
@media screen and (min-width: 901px) {
  .o-contact__background:before {
    left: 0;
    width: 100%;
  }
}

.o-contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.o-contact__tabs {
  margin-bottom: 20px;
}

.o-contact__section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 901px) {
  .o-contact__section {
    flex-direction: row;
  }
}

.o-contact__column.-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
}
.o-contact__column.-form {
  display: flex;
  flex: 2;
  flex-direction: column;
  gap: 24px;
}

.o-contact__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.o-contact__fieldset {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .o-contact__fieldset {
    flex-direction: column;
  }
}
@media screen and (min-width: 901px) {
  .o-contact__fieldset.-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.o-contact__fieldset.-cta {
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.o-contact__item.-feature {
  --fill-1: transparent;
  --stroke-1: var(--color-black);
  --fill-2: var(--tertiary-color);
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.o-contact__input .m-inputField__input[type=number] {
  max-width: 80%;
  border-radius: 0;
}
.o-contact__input .m-inputSelect:not(.-open), .o-contact__input.m-inputSelect:not(.-open),
.o-contact__input .m-inputField__input:not(:focus) {
  mix-blend-mode: multiply;
}

.o-contact__cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .o-contact__cta {
    justify-content: center;
    width: 100%;
  }
}
.o-contact__cta .a-icon {
  width: 16px;
  height: 16px;
}

.o-contact__mention {
  color: #767a7f;
}
.o-contact__mention span {
  display: block;
  font-weight: 700;
}

.o-contact__response.a-text {
  font-weight: 700;
}

.o-expertise {
  scroll-margin-top: 100px;
}

.o-expertise__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .o-expertise__wrapper {
    gap: 48px;
  }
}

.o-expertise__title {
  text-align: center;
}
@media screen and (min-width: 901px) {
  .o-expertise__title {
    margin: 0 auto 32px 3%;
    max-width: 80%;
  }
}

.o-expertise__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 901px) {
  .o-expertise__column {
    flex-direction: row-reverse;
    gap: 120px;
  }
}

.o-expertise__animation,
.o-expertise__list {
  flex: 1;
}

.o-expertise__animation {
  display: flex;
}
@media screen and (max-width: 900px) {
  .o-expertise__animation {
    display: none;
  }
}
@media screen and (min-width: 901px) {
  .o-expertise__animation {
    margin-top: 56px;
  }
}

.o-expertise__video {
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 900px) {
  .o-expertise__video {
    display: none;
  }
}
.o-expertise__video:not(.o-expertise__video.-active) {
  display: none;
}

.o-expertise__list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media screen and (min-width: 901px) {
  .o-expertise__list {
    gap: 40px;
    padding: 28px 0;
  }
}

.o-faq {
  scroll-margin-top: 100px;
  z-index: 10;
}

.o-faq__title {
  text-align: center;
}
.o-faq__title {
  margin-bottom: 32px;
}
@media screen and (min-width: 601px) {
  .o-faq__title {
    margin-bottom: calc(32px + 48 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-faq__title {
    margin-bottom: 80px;
  }
}

.o-faq__questionList {
  margin: 0 auto;
  max-width: 816px;
}

.o-footer {
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 30px 30px 0 0;
  z-index: 1;
}
.o-footer {
  padding-top: 40px;
}
@media screen and (min-width: 601px) {
  .o-footer {
    padding-top: calc(40px + 40 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-footer {
    padding-top: 80px;
  }
}
.o-footer {
  padding-bottom: 40px;
}
@media screen and (min-width: 601px) {
  .o-footer {
    padding-bottom: calc(40px + 40 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-footer {
    padding-bottom: 80px;
  }
}

.o-footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 0 0 30px 30px;
}
.o-footer__content {
  padding-left: 16px;
}
@media screen and (min-width: 601px) {
  .o-footer__content {
    padding-left: calc(16px + 44 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-footer__content {
    padding-left: 60px;
  }
}
.o-footer__content {
  padding-right: 16px;
}
@media screen and (min-width: 601px) {
  .o-footer__content {
    padding-right: calc(16px + 44 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-footer__content {
    padding-right: 60px;
  }
}
@media screen and (max-width: 900px) {
  .o-footer__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .o-footer__content {
    align-items: flex-start;
  }
}

.o-footer__logo {
  display: flex;
  gap: 6px;
  align-items: center;
}

.o-footer__logoImage {
  width: 16px;
  height: 20px;
  object-fit: contain;
}

.o-footer__logo__name {
  font-size: 2rem;
  font-weight: 700;
}

.o-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 901px) {
  .o-footer__nav {
    margin: 0 auto;
  }
}

.o-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
@media screen and (min-width: 901px) {
  .o-footer__menu:not(:last-child) {
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid var(--color-white);
  }
}

.o-footer__menu__item {
  display: flex;
  align-items: center;
}

.o-footer__menu__link {
  display: block;
  padding: 4px 8px;
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 4px;
}
.o-footer__menu__link:visited, .o-footer__menu__link:visited, .o-footer__menu__link:visited {
  color: var(--color-white);
}
.o-footer__menu__link:active, .o-footer__menu__link:focus, .o-footer__menu__link:hover {
  color: var(--text-color);
  background: var(--color-white);
}
.o-footer__menu__link:active:visited, .o-footer__menu__link:focus:visited, .o-footer__menu__link:hover:visited {
  color: var(--text-color);
}

.o-footer__right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.o-footer__made {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  min-width: 223px;
  color: var(--color-black);
  font: 500 1.6rem/1.5 var(--text-font);
  background-color: var(--color-white);
  border-radius: 12px;
}

.o-footer__made__logo {
  width: 70px;
  height: 10px;
  object-fit: contain;
}

.o-footer__version {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.o-header {
  position: sticky;
  top: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .o-header {
    position: fixed;
    padding: 20px 16px;
  }
}

.o-header__content {
  display: flex;
  gap: 0 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgb(from var(--color-white) r g b/70%);
  border: 1px solid var(--color-grey-50);
  border-radius: 16px;
  box-shadow: 2px 4px 12px 0 rgb(from var(--color-black) r g b/4%);
  backdrop-filter: blur(12px);
  transition: gap 225ms var(--easing-accelerate);
}
.o-header__content {
  padding-left: 24px;
}
@media screen and (min-width: 601px) {
  .o-header__content {
    padding-left: calc(24px + 8 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-header__content {
    padding-left: 32px;
  }
}
.o-header__content {
  padding-right: 12px;
}
@media screen and (min-width: 601px) {
  .o-header__content {
    padding-right: calc(12px + 8 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-header__content {
    padding-right: 20px;
  }
}

.o-header__logo {
  display: flex;
  gap: 8px;
  align-items: center;
  font: 700 3.2rem/1.2 var(--text-font);
}
.o-header__logo {
  font-size: 1.6rem;
}
@media screen and (min-width: 601px) {
  .o-header__logo {
    font-size: calc(16px + 16 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-header__logo {
    font-size: 3.2rem;
  }
}
.o-header__logo a,
.o-header__logo a:visited {
  color: var(--color-black);
  text-decoration: none;
}

.o-header__logoImage {
  height: 28px;
  object-fit: contain;
}
.o-header__logoImage {
  width: 12px;
}
@media screen and (min-width: 601px) {
  .o-header__logoImage {
    width: calc(12px + 10 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-header__logoImage {
    width: 22px;
  }
}

@media screen and (max-width: 600px) {
  .o-header__logo__text {
    display: none;
  }
}

.o-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.o-header__nav__content {
  display: flex;
  gap: 12px;
  align-items: center;
}

.o-header__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .o-header__menu {
    display: none;
  }
}

.o-header__menu__link {
  position: relative;
  display: block;
  padding: 8px 14px;
  color: var(--text-color);
  font-size: 1.6rem;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .o-header__menu__link {
    padding: 12px 0;
  }
}
@media screen and (min-width: 901px) {
  .o-header__menu__link:before {
    position: absolute;
    bottom: 0;
    left: 14px;
    width: 0;
    height: 2px;
    background: var(--tertiary-color);
    transition: width 0.3s ease-out;
    content: "";
  }
}
@media screen and (min-width: 901px) {
  .o-header__menu__link:hover:before {
    width: calc(100% - 28px);
  }
}
.o-header__menu__link:visited {
  color: var(--text-color);
}

.o-header__right {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .o-header__right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.o-header__actions {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}
@media screen and (min-width: 901px) {
  .o-header__actions {
    flex-direction: row;
    gap: 20px;
  }
}

@media screen and (max-width: 600px) {
  .o-header__cta {
    padding: 4px 12px;
    font-size: 1.4rem;
  }
}
.o-header__cta .a-icon {
  width: 16px;
  height: 17px;
}

.o-hero {
  --stroke-1: var(--color-black);
  --fill-2: var(--tertiary-color);
}
@media screen and (max-width: 900px) {
  .o-hero {
    padding-top: 112px;
    overflow: hidden;
  }
}

.o-hero__wrapper {
  display: flex;
}
@media screen and (max-width: 900px) {
  .o-hero__wrapper {
    flex-direction: column;
  }
}
@media screen and (min-width: 901px) {
  .o-hero__wrapper {
    gap: 20px;
  }
}

.o-hero__orb {
  --orb-rotation: 0deg;
  position: absolute;
  top: 0;
  left: 0;
  width: 66vw;
  max-width: 950px;
  height: 66vw;
  max-height: 950px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0px 0px 50px 0px #fff inset, 0px 0px 400px 0px #fff inset;
  transform: translate(-20%, -45%);
  opacity: 0.2;
  filter: blur(22px);
  animation: orbRotate 12s linear infinite;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .o-hero__orb {
    left: 50%;
    width: 100vw;
    height: 100vw;
    transform: translate(-50%, -40%);
  }
}

@keyframes orbRotate {
  0% {
    transform: translate(-20%, -45%) rotate(0deg);
    @media screen and (max-width: 900px) {
      transform: translate(-50%, -40%) rotate(0deg);
    }
  }
  100% {
    transform: translate(-20%, -45%) rotate(360deg);
    @media screen and (max-width: 900px) {
      transform: translate(-50%, -40%) rotate(360deg);
    }
  }
}
.o-hero__orb__circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.o-hero__orb__circle:nth-child(1) {
  top: 5%;
  left: 40%;
  width: 132%;
  height: 132%;
  background-color: #7f62f3;
  filter: blur(55px);
  animation: orbCircleTranslate1 2s linear infinite alternate;
}
.o-hero__orb__circle:nth-child(2) {
  top: 65%;
  left: -10%;
  width: 104%;
  height: 104%;
  background-color: #3e67ed;
  filter: blur(55px);
  animation: orbCircleTranslate2 2.7s linear infinite alternate;
}
.o-hero__orb__circle:nth-child(3) {
  top: -40%;
  left: -60%;
  width: 124%;
  height: 124%;
  background-color: #83f1ff;
  filter: blur(66px);
  animation: orbCircleTranslate3 1.8s linear infinite alternate;
}
.o-hero__orb__circle:nth-child(4) {
  top: -45%;
  left: 5%;
  width: 96%;
  height: 96%;
  background-color: #fc5c68;
  filter: blur(66px);
  animation: orbCircleTranslate4 2s linear infinite alternate;
}

@keyframes orbCircleTranslate1 {
  0% {
    transform: translate(-20%, 20%);
  }
  100% {
    transform: translate(10%, -10%);
  }
}
@keyframes orbCircleTranslate2 {
  0% {
    transform: translate(20%, -20%);
  }
  100% {
    transform: translate(-10%, 10%);
  }
}
@keyframes orbCircleTranslate3 {
  0% {
    transform: translate(10%, -10%);
  }
  100% {
    transform: translate(-20%, 20%);
  }
}
@keyframes orbCircleTranslate4 {
  0% {
    transform: translate(-10%, 10%);
  }
  100% {
    transform: translate(20%, -20%);
  }
}
.o-hero__column {
  display: flex;
  flex: 1;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .o-hero__column.-text {
    gap: 12px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 901px) {
  .o-hero__column.-text {
    gap: 16px;
    align-items: flex-start;
  }
}

@media screen and (min-width: 901px) {
  .o-hero__title.-l1 {
    line-height: 80px;
  }
}

.o-hero__subtitle {
  margin-bottom: 12px;
}
@media screen and (min-width: 901px) {
  .o-hero__subtitle {
    margin-bottom: 8px;
  }
}

.o-hero__list {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 900px) {
  .o-hero__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 901px) {
  .o-hero__list {
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-bottom: 16px;
  }
}

.o-hero__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.o-hero__actions {
  position: relative;
  display: flex;
  gap: 20px;
}

.o-hero__cta {
  display: inline-flex;
}

.o-hero__badge {
  position: absolute;
  top: -30px;
  right: -35px;
  transform: rotate(-15deg);
}

.o-hero__video {
  width: 100%;
  max-width: 710px;
  height: auto;
  max-height: 440px;
}

.o-hero__legend {
  margin: 0 auto;
  max-width: 70%;
  text-align: center;
}
.o-hero__legend span {
  font-weight: 900;
}

.o-hero__sublegend {
  text-align: center;
}

.o-internalPage {
  padding-top: 100px;
}
@media screen and (min-width: 901px) {
  .o-internalPage {
    padding-top: 68px;
  }
}

.o-internalPage__top {
  display: flex;
  margin-bottom: 20px;
}

.o-internalPage__title {
  margin-bottom: 24px;
}

.o-internalPage__section {
  margin: 16px 0;
}

.o-internalPage__subtitle {
  margin-bottom: 4px;
}

.o-internalPage__content ul {
  padding: 12px 0 0 16px;
  list-style: disc;
}
.o-internalPage__content li {
  margin-bottom: 4px;
  font: 400 1.4rem/1.5 var(--title-font);
}
.o-internalPage__content p {
  font: 400 1.4rem/1.5 var(--title-font);
}

.o-keyNumbers__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 901px) {
  .o-keyNumbers__wrapper {
    gap: 80px;
  }
}

.o-keyNumbers__title {
  text-align: center;
}

.o-keyNumbers__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .o-keyNumbers__list {
    flex-direction: column;
  }
}

.o-keyNumbers__item {
  display: flex;
  margin: 0 auto;
  width: calc(33.3333% - 13.3333333333px);
  max-width: 500px;
}
@media screen and (max-width: 900px) {
  .o-keyNumbers__item {
    width: 100%;
  }
}

.o-keyNumbers__legend {
  margin: 0 auto;
  text-align: center;
}

.o-keyNumbers__asterisk {
  color: var(--color-grey-900);
}

.o-links__wrapper {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.o-links__title {
  margin: 0 auto;
  max-width: 80%;
  text-align: center;
}

.o-links__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 901px) {
  .o-links__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.o-links__item {
  display: flex;
  border-radius: 30px;
  box-shadow: -35px 15px 85px 0px rgb(from var(--primary-color) r g b/0.2), 0px 35px 85px 0px rgb(from var(--secondary-color) r g b/0.2), 35px 15px 85px 0px rgb(from var(--tertiary-color) r g b/0.2);
}

.o-packages {
  scroll-margin-top: 100px;
}

.o-packages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 900px) {
  .o-packages__wrapper {
    overflow: hidden;
  }
}

.o-packages__title:not(.-more) {
  text-align: center;
}

.o-packages__badge {
  position: absolute;
  top: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  transform: rotate(-12.4deg);
  z-index: 10;
}
.o-packages__badge.-year {
  left: calc(50% - 185px);
}
.o-packages__badge.-halfyear {
  left: calc(50% - 75px);
}

.o-packages__badgeIcon {
  --stroke-1: white;
  position: absolute;
  top: calc(50% - 17px);
  left: calc(50% - 17px);
  width: 34px;
  height: 34px;
  stroke-width: 2px;
  z-index: 0;
}

.o-packages__badgeText {
  position: relative;
  display: flex;
  color: var(--color-white);
  z-index: 10;
}
.o-packages__badgeText.a-text {
  font-size: 12px;
  font-weight: 700;
}
.o-packages__badgeText sup {
  font-size: 8px;
}

.o-packages__list {
  display: grid;
  grid-template-columns: minmax(75%, 350px) minmax(75%, 350px) minmax(75%, 350px) minmax(75%, 350px);
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .o-packages__list {
    padding: 0 16px;
    margin: 0 -16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}
@media screen and (min-width: 901px) {
  .o-packages__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.o-packages__item {
  position: relative;
  display: flex;
}
@media screen and (max-width: 900px) {
  .o-packages__item {
    width: 100%;
    scroll-snap-align: center;
  }
}
@media screen and (min-width: 901px) {
  .o-packages__item {
    border-radius: 30px;
    transition: box-shadow 0.3s ease-in-out;
  }
  .o-packages__item::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: transparent;
    border-radius: 30px;
    box-shadow: -70px 40px 170px 0px rgba(11, 153, 255, 0.5019607843), 0px -70px 170px 0px rgba(117, 99, 255, 0.5019607843), 70px 40px 170px 0px rgba(250, 79, 79, 0.5019607843), -3px 4px 12px 0px rgba(4, 6, 42, 0.4196078431);
    transition: opacity 400ms var(--easing-standard);
    content: "";
    z-index: -5;
  }
  .o-packages__item:first-child::before {
    height: 100%;
    box-shadow: -70px 40px 170px 0px rgba(11, 153, 255, 0.5019607843), 0px -70px 170px 0px rgba(117, 99, 255, 0.5019607843), 70px 40px 170px 0px rgba(250, 79, 79, 0.5019607843), -3px 4px 12px 0px rgba(4, 6, 42, 0.4196078431);
  }
  .o-packages__item:first-child .m-cardOffer__content {
    background: linear-gradient(347.28deg, rgba(118, 125, 250, 0.3) 10%, rgba(255, 158, 110, 0.3) 35%, rgba(254, 120, 66, 0.3) 60%, rgba(255, 255, 255, 0.3) 80%);
  }
  .o-packages__item:not(.-hover):first-child::before {
    opacity: 0;
  }
  .o-packages__item:not(.-hover):not(:first-child)::before {
    opacity: 0;
  }
}

.o-packages__more {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-black);
}
@media screen and (min-width: 901px) {
  .o-packages__more {
    display: grid;
    grid-template-columns: 3fr 7fr 2fr;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.o-packages__featureList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 901px) {
  .o-packages__featureList {
    flex-wrap: wrap;
    height: 96px;
  }
}

.o-packages__feature {
  --stroke-1: var(--color-black);
  display: flex;
  gap: 10px;
  align-items: center;
}
.o-packages__feature .a-icon.-circle-check {
  --fill-2: var(--tertiary-color);
}
.o-packages__feature .a-icon.-circle-plus {
  --stroke-2: var(--tertiary-color);
}

.o-packages__cta.-more {
  align-self: center;
  justify-self: flex-start;
}

.o-testimonials {
  scroll-margin-top: 25px;
  position: relative;
}
@media screen and (min-width: 1201px) {
  .o-testimonials .o-testimonials__title {
    font-size: 120px;
    line-height: 0.9;
  }
}

.o-testimonials__background {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: calc(125% + 30px);
  overflow: hidden;
  z-index: -1;
}
.o-testimonials__background::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  min-width: 1058px;
  height: 100%;
  background: radial-gradient(34.69% 36.48% at 50% 44.42%, rgb(from var(--secondary-color) r g b/0.3) 0%, rgb(from var(--secondary-color) r g b/0) 100%), radial-gradient(37.27% 39.2% at 56.2% 56.88%, rgb(from var(--tertiary-color) r g b/0.3) 0%, rgba(11, 153, 255, 0) 100%), radial-gradient(32.93% 40.62% at 37.76% 55.46%, rgb(from var(--primary-color) r g b/0.3) 0%, rgba(250, 79, 79, 0) 100%);
  transform: translate(-50%, 0);
  filter: blur(57px);
  content: "";
  z-index: -1;
}

.o-testimonials__content {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .o-testimonials__content {
    flex-direction: column;
    gap: 64px;
    align-items: center;
  }
}
@media screen and (min-width: 1201px) {
  .o-testimonials__content {
    align-items: center;
    justify-content: center;
    min-height: 840px;
  }
}

.o-testimonials__title {
  max-width: 980px;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .o-testimonials__title {
    color: var(--color-black);
  }
}

@media screen and (max-width: 1200px) {
  .o-testimonials__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
@media screen and (min-width: 1201px) {
  .o-testimonials__list {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    padding: 0;
    border-radius: 50%;
    list-style: none;
  }
  .o-testimonials__list > * {
    position: absolute;
    top: 80%;
    left: 50%;
    margin: -242px;
  }
  .o-testimonials__list > *:nth-of-type(1) {
    transform: rotate(10deg) translate(25vw, 50%) rotate(-10deg);
  }
  .o-testimonials__list > *:nth-of-type(2) {
    transform: rotate(77deg) translate(25vw, 50%) rotate(-77deg);
  }
  .o-testimonials__list > *:nth-of-type(3) {
    transform: rotate(144deg) translate(25vw, 50%) rotate(-144deg);
  }
  .o-testimonials__list > *:nth-of-type(4) {
    transform: rotate(211deg) translate(25vw, 50%) rotate(-211deg);
  }
  .o-testimonials__list > *:nth-of-type(5) {
    transform: rotate(278deg) translate(25vw, 50%) rotate(-278deg);
  }
}
@media screen and (min-width: 1201px) and (min-width: 1440px) {
  .o-testimonials__list {
    width: 720px;
    height: 720px;
    padding: 0;
    border-radius: 50%;
    list-style: none;
  }
  .o-testimonials__list > * {
    position: absolute;
    top: 80%;
    left: 50%;
    margin: -242px;
  }
  .o-testimonials__list > *:nth-of-type(1) {
    transform: rotate(10deg) translate(360px, 50%) rotate(-10deg);
  }
  .o-testimonials__list > *:nth-of-type(2) {
    transform: rotate(77deg) translate(360px, 50%) rotate(-77deg);
  }
  .o-testimonials__list > *:nth-of-type(3) {
    transform: rotate(144deg) translate(360px, 50%) rotate(-144deg);
  }
  .o-testimonials__list > *:nth-of-type(4) {
    transform: rotate(211deg) translate(360px, 50%) rotate(-211deg);
  }
  .o-testimonials__list > *:nth-of-type(5) {
    transform: rotate(278deg) translate(360px, 50%) rotate(-278deg);
  }
}

.o-testimonials__item:nth-child(1) .o-testimonials__testimony {
  animation-delay: -3.7s;
}
.o-testimonials__item:nth-child(2) .o-testimonials__testimony {
  animation-delay: -7.4s;
}
.o-testimonials__item:nth-child(3) .o-testimonials__testimony {
  animation-delay: -11.1s;
}
.o-testimonials__item:nth-child(4) .o-testimonials__testimony {
  animation-delay: -14.8s;
}
.o-testimonials__item:nth-child(5) .o-testimonials__testimony {
  animation-delay: -18.5s;
}

@media screen and (min-width: 1201px) {
  .o-testimonials__testimony {
    animation: testimonyFloat 19s infinite;
    animation-timing-function: ease-in-out;
  }
}

@keyframes testimonyFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.o-useStep__wrapper {
  background: var(--color-black);
  border-radius: 30px;
}
.o-useStep__wrapper {
  padding-left: 16px;
}
@media screen and (min-width: 601px) {
  .o-useStep__wrapper {
    padding-left: calc(16px + 104 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-useStep__wrapper {
    padding-left: 120px;
  }
}
.o-useStep__wrapper {
  padding-right: 16px;
}
@media screen and (min-width: 601px) {
  .o-useStep__wrapper {
    padding-right: calc(16px + 104 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-useStep__wrapper {
    padding-right: 120px;
  }
}
.o-useStep__wrapper {
  padding-bottom: 16px;
}
@media screen and (min-width: 601px) {
  .o-useStep__wrapper {
    padding-bottom: calc(16px + 104 * (100vw - 601px) / 600);
  }
}
@media screen and (min-width: 1201px) {
  .o-useStep__wrapper {
    padding-bottom: 120px;
  }
}

.o-useStep__title {
  color: var(--color-white);
  text-align: center;
}

.o-useStep__subtitle {
  margin: 0 auto;
  max-width: var(--sm-max);
  color: var(--color-grey-300);
  text-align: center;
}
.o-useStep__subtitle span {
  display: block;
  font-weight: 700;
}

.o-useStep__stepList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
  color: var(--color-white);
}

/*# sourceMappingURL=index.css.map */
