.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;
  }
}

.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-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 */
