.hm-hero {
  margin-top: 100px;
}
.hm-hero h1 {
  font-size: 56px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1450px) {
  .hm-hero h1 {
    font-size: 42px;
  }
}
.hm-hero__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
}
.hm-hero__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hm-hero-bg.svg") no-repeat center center/cover;
  z-index: -1;
}
.hm-hero__content {
  width: 47%;
}
.hm-hero__img {
  width: 53%;
}
.hm-hero__img img {
  width: 100%;
  height: auto;
}
.hm-hero__text {
  margin-bottom: 24px;
}
.hm-hero__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}
.hm-hero__logos {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1610px) {
  .hm-hero {
    margin-top: 110px;
  }
}
@media screen and (max-width: 1024px) {
  .hm-hero {
    margin-top: 80px;
  }
  .hm-hero__wrap {
    flex-direction: column;
  }
  .hm-hero__content {
    width: 100%;
  }
  .hm-hero__img {
    width: 100%;
  }
  .hm-hero__btns {
    flex-direction: column;
  }
  .hm-hero__btn {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hm-hero {
    margin-top: 48px;
  }
  .hm-hero h1 {
    font-size: 32px;
    text-align: center;
    order: 1;
  }
  .hm-hero__btns {
    order: 2;
    width: 100%;
    max-width: 270px;
    margin-bottom: 24px;
  }
  .hm-hero__img {
    order: 3;
    margin-bottom: 24px;
  }
  .hm-hero__text {
    order: 4;
  }
  .hm-hero__logos {
    order: 5;
    gap: 30px;
  }
  .hm-hero__content {
    display: contents;
  }
  .hm-hero__wrap {
    gap: 0;
  }
  .hm-hero__text p {
    font-size: 20px;
    text-align: center;
  }
}

.hm-video__video {
  position: relative;
}
.hm-video__video iframe {
  width: 100%;
  height: 700px;
  border: 12px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 32px;
}
@media screen and (max-width: 1024px) {
  .hm-video__video iframe {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .hm-video__video iframe {
    height: 200px;
    border-width: 6px;
  }
}

.sale_banner .banner {
  padding: 0;
}

.trade-info h2 {
  text-align: center;
  max-width: 608px;
  margin: 0 auto 100px;
}
.trade-info__list {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 24px;
}
.trade-info__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 10, 53, 0.3);
  backdrop-filter: blur(22px);
  padding: 32px 48px;
  height: 450px;
  position: relative;
  overflow: hidden;
}
.trade-info__item:nth-child(even) {
  flex-direction: row-reverse;
}
.trade-info__item h3 {
  font-size: 32px;
}
.trade-info__item#trade-info-1 .trade-info__img img {
  width: 100%;
  height: auto;
  max-width: 430px;
}
.trade-info__item#trade-info-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: url("../img/trade-ai-gradient.png") no-repeat center center/cover;
  z-index: -1;
  filter: blur(220px);
}
.trade-info__item#trade-info-3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: url("../img/altalgo-gradient.webp") no-repeat center center/cover;
  z-index: -1;
}
.trade-info__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trade-info__btn {
  width: fit-content;
}
.trade-info__text {
  max-width: 485px;
}
@media screen and (max-width: 1024px) {
  .trade-info__list {
    grid-auto-rows: unset;
  }
  .trade-info__item {
    height: unset;
    flex-direction: column;
  }
  .trade-info__item:nth-child(even) {
    flex-direction: column;
    padding-bottom: 0;
  }
  .trade-info__item#trade-info-1 .trade-info__img img {
    max-width: unset;
  }
  .trade-info__item#trade-info-3::before {
    width: 100%;
  }
  .trade-info__content {
    width: 100%;
  }
  .trade-info__text {
    max-width: unset;
  }
  .trade-info__img {
    width: 100%;
  }
  .trade-info__img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .trade-info__list {
    gap: 16px;
  }
  .trade-info__item {
    justify-content: unset;
    padding: 32px 20px;
  }
  .trade-info__content {
    text-align: center;
    margin-bottom: 20px;
    gap: 16px;
  }
  .trade-info__btn {
    margin: 0 auto;
  }
  .trade-info h2 {
    margin-bottom: 32px;
  }
  .trade-info h3 {
    font-size: 20px;
  }
}

