@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;900&display=swap");
.header {
  display: flex;
  align-items: center;
  background: linear-gradient(273.58deg, #FFD44A 54.59%, rgba(255, 247, 67, 0.94) 96.66%);
  padding: 16.5px;
}
.header__logo {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.header__wrapper {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: 0 !important;
}
.header__menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header__language {
  width: 72px;
  padding: 8px;
}
@media screen and (max-width: 1200px) {
  .header__container {
    max-width: 100% !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
    margin-right: auto !important;
  }
  .header__logo {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .header {
    padding: 16px 5px;
  }
}

.menu {
  display: flex;
  align-items: center;
}
.menu__item {
  margin-right: 22px;
}
.menu__item:last-child {
  margin-right: 0;
}
.menu__item_telegram {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.menu__item_contact {
  margin-right: 14px;
}
.menu__link {
  position: relative;
  color: #000000;
  padding: 10px 5px;
}
.menu__link:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 5px;
  background-color: #181818;
  transition: width 0.2s ease-in-out;
}
.menu__link:hover:after {
  width: calc(100% - 10px);
}
.menu__actions {
  display: flex;
  align-items: center;
}
.menu__actions .link {
  margin-right: 15px;
  font-size: 14px;
}
.menu__divider {
  position: relative;
  margin-left: 20px;
  display: flex;
}
.menu__divider:after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1200px) {
  .menu {
    position: fixed;
    flex-direction: column;
    top: 0;
    right: 0;
    height: 100vh;
    width: 240px;
    padding: 20px;
    background-color: #515151;
    overflow-y: auto;
    z-index: 99;
    transform: translateX(101%);
    transition: transform 0.2s ease-in-out;
  }
  .menu.active {
    transform: translateX(0);
  }
  .menu__item {
    margin-right: 0;
  }
  .menu__item_telegram {
    margin-top: 20px;
  }
  .menu__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    order: -1;
    margin-top: 15px;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
  }
  .menu__actions a {
    width: 100%;
  }
  .menu__actions .link {
    padding: 8px 15px;
    color: #FFFFFF;
    border-radius: 1600px;
    border: 1px solid #FFFFFF;
    margin-bottom: 15px;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  }
  .menu__actions .link:hover {
    color: #000000;
    background-color: #FFFFFF;
    text-decoration: none;
  }
  .menu__link {
    width: 100%;
    padding: 12px 5px;
    text-align: center;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .menu__link:after {
    display: none;
  }
  .menu__divider {
    margin-left: 0;
  }
  .menu__divider:after {
    display: none;
  }
}

.menu-icon {
  display: none;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media screen and (max-width: 1200px) {
  .menu-icon {
    display: block;
  }
}

.mobile-btn {
  display: none;
  margin-left: auto;
  margin-right: 16px;
  padding: 5px 13px !important;
}
@media screen and (max-width: 1200px) {
  .mobile-btn {
    display: block;
  }
}

.language {
  margin-left: 28px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.language__value {
  margin-left: 8px;
  white-space: nowrap;
  color: #777;
  font-weight: 700;
  text-decoration: underline;
}
.language__dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFFFFF;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 99;
}
.language__dropdown.active {
  display: block;
}
.language__dropdown-item {
  display: flex;
  align-items: center;
  width: 85px;
  padding: 8px;
  transition: background-color 0.15s ease-in-out;
}
.language__dropdown-item .language__value {
  font-weight: 400;
  color: #212529;
  text-decoration: none;
}
.language__dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.language__dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.language__dropdown-item:first-child .language__value {
  font-weight: 700;
}
.language__dropdown-item:hover {
  background-color: #e7e7e7;
}
@media screen and (max-width: 1200px) {
  .language {
    display: none;
  }
}

.mobile-language {
  display: none;
  align-items: center;
  align-self: flex-start;
  padding: 5px;
  order: -2;
}
.mobile-language .language__value {
  color: #FFFFFF;
}
@media screen and (max-width: 1200px) {
  .mobile-language {
    display: flex;
  }
}

.mobile-dropdown {
  order: -2;
  align-self: flex-start;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.mobile-dropdown__item {
  display: flex;
  align-items: center;
  width: 85px;
  padding: 5px;
}
.mobile-dropdown__item .language__value {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
}
@media screen and (min-width: 1201px) {
  .mobile-dropdown {
    display: none;
  }
}

.overlay {
  opacity: 0;
  width: 0;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease-in-out;
}
.overlay.active {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.footer {
  padding: 55px 0;
  background-color: #000000;
  color: #FFFFFF;
}
.footer__upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer__links {
  margin-top: 50px;
  display: flex;
  font-size: 20px;
  flex-wrap: wrap;
}
.footer__links-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5px;
}
.footer__group-title {
  color: #808080;
  margin-bottom: 20px;
}
.footer__link {
  width: fit-content;
  padding: 8px 0;
  color: #FFFFFF;
  font-weight: 300;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__appstore {
  text-align: right;
}
.footer__googleplay {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: right;
}
.footer__raiting {
  position: relative;
  width: 130px;
  height: 130px;
  align-self: flex-end;
}
.footer__raiting iframe {
  position: absolute;
  transform: scale(0.5);
  transform-origin: 0 0;
}
.footer__info {
  display: flex;
  color: #808080;
  margin: 35px 0;
}
.footer__comp {
  flex: 1;
  padding: 5px;
}
.footer__alert {
  flex: 3;
  padding: 5px;
}
.footer__policy {
  display: flex;
}
.footer__policy-link {
  flex: 1;
  color: #808080;
  padding: 5px;
}
.footer__policy-link:hover {
  text-decoration: underline;
}
.footer__copyright {
  flex: 2;
  text-align: right;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .footer__socials {
    margin-top: 25px;
  }
  .footer__links-group {
    flex-basis: 50%;
    margin-bottom: 30px;
  }
  .footer__appstore {
    text-align: left;
  }
  .footer__googleplay {
    text-align: left;
  }
  .footer__raiting {
    align-self: flex-start;
  }
  .footer__info {
    flex-wrap: wrap;
  }
  .footer__comp, .footer__alert {
    flex-basis: 100%;
  }
  .footer__alert {
    margin-top: 20px;
  }
  .footer__policy {
    flex-wrap: wrap;
  }
  .footer__policy-link {
    flex-basis: 25%;
  }
  .footer__copyright {
    flex-basis: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 576px) {
  .footer__links-group {
    flex-basis: 100%;
  }
  .footer__policy-link {
    flex-basis: 100%;
    margin-bottom: 7px;
  }
}

.socials {
  display: flex;
  align-items: center;
}
.socials__links {
  display: flex;
  align-items: flex-end;
}
.socials__link {
  margin-left: 20px;
}
@media screen and (max-width: 576px) {
  .socials h2 {
    font-size: 20px;
  }
  .socials__link {
    margin-left: 15px;
  }
}

.btn {
  border: none;
  outline: none;
  background-color: #181818;
  padding: 10px 25px;
  font-size: 23px;
  font-weight: 700;
  min-width: 205px;
  color: #FFFFFF;
  border-radius: 1600px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}
.btn_light {
  padding: 7.5px 17px;
  font-weight: 400;
  min-width: auto;
  font-size: 14px;
}
.btn_small {
  padding: 5px 12px;
  font-size: 12px;
}
.btn:hover {
  background-color: #0E5A90;
}

.link {
  text-decoration: none;
  color: #181818;
}
.link:hover {
  text-decoration: underline;
  color: #0E5A90;
}

.cookie-banner {
  background-color: #181818;
  padding: 15px;
}
.cookie-banner__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-banner__text {
  color: #FFFFFF;
  font-size: 14px;
}
.cookie-banner__text a {
  color: #FFFFFF;
  font-weight: 700;
}
.cookie-banner__text a:hover {
  text-decoration: underline;
}
.cookie-banner__btn {
  background-color: #FFFFFF;
  padding: 7.5px 25px;
  border-radius: 50px;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
  margin-left: 15px;
}
.cookie-banner__btn:hover {
  background-color: #e2e6ea;
}
@media screen and (max-width: 576px) {
  .cookie-banner__text {
    font-size: 13px;
  }
}

.sale-banner {
  position: fixed;
  bottom: 0;
  left: -1px;
  z-index: 99999999999;
  width: calc(100% + 2px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.1);
  height: 60px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, input, button {
  font-family: "Nunito Sans", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

input, textarea, button, select, a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.load * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

a {
  text-decoration: none;
  color: #181818;
}

button {
  border: none;
  outline: none;
  background: none;
  font-size: 14px;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.main__intro {
  position: relative;
  background: linear-gradient(273.58deg, #FFD44A 54.59%, rgba(255, 247, 67, 0.94) 96.66%);
}
.main__intro:after, .main__intro:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  background: linear-gradient(to right, #ffee45, #fece42 45%);
}
.main__intro:after {
  top: 0;
  bottom: 75%;
}
.main__intro:before {
  top: 50%;
  bottom: 25%;
}

.intro {
  overflow: hidden;
}
.intro__container {
  position: relative;
  padding: 60px 0 154px;
}
.intro__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 550px;
  z-index: 1;
}
.intro__description {
  margin: 50px 0 60px;
  font-size: 18px;
}
.intro__btn {
  width: fit-content;
  text-align: center;
}
.intro__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .intro__image {
    width: 508px;
    height: 437px;
    right: -90px;
  }
}
@media screen and (max-width: 992px) {
  .intro__image {
    right: -80px;
    width: 400px;
    height: 345px;
  }
  .intro__description {
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .intro__container {
    padding-top: 20px;
  }
  .intro__image {
    width: 332px;
    height: 286px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .intro__info {
    max-width: 100%;
    margin-bottom: 150px;
    text-align: center;
    align-items: center;
    padding: 0 15px;
  }
  .intro__description {
    max-width: 100%;
    margin: 30px 0;
  }
}

.how-to {
  padding: 60px 0;
}
.how-to__container {
  display: flex;
  flex-direction: column;
}
.how-to__title {
  text-align: center;
}
.how-to__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 50px 0;
}
.how-to__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 30px;
}
.how-to__item:nth-child(1) img {
  top: -10px;
  right: -40px;
}
.how-to__item:nth-child(2) img {
  top: -35px;
  right: -18px;
}
.how-to__item:nth-child(3) img {
  top: 20px;
  right: -15px;
}
.how-to__item:nth-child(4) img {
  top: 10px;
  right: -25px;
}
.how-to__item-text {
  color: #676767;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
.how-to__item-image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #E5F1FB;
}
.how-to__item-image img {
  position: absolute;
  width: 90px;
  height: auto;
}
@media screen and (max-width: 992px) {
  .how-to__item {
    flex-basis: 50%;
  }
  .how-to__item:nth-child(-n+2) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .how-to__item {
    flex-direction: row;
    flex-basis: 100%;
    margin-bottom: 40px;
    text-align: left;
    padding: 0;
  }
  .how-to__item:nth-child(1) img {
    top: -5px;
    right: -20px;
  }
  .how-to__item:nth-child(2) img {
    top: -25px;
    right: -15px;
  }
  .how-to__item:nth-child(3) img {
    top: 15px;
  }
  .how-to__item:nth-child(4) img {
    top: 10px;
    right: -15px;
  }
  .how-to__item-text {
    margin-top: 0;
    margin-left: 30px;
    font-size: 16px;
    color: #000000;
  }
  .how-to__item-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
  }
  .how-to__item-image img {
    width: 65px;
  }
}

.polygon-trading {
  padding: 50px 0 70px;
  background-color: #f5f5f5;
}
.polygon-trading__title {
  margin-bottom: 50px;
  text-align: center;
}

.exchanges {
  padding: 100px 0;
}
.exchanges__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.exchanges__info {
  max-width: 410px;
}
.exchanges__description {
  margin: 50px 0 30px;
}
.exchanges__links .link {
  display: block;
  margin-bottom: 10px;
}
.exchanges__items {
  display: flex;
  flex-direction: column;
}
.exchanges__items .row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}
.exchanges__items .row:nth-child(2) {
  margin-left: -80px;
}
.exchanges__items .row:nth-child(3) {
  margin-left: -160px;
  margin-bottom: 0;
}
.exchanges__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 80px;
  border-radius: 15px;
  border: 2px solid #000000;
  margin-left: 30px;
}
.exchanges__item:hover:after {
  transform: translate(8px, 8px);
}
.exchanges__item:after {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
}
.exchanges__item_binance:after {
  background-color: #FFF5D1;
}
.exchanges__item_okex:after {
  background-color: #E9ECF6;
}
.exchanges__item_coinbase:after {
  background-color: #EDF9FA;
}
.exchanges__item_huobi:after {
  background-color: #DDE8F1;
}
.exchanges__item_futures:after {
  background-color: #FFF3DC;
}
.exchanges__item_hitbtc:after {
  background-color: #E5F1FB;
}
.exchanges__item_ftx:after {
  background-color: #D7F1FA;
}
.exchanges__item_bybit:after {
  background-color: #D9D9D9;
}
.exchanges__item_kraken:after {
  background-color: #DCCCEA;
}
.exchanges__item_xgo:after {
  background-color: #D5EACC;
}
@media screen and (max-width: 1200px) {
  .exchanges__items .row {
    margin-bottom: 25px;
  }
  .exchanges__items .row:nth-child(2) {
    margin-left: -60px;
  }
  .exchanges__items .row:nth-child(3) {
    margin-left: -120px;
  }
  .exchanges__item {
    width: 120px;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #000000;
    margin-left: 25px;
  }
  .exchanges__item img, .exchanges__item svg {
    transform: scale(0.7);
  }
  .exchanges__item:after {
    border-radius: 10px;
    left: -6px;
    top: -6px;
  }
}
@media screen and (max-width: 992px) {
  .exchanges__container {
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
  }
  .exchanges__title {
    text-align: center;
  }
  .exchanges__info {
    max-width: 100%;
  }
  .exchanges__items {
    margin-top: 50px;
  }
  .exchanges__items .row:nth-child(1) {
    margin-left: 0;
  }
  .exchanges__items .row:nth-child(2) {
    margin-left: 0;
  }
  .exchanges__items .row:nth-child(3) {
    margin-left: 0;
  }
  .exchanges__item:first-child {
    margin-left: 0;
  }
  .exchanges__item_okex, .exchanges__item_futures, .exchanges__item_bybit {
    margin-top: -50px;
  }
  .exchanges__item_xgo {
    position: absolute;
    left: calc(50% - 85px);
    top: 60px;
  }
}
@media screen and (max-width: 576px) {
  .exchanges__items .row {
    margin-bottom: 20px;
  }
  .exchanges__item {
    width: 85px;
    height: 55px;
    margin-left: 20px;
  }
  .exchanges__item_xgo {
    top: 50px;
    left: calc(50% - 62.5px);
  }
  .exchanges__item img {
    transform: scale(0.5);
  }
}

.strategy {
  padding: 0 0 100px;
}
.strategy__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strategy__title {
  text-align: center;
}
.strategy__subtitle {
  margin: 50px 0 20px;
  text-align: center;
}
.strategy__images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.strategy__image {
  max-width: 403px;
  margin-right: 90px;
}
.strategy__image:last-child {
  margin-right: 0;
}
.strategy__image p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.strategy__image p span.green-decor {
  color: #0c9e5d;
}
.strategy__image p span.red-decor {
  color: #c02c4a;
}
.strategy__btn {
  margin-top: 30px;
}
@media screen and (max-width: 992px) {
  .strategy__images {
    flex-direction: column;
  }
  .strategy__image {
    margin-right: 0;
  }
  .strategy__image img {
    width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=empty.min.css.map */
