@layer base, components, layout, pages, utilities;
@layer base {
  *,
  *::after,
  *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    font-size: 10px;
    width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  html:has(.navbar--open) {
    overflow: hidden;
  }
  @media (width < 768px) {
    html {
      font-size: 2.6666666667vw;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    html {
      font-size: 1.3020833333vw;
    }
  }
  @media (width >= 1025px) and (width < 1560px) {
    html {
      font-size: 0.641025641vw;
    }
  }
  body {
    position: relative;
    padding: 0;
    overflow-x: clip;
    background-color: #f9f9f9;
  }
  .wrap {
    position: relative;
    width: 100%;
    max-width: 156rem;
    margin: 0 auto;
  }
  @media (width < 768px) {
    .wrap {
      padding: 0 1.5rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .wrap {
      padding: 0 5rem;
    }
  }
  @media (width >= 1025px) {
    .wrap {
      padding: 0 10rem;
    }
  }
  input {
    outline: none;
    box-shadow: none;
  }
  @media (hover: hover) {
    input:focus, input:hover {
      outline: none;
    }
  }
}
@layer base {
  body {
    font-weight: 400;
    line-height: 1;
    font-family: "Inter Tight", sans-serif;
    color: #333;
  }
  img {
    vertical-align: middle;
  }
  a {
    text-decoration: none;
  }
  b {
    font-weight: 700;
  }
  button {
    outline: none;
    box-shadow: none;
    border: none;
  }
  fieldset {
    border: transparent;
  }
  .section__title {
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
  }
  @media (width < 1025px) {
    .section__title {
      font-size: 3.5rem;
    }
  }
  @media (width >= 1025px) {
    .section__title {
      font-size: 5rem;
    }
  }
  .section__desc {
    line-height: 130%;
    letter-spacing: -0.01em;
  }
  @media (width < 1025px) {
    .section__desc {
      font-size: 1.8rem;
    }
  }
  @media (width >= 1025px) {
    .section__desc {
      font-size: 2.2rem;
    }
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  border-radius: 1rem;
  font-weight: 500;
  line-height: 130%;
  text-transform: capitalize;
  cursor: pointer;
  outline: none;
  transition: 0.3s all;
}
@media (width < 1025px) {
  .btn {
    height: 4.5rem;
    padding: 0 1.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .btn {
    height: 5rem;
    padding: 0 2rem;
    font-size: 1.8rem;
  }
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 1025px) {
  .btn__icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media (width >= 1025px) {
  .btn__icon {
    width: 2rem;
    height: 2rem;
  }
}
.btn svg {
  position: relative;
  top: 0.12rem;
  width: 0.6rem;
  height: 1.2rem;
}
.btn--primary {
  background-color: #f8564e;
  color: #fff;
  border: 0.1rem solid #f8564e;
}
@media (hover: hover) {
  .btn--primary:hover {
    background-color: #ed382f;
    border-color: #ed382f;
  }
}
.btn--white {
  background-color: #fff;
  color: #333;
  border: 0.1rem solid #fff;
}
@media (hover: hover) {
  .btn--white:hover {
    background-color: rgba(237, 56, 47, 0);
    color: #fff;
  }
}
.btn--bdr {
  background-color: rgba(248, 86, 78, 0);
  color: #333;
  border: 0.1rem solid #333;
}
@media (hover: hover) {
  .btn--bdr:hover {
    background-color: #f8564e;
    color: #fff;
    border-color: #f8564e;
  }
}
.btn--bdr-white {
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
  border: 0.1rem solid #fff;
}
@media (hover: hover) {
  .btn--bdr-white:hover {
    background-color: #fff;
    color: #333;
  }
}

.bottomnav {
  display: flex;
  flex-direction: column;
  list-style-type: none;
}
@media (width < 1025px) {
  .bottomnav {
    row-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .bottomnav {
    row-gap: 2rem;
  }
}
.bottomnav a {
  font-weight: 500;
  line-height: 130%;
  color: #333;
  transition: 0.3s color;
}
@media (width < 1025px) {
  .bottomnav a {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .bottomnav a {
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .bottomnav a:hover {
    color: #808080;
  }
}

.link {
  font-weight: 500;
  text-transform: capitalize;
  color: #333;
  transition: 0.3s color;
}
@media (hover: hover) {
  .link:hover {
    color: #808080;
  }
}

.logo {
  display: block;
  overflow: hidden;
}
@media (width < 1025px) {
  .logo {
    width: 15rem;
    height: 2.2rem;
  }
}
@media (width >= 1025px) {
  .logo {
    width: 17.2rem;
    height: 2.4rem;
  }
}
.logo img {
  width: 100%;
  height: auto;
}

.social {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media (width < 1025px) {
  .social {
    margin-top: 2rem;
  }
}
@media (width >= 1025px) {
  .social {
    margin-top: auto;
  }
}
.social__bg {
  color: #ccc;
}
.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  border-radius: 1rem;
  color: #f8564e;
  background-color: rgba(248, 86, 78, 0);
  transition: 0.3s all;
}
@media (width < 1025px) {
  .social__link {
    width: 4rem;
    height: 4rem;
  }
}
@media (width >= 1025px) {
  .social__link {
    width: 5rem;
    height: 5rem;
  }
}
@media (width < 1025px) {
  .social__link svg {
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media (width >= 1025px) {
  .social__link svg {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media (hover: hover) {
  .social__link:hover {
    background-color: #f8564e;
    border-color: #f8564e;
    color: #fff;
  }
}

.tab__nav {
  display: flex;
  column-gap: 2rem;
  border-bottom: 0.1rem solid #ccc;
}
.tab__link {
  position: relative;
  width: max-content;
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: #333;
  background-color: transparent;
  transition: 0.3s color;
}
@media (width < 1025px) {
  .tab__link {
    padding-bottom: 1.5rem;
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .tab__link {
    padding-bottom: 2rem;
    font-size: 2.2rem;
  }
}
.tab__link::before {
  position: absolute;
  bottom: -0.1rem;
  width: 100%;
  max-width: 0;
  height: 0.1rem;
  content: "";
  background-color: #333;
  transition: 0.3s max-width;
}
.tab__link--current:before {
  max-width: 12rem;
}
@media (hover: hover) {
  .tab__link:hover {
    color: #808080;
  }
}
.topnav {
  display: flex;
  list-style-type: none;
}
@media (width < 1025px) {
  .topnav {
    flex-direction: column;
    row-gap: 2rem;
  }
}
@media (width >= 1025px) {
  .topnav {
    align-items: center;
    column-gap: 2.7rem;
  }
}
.topnav > li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (width < 1025px) {
  .topnav > li {
    column-gap: 0.8rem;
  }
}
@media (width >= 1025px) {
  .topnav > li {
    column-gap: 1.3rem;
  }
}
@media (width >= 1025px) and (hover: hover) {
  .topnav > li:has(.sub-menu):hover .sub-menu, .topnav > li:has(.sub-menu):focus-within .sub-menu {
    visibility: visible;
  }
  .topnav > li:has(.sub-menu):hover .sub-menu__box, .topnav > li:has(.sub-menu):focus-within .sub-menu__box {
    max-height: 25rem;
    visibility: visible;
  }
  .topnav > li:has(.sub-menu):hover .sub-menu__container, .topnav > li:has(.sub-menu):focus-within .sub-menu__container {
    visibility: visible;
    border-color: rgba(0, 0, 0, 0.1);
  }
  .topnav > li:has(.sub-menu):hover .sub-menu__btn, .topnav > li:has(.sub-menu):focus-within .sub-menu__btn {
    transform: rotate(180deg);
  }
}
@media (width < 1025px) {
  .topnav > li a {
    font-size: 2.8rem;
  }
}
@media (width >= 1025px) {
  .topnav > li a {
    font-size: 1.8rem;
  }
}
.topnav .sub-menu {
  display: flex;
  visibility: hidden;
  flex-direction: column;
  transition: 0.2s all;
}
@media (width < 1025px) {
  .topnav .sub-menu {
    row-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .topnav .sub-menu {
    row-gap: 1.5rem;
  }
}
@media (width >= 1025px) and (hover: hover) {
  .topnav .sub-menu:hover ~ .sub-menu__container-default {
    opacity: 0;
    visibility: hidden;
  }
}
@media (width < 1025px) {
  .topnav .sub-menu__icon {
    display: none;
  }
}
@media (width >= 1025px) {
  .topnav .sub-menu__icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: translateX(0);
    transition: transform 0.3s;
  }
}
.topnav .sub-menu__icon svg {
  width: 1rem;
  height: auto;
  transform: rotate(270deg);
  transition: color 0.3s;
}
@media (width < 1025px) {
  .topnav .sub-menu li {
    display: contents;
  }
}
@media (width >= 1025px) {
  .topnav .sub-menu li {
    display: grid;
    align-items: center;
    grid-template-columns: 12.6rem 2rem;
  }
}
@media (width < 1025px) {
  .topnav .sub-menu li a {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .topnav .sub-menu li a {
    font-size: 1.8rem;
    transition: color 0.3s;
  }
}
@media (width < 1025px) {
  .topnav .sub-menu li:first-child a {
    margin-top: 2rem;
  }
}
@media (hover: hover) {
  .topnav .sub-menu li:hover {
    color: #f8564e;
  }
  .topnav .sub-menu li:hover .sub-menu__icon {
    transform: translateX(1rem);
  }
  .topnav .sub-menu li:hover .sub-menu__img {
    visibility: visible;
    opacity: 1;
  }
  .topnav .sub-menu li:hover a {
    color: #f8564e;
  }
}
.topnav .sub-menu__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
  transform: rotate(0);
  transition: transform 0.3s;
  color: #333;
}
@media (width < 1025px) {
  .topnav .sub-menu__btn {
    top: 0.23rem;
    width: 3rem;
    height: 3rem;
  }
}
@media (width >= 1025px) {
  .topnav .sub-menu__btn {
    height: 0.6rem;
  }
}
.topnav .sub-menu__btn svg {
  height: auto;
}
@media (width < 1025px) {
  .topnav .sub-menu__btn svg {
    width: 1.8rem;
  }
}
@media (width >= 1025px) {
  .topnav .sub-menu__btn svg {
    width: 1rem;
  }
}
.topnav .sub-menu__btn--open {
  transform: rotate(180deg);
}
@media (width >= 1025px) {
  .topnav .sub-menu__container {
    padding: 3rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 19rem;
    background-color: #f9f9f9;
    border-radius: 1.6rem;
    visibility: hidden;
    border: 0.1rem solid rgba(0, 0, 0, 0);
    transition: all 0.2s;
  }
  .topnav .sub-menu__container:after {
    width: 19rem;
    height: 100%;
    display: block;
    content: "";
    background: #fff;
    background-size: 14rem;
    border-radius: 1.1rem;
  }
  .topnav .sub-menu__container-default {
    position: absolute;
    right: 5rem;
    width: 14rem;
    height: 14rem;
    display: block;
    background: url("../img/logo-img.webp") no-repeat center/100% transparent;
    opacity: 1;
    visibility: visible;
    transition: 0.3s all;
  }
}
.topnav .sub-menu__box {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.3s all;
}
@media (width < 1025px) {
  .topnav .sub-menu__box {
    width: 100%;
  }
}
@media (width >= 1025px) {
  .topnav .sub-menu__box {
    position: absolute;
    z-index: 10;
    top: 3.6rem;
    left: -1.5rem;
    width: 51.6rem;
  }
}
.topnav .sub-menu__box--open {
  max-height: 25rem;
  visibility: visible;
}
.topnav .sub-menu__box--open .sub-menu {
  visibility: visible;
}
.topnav .sub-menu__box--open .sub-menu__container {
  visibility: visible;
  border-color: rgba(0, 0, 0, 0.1);
}
@media (width < 1025px) {
  .topnav .sub-menu__img {
    display: none;
  }
}
@media (width >= 1025px) {
  .topnav .sub-menu__img {
    position: absolute;
    right: 6.5rem;
    top: calc(50% - 6rem);
    width: 12rem;
    height: 12rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
  }
}
.topnav a {
  font-weight: 500;
  line-height: 130%;
  color: #333;
  transition: 0.3s color;
}
@media (hover: hover) {
  .topnav a:hover {
    color: #808080;
  }
}

.slick-track {
  display: flex;
}

.slider__nav {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.slider__nav-btn {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #8e8e8e;
  color: #333;
  background-color: transparent;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s all;
}
.slider__nav-btn svg {
  width: 1.2rem;
  height: auto;
}
.slider__nav-btn--prew svg {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .slider__nav-btn:hover {
    background-color: #f9f9f9;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
  }
}

.account {
  background-color: #fff;
}
@media (width < 768px) {
  .account {
    padding-top: 8rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .account {
    padding-top: 10rem;
  }
}
@media (width >= 1025px) {
  .account {
    padding-top: 16rem;
  }
}
.account__header {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (width >= 768px) and (width < 1025px) {
  .account__header {
    max-width: 46rem;
  }
}
@media (width < 1025px) {
  .account__header {
    row-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .account__header {
    max-width: 64rem;
    row-gap: 2rem;
  }
}
.account .section__title span {
  color: #f8564e;
}
.account .section__desc {
  color: #808080;
}
.account__list {
  display: grid;
  counter-reset: list;
}
@media (width < 768px) {
  .account__list {
    row-gap: 1.5rem;
  }
}
@media (width >= 768px) {
  .account__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 768px) and (width < 1025px) {
  .account__list {
    column-gap: 1rem;
  }
}
@media (width < 1025px) {
  .account__list {
    margin-top: 5rem;
  }
}
@media (width >= 1025px) {
  .account__list {
    margin-top: 6rem;
    column-gap: 2rem;
  }
}
.account__num {
  line-height: 140%;
}
@media (width < 1025px) {
  .account__num {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .account__num {
    font-size: 1.6rem;
  }
}
.account__num:before {
  content: counter(list, decimal-leading-zero);
}
.account__title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.01em;
}
@media (width >= 768px) and (width < 1025px) {
  .account__title {
    min-height: 6rem;
    display: flex;
    align-items: flex-end;
  }
}
@media (width < 1025px) {
  .account__title {
    max-width: 20rem;
    margin-top: 4rem;
    font-size: 2.8rem;
  }
}
@media (width >= 1025px) {
  .account__title {
    max-width: 42rem;
    margin-top: 8rem;
    font-size: 3.8rem;
  }
}
.account__desc {
  width: 100%;
}
@media (width < 1025px) {
  .account__desc {
    margin-top: 1rem;
  }
}
@media (width >= 1025px) {
  .account__desc {
    margin-top: 1.5rem;
  }
}
.account__desc p {
  line-height: 140%;
  opacity: 0.8;
}
@media (width < 1025px) {
  .account__desc p {
    max-width: 25rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .account__desc p {
    font-size: 1.8rem;
  }
}
.account__desc hr {
  margin-top: 3rem;
  border-style: ridge;
}
.account__desc ul,
.account__desc ol {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.account__desc li {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: -0.01em;
  display: flex;
  column-gap: 1rem;
}
.account__desc li::before {
  flex-shrink: 0;
  width: 2rem;
  height: 1rem;
  transform: translateY(0.8rem);
  content: "";
  background: url("../img/check-dark.svg") no-repeat center center/100%;
}
@media (width < 1025px) {
  .account__desc li {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .account__desc li {
    font-size: 2.2rem;
  }
}
.account__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  counter-increment: list;
}
@media (width < 1025px) {
  .account__item {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .account__item {
    padding: 2.5rem 3rem 3rem;
    border-radius: 1.6rem;
  }
}
.account__item--primary {
  background-color: #f8564e;
  border: 0.1rem solid #f8564e;
  color: #fff;
}
.account__item--primary .account__desc hr {
  border-color: #fff;
}
.account__item--primary .account__desc li::before {
  background-image: url("../img/check.svg");
}
.account__item:not(.account__item--primary) {
  background-color: #f9f9f9;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.account__item:not(.account__item--primary) .account__desc p {
  color: #808080;
}
.account__item:not(.account__item--primary) .account__desc hr {
  border-color: #8e8e8e;
}
.account__item .btn {
  margin-top: auto;
}
.account__icon {
  position: absolute;
}
@media (width < 1025px) {
  .account__icon {
    top: -9.7rem;
    right: -9.7rem;
    width: 26rem;
    height: 26rem;
  }
}
@media (width >= 1025px) {
  .account__icon {
    top: -14rem;
    right: -13rem;
    width: 34rem;
    height: 37rem;
  }
}
.account__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (width < 768px) {
  .advantages {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) {
  .advantages {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 768px) and (width < 1025px) {
  .advantages {
    padding: 10rem 0 0;
    column-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .advantages {
    padding: 16rem 0 0;
    column-gap: 2rem;
  }
}
.advantages .section__title span {
  color: #f8564e;
}
@media (width >= 768px) {
  .advantages__header {
    position: sticky;
    top: 6rem;
  }
}
.advantages__list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
@media (width < 768px) {
  .advantages__list {
    margin-top: 4rem;
  }
}
.advantages__item {
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
@media (width < 1025px) {
  .advantages__item {
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
  }
}
@media (width >= 1025px) {
  .advantages__item {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}
.advantages__icon {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media (width < 1025px) {
  .advantages__icon {
    border-radius: 1rem;
    width: 5rem;
    height: 5rem;
  }
  .advantages__icon img {
    max-width: 2.8rem;
    height: auto;
  }
}
@media (width >= 1025px) {
  .advantages__icon {
    border-radius: 1.9rem;
    width: 7rem;
    height: 7rem;
    grid-row: 1/3;
  }
}
.advantages__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .advantages__title {
    margin-top: 3rem;
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .advantages__title {
    font-size: 2.2rem;
  }
}
.advantages__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .advantages__desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .advantages__desc {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}

@media (width < 768px) {
  .benefits {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .benefits {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .benefits {
    padding: 16rem 0;
  }
}
.benefits__header {
  display: flex;
  flex-direction: column;
}
@media (width < 1025px) {
  .benefits__header {
    row-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .benefits__header {
    row-gap: 2rem;
  }
}
.benefits .section__title {
  text-align: center;
}
.benefits .section__title span {
  color: #f8564e;
}
.benefits__list {
  display: grid;
}
@media (width >= 768px) {
  .benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .benefits__list {
    margin-top: 4rem;
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .benefits__list {
    margin-top: 6rem;
    gap: 2rem;
  }
}
.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  counter-increment: list;
}
@media (width < 1025px) {
  .benefits__item {
    min-height: 40rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .benefits__item {
    min-height: 52rem;
    padding: 2.5rem 3rem;
    border-radius: 1.6rem;
  }
}
.benefits__num {
  line-height: 140%;
}
@media (width < 1025px) {
  .benefits__num {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .benefits__num {
    font-size: 1.6rem;
  }
}
.benefits__num::before {
  content: counter(list, decimal-leading-zero);
}
@media (width < 1025px) {
  .benefits__img {
    width: 100%;
    height: 20rem;
    margin: 1.5rem auto 3rem;
  }
}
@media (width >= 1025px) {
  .benefits__img {
    width: 30rem;
    height: 29rem;
    margin: 1rem auto 1.6rem;
  }
}
.benefits__img img {
  width: 100%;
  height: 100%;
}
@media (width < 1025px) {
  .benefits__img img {
    object-fit: contain;
  }
}
@media (width >= 1025px) {
  .benefits__img img {
    object-fit: cover;
  }
}
.benefits__title {
  margin-top: auto;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .benefits__title {
    font-size: 2.4rem;
  }
  .benefits__title br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .benefits__title {
    max-width: 41rem;
    font-size: 2.8rem;
  }
}
.benefits__desc {
  margin-top: 1rem;
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .benefits__desc {
    font-size: 1.5rem;
  }
  .benefits__desc br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .benefits__desc {
    max-width: 41rem;
    font-size: 1.8rem;
  }
}

.conditions {
  background-color: #fff;
}
@media (width < 768px) {
  .conditions {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .conditions {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .conditions {
    padding: 16rem 0 0;
  }
}
@media (width >= 1025px) {
  .conditions .wrap {
    width: 100%;
    max-width: 87rem;
  }
}
.conditions .section__title span {
  color: #f8564e;
}
.conditions .section__desc {
  color: #808080;
}
.conditions__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (width < 1025px) {
  .conditions__header {
    row-gap: 1.5rem;
  }
}
@media (width >= 1025px) {
  .conditions__header {
    row-gap: 2rem;
  }
}
@media (width < 1025px) {
  .conditions__list {
    margin-top: 4rem;
  }
}
@media (width >= 1025px) {
  .conditions__list {
    margin-top: 6rem;
  }
}
.conditions__details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
@media (width < 1025px) {
  .conditions__details {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .conditions__details {
    font-size: 1.8rem;
  }
}
.conditions__box {
  overflow: hidden;
  min-height: 0;
  line-height: 140%;
  color: #808080;
}
@media (width < 768px) {
  .conditions__box {
    max-width: 32rem;
  }
}
@media (width >= 768px) {
  .conditions__box {
    max-width: 62rem;
  }
}
@media (width < 1025px) {
  .conditions__box {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .conditions__box {
    font-size: 1.8rem;
  }
}
@media (width < 1025px) {
  .conditions__box > * {
    padding-top: 1.6rem;
  }
}
@media (width >= 1025px) {
  .conditions__box > * {
    padding-top: 2rem;
  }
}
.conditions__box ul,
.conditions__box ol {
  padding-left: 2rem;
}
.conditions__btn {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  background-color: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.conditions__btn::before, .conditions__btn::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.4rem;
  height: 0.1rem;
  content: "";
  background-color: #333;
  transform: translateY(-50%);
}
.conditions__btn::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s;
}
.conditions__item {
  padding-bottom: 2rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.conditions__item:last-child {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.conditions__item-header {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2.4rem;
  column-gap: 1rem;
  cursor: pointer;
}
@media (width < 1025px) {
  .conditions__item-header {
    padding-top: 1.6rem;
  }
}
@media (width >= 1025px) {
  .conditions__item-header {
    padding-top: 2rem;
  }
}
.conditions__item--show .conditions__details {
  grid-template-rows: 1fr;
}
.conditions__item--show .conditions__btn::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.conditions__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .conditions__title {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .conditions__title {
    font-size: 2.2rem;
  }
}

@media (width < 768px) {
  .confidence {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .confidence {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .confidence {
    padding: 16rem 0 0;
  }
}
.confidence__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (width < 1025px) {
  .confidence__header {
    row-gap: 1.5rem;
  }
}
@media (width >= 1025px) {
  .confidence__header {
    row-gap: 3rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .confidence .section__title {
    max-width: 50rem;
  }
}
@media (width < 1025px) {
  .confidence .section__title br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .confidence .section__title {
    max-width: 98rem;
  }
}
.confidence .section__title span {
  color: #f8564e;
}
.confidence .section__desc {
  color: #808080;
}
@media (width >= 768px) and (width < 1025px) {
  .confidence .section__desc {
    max-width: 50rem;
  }
}
@media (width >= 1025px) {
  .confidence .section__desc {
    max-width: 40rem;
  }
}
.confidence__box {
  position: relative;
}
@media (width < 1025px) {
  .confidence__box {
    margin-top: 6rem;
  }
}
@media (width >= 1025px) {
  .confidence__box {
    margin-top: 8rem;
    min-height: 85.254rem;
    overflow: hidden;
  }
}
.confidence__list {
  display: grid;
}
@media (width >= 768px) {
  .confidence__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .confidence__list {
    gap: 3rem 1rem;
  }
}
@media (width >= 1025px) {
  .confidence__list {
    row-gap: 5.2rem;
  }
}
.confidence__item {
  display: flex;
  flex-direction: column;
}
@media (width >= 1025px) {
  .confidence__item:nth-child(odd) {
    width: 29rem;
    justify-self: flex-start;
  }
  .confidence__item:nth-child(even) {
    width: 24rem;
    justify-self: flex-end;
  }
}
.confidence__icon {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media (width < 1025px) {
  .confidence__icon {
    border-radius: 1rem;
    width: 5rem;
    height: 5rem;
  }
  .confidence__icon img {
    max-width: 2.8rem;
    height: auto;
  }
}
@media (width >= 1025px) {
  .confidence__icon {
    border-radius: 1.9rem;
    width: 7rem;
    height: 7rem;
  }
}
.confidence__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .confidence__title {
    margin-top: 1.5rem;
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .confidence__title {
    margin-top: 2rem;
    font-size: 2.2rem;
  }
}
.confidence__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .confidence__desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
  .confidence__desc br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .confidence__desc {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
@media (width < 768px) {
  .confidence__bg {
    margin-top: 7rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .confidence__bg {
    margin-top: 8rem;
  }
}
@media (width < 1025px) {
  .confidence__bg {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (width >= 1025px) {
  .confidence__bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 12rem;
    width: 88.25rem;
    height: 85.254rem;
  }
}
@media (width < 768px) {
  .confidence__bg img {
    left: -4rem;
    height: 42.7rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .confidence__bg img {
    left: -8rem;
    height: 60rem;
  }
}
@media (width < 1025px) {
  .confidence__bg img {
    position: relative;
    object-fit: contain;
  }
}
@media (width >= 1025px) {
  .confidence__bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@media (width < 768px) {
  .contact {
    padding: 6rem 0 8rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .contact {
    padding: 6rem 0 10rem;
  }
}
@media (width >= 1025px) {
  .contact {
    padding: 12rem 0 16rem;
  }
}
@media (width >= 768px) {
  .contact .wrap {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 768px) and (width < 1025px) {
  .contact .wrap {
    column-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .contact .wrap {
    column-gap: 2rem;
  }
}
@media (width >= 768px) {
  .contact__header {
    position: sticky;
    top: 6rem;
  }
}
@media (width < 1025px) {
  .contact .section__title {
    font-size: 2.8rem;
  }
}
@media (width >= 1025px) {
  .contact .section__title {
    font-size: 3.8rem;
  }
}
.contact__list {
  display: grid;
}
@media (width < 768px) {
  .contact__list {
    margin-top: 3rem;
  }
}
@media (width < 1025px) {
  .contact__list {
    row-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .contact__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}
.contact__item {
  display: flex;
  flex-direction: column;
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  background-color: #fff;
  border-radius: 1.6rem;
}
@media (width < 1025px) {
  .contact__item {
    min-height: 20rem;
    padding: 1.5rem;
  }
}
@media (width >= 1025px) {
  .contact__item {
    min-height: 28rem;
    padding: 2.5rem;
  }
}
.contact__icon {
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media (width < 1025px) {
  .contact__icon {
    border-radius: 1rem;
    width: 5rem;
    height: 5rem;
  }
}
@media (width >= 1025px) {
  .contact__icon {
    border-radius: 1.9rem;
    width: 7rem;
    height: 7rem;
  }
}
.contact__title {
  margin-top: auto;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .contact__title {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .contact__title {
    font-size: 2.2rem;
  }
}
.contact__email {
  margin-top: 0.5rem;
  line-height: 140%;
  color: #808080;
  transition: 0.3s color;
}
@media (width < 1025px) {
  .contact__email {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .contact__email {
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .contact__email:hover {
    color: #333;
  }
}
.contact__desc {
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #808080;
}
@media (width < 1025px) {
  .contact__desc {
    margin-top: 3rem;
    font-size: 1.2rem;
  }
}
@media (width >= 1025px) {
  .contact__desc {
    max-width: 47rem;
    margin-top: 4rem;
    font-size: 1.4rem;
  }
}

.cta {
  background-color: #fff;
}
@media (width < 768px) {
  .cta {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .cta {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .cta {
    padding: 16rem 0;
  }
}
.cta .section__title {
  line-height: 110%;
  color: #fff;
}
@media (width < 1025px) {
  .cta .section__title {
    max-width: 37rem;
    margin-top: 8rem;
  }
}
@media (width >= 1025px) {
  .cta .section__title {
    max-width: 52rem;
    margin-top: 7.6rem;
  }
}
.cta__subtitle {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
}
@media (width < 1025px) {
  .cta__subtitle {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .cta__subtitle {
    font-size: 2.2rem;
  }
}
.cta__box {
  position: relative;
  background: url("../img/bg.avif") no-repeat top center transparent;
  background-size: cover;
  overflow: hidden;
}
@media (width < 1025px) {
  .cta__box {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .cta__box {
    padding: 5rem;
    border-radius: 1.6rem;
  }
}
.cta__content {
  position: relative;
  z-index: 1;
}
.cta__list {
  display: grid;
}
@media (width < 768px) {
  .cta__list {
    row-gap: 1.5rem;
  }
}
@media (width >= 768px) {
  .cta__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 768px) and (width < 1025px) {
  .cta__list {
    column-gap: 2rem;
  }
}
@media (width < 1025px) {
  .cta__list {
    margin-top: 4rem;
    column-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .cta__list {
    margin-top: 5rem;
    column-gap: 2rem;
  }
}
.cta__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
}
@media (width < 1025px) {
  .cta__item {
    min-height: 24rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .cta__item {
    min-height: 40rem;
    padding: 3rem;
    border-radius: 1.6rem;
  }
}
.cta__item .btn {
  margin-top: auto;
}
.cta__title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .cta__title {
    font-size: 2.4rem;
  }
}
@media (width >= 1025px) {
  .cta__title {
    font-size: 2.8rem;
  }
}
.cta__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .cta__desc {
    max-width: 28.5rem;
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .cta__desc {
    max-width: 30rem;
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
.cta__img {
  position: absolute;
}
@media (width < 768px) {
  .cta__img {
    top: -7.5rem;
    right: -9.7rem;
    width: 38.9rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .cta__img {
    top: -9.2rem;
    right: -12.5rem;
    width: 49.5rem;
  }
}
@media (width < 1025px) {
  .cta__img {
    transform: rotate(-42deg);
  }
}
@media (width >= 1025px) {
  .cta__img {
    top: -17.7rem;
    right: -16.4rem;
    width: 96.5rem;
    transform: rotate(-56.4deg);
  }
}
.cta__img img {
  width: 100%;
  height: auto;
}

@media (width < 768px) {
  .deposit {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .deposit {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .deposit {
    padding: 16rem 0 0;
  }
}
.deposit__header {
  display: flex;
  flex-direction: column;
}
@media (width < 1025px) {
  .deposit__header {
    row-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .deposit__header {
    row-gap: 2rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .deposit .section__title {
    max-width: 44rem;
  }
}
@media (width < 1025px) {
  .deposit .section__title br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .deposit .section__title {
    max-width: 64rem;
  }
}
.deposit .section__title span {
  color: #f8564e;
}
.deposit .section__desc {
  color: #808080;
}
@media (width >= 768px) and (width < 1025px) {
  .deposit .section__desc {
    max-width: 44rem;
  }
}
@media (width >= 1025px) {
  .deposit .section__desc {
    max-width: 52rem;
  }
}
.deposit__list {
  display: grid;
}
@media (width >= 768px) {
  .deposit__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .deposit__list {
    margin-top: 4rem;
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .deposit__list {
    margin-top: 5.6rem;
    gap: 2rem;
  }
}
.deposit__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  counter-increment: list;
}
@media (width < 1025px) {
  .deposit__item {
    min-height: 40rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .deposit__item {
    min-height: 52rem;
    padding: 2.5rem 3rem;
    border-radius: 1.6rem;
  }
}
.deposit__num {
  line-height: 140%;
}
@media (width < 1025px) {
  .deposit__num {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .deposit__num {
    font-size: 1.6rem;
  }
}
.deposit__num::before {
  content: counter(list, decimal-leading-zero);
}
@media (width < 1025px) {
  .deposit__img {
    width: 100%;
    height: 20rem;
    margin: 1.5rem auto 3rem;
  }
}
@media (width >= 1025px) {
  .deposit__img {
    width: 30rem;
    height: 30rem;
    margin: 1rem auto 1.6rem;
  }
}
.deposit__img img {
  width: 100%;
  height: 100%;
}
@media (width < 1025px) {
  .deposit__img img {
    object-fit: contain;
  }
}
@media (width >= 1025px) {
  .deposit__img img {
    object-fit: cover;
  }
}
.deposit__title {
  margin-top: auto;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .deposit__title {
    font-size: 2.4rem;
  }
  .deposit__title br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .deposit__title {
    max-width: 41rem;
    font-size: 2.8rem;
  }
}
.deposit__desc {
  margin-top: 1rem;
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .deposit__desc {
    font-size: 1.5rem;
  }
  .deposit__desc br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .deposit__desc {
    max-width: 41rem;
    font-size: 1.8rem;
  }
}

.details__img {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
@media (width < 768px) {
  .details__img {
    order: -1;
    height: 30rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .details__img {
    height: 32rem;
  }
}
@media (width < 1025px) {
  .details__img {
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .details__img {
    height: 60rem;
    border-radius: 1.6rem;
  }
}
.details__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (width < 1025px) {
  .device {
    padding-top: 12rem;
  }
}
@media (width >= 1025px) {
  .device {
    padding-top: 16rem;
  }
}
.device__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (width >= 768px) and (width < 1025px) {
  .device .section__title {
    max-width: 34.5rem;
  }
}
@media (width < 1025px) {
  .device .section__title br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .device .section__title {
    max-width: 47rem;
  }
}
.device .section__title span {
  color: #f8564e;
}
.device__img {
  width: 100%;
  overflow: hidden;
}
@media (width < 768px) {
  .device__img {
    height: 32rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .device__img {
    height: 40rem;
  }
}
@media (width < 1025px) {
  .device__img {
    margin-top: 4rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .device__img {
    height: 68rem;
    margin-top: 6rem;
    border-radius: 1.6rem;
  }
}
@media (width >= 768px) {
  .device__img-mob {
    display: none;
  }
}
@media (width < 768px) {
  .device__img-tab {
    display: none;
  }
}
@media (width >= 1025px) {
  .device__img-tab {
    display: none;
  }
}
.device__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1025px) {
  .device:has(.device__img-tab) .device__img-desktop {
    display: none;
  }
}
@media (width < 1025px) {
  .device:has(.device__img-mob) .device__img-desktop {
    display: none;
  }
}
@media (width < 768px) {
  .device:has(.device__img-mob) .device__img-tab {
    display: none;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .device__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .device__list {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .device__list {
    margin-top: 2rem;
    display: flex;
    column-gap: 2rem;
  }
}
.device__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  color: #333;
  background-color: transparent;
  transition: 0.3s all;
}
@media (width < 1025px) {
  .device__link {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .device__link {
    padding: 2rem;
    border-radius: 1.6rem;
  }
}
.device__link-box {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}
@media (width < 1025px) {
  .device__link-box {
    column-gap: 0.5rem;
  }
}
@media (width >= 1025px) {
  .device__link-box {
    column-gap: 0.8rem;
  }
}
@media (width < 1025px) {
  .device__link-title {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .device__link-title {
    font-size: 1.8rem;
  }
}
@media (width < 768px) {
  .device__link-icon {
    width: 2rem;
    height: 2rem;
  }
}
@media (width >= 768px) {
  .device__link-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media (hover: hover) {
  .device__link:hover {
    background-color: #f8564e;
    border-color: #f8564e;
    color: #fff;
  }
}
.device__icon {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media (width < 1025px) {
  .device__icon {
    border-radius: 1rem;
    width: 5rem;
    height: 5rem;
  }
  .device__icon img {
    max-width: 2.8rem;
    height: auto;
  }
}
@media (width >= 1025px) {
  .device__icon {
    border-radius: 1.9rem;
    width: 7rem;
    height: 7rem;
  }
}

@media (width < 768px) {
  .earn {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .earn {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .earn {
    padding: 16rem 0;
  }
}
.earn .wrap {
  display: grid;
  align-items: flex-start;
}
@media (width < 1025px) {
  .earn .wrap {
    row-gap: 4rem;
  }
}
@media (width >= 1025px) {
  .earn .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 768px) and (width < 1025px) {
  .earn__header {
    max-width: 33rem;
  }
}
@media (width < 1025px) {
  .earn__header {
    grid-column: 1/3;
  }
}
@media (width >= 1025px) {
  .earn__header {
    position: sticky;
    top: 6rem;
  }
}
@media (width >= 1025px) {
  .earn .section__title {
    max-width: 44rem;
  }
}
.earn .section__title span {
  color: #f8564e;
}
.earn__list {
  display: grid;
}
@media (width < 768px) {
  .earn__list {
    gap: 1.5rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .earn__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .earn__list {
    gap: 2rem;
  }
}
.earn__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  counter-increment: list;
}
@media (width < 1025px) {
  .earn__item {
    min-height: 40rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .earn__item {
    min-height: 52rem;
    padding: 2.5rem 3rem;
    border-radius: 1.6rem;
  }
}
.earn__num {
  line-height: 140%;
}
@media (width < 1025px) {
  .earn__num {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .earn__num {
    font-size: 2.2rem;
  }
}
.earn__num::before {
  content: counter(list, decimal-leading-zero);
}
@media (width < 1025px) {
  .earn__img {
    width: 100%;
    height: 20rem;
    margin: 1.5rem auto 3rem;
  }
}
@media (width >= 1025px) {
  .earn__img {
    width: 30rem;
    height: 30rem;
    margin: 1rem auto 1.6rem;
  }
}
.earn__img img {
  width: 100%;
  height: 100%;
}
@media (width < 1025px) {
  .earn__img img {
    object-fit: contain;
  }
}
@media (width >= 1025px) {
  .earn__img img {
    object-fit: cover;
  }
}
.earn__title {
  margin-top: auto;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .earn__title {
    font-size: 2.4rem;
  }
  .earn__title br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .earn__title {
    max-width: 41rem;
    font-size: 2.8rem;
  }
}
.earn__desc {
  margin-top: 1rem;
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .earn__desc {
    font-size: 1.5rem;
  }
  .earn__desc br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .earn__desc {
    max-width: 46rem;
    font-size: 1.8rem;
  }
}

@media (width < 768px) {
  .expand {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .expand {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .expand {
    padding: 16rem 0;
  }
}
@media (width < 1025px) {
  .expand .section__title {
    max-width: 34.5rem;
  }
}
@media (width >= 1025px) {
  .expand .section__title {
    max-width: 38.5rem;
  }
}
.expand .section__title span {
  color: #f8564e;
}
.expand__list {
  display: grid;
}
@media (width >= 768px) {
  .expand__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .expand__list {
    margin-top: 4rem;
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .expand__list {
    margin-top: 6rem;
    gap: 2rem;
  }
}
.expand__item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  border-radius: 1.6rem;
}
@media (width < 1025px) {
  .expand__item {
    height: 24rem;
    padding: 1.5rem;
  }
}
@media (width >= 1025px) {
  .expand__item {
    min-height: 28rem;
    padding: 2.5rem;
  }
}
@media (hover: hover) {
  .expand__item:hover .expand__btn {
    color: #fff;
    border-color: #f8564e;
    background-color: #f8564e;
  }
}
.expand__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .expand__title {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .expand__title {
    max-width: 46rem;
    font-size: 2.2rem;
  }
}
.expand__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .expand__desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .expand__desc {
    max-width: 46rem;
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
.expand__btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #808080;
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  border-radius: 1rem;
  background-color: transparent;
  transition: 0.3s background-color, 0.3s border-color, 0.3s color;
}
@media (width < 1025px) {
  .expand__btn {
    width: 4rem;
    height: 4rem;
  }
}
@media (width >= 1025px) {
  .expand__btn {
    width: 5rem;
    height: 5rem;
  }
}
@media (width < 1025px) {
  .expand__btn svg {
    width: 2rem;
    height: 2rem;
  }
}
@media (width >= 1025px) {
  .expand__btn svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}

@media (width < 768px) {
  .faq {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .faq {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .faq {
    padding: 16rem 0;
  }
}
.faq .wrap {
  display: grid;
}
@media (width < 768px) {
  .faq .wrap {
    row-gap: 4rem;
  }
}
@media (width >= 768px) {
  .faq .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 768px) and (width < 1025px) {
  .faq .wrap {
    column-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .faq .wrap {
    column-gap: 2rem;
  }
}
@media (width >= 1025px) {
  .faq .section__title {
    max-width: 40rem;
  }
}
.faq .section__title span {
  color: #f8564e;
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
@media (width < 1025px) {
  .faq__answer {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .faq__answer {
    font-size: 1.8rem;
  }
}
.faq__box {
  overflow: hidden;
  min-height: 0;
  font-size: 1.8rem;
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .faq__box > * {
    padding-top: 1.6rem;
  }
}
@media (width >= 1025px) {
  .faq__box > * {
    padding-top: 2rem;
  }
}
.faq__btn {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  background-color: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.faq__btn::before, .faq__btn::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.4rem;
  height: 0.1rem;
  content: "";
  background-color: #333;
  transform: translateY(-50%);
}
.faq__btn::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s;
}
.faq__item {
  padding-bottom: 2rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.faq__item:last-child {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.faq__item-header {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2.4rem;
  column-gap: 1rem;
  cursor: pointer;
}
@media (width < 1025px) {
  .faq__item-header {
    padding-top: 1.6rem;
  }
}
@media (width >= 1025px) {
  .faq__item-header {
    padding-top: 2rem;
  }
}
.faq__item--show .faq__answer {
  grid-template-rows: 1fr;
}
.faq__item--show .faq__btn::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.faq__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .faq__title {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .faq__title {
    font-size: 2.2rem;
  }
}

.footer {
  background-color: #fff;
}
@media (width < 768px) {
  .footer {
    padding-top: 8rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .footer {
    padding-top: 10rem;
  }
}
@media (width >= 1025px) {
  .footer {
    padding-top: 6rem;
  }
}
.footer__top {
  display: grid;
  border-bottom: 0.1rem solid rgba(51, 51, 51, 0.1);
}
@media (width < 768px) {
  .footer__top {
    padding-bottom: 4rem;
    row-gap: 4rem;
  }
}
@media (width >= 768px) {
  .footer__top {
    padding-bottom: 6rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width < 1025px) {
  .footer__top {
    column-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .footer__top {
    column-gap: 2rem;
  }
}
@media (width < 768px) {
  .footer .logo {
    grid-column: 1/3;
  }
}
@media (width >= 768px) {
  .footer .logo {
    grid-column: 1/3;
  }
}
@media (width < 768px) {
  .footer-cta {
    grid-column: 1/3;
  }
}
@media (width >= 768px) {
  .footer-cta {
    grid-column: 3/5;
  }
}
.footer-cta__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .footer-cta__title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .footer-cta__title {
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }
}
.footer-cta__box {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.footer-middle {
  display: grid;
}
@media (width < 768px) {
  .footer-middle {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 6rem;
  }
}
@media (width >= 768px) {
  .footer-middle {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width >= 768px) and (width < 1025px) {
  .footer-middle {
    column-gap: 1rem;
  }
}
@media (width < 1025px) {
  .footer-middle {
    margin-top: 2rem;
  }
}
@media (width >= 1025px) {
  .footer-middle {
    margin-top: 3rem;
    column-gap: 2rem;
  }
}
.footer-middle__box {
  display: flex;
  flex-direction: column;
}
@media (width < 768px) {
  .footer-middle__box {
    order: 1;
    grid-column: 1/3;
  }
}
@media (width >= 768px) {
  .footer-middle__box {
    grid-column: 1/3;
  }
}
@media (width < 1025px) {
  .footer-middle__box {
    row-gap: 0.5rem;
  }
}
@media (width >= 1025px) {
  .footer-middle__box {
    row-gap: 1rem;
  }
}
.footer-middle__link, .footer-middle__text {
  line-height: 140%;
  color: #808080;
  transition: 0.3s color;
}
@media (width < 1025px) {
  .footer-middle__link, .footer-middle__text {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .footer-middle__link, .footer-middle__text {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .footer-middle__link:hover {
    color: #333;
  }
}
.footer__text {
  color: #808080;
}
@media (width < 768px) {
  .footer__text {
    padding: 6rem 0 2rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .footer__text {
    padding: 10rem 0 2rem;
  }
}
@media (width >= 1025px) {
  .footer__text {
    padding: 12rem 0 3rem;
  }
}
.footer__text .wrap {
  grid-template-columns: 1fr;
}
.footer__text p {
  font-size: 1.4rem;
  line-height: 140%;
}
.footer__text p:not(:last-child) {
  margin-bottom: 1rem;
}
.footer__text a {
  color: #808080;
}
.footer__bottom {
  border-top: 0.1rem solid rgba(51, 51, 51, 0.1);
}
@media (width < 768px) {
  .footer__bottom {
    display: grid;
    row-gap: 1rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (width < 1025px) {
  .footer__bottom {
    padding: 1.5rem 0;
  }
}
@media (width >= 1025px) {
  .footer__bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    padding: 3rem 0;
  }
}
.footer__bottom .link {
  line-height: 140%;
}
@media (width < 1025px) {
  .footer__bottom .link {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .footer__bottom .link {
    font-size: 1.6rem;
  }
}
.footer__copyright {
  line-height: 140%;
  color: #808080;
}
@media (width >= 768px) and (width < 1025px) {
  .footer__copyright {
    width: calc(50% - 1rem);
  }
}
@media (width < 1025px) {
  .footer__copyright {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .footer__copyright {
    grid-column: 1/3;
    font-size: 1.6rem;
  }
}
@media (width < 1025px) {
  .footer__actions {
    display: contents;
  }
}
@media (width >= 1025px) {
  .footer__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (width < 768px) {
  .get-started {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .get-started {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .get-started {
    padding: 16rem 0 0;
  }
}
.get-started .wrap {
  display: grid;
  align-items: flex-start;
}
@media (width >= 768px) {
  .get-started .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .get-started__header {
    grid-column: 1/3;
  }
}
@media (width >= 768px) {
  .get-started__header {
    position: sticky;
    top: 6rem;
  }
}
.get-started .section__title {
  letter-spacing: -0.02em;
}
@media (width < 1025px) {
  .get-started .section__title {
    max-width: 28rem;
  }
}
@media (width >= 1025px) {
  .get-started .section__title {
    max-width: 32.5rem;
  }
}
.get-started .section__title span {
  color: #f8564e;
}
.get-started__list {
  display: grid;
}
@media (width < 768px) {
  .get-started__list {
    margin-top: 4.2rem;
  }
}
@media (width < 1025px) {
  .get-started__list {
    row-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .get-started__list {
    gap: 2rem;
  }
}
.get-started__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  background-color: #fff;
  counter-increment: list;
}
@media (width < 1025px) {
  .get-started__item {
    min-height: 24rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .get-started__item {
    min-height: 32rem;
    padding: 2.5rem;
    border-radius: 1.6rem;
  }
}
.get-started__item--red {
  background-color: #f8564e;
  color: #fff;
}
.get-started__title {
  max-width: 28rem;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .get-started__title {
    font-size: 2.4rem;
  }
}
@media (width >= 1025px) {
  .get-started__title {
    font-size: 2.8rem;
  }
}
.get-started__desc {
  margin-top: 1rem;
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .get-started__desc {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .get-started__desc {
    font-size: 1.8rem;
  }
}
.get-started__num {
  margin-top: auto;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .get-started__num {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .get-started__num {
    width: 7rem;
    height: 7rem;
    border-radius: 1.6rem;
  }
}
.get-started__num::before {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #f8564e;
  content: counter(list, decimal-leading-zero);
}
@media (width < 1025px) {
  .get-started__num::before {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .get-started__num::before {
    font-size: 2.2rem;
  }
}
.get-started__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

@media (width < 768px) {
  .grow {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .grow {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .grow {
    padding: 16rem 0 0;
  }
}
.grow .wrap {
  display: grid;
}
@media (width >= 1025px) {
  .grow .wrap {
    grid-template-columns: 62rem 1fr;
    align-items: flex-start;
    column-gap: 7rem;
  }
}
@media (width >= 1025px) {
  .grow__header {
    position: sticky;
    top: 6rem;
  }
}
@media (width < 1025px) {
  .grow .section__title {
    max-width: 29rem;
  }
}
@media (width >= 1025px) {
  .grow .section__title {
    font-size: 5rem;
  }
}
.grow .section__title span {
  color: #f8564e;
}
.grow .section__desc {
  color: #808080;
}
@media (width >= 768px) and (width < 1025px) {
  .grow .section__desc {
    max-width: 33rem;
  }
}
@media (width < 1025px) {
  .grow .section__desc {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .grow .section__desc {
    max-width: 44rem;
    margin-top: 2rem;
    font-size: 1.8rem;
  }
}
.grow__list {
  display: grid;
}
@media (width >= 768px) {
  .grow__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .grow__list {
    margin-top: 6rem;
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .grow__list {
    gap: 2rem;
  }
}
.grow__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}
@media (width < 768px) {
  .grow__item {
    min-height: 16rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .grow__item {
    min-height: 18rem;
  }
}
@media (width < 1025px) {
  .grow__item {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .grow__item {
    min-height: 24rem;
    padding: 2.5rem;
    border-radius: 1.6rem;
  }
}
.grow__icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .grow__icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .grow__icon {
    width: 7rem;
    height: 7rem;
    border-radius: 1.9rem;
  }
}
@media (width < 1025px) {
  .grow__icon img {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media (width >= 1025px) {
  .grow__icon img {
    width: 3.8rem;
    height: 3.8rem;
  }
}
@media (width < 1025px) {
  .grow .btn {
    margin-top: 4rem;
  }
}
@media (width >= 1025px) {
  .grow .btn {
    margin-top: 4rem;
  }
}
.grow__desc {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width >= 768px) {
  .grow__desc {
    max-width: 22rem;
  }
}
@media (width < 1025px) {
  .grow__desc {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .grow__desc {
    font-size: 2.2rem;
  }
}

.header {
  position: relative;
  overflow: visible;
}
@media (width < 1025px) {
  .header {
    padding: 1rem 0;
  }
}
@media (width >= 1025px) {
  .header {
    padding: 3rem 0;
  }
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__actions {
  display: flex;
  align-items: center;
}
@media (width < 1025px) {
  .header__actions {
    column-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .header__actions {
    column-gap: 3rem;
  }
}
@media (width >= 1025px) {
  .header__actions .btn--bdr {
    padding: 0;
    border: none;
  }
  .header__actions .btn--bdr .btn__icon {
    display: none;
  }
}
@media (width >= 1025px) and (hover: hover) {
  .header__actions .btn--bdr:hover {
    color: #808080;
    background-color: transparent;
  }
}
@media (width < 1025px) {
  .header__btn {
    position: relative;
    width: 4rem;
    height: 4rem;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: transparent;
    transform: rotate(0deg);
    transition: 0.2s transform;
  }
  .header__btn svg {
    position: absolute;
    transition: 0.5s all bounceIn;
  }
  .header__btn-burger {
    width: 3.2rem;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  .header__btn-cross {
    width: 2.2rem;
    height: auto;
    opacity: 0;
    visibility: hidden;
  }
  .header__btn--active {
    transform: rotate(270deg);
  }
  .header__btn--active .header__btn-burger {
    opacity: 0;
    visibility: hidden;
  }
  .header__btn--active .header__btn-cross {
    opacity: 1;
    visibility: visible;
  }
}
@media (width >= 1025px) {
  .header__btn {
    display: none;
  }
}

.how-it-works {
  background-color: #fff;
}
@media (width < 768px) {
  .how-it-works {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .how-it-works {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .how-it-works {
    padding: 16rem 0;
  }
}
.how-it-works__header {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (width >= 768px) and (width < 1025px) {
  .how-it-works .section__title {
    max-width: 40rem;
  }
}
@media (width >= 1025px) {
  .how-it-works .section__title {
    max-width: 33rem;
  }
}
.how-it-works .section__title span {
  color: #f8564e;
}
.how-it-works__list {
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  counter-reset: list;
}
@media (width < 768px) {
  .how-it-works__list {
    margin-top: 4rem;
  }
}
@media (width >= 768px) {
  .how-it-works__list {
    margin-top: 6rem;
  }
}
.how-it-works__item {
  display: grid;
  counter-increment: list;
}
@media (width < 768px) {
  .how-it-works__item {
    row-gap: 4rem;
  }
}
@media (width >= 768px) {
  .how-it-works__item {
    align-items: center;
  }
  .how-it-works__item:nth-child(even) .how-it-works__img {
    order: -1;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .how-it-works__item {
    grid-template-columns: 1fr 31.3rem;
    column-gap: 1.1rem;
  }
  .how-it-works__item:nth-child(even) .how-it-works__content {
    margin-left: 3rem;
  }
}
@media (width >= 1025px) {
  .how-it-works__item {
    grid-template-columns: 1fr 63rem;
    column-gap: 10rem;
    border-radius: 1.6rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .how-it-works__content {
    max-width: 28rem;
  }
}
@media (width >= 1025px) {
  .how-it-works__content {
    max-width: 47rem;
  }
}
.how-it-works__title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 768px) {
  .how-it-works__title {
    text-wrap: balance;
  }
}
@media (width < 1025px) {
  .how-it-works__title {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}
@media (width >= 1025px) {
  .how-it-works__title {
    max-width: 30rem;
    margin-top: 3rem;
    font-size: 2.8rem;
  }
}
.how-it-works__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .how-it-works__desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .how-it-works__desc {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
.how-it-works__img {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}
@media (width < 768px) {
  .how-it-works__img {
    order: -1;
  }
}
@media (width < 1025px) {
  .how-it-works__img {
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .how-it-works__img {
    border-radius: 1.6rem;
  }
}
.how-it-works__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-it-works__num {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .how-it-works__num {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .how-it-works__num {
    width: 7rem;
    height: 7rem;
    border-radius: 1.6rem;
  }
}
.how-it-works__num::before {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #f8564e;
  content: counter(list, decimal-leading-zero);
}
@media (width < 1025px) {
  .how-it-works__num::before {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .how-it-works__num::before {
    font-size: 2.2rem;
  }
}

@media (width < 768px) {
  .learn {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .learn {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .learn {
    padding: 16rem 0 0;
  }
}
.learn--how {
  background-color: #fff;
}
@media (width < 768px) {
  .learn--how {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .learn--how {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .learn--how {
    padding: 16rem 0;
  }
}
@media (width < 1025px) {
  .learn .section__title {
    max-width: 25rem;
  }
}
@media (width >= 1025px) {
  .learn .section__title {
    max-width: 37rem;
  }
}
.learn .section__title span {
  color: #f8564e;
}
.learn__list {
  display: grid;
}
@media (width >= 768px) {
  .learn__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .learn__list {
    margin-top: 4rem;
    gap: 3rem 1rem;
  }
}
@media (width >= 1025px) {
  .learn__list {
    margin-top: 6rem;
    gap: 6rem 2rem;
  }
}
.learn__box {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (width >= 1025px) {
  .learn__box {
    max-width: 46rem;
  }
}
.learn__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .learn__title {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .learn__title {
    font-size: 2.2rem;
  }
}
.learn__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .learn__desc {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .learn__desc {
    font-size: 1.8rem;
  }
}
.learn__date {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .learn__date {
    font-size: 1.2rem;
  }
}
@media (width >= 1025px) {
  .learn__date {
    font-size: 1.4rem;
    text-transform: uppercase;
  }
}
.learn__img {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media (width < 1025px) {
  .learn__img {
    height: 24rem;
  }
}
@media (width >= 1025px) {
  .learn__img {
    height: 44rem;
  }
}
.learn__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.learn__cat {
  position: absolute;
  padding: 1rem;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  border-radius: 0.8rem;
  background-color: #fff;
}
@media (width < 1025px) {
  .learn__cat {
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.2rem;
  }
}
@media (width >= 1025px) {
  .learn__cat {
    top: 3rem;
    left: 3rem;
    font-size: 1.4rem;
  }
}

@media (width < 768px) {
  .location {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .location {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .location {
    padding: 16rem 0 0;
  }
}
@media (width < 1025px) {
  .location .section__title {
    max-width: 34rem;
  }
}
@media (width >= 1025px) {
  .location .section__title {
    max-width: 58rem;
  }
}
.location .section__title span {
  color: #f8564e;
}
.location__subtitle {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .location__subtitle {
    margin-top: 4rem;
    font-size: 2.8rem;
  }
}
@media (width >= 1025px) {
  .location__subtitle {
    margin-top: 6rem;
    font-size: 3.8rem;
  }
}
.location__list {
  display: grid;
}
@media (width < 768px) {
  .location__list {
    margin-top: 2rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .location__list {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .location__list {
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .location__list {
    margin-top: 4rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.location__item {
  display: flex;
  flex-direction: column;
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  background-color: #fff;
  border-radius: 1.6rem;
}
@media (width < 1025px) {
  .location__item {
    min-height: 32rem;
    padding: 1.5rem;
  }
}
@media (width >= 1025px) {
  .location__item {
    min-height: 44rem;
    padding: 2.5rem;
  }
}
.location__icon {
  border-radius: 50%;
  overflow: hidden;
}
@media (width < 1025px) {
  .location__icon {
    width: 6rem;
    height: 6rem;
  }
}
@media (width >= 1025px) {
  .location__icon {
    width: 8rem;
    height: 8rem;
  }
}
.location__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location__title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .location__title {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}
@media (width >= 1025px) {
  .location__title {
    margin-top: 3rem;
    font-size: 2.8rem;
  }
}
.location__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .location__desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .location__desc {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
.location__footer {
  margin-top: auto;
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.1rem solid rgba(51, 51, 51, 0.1);
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .location__footer {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .location__footer {
    font-size: 1.8rem;
  }
}
.location__email {
  font-weight: 500;
  color: #333;
  transition: 0.3s color;
}
@media (hover: hover) {
  .location__email:hover {
    color: #808080;
  }
}

.markets {
  background-color: #fff;
}
@media (width >= 768px) {
  .markets__header {
    display: grid;
    align-items: flex-end;
    grid-template-columns: 1fr 10rem;
    column-gap: 1rem;
  }
}
@media (width < 768px) {
  .markets .section__title br {
    display: contents;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .markets .section__title {
    max-width: 40rem;
  }
}
@media (width >= 1025px) {
  .markets .section__title {
    max-width: 84rem;
  }
}
.markets .section__title span {
  color: #f8564e;
}
@media (width < 1025px) {
  .markets__slider {
    margin-top: 4rem;
  }
}
@media (width >= 1025px) {
  .markets__slider {
    margin-top: 6rem;
    overflow: hidden;
  }
}
.markets .slick-track {
  counter-reset: list;
}
@media (width < 1025px) {
  .markets .slick-track {
    column-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .markets .slick-track {
    column-gap: 2rem;
  }
}
@media (width < 768px) {
  .markets .slider__nav {
    display: none;
  }
}
.markets__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  counter-increment: list;
}
@media (width < 1025px) {
  .markets__item {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .markets__item {
    padding: 3rem;
    border-radius: 1.9rem;
  }
}
.markets__item .btn {
  margin-top: auto;
}
.markets__num {
  line-height: 140%;
}
@media (width < 1025px) {
  .markets__num {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .markets__num {
    font-size: 1.6rem;
  }
}
.markets__num::before {
  content: counter(list, decimal-leading-zero);
}
@media (width < 1025px) {
  .markets__img {
    width: 18rem;
    height: 18rem;
    margin: 1.7rem auto 0;
  }
}
@media (width >= 1025px) {
  .markets__img {
    width: 30rem;
    height: 30rem;
    margin: 4rem auto 0;
  }
}
.markets__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.markets__title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 768px) {
  .markets__title {
    margin-top: 0.8rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .markets__title {
    margin-top: 3rem;
  }
}
@media (width < 1025px) {
  .markets__title {
    font-size: 2.4rem;
  }
}
@media (width >= 1025px) {
  .markets__title {
    margin-top: 2rem;
    font-size: 2.8rem;
  }
}
.markets__desc {
  margin-top: 1rem;
  line-height: 140%;
  color: #808080;
}
@media (width < 768px) {
  .markets__desc {
    min-height: 8.5rem;
  }
}
@media (width < 1025px) {
  .markets__desc {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .markets__desc {
    max-width: 41rem;
    margin-bottom: 3.2rem;
    font-size: 1.8rem;
  }
}

.mission {
  color: #fff;
}
@media (width < 768px) {
  .mission {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .mission {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .mission {
    padding: 20rem 0 16rem;
  }
}
.mission .section__desc {
  max-width: 57rem;
  font-weight: 500;
}
@media (width < 1025px) {
  .mission .section__desc {
    margin-top: 4rem;
  }
}
@media (width >= 1025px) {
  .mission .section__desc {
    margin-top: auto;
  }
}
.mission__container {
  position: relative;
  display: flex;
  overflow: hidden;
}
@media (width < 1025px) {
  .mission__container {
    min-height: 60rem;
  }
}
@media (width < 1025px) {
  .mission__container {
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .mission__container {
    min-height: 72rem;
    border-radius: 1.6rem;
  }
}
.mission__box {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (width < 1025px) {
  .mission__box {
    padding: 2rem;
  }
}
@media (width >= 1025px) {
  .mission__box {
    padding: 5rem;
  }
}
.mission__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mission__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1025px) {
  .mission__bg-img--lg {
    display: none;
  }
}
@media (width < 768px) {
  .mission__bg-img--m {
    display: none;
  }
}
@media (width >= 1025px) {
  .mission__bg-img--m {
    display: none;
  }
}
@media (width >= 768px) {
  .mission__bg-img--sm {
    display: none;
  }
}

@media (width < 1025px) {
  .navbar {
    position: absolute;
    z-index: 10;
    top: 5rem;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 7rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 6rem;
    background-color: #f9f9f9;
    transition: transform 0.3s;
    transform: translateX(100%);
  }
  .navbar--open {
    transform: translateX(0);
  }
}
@media (width >= 1025px) {
  .navbar {
    display: contents;
  }
}

.performance {
  background-color: #fff;
}
@media (width < 768px) {
  .performance {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .performance {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .performance {
    padding-top: 16rem;
  }
}
.performance__header {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (width < 1025px) {
  .performance .section__title {
    max-width: 42rem;
  }
}
@media (width >= 1025px) {
  .performance .section__title {
    max-width: 56rem;
  }
}
.performance .section__title span {
  color: #f8564e;
}
.performance .section__desc {
  color: #333;
  font-weight: 500;
  text-align: center;
}
@media (width < 768px) {
  .performance .section__desc {
    margin-top: 6rem;
    font-size: 2.4rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .performance .section__desc {
    max-width: 48rem;
    margin: 8rem auto 0;
    font-size: 2.2rem;
  }
}
@media (width >= 1025px) {
  .performance .section__desc {
    max-width: 56.5rem;
    margin: 12rem auto 0;
    font-size: 2.8rem;
  }
}
.performance__list {
  display: grid;
}
@media (width < 768px) {
  .performance__list {
    row-gap: 3rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .performance__list {
    column-gap: 4.4rem;
  }
}
@media (width >= 768px) {
  .performance__list {
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 1025px) {
  .performance__list {
    margin-top: 4rem;
  }
}
@media (width >= 1025px) {
  .performance__list {
    margin-top: 6rem;
    column-gap: 8rem;
  }
}
.performance__list-item {
  text-align: center;
}
.performance__list-desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .performance__list-desc {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .performance__list-desc {
    max-width: 30rem;
    margin: 2rem auto 0;
    font-size: 1.8rem;
  }
}
@media (width < 768px) {
  .performance__list-img {
    height: 10.5rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .performance__list-img {
    height: 6.5rem;
  }
}
.performance__list-img img {
  width: auto;
}
@media (width < 1025px) {
  .performance__list-img img {
    height: 100%;
  }
}
@media (width >= 1025px) {
  .performance__list-img img {
    height: 14rem;
  }
}
.performance__tools {
  display: grid;
}
@media (width < 768px) {
  .performance__tools {
    margin-top: 4rem;
    row-gap: 1rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .performance__tools {
    margin-top: 5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .performance__tools {
    margin-top: 6rem;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
  }
}
.performance__tools-item {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
}
@media (width < 1025px) {
  .performance__tools-item {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .performance__tools-item {
    min-height: 28rem;
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 1.9rem;
  }
}
.performance__tools-icon {
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .performance__tools-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .performance__tools-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 1.9rem;
  }
}
@media (width < 1025px) {
  .performance__tools-icon img {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media (width >= 1025px) {
  .performance__tools-icon img {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.performance__tools-title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .performance__tools-title {
    margin-top: 5rem;
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .performance__tools-title {
    max-width: 22rem;
    margin-top: 2rem;
    font-size: 2.2rem;
  }
}
.performance__tools-desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .performance__tools-desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .performance__tools-desc {
    max-width: 22rem;
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}

.quotes {
  color: #fff;
  background-color: #fff;
}
@media (width < 768px) {
  .quotes {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .quotes {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .quotes {
    padding: 16rem 0 0;
  }
}
@media (width < 1025px) {
  .quotes .section__title {
    max-width: 23rem;
  }
}
@media (width >= 1025px) {
  .quotes .section__title {
    max-width: 31rem;
  }
}
.quotes__container {
  position: relative;
  display: flex;
  overflow: hidden;
}
@media (width < 768px) {
  .quotes__container {
    min-height: 56rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .quotes__container {
    min-height: 40rem;
  }
}
@media (width < 1025px) {
  .quotes__container {
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .quotes__container {
    min-height: 60rem;
    border-radius: 1.6rem;
  }
}
.quotes__box {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (width < 768px) {
  .quotes__box {
    padding: 1.5rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .quotes__box {
    padding: 3rem;
  }
}
@media (width >= 1025px) {
  .quotes__box {
    padding: 5rem;
  }
}
.quotes__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.quotes__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1025px) {
  .quotes__bg-img--lg {
    display: none;
  }
}
@media (width < 768px) {
  .quotes__bg-img--m {
    display: none;
  }
}
@media (width >= 1025px) {
  .quotes__bg-img--m {
    display: none;
  }
}
@media (width >= 768px) {
  .quotes__bg-img--sm {
    display: none;
  }
}
.quotes__content {
  margin-top: auto;
  display: flex;
}
@media (width < 768px) {
  .quotes__content {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 3rem;
  }
}
@media (width >= 768px) {
  .quotes__content {
    align-items: center;
    justify-content: space-between;
  }
}
.quotes__list {
  display: flex;
}
@media (width < 768px) {
  .quotes__list {
    flex-direction: column;
    row-gap: 2rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .quotes__list {
    column-gap: 2rem;
  }
}
@media (width >= 1025px) {
  .quotes__list {
    column-gap: 6rem;
  }
}
.quotes__item {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.quotes__title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .quotes__title {
    font-size: 2.4rem;
  }
}
@media (width >= 1025px) {
  .quotes__title {
    font-size: 2.8rem;
  }
}
.quotes__desc {
  line-height: 140%;
}
@media (width < 1025px) {
  .quotes__desc {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .quotes__desc {
    font-size: 1.8rem;
  }
}
.quotes__additional {
  min-height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background-color: #f9f9f9;
  color: #808080;
}

@media (width < 768px) {
  .reasons {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .reasons {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .reasons {
    padding: 16rem 0;
  }
}
@media (width >= 768px) {
  .reasons .wrap {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 768px) and (width < 1025px) {
  .reasons .wrap {
    column-gap: 1rem;
  }
}
@media (width >= 1025px) {
  .reasons .wrap {
    column-gap: 2rem;
  }
}
.reasons .section__title span {
  color: #f8564e;
}
@media (width >= 768px) {
  .reasons__header {
    position: sticky;
    top: 6rem;
  }
}
.reasons__list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
@media (width < 768px) {
  .reasons__list {
    margin-top: 4rem;
  }
}
.reasons__item {
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
@media (width < 1025px) {
  .reasons__item {
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
  }
}
@media (width >= 1025px) {
  .reasons__item {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}
.reasons__icon {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media (width < 1025px) {
  .reasons__icon {
    border-radius: 1rem;
    width: 5rem;
    height: 5rem;
  }
  .reasons__icon img {
    max-width: 2.8rem;
    height: auto;
  }
}
@media (width >= 1025px) {
  .reasons__icon {
    border-radius: 1.9rem;
    width: 7rem;
    height: 7rem;
    grid-row: 1/3;
  }
}
.reasons__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .reasons__title {
    margin-top: 3rem;
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .reasons__title {
    font-size: 2.2rem;
  }
}
.reasons__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .reasons__desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .reasons__desc {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}

.start-business {
  color: #fff;
}
@media (width < 768px) {
  .start-business {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .start-business {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .start-business {
    padding: 16rem 0;
  }
}
.start-business .section__title {
  letter-spacing: -0.01em;
}
@media (width >= 768px) and (width < 1025px) {
  .start-business .section__title {
    max-width: 42rem;
    line-height: 1;
  }
}
@media (width >= 1025px) {
  .start-business .section__title {
    max-width: 56rem;
    line-height: 1.1;
  }
}
.start-business .section__desc {
  line-height: 1.4;
  opacity: 0.8;
}
@media (width >= 768px) and (width < 1025px) {
  .start-business .section__desc {
    max-width: 40rem;
  }
}
@media (width < 1025px) {
  .start-business .section__desc {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .start-business .section__desc {
    max-width: 42rem;
    margin-top: 2rem;
    font-size: 1.8rem;
  }
}
@media (width < 1025px) {
  .start-business__actions {
    margin-top: 4rem;
  }
}
@media (width >= 1025px) {
  .start-business__actions {
    margin-top: auto;
  }
}
.start-business__container {
  position: relative;
  display: flex;
  overflow: hidden;
  background: url("../img/bg.avif") no-repeat top center;
  background-size: cover;
}
@media (width < 1025px) {
  .start-business__container {
    min-height: 70rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .start-business__container {
    min-height: 68rem;
    border-radius: 1.6rem;
  }
}
.start-business__box {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (width < 1025px) {
  .start-business__box {
    padding: 2rem;
  }
}
@media (width >= 1025px) {
  .start-business__box {
    padding: 5rem;
  }
}
.start-business img {
  position: absolute;
  bottom: 0;
  height: auto;
}
@media (width < 768px) {
  .start-business img {
    width: 26.2rem;
    right: 3.2rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .start-business img {
    width: 33.1rem;
    right: 12.5rem;
  }
}
@media (width >= 1025px) {
  .start-business img {
    right: 13rem;
    width: 53.4rem;
  }
}
@media (width < 768px) {
  .start-business__list {
    display: none;
  }
}
@media (width >= 768px) {
  .start-business__list {
    position: absolute;
    z-index: 1;
    bottom: 4.5rem;
    right: 5rem;
    display: flex;
    flex-direction: column;
  }
}
.start-business__item {
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  background: rgba(130, 49, 45, 0.7);
}
@media (width < 1025px) {
  .start-business__item {
    width: 18rem;
    padding: 1.25rem;
    row-gap: 0.3rem;
    border-radius: 1rem;
    font-size: 1rem;
  }
  .start-business__item:first-child {
    transform: translate(-36.2rem, 10.2rem);
  }
  .start-business__item:nth-child(2) {
    transform: translate(-2rem, -6rem);
  }
  .start-business__item:nth-child(3) {
    transform: translate(-33.7rem, 8.3rem);
  }
  .start-business__item:nth-child(4) {
    transform: translate(-5.3rem, -3.2rem);
  }
}
@media (width >= 1025px) {
  .start-business__item {
    width: 29rem;
    padding: 2rem;
    row-gap: 1rem;
    border-radius: 1.6rem;
    font-size: 1.4rem;
  }
  .start-business__item:first-child {
    transform: translate(-54rem, 13.5rem);
  }
  .start-business__item:nth-child(2) {
    transform: translate(0, -12.5rem);
  }
  .start-business__item:nth-child(3) {
    transform: translate(-50rem, 11rem);
  }
  .start-business__item:nth-child(4) {
    transform: translate(-4rem, -7rem);
  }
}
.start-business__title {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.start-business__desc {
  line-height: 130%;
  letter-spacing: -0.01em;
  opacity: 0.8;
}

@media (width < 768px) {
  .strategy {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .strategy {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .strategy {
    padding: 16rem 0 0;
  }
}
.strategy__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 4rem;
}
.strategy .section__title {
  letter-spacing: -0.01em;
}
@media (width >= 768px) and (width < 1025px) {
  .strategy .section__title {
    max-width: 42rem;
    line-height: 1;
  }
}
@media (width >= 1025px) {
  .strategy .section__title {
    max-width: 62rem;
    line-height: 1.1;
  }
}
.strategy .section__title span {
  color: #f8564e;
}
.strategy__box {
  margin-top: 6rem;
}
@media (width < 768px) {
  .strategy__box {
    padding: 0 1.5rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .strategy__box {
    padding: 0 5rem;
  }
}
@media (width >= 1025px) {
  .strategy__box {
    width: 192rem;
  }
}
.strategy .slick-track {
  display: flex;
  column-gap: 2rem;
}
@media (width < 1025px) {
  .strategy__wrapper {
    display: contents;
  }
}
@media (width >= 1025px) {
  .strategy__wrapper {
    display: flex;
    column-gap: 2rem;
  }
}
.strategy__list {
  display: flex;
}
@media (width < 1025px) {
  .strategy__list {
    flex-direction: column;
    row-gap: 1.5rem;
  }
  .strategy__list:nth-child(n+2) {
    display: none;
  }
}
@media (width >= 1025px) {
  .strategy__list {
    column-gap: 2rem;
    animation: scroll 80s linear infinite;
  }
}
.strategy__item {
  border: 0.1rem solid rgba(51, 51, 51, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .strategy__item {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  .strategy__item:nth-child(n+4) {
    display: none;
  }
}
@media (width >= 1025px) {
  .strategy__item {
    width: 67rem;
    flex-shrink: 0;
    padding: 3rem 3rem 2.5rem;
    border-radius: 1.6rem;
  }
}
.strategy__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  line-height: 140%;
  border-top: 0.1rem solid rgba(51, 51, 51, 0.1);
  color: #808080;
}
@media (width < 1025px) {
  .strategy__footer {
    padding-top: 1.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .strategy__footer {
    padding-top: 2rem;
    font-size: 1.8rem;
  }
}
.strategy__footer strong {
  color: #333;
}
.strategy__title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .strategy__title {
    font-size: 2.4rem;
  }
}
@media (width >= 1025px) {
  .strategy__title {
    font-size: 2.8rem;
  }
}
.strategy__return {
  margin-top: 0.2rem;
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .strategy__return {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .strategy__return {
    font-size: 1.8rem;
  }
}
@media (width < 1025px) {
  .strategy__img {
    margin: 4rem auto 4.4rem;
    max-width: 31.5rem;
  }
}
@media (width >= 1025px) {
  .strategy__img {
    margin: 3.2rem 0 5rem;
  }
}
.strategy__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticker__box {
  position: relative;
  overflow: hidden;
}
.ticker__box::before, .ticker__box::after {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  content: "";
  background: linear-gradient(270deg, rgba(249, 249, 249, 0) 0%, #f9f9f9 100%);
}
@media (width < 1025px) {
  .ticker__box::before, .ticker__box::after {
    width: 8rem;
  }
}
@media (width >= 1025px) {
  .ticker__box::before, .ticker__box::after {
    width: 10.7rem;
  }
}
.ticker__box::before {
  left: 0;
}
.ticker__box::after {
  right: 0;
  transform: rotate(180deg);
}
.ticker__wrapper {
  display: flex;
}
@media (width < 1025px) {
  .ticker__wrapper {
    padding: 3rem 0;
  }
}
@media (width >= 1025px) {
  .ticker__wrapper {
    padding: 5rem 0;
  }
}
.ticker__list {
  height: max-content;
  display: flex;
  align-items: center;
}
@media (width < 768px) {
  .ticker__list {
    padding-right: 0.5rem;
    column-gap: 0.5rem;
    animation: scroll 15s linear infinite;
  }
}
@media (width >= 768px) {
  .ticker__list {
    animation: scroll 20s linear infinite;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .ticker__list {
    column-gap: 1rem;
    padding-right: 1rem;
  }
}
@media (width >= 1025px) {
  .ticker__list {
    column-gap: 2rem;
    padding-right: 2rem;
  }
}
.ticker__item {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  flex-shrink: 0;
  background-color: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  line-height: 130%;
}
@media (width < 768px) {
  .ticker__item {
    border-radius: 1rem;
  }
}
@media (width >= 768px) {
  .ticker__item {
    border-radius: 1.6rem;
  }
}
@media (width < 1025px) {
  .ticker__item {
    width: 19rem;
    padding: 1.5rem;
    column-gap: 1rem;
    font-size: 1.2rem;
  }
}
@media (width >= 1025px) {
  .ticker__item {
    width: 24rem;
    padding: 2rem 2.5rem;
    column-gap: 1.2rem;
    font-size: 1.4rem;
  }
}
.ticker__title {
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.ticker__desc {
  color: #808080;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}
.ticker__icon {
  grid-row: 1/3;
}
.ticker__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (width < 768px) {
  .trust {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .trust {
    padding: 8rem 0 10rem;
  }
}
@media (width >= 1025px) {
  .trust {
    padding: 16rem 0;
  }
}
.trust__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (width < 1025px) {
  .trust__header {
    row-gap: 1.5rem;
  }
}
@media (width >= 1025px) {
  .trust__header {
    row-gap: 2rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .trust .section__title {
    max-width: 52rem;
  }
}
@media (width < 1025px) {
  .trust .section__title br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .trust .section__title {
    max-width: 75rem;
  }
}
.trust .section__title span {
  color: #f8564e;
}
.trust .section__desc {
  color: #808080;
}
@media (width >= 768px) and (width < 1025px) {
  .trust .section__desc {
    max-width: 52rem;
  }
}
@media (width >= 1025px) {
  .trust .section__desc {
    max-width: 44rem;
  }
}
.trust__box {
  position: relative;
  display: flex;
}
@media (width < 768px) {
  .trust__box {
    margin-top: 6rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .trust__box {
    margin-top: 2rem;
  }
}
@media (width < 1025px) {
  .trust__box {
    flex-direction: column-reverse;
  }
}
@media (width >= 1025px) {
  .trust__box {
    min-height: 74.2rem;
    margin-top: 4rem;
    align-items: center;
    overflow: hidden;
  }
}
.trust__list {
  width: 100%;
  display: grid;
}
@media (width < 768px) {
  .trust__list {
    margin-top: 6rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .trust__list {
    margin-top: 2rem;
  }
}
@media (width >= 768px) {
  .trust__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .trust__list {
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .trust__list {
    row-gap: 2rem;
  }
}
.trust__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .trust__item {
    padding: 1.5rem;
    border-radius: 1rem;
    row-gap: 2.4rem;
  }
}
@media (width >= 1025px) {
  .trust__item {
    width: 32.5rem;
    height: 20rem;
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 1.6rem;
  }
  .trust__item:nth-child(odd) {
    justify-self: flex-start;
  }
  .trust__item:nth-child(even) {
    justify-self: flex-end;
  }
}
.trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #34d51e;
  border-radius: 50%;
  color: #fff;
}
@media (width < 1025px) {
  .trust__icon {
    width: 2rem;
    height: 2rem;
  }
}
@media (width >= 1025px) {
  .trust__icon {
    width: 2.743rem;
    height: 2.743rem;
  }
}
.trust__icon svg {
  width: 1.45rem;
  height: auto;
}
.trust__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .trust__desc {
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .trust__desc {
    font-size: 1.8rem;
  }
}
@media (width < 768px) {
  .trust__bg {
    height: 26.1rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .trust__bg {
    margin-top: 2rem;
  }
}
@media (width >= 1025px) {
  .trust__bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: calc(50% - 57.15rem);
    width: 114.3rem;
    height: 74.2rem;
  }
}
.trust__bg img {
  width: 100%;
}
@media (width < 1025px) {
  .trust__bg img {
    height: 100%;
    object-fit: cover;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .trust__bg img {
    height: auto;
  }
}
@media (width >= 1025px) {
  .trust__bg img {
    height: 100%;
    object-fit: cover;
  }
}

.what-we-stand {
  background-color: #fff;
}
@media (width < 768px) {
  .what-we-stand {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .what-we-stand {
    padding: 8rem 0 10rem;
  }
}
@media (width >= 1025px) {
  .what-we-stand {
    padding: 16rem 0;
  }
}
.what-we-stand__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (width < 1025px) {
  .what-we-stand .section__title {
    max-width: 34.5rem;
  }
}
@media (width >= 1025px) {
  .what-we-stand .section__title {
    max-width: 44rem;
  }
}
.what-we-stand .section__title span {
  color: #f8564e;
}
@media (width < 1025px) {
  .what-we-stand__box {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
  }
}
@media (width >= 1025px) {
  .what-we-stand__box {
    margin-top: 10rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 58rem 1fr;
    gap: 2rem 6.5rem;
  }
}
@media (width < 768px) {
  .what-we-stand__list {
    margin-top: 6rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .what-we-stand__list {
    margin-top: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .what-we-stand__list {
    display: grid;
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .what-we-stand__list {
    display: contents;
  }
}
.what-we-stand__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}
@media (width < 1025px) {
  .what-we-stand__item {
    min-height: 18rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .what-we-stand__item {
    min-height: 24rem;
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 1.6rem;
  }
  .what-we-stand__item:first-child, .what-we-stand__item:nth-child(2) {
    align-self: flex-end;
  }
  .what-we-stand__item:nth-child(3), .what-we-stand__item:nth-child(4) {
    align-self: flex-start;
  }
}
.what-we-stand__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #34d51e;
  border-radius: 50%;
  color: #fff;
}
@media (width < 1025px) {
  .what-we-stand__icon {
    width: 2rem;
    height: 2rem;
  }
}
@media (width >= 1025px) {
  .what-we-stand__icon {
    width: 2.743rem;
    height: 2.743rem;
  }
}
.what-we-stand__icon svg {
  width: 1.45rem;
  height: auto;
}
.what-we-stand__title {
  margin-top: auto;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .what-we-stand__title {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .what-we-stand__title {
    font-size: 2.2rem;
  }
}
.what-we-stand__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .what-we-stand__desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .what-we-stand__desc {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
@media (width < 768px) {
  .what-we-stand__bg {
    width: 27rem;
    height: 27rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .what-we-stand__bg {
    width: 38rem;
    height: 38rem;
  }
}
@media (width < 1025px) {
  .what-we-stand__bg {
    order: -1;
    margin: 0 auto;
  }
}
@media (width >= 1025px) {
  .what-we-stand__bg {
    grid-column: 2/3;
    grid-row: 1/3;
    width: 58rem;
    height: 58rem;
  }
}
.what-we-stand__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-you-get {
  background-color: #fff;
}
@media (width < 768px) {
  .what-you-get {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .what-you-get {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .what-you-get {
    padding: 16rem 0 0;
  }
}
.what-you-get .wrap {
  display: flex;
  flex-direction: column;
  justify-items: center;
}
@media (width < 1025px) {
  .what-you-get .wrap {
    row-gap: 4rem;
  }
}
@media (width >= 1025px) {
  .what-you-get .wrap {
    row-gap: 6rem;
  }
}
.what-you-get__header {
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (width < 1025px) {
  .what-you-get__header {
    max-width: 34.5rem;
  }
}
@media (width >= 1025px) {
  .what-you-get__header {
    max-width: 43rem;
  }
}
.what-you-get .section__title {
  text-align: center;
}
.what-you-get .section__title span {
  color: #f8564e;
}
.what-you-get__list {
  display: grid;
}
@media (width >= 768px) and (width < 1025rem) {
  .what-you-get__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .what-you-get__list {
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .what-you-get__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.what-you-get__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f9f9f9;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}
@media (width < 1025px) {
  .what-you-get__item {
    min-height: 20rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .what-you-get__item {
    min-height: 28rem;
    padding: 2.5rem;
    border-radius: 1.6rem;
  }
}
.what-you-get__icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .what-you-get__icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .what-you-get__icon {
    width: 7rem;
    height: 7rem;
    border-radius: 1.9rem;
  }
}
@media (width < 1025px) {
  .what-you-get__icon img {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media (width >= 1025px) {
  .what-you-get__icon img {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.what-you-get__title {
  margin-top: auto;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width < 1025px) {
  .what-you-get__title {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .what-you-get__title {
    font-size: 2.2rem;
  }
}
.what-you-get__desc {
  line-height: 140%;
}
@media (width < 1025px) {
  .what-you-get__desc {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .what-you-get__desc {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}

.why-chose {
  background-color: #fff;
}
@media (width < 768px) {
  .why-chose {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .why-chose {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .why-chose {
    padding: 16rem 0 0;
  }
}
@media (width < 1025px) {
  .why-chose .section__title {
    max-width: 34.5rem;
  }
}
@media (width >= 1025px) {
  .why-chose .section__title {
    max-width: 44rem;
  }
}
.why-chose .section__title span {
  color: #f8564e;
}
.why-chose__list {
  display: grid;
}
@media (width >= 768px) {
  .why-chose__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .why-chose__list {
    margin-top: 4rem;
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .why-chose__list {
    margin-top: 6rem;
    gap: 2rem;
  }
}
.why-chose__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  counter-increment: list;
}
@media (width < 1025px) {
  .why-chose__item {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .why-chose__item {
    padding: 2.5rem 3rem;
    border-radius: 1.6rem;
  }
}
.why-chose__num {
  line-height: 140%;
}
@media (width < 1025px) {
  .why-chose__num {
    font-size: 1.4rem;
  }
}
@media (width >= 1025px) {
  .why-chose__num {
    font-size: 1.6rem;
  }
}
.why-chose__num::before {
  content: counter(list, decimal-leading-zero);
}
.why-chose__img {
  width: 100%;
  margin: 3rem auto 4.2rem;
}
@media (width < 1025px) {
  .why-chose__img {
    height: 24rem;
  }
}
@media (width >= 1025px) {
  .why-chose__img {
    height: 40rem;
  }
}
.why-chose__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1025px) {
  .why-chose__img-url--lg {
    display: none;
  }
}
@media (width < 768px) {
  .why-chose__img-url--m {
    display: none;
  }
}
@media (width >= 1025px) {
  .why-chose__img-url--m {
    display: none;
  }
}
@media (width >= 768px) {
  .why-chose__img-url--sm {
    display: none;
  }
}
.why-chose__title {
  margin-top: auto;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.03em;
}
@media (width < 1025px) {
  .why-chose__title {
    font-size: 2.4rem;
  }
  .why-chose__title br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .why-chose__title {
    max-width: 41rem;
    font-size: 2.8rem;
  }
}
.why-chose__desc {
  margin-top: 1rem;
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .why-chose__desc {
    font-size: 1.5rem;
  }
  .why-chose__desc br {
    display: contents;
  }
}
@media (width >= 1025px) {
  .why-chose__desc {
    max-width: 41rem;
    font-size: 1.8rem;
  }
}

@layer pages {
  @media (width < 768px) {
    .about-primary {
      padding: 8rem 0 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .about-primary {
      padding: 10rem 0 0;
    }
  }
  @media (width >= 1025px) {
    .about-primary {
      padding: 12rem 0 0;
    }
  }
  .about-primary__header {
    display: flex;
    flex-direction: column;
    text-align: center;
    row-gap: 2rem;
  }
  @media (width < 768px) {
    .about-primary__header {
      max-width: 34rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__header {
      max-width: 100rem;
      margin: 0 auto;
    }
  }
  .about-primary .section__title {
    font-weight: 600;
  }
  @media (width < 1025px) {
    .about-primary .section__title {
      font-size: 4rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary .section__title {
      font-size: 6rem;
    }
  }
  .about-primary .section__title span {
    color: #f8564e;
  }
  .about-primary .section__desc {
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
  }
  @media (width < 768px) {
    .about-primary .section__desc {
      margin-top: 10rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .about-primary .section__desc {
      margin-top: 12rem;
    }
  }
  @media (width < 1025px) {
    .about-primary .section__desc {
      font-size: 2.8rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary .section__desc {
      margin: 12rem auto 0;
      max-width: 86rem;
      font-size: 3.8rem;
    }
  }
  .about-primary__subtitle {
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #808080;
  }
  @media (width < 1025px) {
    .about-primary__subtitle {
      font-size: 1.8rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__subtitle {
      font-size: 2.2rem;
    }
  }
  .about-primary__box {
    position: relative;
    margin: 8rem auto 0;
  }
  @media (width < 768px) {
    .about-primary__box {
      height: 32rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .about-primary__box {
      width: 50rem;
      height: 46.5rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__box {
      width: 67rem;
      height: 62rem;
    }
  }
  .about-primary__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-primary__list {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .about-primary__item {
    position: absolute;
    display: flex;
    align-items: center;
    border: 0.1rem solid rgba(51, 51, 51, 0.1);
    width: max-content;
    background: #f9f9f9;
  }
  @media (width < 768px) {
    .about-primary__item {
      column-gap: 0.5rem;
      border-radius: 51.5rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .about-primary__item {
      column-gap: 0.7rem;
      border-radius: 74.6rem;
    }
  }
  @media (width < 1025px) {
    .about-primary__item {
      padding: 0.7rem 1.1rem 0.7rem 0.7rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__item {
      padding: 1rem 1.5rem 1rem 1rem;
      column-gap: 1rem;
      border-radius: 100rem;
    }
  }
  @media (width < 768px) {
    .about-primary__item:first-child {
      top: 3.619rem;
      right: 2.336rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .about-primary__item:first-child {
      top: 6.245rem;
      right: 5.3426rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__item:first-child {
      top: 7.29rem;
      right: 4.585rem;
    }
  }
  @media (width < 768px) {
    .about-primary__item:nth-child(2) {
      top: 10.931rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .about-primary__item:nth-child(2) {
      top: 15.842rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__item:nth-child(2) {
      top: 21.23rem;
    }
  }
  @media (width < 768px) {
    .about-primary__item:nth-child(3) {
      top: 22.105rem;
      right: 5.71rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .about-primary__item:nth-child(3) {
      top: 32.036rem;
      right: 8.283rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__item:nth-child(3) {
      top: 42.93rem;
      right: 11.085rem;
    }
  }
  .about-primary__title {
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
  }
  @media (width >= 1025px) {
    .about-primary__title {
      font-size: 1rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__title {
      font-size: 1.4rem;
    }
  }
  @media (width < 768px) {
    .about-primary__icon {
      width: 2.9rem;
      height: 2.9rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .about-primary__icon {
      width: 2.8rem;
      height: 2.8rem;
    }
  }
  @media (width >= 1025px) {
    .about-primary__icon {
      width: 3.8rem;
      height: 3.8rem;
    }
  }
  .about-primary__icon img {
    width: 100%;
    height: 100%;
  }
}
@layer pages {
  @media (width < 1025px) {
    .education-primary {
      padding: 8rem 0 0;
    }
  }
  @media (width >= 1025px) {
    .education-primary {
      padding: 10rem 0 0;
    }
  }
  .education-primary .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .education-primary .section__title {
    text-align: center;
    font-weight: 600;
  }
  @media (width < 1025px) {
    .education-primary .section__title {
      max-width: 45rem;
      font-size: 4rem;
    }
  }
  @media (width >= 1025px) {
    .education-primary .section__title {
      max-width: 73rem;
      font-size: 6rem;
    }
  }
  .education-primary .section__desc {
    text-align: center;
    color: #808080;
  }
  @media (width < 1025px) {
    .education-primary .section__desc {
      max-width: 45rem;
      font-size: 1.8rem;
    }
  }
  @media (width >= 1025px) {
    .education-primary .section__desc {
      max-width: 55rem;
      font-size: 2.2rem;
    }
  }
  .education-calc {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0.1rem solid rgba(51, 51, 51, 0.1);
    border-radius: 1.6rem;
    width: 100%;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    background-color: #f4f4f4;
  }
  @media (width < 768px) {
    .education-calc {
      margin-top: 4rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .education-calc {
      margin-top: 6rem;
    }
  }
  @media (width < 1025px) {
    .education-calc {
      height: 40rem;
      font-size: 3.5rem;
    }
  }
  @media (width >= 1025px) {
    .education-calc {
      height: 60rem;
      margin-top: 8rem;
      font-size: 5rem;
    }
  }
}
@layer pages {
  @media (width < 768px) {
    .error {
      padding: 8rem 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .error {
      padding: 10rem 0;
    }
  }
  @media (width >= 1025px) {
    .error {
      padding: 16rem 0;
    }
  }
  .error .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 2rem;
  }
  .error .section__title {
    color: #808080;
  }
  @media (width < 1025px) {
    .error .section__title {
      font-size: 10rem;
    }
  }
  @media (width >= 1025px) {
    .error .section__title {
      font-size: 20rem;
    }
  }
  @media (width < 1025px) {
    .error .section__desc {
      font-size: 1.5rem;
    }
  }
  @media (width >= 1025px) {
    .error .section__desc {
      max-width: 62rem;
      font-size: 1.8rem;
    }
  }
}
@layer pages {
  @media (width < 768px) {
    .copy-trading-primary {
      padding: 8rem 0 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .copy-trading-primary {
      padding: 10rem 0 0;
    }
  }
  @media (width >= 1025px) {
    .copy-trading-primary {
      padding: 4rem 0 0;
    }
  }
  .copy-trading-primary .section__title {
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.02em;
  }
  @media (width < 768px) {
    .copy-trading-primary .section__title {
      order: -1;
    }
  }
  @media (width < 1025px) {
    .copy-trading-primary .section__title {
      font-size: 4rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .copy-trading-primary .section__title {
      max-width: 32rem;
    }
  }
  @media (width >= 1025px) {
    .copy-trading-primary .section__title {
      max-width: 61rem;
      font-size: 6rem;
    }
  }
  .copy-trading-primary .section__title span {
    color: #f8564e;
  }
  .copy-trading-primary .section__desc {
    margin-top: 2rem;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #808080;
  }
  @media (width >= 768px) and (width < 1025px) {
    .copy-trading-primary .section__desc {
      max-width: 32rem;
    }
  }
  @media (width >= 1025px) {
    .copy-trading-primary .section__desc {
      max-width: 56rem;
    }
  }
  @media (width < 1025px) {
    .copy-trading-primary__actions {
      margin-top: 4rem;
    }
  }
  @media (width >= 1025px) {
    .copy-trading-primary__actions {
      margin-top: 3rem;
    }
  }
  .copy-trading-primary__container {
    display: grid;
  }
  @media (width >= 768px) {
    .copy-trading-primary__container {
      align-items: center;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .copy-trading-primary__container {
      grid-template-columns: 1fr 33rem;
    }
  }
  @media (width >= 1025px) {
    .copy-trading-primary__container {
      grid-template-columns: 1fr 67rem;
      column-gap: 7rem;
    }
  }
  @media (width < 768px) {
    .copy-trading-primary__box {
      display: contents;
    }
  }
  @media (width >= 768px) {
    .copy-trading-primary__box {
      display: flex;
      flex-direction: column;
    }
  }
  .copy-trading-primary__img {
    width: 100%;
  }
  @media (width < 768px) {
    .copy-trading-primary__img {
      order: -1;
      margin-top: 2rem;
    }
  }
  .copy-trading-primary__img img {
    width: 100%;
    height: auto;
  }
}
@layer pages {
  .home-primary {
    color: #fff;
  }
  .home-primary .section__title {
    font-weight: 600;
  }
  @media (width < 1025px) {
    .home-primary .section__title {
      font-size: 4rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-primary .section__title {
      max-width: 47rem;
    }
  }
  @media (width >= 1025px) {
    .home-primary .section__title {
      max-width: 67rem;
      font-size: 6rem;
    }
  }
  .home-primary .section__desc {
    font-weight: 500;
    margin-top: auto;
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-primary .section__desc {
      max-width: 38rem;
    }
  }
  @media (width >= 1025px) {
    .home-primary .section__desc {
      max-width: 44rem;
    }
  }
  .home-primary__actions {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  .home-primary__container {
    position: relative;
    display: flex;
    overflow: hidden;
  }
  @media (width < 768px) {
    .home-primary__container {
      min-height: 60rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-primary__container {
      min-height: 80rem;
    }
  }
  @media (width < 1025px) {
    .home-primary__container {
      border-radius: 1rem;
    }
  }
  @media (width >= 1025px) {
    .home-primary__container {
      min-height: 82.8rem;
      border-radius: 1.6rem;
    }
  }
  .home-primary__container::before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
  .home-primary__box {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }
  @media (width < 768px) {
    .home-primary__box {
      padding: 2rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-primary__box {
      padding: 3rem;
    }
  }
  @media (width >= 1025px) {
    .home-primary__box {
      padding: 5rem;
    }
  }
  .home-primary img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home-platforms {
    background-color: #fff;
  }
  @media (width < 768px) {
    .home-platforms {
      padding: 8rem 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-platforms {
      padding: 10rem 0;
    }
  }
  @media (width >= 1025px) {
    .home-platforms {
      padding: 16rem 0 8.5rem;
    }
  }
  @media (width < 1025px) {
    .home-platforms .wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
  .home-platforms__header {
    text-align: center;
  }
  @media (width < 1025px) {
    .home-platforms__header {
      display: contents;
    }
  }
  @media (width >= 1025px) {
    .home-platforms__header {
      display: flex;
      flex-direction: column;
      align-items: center;
      row-gap: 2rem;
    }
  }
  .home-platforms__header .btn {
    margin-top: 4rem;
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-platforms__header .btn {
      margin-top: 6rem;
    }
  }
  @media (width < 1025px) {
    .home-platforms__header .btn {
      order: 1;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-platforms .section__title {
      max-width: 48rem;
    }
  }
  @media (width >= 1025px) {
    .home-platforms .section__title {
      max-width: 98rem;
    }
  }
  .home-platforms .section__title span {
    color: #f8564e;
  }
  .home-platforms .section__desc {
    color: #808080;
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-platforms .section__desc {
      max-width: 48rem;
    }
  }
  @media (width < 1025px) {
    .home-platforms .section__desc {
      margin-top: 1.5rem;
    }
  }
  @media (width >= 1025px) {
    .home-platforms .section__desc {
      max-width: 40rem;
    }
  }
  .home-platforms__box {
    position: relative;
  }
  @media (width < 1025px) {
    .home-platforms__box {
      display: flex;
      flex-direction: column-reverse;
    }
  }
  @media (width >= 1025px) {
    .home-platforms__box {
      margin-top: 2rem;
      display: grid;
      align-items: center;
      grid-template-columns: 40rem 1fr;
      column-gap: 4rem;
    }
  }
  @media (width < 768px) {
    .home-platforms__list {
      margin-top: 4rem;
      display: flex;
      flex-direction: column;
      row-gap: 3rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-platforms__list {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 1rem;
    }
  }
  @media (width >= 1025px) {
    .home-platforms__list {
      display: flex;
      flex-direction: column;
      row-gap: 4rem;
    }
  }
  .home-platforms__item {
    display: flex;
    flex-direction: column;
  }
  .home-platforms__icon {
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
  }
  @media (width < 1025px) {
    .home-platforms__icon {
      border-radius: 1rem;
      width: 5rem;
      height: 5rem;
    }
  }
  @media (width >= 1025px) {
    .home-platforms__icon {
      border-radius: 1.9rem;
      width: 7rem;
      height: 7rem;
    }
  }
  .home-platforms__icon img {
    height: auto;
    width: auto;
  }
  @media (width < 1025px) {
    .home-platforms__icon img {
      max-width: 2.8rem;
      max-height: 2.8rem;
    }
  }
  @media (width >= 1025px) {
    .home-platforms__icon img {
      max-width: 4.2rem;
      max-height: 4.2rem;
    }
  }
  .home-platforms__title {
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.01em;
  }
  @media (width < 1025px) {
    .home-platforms__title {
      margin-top: 1.5rem;
      font-size: 1.8rem;
    }
  }
  @media (width >= 1025px) {
    .home-platforms__title {
      margin-top: 2rem;
      font-size: 2.2rem;
    }
  }
  .home-platforms__desc {
    line-height: 140%;
    color: #808080;
  }
  @media (width < 1025px) {
    .home-platforms__desc {
      margin-top: 0.5rem;
      font-size: 1.5rem;
    }
  }
  @media (width >= 1025px) {
    .home-platforms__desc {
      margin-top: 1rem;
      font-size: 1.8rem;
    }
  }
  @media (width < 768px) {
    .home-platforms__bg {
      width: 100%;
      margin-top: 3rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .home-platforms__bg {
      margin: 3rem auto 0;
      width: 53rem;
      height: 40rem;
    }
  }
  @media (width >= 1025px) {
    .home-platforms__bg {
      width: 92rem;
      height: 70rem;
    }
  }
  .home-platforms__bg img {
    width: 100%;
    height: auto;
  }
  @media (width < 768px) {
    .home .markets {
      padding: 8rem 0 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .home .markets {
      padding: 10rem 0 0;
    }
  }
  @media (width >= 1025px) {
    .home .markets {
      padding: 16rem 0 0;
    }
  }
  @media (width < 1025px) {
    .home .account__item {
      min-height: 56rem;
    }
  }
  @media (width >= 1025px) {
    .home .account__item {
      min-height: 68rem;
    }
  }
}
@layer pages {
  .market-primary {
    color: #fff;
  }
  .market-primary .section__title {
    font-weight: 600;
  }
  @media (width < 1025px) {
    .market-primary .section__title {
      font-size: 4rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .market-primary .section__title {
      max-width: 47rem;
    }
  }
  @media (width >= 1025px) {
    .market-primary .section__title {
      max-width: 55rem;
      font-size: 6rem;
    }
  }
  .market-primary .section__desc {
    margin-top: auto;
  }
  @media (width >= 768px) and (width < 1025px) {
    .market-primary .section__desc {
      max-width: 35rem;
    }
  }
  @media (width < 1025px) {
    .market-primary .section__desc br {
      display: contents;
    }
  }
  @media (width >= 1025px) {
    .market-primary .section__desc {
      max-width: 50rem;
    }
  }
  .market-primary__actions {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  .market-primary__container {
    position: relative;
    display: flex;
    overflow: hidden;
  }
  @media (width < 768px) {
    .market-primary__container {
      min-height: 60rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .market-primary__container {
      min-height: 80rem;
    }
  }
  @media (width < 1025px) {
    .market-primary__container {
      border-radius: 1rem;
    }
  }
  @media (width >= 1025px) {
    .market-primary__container {
      min-height: 82.8rem;
      border-radius: 1.6rem;
    }
  }
  .market-primary__box {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }
  @media (width < 768px) {
    .market-primary__box {
      padding: 2rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .market-primary__box {
      padding: 3rem;
    }
  }
  @media (width >= 1025px) {
    .market-primary__box {
      padding: 5rem;
    }
  }
  .market-primary__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .market-primary__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (width < 1025px) {
    .market-primary__bg-img--lg {
      display: none;
    }
  }
  @media (width < 768px) {
    .market-primary__bg-img--m {
      display: none;
    }
  }
  @media (width >= 1025px) {
    .market-primary__bg-img--m {
      display: none;
    }
  }
  @media (width >= 768px) {
    .market-primary__bg-img--sm {
      display: none;
    }
  }
  @media (width < 768px) {
    .market .markets {
      padding: 8rem 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .market .markets {
      padding: 10rem 0;
    }
  }
  @media (width >= 1025px) {
    .market .markets {
      padding: 16rem 0;
    }
  }
}
@layer pages {
  @media (width < 768px) {
    .page {
      padding: 8rem 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .page {
      padding: 10rem 0;
    }
  }
  @media (width >= 1025px) {
    .page {
      padding: 16rem 0;
    }
  }
  .page__title {
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
  }
  @media (width < 1025px) {
    .page__title {
      margin-bottom: 2rem;
      font-size: 4rem;
    }
  }
  @media (width >= 1025px) {
    .page__title {
      margin-bottom: 3rem;
      font-size: 6rem;
    }
  }
  .page h2 {
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
  }
  @media (width < 1025px) {
    .page h2 {
      font-size: 2.5rem;
    }
  }
  @media (width >= 1025px) {
    .page h2 {
      font-size: 4rem;
    }
  }
  .page__desc {
    line-height: 130%;
    letter-spacing: -0.01em;
  }
  @media (width < 1025px) {
    .page__desc {
      font-size: 1.8rem;
    }
  }
  @media (width >= 1025px) {
    .page__desc {
      font-size: 2.2rem;
    }
  }
  .page__desc *:not(:first-child) {
    margin-top: 2rem;
  }
  .page ul,
  .page ol {
    padding-left: 2.2rem;
  }
}
.partners-primary {
  color: #fff;
}
.partners-primary .section__title {
  font-weight: 600;
}
@media (width < 1025px) {
  .partners-primary .section__title {
    font-size: 4rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-primary .section__title {
    max-width: 47rem;
  }
}
@media (width >= 1025px) {
  .partners-primary .section__title {
    max-width: 55rem;
    font-size: 6rem;
  }
}
.partners-primary .section__desc {
  font-weight: 500;
  margin-top: auto;
}
@media (width >= 768px) and (width < 1025px) {
  .partners-primary .section__desc {
    max-width: 32rem;
  }
}
@media (width >= 1025px) {
  .partners-primary .section__desc {
    max-width: 39rem;
  }
}
.partners-primary__actions {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.partners-primary__container {
  position: relative;
  display: flex;
  overflow: hidden;
}
@media (width < 768px) {
  .partners-primary__container {
    min-height: 60rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-primary__container {
    min-height: 80rem;
  }
}
@media (width < 1025px) {
  .partners-primary__container {
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .partners-primary__container {
    min-height: 82.8rem;
    border-radius: 1.6rem;
  }
}
.partners-primary__box {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (width < 768px) {
  .partners-primary__box {
    padding: 2rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-primary__box {
    padding: 3rem;
  }
}
@media (width >= 1025px) {
  .partners-primary__box {
    padding: 5rem;
  }
}
.partners-primary__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.partners-primary__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1025px) {
  .partners-primary__bg-img--lg {
    display: none;
  }
}
@media (width < 768px) {
  .partners-primary__bg-img--m {
    display: none;
  }
}
@media (width >= 1025px) {
  .partners-primary__bg-img--m {
    display: none;
  }
}
@media (width >= 768px) {
  .partners-primary__bg-img--sm {
    display: none;
  }
}
.partners-cta {
  color: #fff;
  text-align: center;
}
@media (width < 768px) {
  .partners-cta {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-cta {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .partners-cta {
    padding: 16rem 0;
  }
}
.partners-cta .section__desc {
  margin-top: 1rem;
}
@media (width < 768px) {
  .partners-cta .section__desc {
    max-width: 24rem;
  }
}
.partners-cta__actions {
  margin-top: 4rem;
}
.partners-cta__container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (width < 768px) {
  .partners-cta__container {
    min-height: 40rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-cta__container {
    min-height: 32rem;
  }
}
@media (width < 1025px) {
  .partners-cta__container {
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .partners-cta__container {
    min-height: 44rem;
    border-radius: 1.6rem;
  }
}
.partners-cta__box {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.partners-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1025px) {
  .partners-cta__bg-img--lg {
    display: none;
  }
}
@media (width < 768px) {
  .partners-cta__bg-img--m {
    display: none;
  }
}
@media (width >= 1025px) {
  .partners-cta__bg-img--m {
    display: none;
  }
}
@media (width >= 768px) {
  .partners-cta__bg-img--sm {
    display: none;
  }
}
@media (width < 768px) {
  .partners .account {
    padding: 8rem 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners .account {
    padding: 10rem 0;
  }
}
@media (width >= 1025px) {
  .partners .account {
    padding: 16rem 0;
  }
}
@media (width < 1025px) {
  .partners .account__title {
    max-width: max-content;
  }
}
@media (width >= 1025px) {
  .partners .account__title br {
    display: contents;
  }
}
@media (width < 1025px) {
  .partners .account__desc {
    margin-bottom: 8rem;
  }
}
@media (width >= 1025px) {
  .partners .account__desc {
    margin-bottom: 6rem;
  }
}
@media (width >= 1025px) {
  .partners .account__desc p {
    max-width: 42rem;
  }
}
@media (width < 768px) {
  .partners-details {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-details {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .partners-details {
    padding: 16rem 0 0;
  }
}
.partners-details__list {
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  counter-reset: list;
}
.partners-details__item {
  display: grid;
  counter-increment: list;
}
@media (width < 768px) {
  .partners-details__item {
    row-gap: 4rem;
  }
}
@media (width >= 768px) {
  .partners-details__item {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .partners-details__item:nth-child(even) .partners-details__img {
    order: -1;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-details__item {
    column-gap: 1rem;
  }
  .partners-details__item:nth-child(even) .partners-details__content {
    margin-left: 4rem;
  }
}
@media (width >= 1025px) {
  .partners-details__item {
    column-gap: 10rem;
    border-radius: 1.6rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-details__content {
    max-width: 28rem;
  }
}
@media (width >= 1025px) {
  .partners-details__content {
    max-width: 44.5rem;
  }
}
.partners-details__title {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}
@media (width < 768px) {
  .partners-details__title {
    text-wrap: balance;
  }
}
@media (width < 1025px) {
  .partners-details__title {
    font-size: 3.5rem;
  }
}
@media (width >= 1025px) {
  .partners-details__title {
    font-size: 5rem;
  }
}
.partners-details__title span {
  color: #f8564e;
}
.partners-details__desc {
  line-height: 140%;
  color: #808080;
}
@media (width < 1025px) {
  .partners-details__desc {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
}
@media (width >= 1025px) {
  .partners-details__desc {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
}
.partners-details__desc ul,
.partners-details__desc ol {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media (width < 1025px) {
  .partners-details__desc ul,
  .partners-details__desc ol {
    margin-top: 2rem;
  }
}
@media (width >= 1025px) {
  .partners-details__desc ul,
  .partners-details__desc ol {
    margin-top: 3rem;
  }
}
.partners-details__desc li {
  list-style-type: none;
  line-height: 140%;
  display: flex;
  column-gap: 1rem;
}
.partners-details__desc li::before {
  flex-shrink: 0;
  width: 2rem;
  height: 1rem;
  transform: translateY(0.8rem);
  content: "";
  background: url("../img/check-dark.svg") no-repeat center center/100%;
  opacity: 0.5;
}
@media (width < 1025px) {
  .partners-details__desc li::before {
    transform: translateY(0.5rem);
  }
}
.partners-details__img {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .partners-details__img {
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .partners-details__img {
    border-radius: 1.6rem;
  }
}
.partners-details__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1025px) {
  .partners-details__img-url--lg {
    display: none;
  }
}
@media (width < 768px) {
  .partners-details__img-url--m {
    display: none;
  }
}
@media (width >= 1025px) {
  .partners-details__img-url--m {
    display: none;
  }
}
@media (width >= 768px) {
  .partners-details__img-url--sm {
    display: none;
  }
}
.partners-advantages {
  background-color: #fff;
}
@media (width < 768px) {
  .partners-advantages {
    padding: 8rem 0 0;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-advantages {
    padding: 10rem 0 0;
  }
}
@media (width >= 1025px) {
  .partners-advantages {
    padding: 16rem 0 0;
  }
}
.partners-advantages .wrap {
  display: flex;
  flex-direction: column;
  justify-items: center;
}
@media (width < 1025px) {
  .partners-advantages .wrap {
    row-gap: 4rem;
  }
}
@media (width >= 1025px) {
  .partners-advantages .wrap {
    row-gap: 6rem;
  }
}
.partners-advantages__header {
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (width < 1025px) {
  .partners-advantages__header {
    max-width: 45rem;
  }
}
@media (width >= 1025px) {
  .partners-advantages__header {
    max-width: 64rem;
    row-gap: 4rem;
  }
}
@media (width < 1025px) {
  .partners-advantages__header .btn {
    display: none;
  }
}
@media (width >= 1025px) {
  .partners-advantages__header .btn {
    width: max-content;
  }
}
.partners-advantages .section__title {
  text-align: center;
}
.partners-advantages .section__title span {
  color: #f8564e;
}
.partners-advantages__list {
  display: grid;
}
@media (width >= 768px) and (width < 1025rem) {
  .partners-advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1025px) {
  .partners-advantages__list {
    gap: 1rem;
  }
}
@media (width >= 1025px) {
  .partners-advantages__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.partners-advantages__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f9f9f9;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}
@media (width < 768px) {
  .partners-advantages__item {
    min-height: 16rem;
  }
}
@media (width >= 768px) and (width < 1025px) {
  .partners-advantages__item {
    min-height: 18rem;
  }
}
@media (width < 1025px) {
  .partners-advantages__item {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .partners-advantages__item {
    min-height: 24rem;
    padding: 2.5rem;
    border-radius: 1.6rem;
  }
}
.partners-advantages__icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (width < 1025px) {
  .partners-advantages__icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
  }
}
@media (width >= 1025px) {
  .partners-advantages__icon {
    width: 7rem;
    height: 7rem;
    border-radius: 1.9rem;
  }
}
@media (width < 1025px) {
  .partners-advantages__icon img {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media (width >= 1025px) {
  .partners-advantages__icon img {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.partners-advantages__desc {
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (width >= 768px) {
  .partners-advantages__desc {
    max-width: 22rem;
  }
}
@media (width < 1025px) {
  .partners-advantages__desc {
    font-size: 1.8rem;
  }
}
@media (width >= 1025px) {
  .partners-advantages__desc {
    font-size: 2.2rem;
  }
}

@layer pages {
  .platforms-primary {
    background-color: #fff;
  }
  @media (width < 768px) {
    .platforms-primary {
      padding: 8rem 0 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .platforms-primary {
      padding: 10rem 0 0;
    }
  }
  @media (width >= 1025px) {
    .platforms-primary {
      padding: 16rem 0 0;
    }
  }
  .platforms-primary__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  @media (width < 1025px) {
    .platforms-primary__header {
      row-gap: 2rem;
    }
  }
  @media (width >= 1025px) {
    .platforms-primary__header {
      row-gap: 1.2rem;
    }
  }
  .platforms-primary .section__title {
    font-weight: 600;
  }
  @media (width >= 768px) and (width < 1025px) {
    .platforms-primary .section__title {
      max-width: 52rem;
    }
  }
  @media (width < 1025px) {
    .platforms-primary .section__title {
      font-size: 4rem;
    }
  }
  @media (width >= 1025px) {
    .platforms-primary .section__title {
      max-width: 75rem;
      font-size: 6rem;
    }
  }
  .platforms-primary .section__title span {
    color: #f8564e;
  }
  .platforms-primary .section__desc {
    color: #808080;
  }
  @media (width >= 768px) and (width < 1025px) {
    .platforms-primary .section__desc {
      max-width: 47rem;
    }
  }
  @media (width >= 1025px) {
    .platforms-primary .section__desc {
      max-width: 56rem;
    }
  }
  .platforms-primary__img {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }
  @media (width < 768px) {
    .platforms-primary__img {
      width: 100%;
      height: 23rem;
      margin: 4rem auto 0;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .platforms-primary__img {
      width: 58rem;
      height: 38.8rem;
      margin: 2rem auto 0;
    }
  }
  @media (width >= 1025px) {
    .platforms-primary__img {
      width: 120rem;
      height: 80rem;
      margin: 0 auto;
    }
  }
  .platforms-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (width < 768px) {
    .platforms-box {
      padding-top: 6rem;
      padding-bottom: 8rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .platforms-box {
      padding-top: 4rem;
      padding-bottom: 10rem;
    }
  }
  @media (width >= 1025px) {
    .platforms-box {
      padding-top: 6rem;
      padding-bottom: 16rem;
    }
  }
  .platforms-details {
    display: grid;
  }
  @media (width < 768px) {
    .platforms-details {
      row-gap: 3rem;
    }
  }
  @media (width >= 768px) {
    .platforms-details {
      align-items: center;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .platforms-details {
      grid-template-columns: 27rem 33rem;
      column-gap: 7rem;
    }
  }
  @media (width >= 1025px) {
    .platforms-details {
      grid-template-columns: 44rem 67rem;
      column-gap: 25rem;
    }
  }
  .platforms-details .section__title span {
    color: #f8564e;
  }
  .platforms-details .section__desc {
    line-height: 140%;
    color: #808080;
  }
  @media (width < 1025px) {
    .platforms-details .section__desc {
      margin-top: 1.5rem;
      font-size: 1.5rem;
    }
  }
  @media (width >= 1025px) {
    .platforms-details .section__desc {
      margin-top: 2rem;
      font-size: 1.8rem;
    }
  }
  @media (width < 768px) {
    .platforms-details--top {
      padding-top: 4rem;
    }
    .platforms-details--top .details__img {
      height: 28.8rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .platforms-details--top {
      padding-top: 6rem;
    }
  }
  @media (width >= 1025px) {
    .platforms-details--top {
      padding-top: 8rem;
    }
    .platforms-details--top .details__img {
      height: 56rem;
    }
  }
  .platforms-details--top .btn {
    margin-top: 4rem;
  }
  @media (width < 768px) {
    .platforms-details--bottom {
      padding-top: 8rem;
    }
  }
  @media (width >= 768px) and (width < 1025px) {
    .platforms-details--bottom {
      padding-top: 10rem;
    }
  }
  @media (width >= 1025px) {
    .platforms-details--bottom {
      padding-top: 16rem;
    }
  }
  @media (width >= 1025px) {
    .platforms .account {
      padding-bottom: 16rem;
    }
  }
  @media (width < 1025px) {
    .platforms .account__item {
      min-height: 56rem;
    }
  }
  @media (width >= 1025px) {
    .platforms .account__item {
      min-height: 68rem;
    }
  }
}
@layer utilities {
  html:has(.platforms) .header {
    background-color: #fff;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}/*# sourceMappingURL=main.css.map */