.trusted-by__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.trusted-by__img {
  width: 40%;
}
.trusted-by__img img {
  width: 100%;
  height: auto;
}
.trusted-by__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.trusted-by__btn {
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .trusted-by__wrap {
    flex-direction: column-reverse;
  }
  .trusted-by__img {
    width: 100%;
  }
  .trusted-by__content {
    width: 100%;
    text-align: center;
    gap: 24px;
  }
  .trusted-by__btn {
    margin: 0 auto;
  }
}

.hm-steps h2 {
  text-align: center;
  margin: 0 auto 100px;
}
.hm-steps h2 br {
  display: none;
}
.hm-steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hm-steps__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}
.hm-steps__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 91%;
  width: 160px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='12' viewBox='0 0 160 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2'%3E%3Cline x1='17' y1='5.5' x2='140' y2='5.5' stroke='white' stroke-dasharray='4 8'/%3E%3Ccircle cx='154' cy='6' r='5' stroke='white' stroke-width='2'/%3E%3Ccircle cx='6' cy='6' r='5' stroke='white' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
  z-index: -1;
}
.hm-steps__icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin: 0 auto 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-steps__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FF9811 0%, #FA03A4 100%);
  opacity: 0.3;
  z-index: -1;
}
.hm-steps__icon img {
  width: 40px;
  height: 40px;
}
.hm-steps__subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #777E90;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hm-steps__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.hm-steps__text {
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  .hm-steps__item:not(:last-child)::before {
    left: 80%;
  }
}
@media screen and (max-width: 1024px) {
  .hm-steps__item:not(:last-child)::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hm-steps h2 {
    margin-bottom: 32px;
  }
  .hm-steps h2 br {
    display: block;
  }
  .hm-steps__list {
    grid-template-columns: 1fr;
  }
  .hm-steps__item {
    gap: 8px;
  }
  .hm-steps__icon {
    margin-bottom: 8px;
    height: 64px;
    width: 64px;
    border-radius: 20px;
  }
  .hm-steps__subtitle {
    margin-bottom: 0;
  }
  .hm-steps__title {
    margin-bottom: 8px;
  }
}

.live-results {
  position: relative;
}
.live-results h2 {
  text-align: center;
  margin-bottom: 24px;
}
.live-results__animation {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 550px;
  z-index: -1;
}
.live-results__animation svg {
  width: 100%;
  height: auto;
}
.live-results__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.5%;
}
@media screen and (max-width: 1500px) {
  .live-results__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.live-results__text {
  text-align: center;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 720px;
}
.live-results__btn {
  display: block;
  width: fit-content;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .live-results h2 {
    margin-bottom: 16px;
  }
  .live-results .live-results-container {
    padding-right: 0;
  }
  .live-results__list {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    display: flex;
    gap: 16px;
  }
  .live-results__list::-webkit-scrollbar {
    display: none;
  }
  .live-results__animation {
    top: 90px;
    width: 270px;
    height: 237px;
  }
  .live-results .live-results__item {
    min-width: 250px;
  }
  .live-results .live-results__item:last-child {
    margin-right: 20px;
  }
  .live-results__btn {
    margin-bottom: 32px;
  }
  .live-results__text {
    margin-bottom: 16px;
  }
  .live-results__text p {
    font-size: 20px;
  }
}

.hm-choose {
  overflow: hidden;
}
.hm-choose h2 {
  text-align: center;
  margin: 0 auto 100px;
}
.hm-choose__item {
  border-radius: 24px;
  border: 1px solid #000A35;
  background-color: rgba(16, 26, 72, 0.5);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.hm-choose__name {
  text-align: center;
  color: #fff;
  font-weight: 700;
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .hm-choose__list .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .hm-choose__list .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .hm-choose__list {
    overflow: hidden;
  }
  .hm-choose h2 {
    margin-bottom: 32px;
  }
}

.swiper-pagination-white {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.swiper-pagination-white .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.hm-join__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(90deg, #021B88 0%, #000A35 263.3%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 47px 64px;
  position: relative;
}
.hm-join__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='1312' height='511' viewBox='0 0 1312 511' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.1'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M749.323 233.164V225.075H747.874V233.164H743.588V271.581H753.606V233.164H749.323Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M704.383 267.29H714.402V248.316H704.383V267.29Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M730.616 268.51H734.902V286.15H736.351V268.51H740.635V256.09H730.616V268.51Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M717.517 262.528H727.535V248.316H717.517V262.528Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M691.38 275.211H701.396V252.81H691.38V275.211Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M684.011 220.872H682.564V229.623H678.278V254.232H688.297V229.623H684.011V220.872Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M645.03 248.316H643.583V257.067H639.297V263.052H649.316V257.067H645.03V248.316Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M671.104 210.856H669.654V225.161H665.371V235.177H669.654V239.747H671.104V235.177H675.39V225.161H671.104V210.856Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M658.067 229.623H656.62V233.72H652.334V258.435H662.353V233.72H658.067V229.623Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M626.198 258.815H630.481V263.052H631.93V258.815H636.216V257.09H626.198V258.815Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M619.024 233.86H617.574V257.079H613.288V258.804H617.574V267.033H619.024V258.804H623.307V257.079H619.024V233.86Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M600.028 290.397H604.313V295.924H605.76V290.397H610.046V257.057H600.028V290.397Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M586.894 290.499H591.18V294.736H592.63V290.499H596.913V270.127H586.894V290.499Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M573.857 267.511H578.143V277.241H579.593V267.511H583.876V261.573H573.857V267.511Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M540.354 257.09H538.905V261.525H534.622V326.715H538.905V332.519H540.354V326.715H544.64V261.525H540.354V257.09Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M547.659 271.831H551.942V294.736H553.391V271.831H557.674V265.893H547.659V271.831Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M566.491 257.09H565.044V261.525H560.758V267.511H565.044V290.397H566.491V267.511H570.776V261.525H566.491V257.09Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M456.402 368.857H466.421V335.729H456.402V368.857Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M527.255 308.058H525.805V320.905H521.52V326.89H525.805V341.122H527.255V326.89H531.538V320.905H527.255V308.058Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M508.74 364.563H518.759V320.905H508.74V364.563Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M501.246 335.729H499.796V358.593H495.511V373.213H499.796V381.635H501.246V373.213H505.529V358.593H501.246V335.729Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M430.201 396.151H440.219V358.593H430.201V396.151Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M448.778 303.756H447.331V339.781H443.045V364.287H453.064V339.781H448.778V303.756Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M488.144 352.807H486.697V367.324H482.411V368.857H486.697V381.635H488.144V368.857H492.43V367.324H488.144V352.807Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M475.044 352.807H473.595V363.115H469.312V368.857H473.595V387.605H475.044V368.857H479.328V363.115H475.044V352.807Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M422.834 390.75H421.385V394.835H417.101V400.818H421.385V405.131H422.834V400.818H427.12V394.835H422.834V390.75Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M409.862 371.876H408.413V386.203H404.129V400.818H408.413V405.131H409.862V400.818H414.145V386.203H409.862V371.876Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M344.487 375.906H343.038V380.49H338.755V395.105H343.038V400.818H344.487V395.105H348.773V380.49H344.487V375.906Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M318.286 380.49H316.836V390.506H312.553V400.818H322.572V390.506H318.286V380.49Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M292.277 358.714H290.83V362.987H286.544V373.299H296.563V362.987H292.277V358.714Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M195.064 396.656H205.083V390.529H195.064V396.656Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M240.1 352.824H238.651V362.987H234.368V396.25H238.651V409.354H240.1V396.25H244.386V362.987H240.1V352.824Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M168.896 405.131H173.182V415.405H174.629V405.131H178.915V367.417H168.896V405.131Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M299.516 387.798H303.802V400.818H305.249V387.798H309.535V367.468H299.516V387.798Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M383.788 367.317H382.341V375.906H378.056V392.098H388.074V375.906H383.788V367.317Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M396.75 386.203H395.3V390.566H391.017V392.098H401.035V390.566H396.75V386.203Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M365.018 373.299H369.304V381.762H370.751V373.299H375.037V371.767H365.018V373.299Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M351.854 387.868H356.14V392.098H357.587V387.868H361.872V363.407H351.854V387.868Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M331.515 375.906H330.066V386.203H325.783V400.818H330.066V405.131H331.515V400.818H335.798V386.203H331.515V375.906Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M221.234 377.633H231.25V363.122H221.234V377.633Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M182.061 405.131H192.077V390.62H182.061V405.131Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M266.075 352.824H264.629V363.122H260.343V409.354H270.361V363.122H266.075V352.824Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M213.803 371.515H212.353V376.145H208.067V400.894H218.086V376.145H213.803V371.515Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.656 352.824H160.208V358.807H155.923V364.492H165.941V358.807H161.656V352.824Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M279.24 358.714H277.793V362.987H273.507V364.52H277.793V372.982H279.24V364.52H283.526V362.987H279.24V358.714Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M253.007 381.14H251.558V399.359H247.275V400.894H251.558V405.131H253.007V400.894H257.29V399.359H253.007V381.14Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M148.62 352.824H147.171V362.818H142.886V364.351H147.171V368.59H148.62V364.351H152.905V362.818H148.62V352.824Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M129.722 354.417H134.006V360.4H135.455V354.417H139.74V339.964H129.722V354.417Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M109.382 331.235H107.934V344.199H103.649V396.167H113.667V344.199H109.382V331.235Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M116.749 364.474H121.034V377.462H122.483V364.474H126.768V335.412H116.749V364.474Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M90.5482 404.986H100.566V394.97H90.5482V404.986Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M83.3092 403.911H81.8608V418.233H77.5761V437.091H87.594V418.233H83.3092V403.911Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M57.0437 431.167H55.5954V435.632H51.3106V465.767H61.3285V435.632H57.0437V431.167Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M64.3783 437.091H68.6633V446.927H70.1114V437.091H74.3964V431.167H64.3783V437.091Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M38.3053 470.541H42.5904V480.378H44.0387V470.541H48.3235V464.618H38.3053V470.541Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.2377 470.541H35.2558V458.759H25.2377V470.541Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.1369 487.589H22.1551V464.649H12.1369V487.589Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-0.770981 497.839H3.51379V506.507H4.96217V497.839H9.24719V486.416H-0.770981V497.839Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-14 506.507H-9.71523V511H-8.26685V506.507H-3.98183V492.126H-14V506.507Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1311.58 0H1310.13V4.43558H1305.85V69.6253H1310.13V75.4295H1311.58V69.6253H1315.86V4.43558H1311.58V0Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1337.71 0H1336.27V4.43558H1331.98V10.4209H1336.27V33.3072H1337.71V10.4209H1342V4.43558H1337.71V0Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1227.63 111.768H1237.64V78.6395H1227.63V111.768Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1298.48 50.9683H1297.03V63.8151H1292.74V69.8004H1297.03V84.0325H1298.48V69.8004H1302.76V63.8151H1298.48V50.9683Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1279.96 107.473H1289.98V63.8151H1279.96V107.473Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1272.47 78.6395H1271.02V101.503H1266.73V116.124H1271.02V124.545H1272.47V116.124H1276.75V101.503H1272.47V78.6395Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1201.42 139.061H1211.44V101.503H1201.42V139.061Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1220 46.6667H1218.55V82.6916H1214.27V107.197H1224.29V82.6916H1220V46.6667Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1259.37 95.7172H1257.92V110.234H1253.63V111.768H1257.92V124.545H1259.37V111.768H1263.65V110.234H1259.37V95.7172Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1246.27 95.7172H1244.82V106.026H1240.54V111.768H1244.82V130.515H1246.27V111.768H1250.55V106.026H1246.27V95.7172Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1194.06 133.66H1192.61V137.745H1188.32V143.728H1192.61V148.042H1194.06V143.728H1198.34V137.745H1194.06V133.66Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1181.09 114.786H1179.64V129.113H1175.35V143.728H1179.64V148.042H1181.09V143.728H1185.37V129.113H1181.09V114.786Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1115.71 118.816H1114.26V123.4H1109.98V138.015H1114.26V143.728H1115.71V138.015H1120V123.4H1115.71V118.816Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1089.51 123.4H1088.06V133.416H1083.78V143.728H1093.8V133.416H1089.51V123.4Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1063.5 101.624H1062.05V105.897H1057.77V116.21H1067.79V105.897H1063.5V101.624Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M966.288 139.566H976.306V133.439H966.288V139.566Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1011.32 95.7341H1009.87V105.897H1005.59V139.16H1009.87V152.264H1011.32V139.16H1015.61V105.897H1011.32V95.7341Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M940.12 148.042H944.406V158.315H945.853V148.042H950.139V110.327H940.12V148.042Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1070.74 130.708H1075.03V143.728H1076.47V130.708H1080.76V110.378H1070.74V130.708Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1155.01 110.227H1153.56V118.816H1149.28V135.008H1159.3V118.816H1155.01V110.227Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1167.97 129.113H1166.52V133.476H1162.24V135.008H1172.26V133.476H1167.97V129.113Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1136.24 116.21H1140.53V124.672H1141.97V116.21H1146.26V114.677H1136.24V116.21Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1123.08 130.778H1127.36V135.008H1128.81V130.778H1133.1V106.318H1123.08V130.778Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1102.74 118.816H1101.29V129.113H1097.01V143.728H1101.29V148.041H1102.74V143.728H1107.02V129.113H1102.74V118.816Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M992.458 120.544H1002.47V106.032H992.458V120.544Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M953.285 148.042H963.301V133.53H953.285V148.042Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1037.3 95.7341H1035.85V106.032H1031.57V152.264H1041.58V106.032H1037.3V95.7341Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M985.026 114.425H983.577V119.056H979.291V143.804H989.309V119.056H985.026V114.425Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M932.88 95.7341H931.432V101.717H927.146V107.402H937.165V101.717H932.88V95.7341Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1050.46 101.624H1049.02V105.897H1044.73V107.43H1049.02V115.892H1050.46V107.43H1054.75V105.897H1050.46V101.624Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1024.23 124.05H1022.78V142.269H1018.5V143.804H1022.78V148.042H1024.23V143.804H1028.51V142.269H1024.23V124.05Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M919.844 95.7341H918.395V105.728H914.11V107.261H918.395V111.501H919.844V107.261H924.128V105.728H919.844V95.7341Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M900.945 97.3267H905.23V103.31H906.678V97.3267H910.964V82.8745H900.945V97.3267Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M880.606 74.1454H879.157V87.109H874.872V139.077H884.891V87.109H880.606V74.1454Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M887.973 107.384H892.258V120.372H893.706V107.384H897.991V78.3224H887.973V107.384Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M861.772 147.896H871.79V137.88H861.772V147.896Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M854.533 146.822H853.084V161.143H848.8V180.001H858.818V161.143H854.533V146.822Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M828.267 174.078H826.819V178.542H822.534V208.678H832.552V178.542H828.267V174.078Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M835.602 180.001H839.887V189.837H841.335V180.001H845.62V174.078H835.602V180.001Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M809.529 213.451H813.814V223.288H815.262V213.451H819.547V207.528H809.529V213.451Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M796.461 213.451H806.48V201.669H796.461V213.451Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M783.361 230.499H793.379V207.559H783.361V230.499Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M770.453 240.749H774.737V249.417H776.186V240.749H780.471V229.326H770.453V240.749Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M757.224 249.417H761.508V253.91H762.957V249.417H767.242V235.036H757.224V249.417Z' fill='%235E6EB7'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}
.hm-join__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 55%;
  max-width: 555px;
  position: relative;
}
.hm-join__btn {
  width: fit-content;
}
.hm-join__img {
  width: 40%;
  position: relative;
}
.hm-join__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .hm-join__wrap {
    flex-direction: column;
    gap: 16px;
    padding: 32px 20px;
  }
  .hm-join__content {
    width: 100%;
    text-align: center;
  }
  .hm-join__img {
    width: 100%;
  }
  .hm-join__btn {
    margin: 0 auto;
  }
}

.hm-about h2 {
  margin-bottom: 32px;
}
.hm-about__text {
  margin-bottom: 48px;
}
.hm-about__text ul > li, .hm-about__text ol > li {
  font-size: 20px;
}
.hm-about__text ul > li:not(:last-child) {
  margin-bottom: 16px;
}
.hm-about__text strong, .hm-about__text b {
  color: #fff;
}
.hm-about__subtitle {
  margin-bottom: 24px;
}
.hm-about__more {
  display: none;
}
.hm-about__toggle {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.3s ease;
}
.hm-about__toggle:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .hm-about__subtitle {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .hm-about__text {
    margin-bottom: 24px;
  }
  .hm-about__text ul > li, .hm-about__text ol > li {
    font-size: 16px;
  }
  .hm-about__text ul > li:not(:last-child) {
    margin-bottom: 8px;
  }
  .hm-about__text strong, .hm-about__text b {
    color: #fff;
  }
  .hm-about__toggle {
    font-size: 16px;
  }
}

.free {
  background-color: #000A35;
}
.free__wrap {
  position: relative;
}
.free__wrap::before {
  content: "";
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='1305' height='438' viewBox='0 0 1305 438' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.1'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M810.044 191.746V181.992H808.296V191.746H803.128V238.069H815.208V191.746H810.044Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M755.852 232.894H767.933V210.016H755.852V232.894Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M787.485 234.365H792.653V255.636H794.401V234.365H799.566V219.39H787.485V234.365Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M771.689 227.153H783.77V210.016H771.689V227.153Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M740.172 242.446H752.249V215.435H740.172V242.446Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M731.285 176.923H729.54V187.476H724.372V217.149H736.453V187.476H731.285V176.923Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M684.279 210.016H682.534V220.568H677.366V227.785H689.447V220.568H684.279V210.016Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M715.721 164.847H713.973V182.096H708.808V194.173H713.973V199.683H715.721V194.173H720.889V182.096H715.721V164.847Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M700 187.476H698.255V192.416H693.087V222.217H705.168V192.416H700V187.476Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M661.57 222.676H666.735V227.785H668.483V222.676H673.651V220.595H661.57V222.676Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M652.919 192.585H651.171V220.582H646.003V222.662H651.171V232.585H652.919V222.662H658.083V220.582H652.919V192.585Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M630.012 260.757H635.18V267.422H636.925V260.757H642.093V220.556H630.012V260.757Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M614.175 260.88H619.343V265.99H621.091V260.88H626.256V236.316H614.175V260.88Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M598.453 233.161H603.622V244.894H605.37V233.161H610.535V226.001H598.453V233.161Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M558.053 220.595H556.305V225.944H551.14V304.55H556.305V311.548H558.053V304.55H563.221V225.944H558.053V220.595Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M566.861 238.37H572.026V265.99H573.774V238.37H578.939V231.21H566.861V238.37Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.57 220.595H587.825V225.944H582.657V233.161H587.825V260.757H589.57V233.161H594.738V225.944H589.57V220.595Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M456.817 355.365H468.898V315.419H456.817V355.365Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M542.257 282.053H540.509V297.544H535.341V304.761H540.509V321.922H542.257V304.761H547.422V297.544H542.257V282.053Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M519.93 350.187H532.011V297.544H519.93V350.187Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M510.893 315.419H509.145V342.988H503.977V360.618H509.145V370.772H510.893V360.618H516.058V342.988H510.893V315.419Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M425.222 388.276H437.303V342.988H425.222V388.276Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M447.623 276.866H445.879V320.305H440.71V349.854H452.791V320.305H447.623V276.866Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M495.094 336.011H493.349V353.516H488.181V355.365H493.349V370.772H495.094V355.365H500.262V353.516H495.094V336.011Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M479.297 336.011H477.55V348.441H472.385V355.365H477.55V377.971H479.297V355.365H484.462V348.441H479.297V336.011Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M416.338 381.764H414.59V386.689H409.425V393.903H414.59V399.104H416.338V393.903H421.506V386.689H416.338V381.764Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M400.696 359.005H398.948V376.28H393.783V393.903H398.948V399.104H400.696V393.903H405.861V376.28H400.696V359.005Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.862 363.864H320.114V369.391H314.949V387.015H320.114V393.903H321.862V387.015H327.03V369.391H321.862V363.864Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M290.266 369.392H288.518V381.469H283.353V393.903H295.434V381.469H290.266V369.392Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M258.902 343.134H257.158V348.286H251.99V360.721H264.071V348.286H258.902V343.134Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M141.676 388.884H153.757V381.497H141.676V388.884Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M195.984 336.032H194.236V348.286H189.071V388.395H194.236V404.196H195.984V388.395H201.152V348.286H195.984V336.032Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M110.121 399.104H115.289V411.492H117.034V399.104H122.202V353.628H110.121V399.104Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M267.632 378.203H272.8V393.903H274.545V378.203H279.713V353.689H267.632V378.203Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M369.254 353.507H367.509V363.864H362.341V383.389H374.422V363.864H369.254V353.507Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M384.884 376.28H383.136V381.541H377.971V383.389H390.052V381.541H384.884V376.28Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M346.62 360.721H351.788V370.926H353.533V360.721H358.701V358.874H346.62V360.721Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M330.745 378.288H335.913V383.389H337.658V378.288H342.826V348.793H330.745V378.288Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M306.219 363.864H304.471V376.28H299.306V393.903H304.471V399.104H306.219V393.903H311.384V376.28H306.219V363.864Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M173.234 365.947H185.312V348.449H173.234V365.947Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.996 399.104H138.074V381.607H125.996V399.104Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M227.307 336.032H225.562V348.449H220.394V404.196H232.475V348.449H227.307V336.032Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M164.272 358.569H162.524V364.153H157.356V393.994H169.437V364.153H164.272V358.569Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M101.39 336.032H99.6437V343.246H94.4765V350.101H106.557V343.246H101.39V336.032Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M243.182 343.134H241.437V348.286H236.269V350.135H241.437V360.338H243.182V350.135H248.35V348.286H243.182V343.134Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M211.548 370.176H209.8V392.144H204.635V393.994H209.8V399.104H211.548V393.994H216.713V392.144H211.548V370.176Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M85.6699 336.032H83.9233V348.083H78.7561V349.931H83.9233V355.043H85.6699V349.931H90.8368V348.083H85.6699V336.032Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M62.8811 337.952H68.048V345.167H69.7945V337.952H74.9618V320.526H62.8811V337.952Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M38.3542 310H36.6076V325.632H31.4404V388.295H43.5211V325.632H38.3542V310Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M47.2382 350.08H52.4051V365.74H54.1517V350.08H59.3189V315.037H47.2382V350.08Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.6428 398.929H27.7232V386.852H15.6428V398.929Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.91346 397.633H5.1669V414.902H0V437.641H12.0804V414.902H6.91346V397.633Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1251.86 53.864H1250.11V59.3913H1244.95V77.0145H1250.11V83.9032H1251.86V77.0145H1257.03V59.3913H1251.86V53.864Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1220.27 59.3915H1218.52V71.4686H1213.35V83.9034H1225.43V71.4686H1220.27V59.3915Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1188.9 33.1337H1187.16V38.2861H1181.99V50.7211H1194.07V38.2861H1188.9V33.1337Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1071.68 78.8843H1083.76V71.4969H1071.68V78.8843Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1125.98 26.0317H1124.24V38.286H1119.07V78.395H1124.24V94.1956H1125.98V78.395H1131.15V38.286H1125.98V26.0317Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1040.12 89.1044H1045.29V101.492H1047.03V89.1044H1052.2V43.6276H1040.12V89.1044Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1197.63 68.2031H1202.8V83.9034H1204.55V68.2031H1209.71V43.6894H1197.63V68.2031Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1299.25 43.5071H1297.51V53.8643H1292.34V73.3884H1304.42V53.8643H1299.25V43.5071Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1276.62 50.7211H1281.79V60.9255H1283.53V50.7211H1288.7V48.8734H1276.62V50.7211Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1260.75 68.2878H1265.91V73.3884H1267.66V68.2878H1272.83V38.7933H1260.75V68.2878Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1236.22 53.864H1234.47V66.28H1229.31V83.9032H1234.47V89.1042H1236.22V83.9032H1241.38V66.28H1236.22V53.864Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1103.23 55.9472H1115.31V38.4492H1103.23V55.9472Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1056 89.1044H1068.07V71.6067H1056V89.1044Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1157.31 26.0317H1155.56V38.4492H1150.39V94.1956H1162.47V38.4492H1157.31V26.0317Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1094.27 48.5691H1092.52V54.1529H1087.36V83.9943H1099.44V54.1529H1094.27V48.5691Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1031.39 26.0317H1029.64V33.2463H1024.48V40.1007H1036.56V33.2463H1031.39V26.0317Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1173.18 33.1337H1171.44V38.2861H1166.27V40.135H1171.44V50.3384H1173.18V40.135H1178.35V38.2861H1173.18V33.1337Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1141.55 60.1757H1139.8V82.1436H1134.64V83.9943H1139.8V89.1044H1141.55V83.9943H1146.71V82.1436H1141.55V60.1757Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1015.67 26.0317H1013.92V38.0825H1008.76V39.9313H1013.92V45.043H1015.67V39.9313H1020.84V38.0825H1015.67V26.0317Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M992.881 27.9521H998.048V35.1667H999.795V27.9521H1004.96V10.5256H992.881V27.9521Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M968.354 0H966.608V15.6316H961.44V78.2946H973.521V15.6316H968.354V0Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M977.238 40.0794H982.405V55.7402H984.152V40.0794H989.319V5.03662H977.238V40.0794Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M945.643 88.9287H957.723V76.8516H945.643V88.9287Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M936.913 87.6332H935.167V104.902H930V127.641H942.08V104.902H936.913V87.6332Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M905.241 120.499H903.494V125.882H898.327V162.22H910.407V125.882H905.241V120.499Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M914.085 127.641H919.252V139.502H920.999V127.641H926.166V120.499H914.085V127.641Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M882.644 167.976H887.812V179.837H889.558V167.976H894.725V160.833H882.644V167.976Z' fill='%237E8ED6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M866.886 167.976H878.967V153.769H866.886V167.976Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M851.089 188.532H863.169V160.871H851.089V188.532Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M835.523 200.891H840.69V211.344H842.437V200.891H847.604V187.117H835.523V200.891Z' fill='%235E6EB7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M819.571 211.344H824.738V216.761H826.484V211.344H831.651V194.003H819.571V211.344Z' fill='%235E6EB7'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}
.free__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}
.free__item {
  border: 1px solid rgba(115, 120, 132, 0.5);
  border-radius: 24px;
  padding: 48px 34px;
}
.free__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.free__text {
  font-size: 20px;
  color: #BEC2CB;
}
.free__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 48px;
  border-radius: 16px;
  background: linear-gradient(90deg, #FF9811 0%, #FA03A4 100%);
}
.free__title {
  text-align: center;
  margin-bottom: 80px;
}
.free__title span {
  color: #FA03A4;
}
@media screen and (max-width: 1024px) {
  .free__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .free__wrap::before {
    display: none;
  }
  .free__title {
    text-align: center;
    margin-bottom: 32px;
  }
  .free__subtitle {
    font-size: 20px;
    margin: 0 0 16px;
  }
  .free__text {
    font-size: 16px;
  }
  .free__item {
    text-align: center;
    padding: 24px 20px;
  }
  .free__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin: 0 auto 16px;
  }
}

.why-join__wrap {
  display: flex;
  justify-content: space-between;
}
.why-join__list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.why-join__item {
  font-size: 20px;
  color: #BEC2CB;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-join__item::before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.99984 1.66699C5.40817 1.66699 1.6665 5.40866 1.6665 10.0003C1.6665 14.592 5.40817 18.3337 9.99984 18.3337C14.5915 18.3337 18.3332 14.592 18.3332 10.0003C18.3332 5.40866 14.5915 1.66699 9.99984 1.66699ZM13.9832 8.08366L9.25817 12.8087C9.1415 12.9253 8.98317 12.992 8.8165 12.992C8.64984 12.992 8.4915 12.9253 8.37484 12.8087L6.0165 10.4503C5.77484 10.2087 5.77484 9.80866 6.0165 9.56699C6.25817 9.32533 6.65817 9.32533 6.89984 9.56699L8.8165 11.4837L13.0998 7.20033C13.3415 6.95866 13.7415 6.95866 13.9832 7.20033C14.2248 7.44199 14.2248 7.83366 13.9832 8.08366Z' fill='%23FF9811'/%3E%3C/svg%3E");
}
.why-join__title {
  text-align: left;
  margin-bottom: 32px;
}
.why-join__text {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  border-radius: 16px;
  background-color: #192352;
  max-width: 550px;
  padding: 20px;
  margin-bottom: 32px;
}
.why-join__text span {
  color: #FA03A4;
}
.why-join__form .nf-form-fields-required {
  display: none;
}
.why-join__form .nf-field-label *, .why-join__form .ninja-forms-req-symbol {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.why-join__form .nf-form-content input:not([type=submit]) {
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  border: unset;
  padding: 17px 44px 17px 24px;
  color: #fff !important;
  height: auto;
}
.why-join__form .nf-form-content input:not([type=submit])::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.why-join__form .nf-pass.field-wrap .nf-field-element:after {
  top: 5px;
  height: 56px;
}
.why-join__form .nf-form-content input:not([type=submit]):focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.why-join__form .nf-form-cont .nf-form-content input[type=submit] {
  color: #fff;
  background-image: linear-gradient(90deg, #FA03A4 0%, #FF9811 50%, #FA03A4 100%) !important;
  background-size: 200% 100%;
  background-position: left;
  text-align: center;
  border: 0;
  padding: 16px 24px;
  border-radius: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-decoration: unset;
  transition: 0.5s;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.why-join__form .nf-form-cont .nf-form-content input[type=submit]:hover {
  background-position: right;
}
.why-join__form .nf-input-limit {
  margin-top: -2px;
}
.why-join__form nf-fields-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4px 20px;
  max-width: 540px;
}
.why-join__form nf-fields-wrap nf-field:nth-last-of-type(2) {
  grid-column-start: span 2;
}
@media screen and (max-width: 1024px) {
  .why-join__wrap {
    flex-direction: column-reverse;
  }
  .why-join__text {
    max-width: unset;
  }
  .why-join__form nf-fields-wrap {
    max-width: unset;
  }
  .why-join__left {
    margin-top: 24px;
  }
  .why-join__right {
    text-align: center;
  }
  .why-join__right img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .why-join {
    margin-bottom: 50px;
  }
  .why-join__form nf-fields-wrap {
    grid-template-columns: 1fr;
  }
  .why-join__form nf-fields-wrap nf-field:nth-last-of-type(2) {
    grid-column-start: unset;
  }
  .why-join__text {
    font-size: 18px;
  }
  .why-join__item {
    font-size: 18px;
  }
}

/*# sourceMappingURL=homepage-2025.css.map */
