html {
  height: 100%;
  color: #1B1B1B;
}

body {
  background-color: #1B1B1B;
  position: relative;
  font-family: OpenSans;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  color: #fff;
  letter-spacing: normal;
}

.texture {
  background: url("../../img/texture.png");
  background-position: center;
  background-size: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

._lock {
  overflow: hidden;
}

.darkness {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: none;
  -webkit-animation: appear 0.5s;
  animation: appear 0.5s;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 50px;
}

.page {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.title {
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 400;
  font-family: SF Pro Display;
  color: #fff;
}

.goldenTitle {
  background: -webkit-linear-gradient(359.12deg, #ECD06F 4.47%, #2E2E2F 104.65%);
  background: linear-gradient(90.88deg, #ECD06F 4.47%, #2E2E2F 104.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-family: SF Pro Display;
}

.text {
  font-family: "OpenSans";
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  padding-left: 17px;
}
.text::before {
  content: "";
  position: absolute;
  width: 1px;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #ECD06F;
  opacity: 0.8;
  box-shadow: 0px 0px 6px rgba(254, 214, 54, 0.5);
}

.btn {
  display: block;
  cursor: pointer;
  padding: 11px 55px;
  background-color: #131313;
  text-align: center;
  font-family: SF Pro Display;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 12px;
  box-shadow: 0px 0px 9px #ECD06F;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #fff;
}
.btn .icon path {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.btn:hover {
  background-color: #ECD06F;
  color: #131313;
  box-shadow: 0px 0px 15px #ECD06F;
}
.btn:hover .icon path {
  fill: #131313;
}

.socials {
  position: fixed;
  bottom: 150px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 16px;
}
.socials img {
  cursor: pointer;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.socials img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.circle {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 1480px;
  height: 1480px;
  max-width: 1480px;
  max-height: 1480px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 4px 0px 250px rgba(236, 208, 111, 0.6);
  opacity: 0.2;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  right: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeoff {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeoff {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
[class*=__container] {
  max-width: 1120px;
  margin: 0px auto;
  position: relative;
}
[class*=__container]::before {
  display: none;
  content: "";
  position: absolute;
  width: 100%;
  height: 200%;
  top: -150px;
  left: 0;
  opacity: 0.1;
  border-left: 1px solid #ECD06F;
  border-right: 1px solid #ECD06F;
  box-shadow: 0px 0px 9px rgba(254, 214, 54, 0.6);
}

@media (max-width: 1199.98px) {
  [class*=__container] {
    max-width: 970px;
  }
}
@media (max-width: 990.98px) {
  [class*=__container] {
    max-width: 750px;
  }
}
@media (max-width: 768.98px) {
  [class*=__container] {
    padding-left: 15px;
    padding-right: 15px;
    max-width: none;
  }
}
.header {
  z-index: 1;
  width: 100%;
  z-index: 9999;
}
.header__container {
  position: relative;
  min-height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  padding-right: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.header__logo img {
  width: 136px;
  height: 42px;
}
.header__button {
  border: 1px solid #fff;
  color: #fff;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*-moz-column-gap: 26px;*/
  /*-webkit-column-gap: 26px;*/
  /*column-gap: 26px;*/
  /*row-gap: 10px;*/
}
.menu__item {
  margin-right: 26px !important;
}
.menu__link {
  color: #fff;
  -webkit-transition: color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  font-size: 16px;
  font-weight: 400;
}
.menu__item:last-child {
  margin-right: 0 !important;
}
.menu__link:hover {
  color: #ECD06F;
}

.active {
  color: #ECD06F;
}

.burgrer {
  position: absolute;
  right: 5px;
  top: 19%;
}

@media (max-width: 768.98px) {
  .header__container {
    padding-right: 60px;
  }
  body.lock {
    overflow: hidden;
  }
  .header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    z-index: 99px;
  }
  .header__button {
    margin-right: 20px;
  }
  .header__burger {
    margin: 10px 10px;
    display: block;
    position: relative;
    width: 40px;
    height: 30px;
  }
  .header__burger::before, .header__burger::after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
  }
  .header__burger::before {
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__burger::after {
    bottom: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__burger span {
    position: absolute;
    background-color: #fff;
    left: 0;
    width: 100%;
    height: 2px;
    top: 13.5px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__burger.active-burger::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 13.5px;
  }
  .header__burger.active-burger::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 13.5px;
  }
  .header__burger.active-burger span {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  .header__menu {
    background-color: #1B1B1B;
    overflow: auto;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    padding-top: 30%;
  }
  .header__menu.active-burger {
    top: 0;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    row-gap: 60px;
  }
  .menu__link {
    font-size: 26px;
  }
}
.choice {
  margin-top: 135px;
  position: relative;
  padding-bottom: 150px;
}
.choice__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -moz-column-gap: 234px;
  -webkit-column-gap: 234px;
  column-gap: 234px;
}
.choice__circle {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 1480px;
  height: 1480px;
  max-width: 1480px;
  max-height: 1480px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 4px 0px 250px rgba(236, 208, 111, 0.6);
  opacity: 0.2;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.choice__scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  right: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  -webkit-animation: updown 1s ease-in-out 1s infinite alternate;
  animation: updown 1s ease-in-out 1s infinite alternate;
}
@-webkit-keyframes updown {
  0% {
    bottom: 50px;
  }
  100% {
    bottom: 60px;
  }
}
@keyframes updown {
  0% {
    bottom: 50px;
  }
  100% {
    bottom: 60px;
  }
}

.mirror {
  position: absolute;
  top: -200px;
  opacity: 0.4;
  z-index: -1;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.mirror-left {
  left: -50px;
}

.mirror-right {
  top: -140px;
  right: -100px;
}

.choice-title {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 900;
  font-size: 64px;
  line-height: 76px;
  color: #FFFFFF;
  letter-spacing: 1.2px;
  position: absolute;
  z-index: 99;
  text-transform: uppercase;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.terminal-choice {
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  cursor: pointer;
  position: relative;
}
.terminal-choice__title {
  top: 60px;
  left: 55px;
}
.terminal-choice__image {
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  height: 500px;
}

.exchange-choice {
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  cursor: pointer;
  position: relative;
}
.exchange-choice__title {
  top: 60px;
  left: -58px;
}
.exchange-choice__image {
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.active-link {
  color: #ECD06F;
}

@media (max-width: 1199.98px) {
  .mirror {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  .mirror-left {
    left: -150px;
  }
  .mirror-right {
    right: -100px;
  }
  .choice-image {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  .choice-title {
    font-size: 50px;
  }
}
@media (max-width: 990.98px) {
  .choice__container {
    -moz-column-gap: 150px;
    -webkit-column-gap: 150px;
    column-gap: 150px;
  }
  .choice__circle {
    top: -80%;
    width: 1000px;
    height: 1000px;
  }
  .choice-title {
    font-size: 40px;
  }
  .mirror-left {
    top: -260px;
  }
  .mirror-right {
    top: -200px;
  }
}
@media (max-width: 768.98px) {
  .choice {
    margin-top: 50px;
  }
  .choice__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 80px;
  }
  .choice__circle {
    display: none;
  }
  .choice__scroll {
    bottom: -50px;
  }
  @-webkit-keyframes updown {
    0% {
      bottom: -50px;
    }
    100% {
      bottom: -40px;
    }
  }
  @keyframes updown {
    0% {
      bottom: -50px;
    }
    100% {
      bottom: -40px;
    }
  }
  .choice-image {
    width: 300px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .mirror-left {
    top: -100px;
    width: 400px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .mirror-right {
    top: 400px;
    left: 40%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .choice-title {
    font-size: 40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@media (max-width: 479.98px) {
  .choice-image {
    width: 240px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .choice-title {
    font-size: 30px;
    left: 50%;
  }
}
.buysell {
  padding-top: 120px;
  padding-bottom: 150px;
}
.buysell:not(.exchange-page) {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.buysell__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
  -moz-column-gap: 80px;
  -webkit-column-gap: 80px;
  column-gap: 80px;
}

.description-buysell__title {
  margin-bottom: 20px;
}
.description-buysell__text {
  max-width: 500px;
  padding-left: 17px;
  position: relative;
}

@media (max-width: 990.98px) {
  .buysell__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 100px;
  }
}
@media (max-width: 768.98px) {
  .description-buysell__title {
    font-size: 30px;
  }
  .description-buysell__text {
    font-size: 16px;
  }
  .buysell {
    padding-bottom: 100px;
  }
}
.find {
  padding-top: 194px;
  padding-bottom: 150px;
  position: relative;
}
.find:not(.terminal-page) {
  background-color: #2E2E2F;
  -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}
.find.exchange-page {
  -webkit-clip-path: none;
  clip-path: none;
}
.find__bg-image {
  position: absolute;
  top: 50px;
  left: -650px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  max-width: 924px;
  max-height: 806px;
  -webkit-transform: matrix(-0.99, -0.16, -0.16, 0.99, 0, 0);
  transform: matrix(-0.99, -0.16, -0.16, 0.99, 0, 0);
  opacity: 0.2;
}
.find__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -moz-column-gap: 50px;
  -webkit-column-gap: 50px;
  column-gap: 50px;
  padding: 0 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.find__image {
  max-width: 352px;
  max-height: 536px;
}
.description-find {
  max-width: 500px;
}
.description-find__title {
  font-size: 64px;
  line-height: 100%;
  font-weight: 700;
}
.description-find__title .goldenTitle {
  font-weight: 700;
}
.description-find__subtitle {
  margin-bottom: 10px;
  font-size: 38px;
}
.description-find__text {
  margin-bottom: 30px;
}
.description-find__button {
  max-width: 186px;
  font-weight: 900;
}

@media (max-width: 990.98px) {
  .find__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 100px;
  }
  .find__image {
    max-width: 280px;
  }
  .find__bg-image {
    top: 400px;
    left: -500px;
    max-width: 704px;
  }
  .description-find__title {
    font-size: 50px;
  }
  .description-find__subtitle {
    font-size: 30px;
  }
  .description-find__text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .description-find__button {
    max-width: 100%;
  }
}
@media (max-width: 768.98px) {
  .find__image {
    width: 230px;
  }
}
.help {
  padding-bottom: 100px;
  position: relative;
}
.help:not(.terminal-page) {
  padding-bottom: 190px;
  background-color: #2E2E2F;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 86%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 86%);
}
.help.exchange-page {
  padding-top: 100px;
  background-color: #1B1B1B;
  padding-bottom: 100px;
}
.help.exchange-page .help__gradient {
  top: 100px;
}
.help__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
  -moz-column-gap: 150px;
  -webkit-column-gap: 150px;
  column-gap: 150px;
}
.help__image {
  max-width: 527px;
  max-height: 522px;
}
.help__image img {
  width: 100%;
  height: 100%;
}
.help__gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 652px;
  height: 453px;
  z-index: -1;
  background: -webkit-linear-gradient(133.67deg, #ECD06F -79.76%, #2E2E2F 86.89%, rgba(0, 0, 0, 0));
  background: linear-gradient(316.33deg, #ECD06F -79.76%, #2E2E2F 86.89%, rgba(0, 0, 0, 0));
}

.description-help {
  max-width: 514px;
}
.description-help__title {
  font-size: 40px;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 20px;
}
.description-help__title span {
  font-weight: 900;
}
.description-help__text {
  margin-bottom: 35px;
}
.description-help__button {
  max-width: 354px;
  font-weight: 700;
  color: #ECD06F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.description-help__button .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.cards__item.item-cards.description-help__button {
  position: relative;
  max-width: 352px;
  height: 48px;
  font-weight: 700;
  color: #ECD06F;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  padding: 11px 55px 11px 55px;
}
.cards__item.item-cards.description-help__button .preview-card {
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ECD06F;
}
.cards__item.item-cards.description-help__button .item-cards__question {
  color: #ECD06F;
}
.cards__item.item-cards.description-help__button .item-cards__answer {
  -ms-grid-column-align: center;
  justify-self: center;
  font-size: 20px;
  color: #ECD06F;
}

@media (max-width: 1199.98px) {
  .help__gradient {
    width: 432px;
    height: 341px;
  }
}
@media (max-width: 990.98px) {
  .help.exchange-page .help__gradient {
    top: 546px;
  }
  .help:not(.terminal-page) {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%);
  }
  .help__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 80px;
  }
  .help__gradient {
    height: 380px;
    width: 460px;
    top: 445px;
  }
  .help__image {
    max-width: 400px;
  }
  .description-help__button {
    max-width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 768.98px) {
  .description-help__title {
    font-size: 35px;
  }
  .description-help .btn {
    padding: 11px 5px;
  }
  .description-help__button {
    font-size: 16px;
  }
  .help:not(.terminal-page) {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
  }
  .help__image {
    width: 350px;
  }
  .help__gradient {
    width: 430px;
    height: 320px;
  }
}
.footer {
  padding-top: 100px;
  padding-bottom: 200px;
  height: 300px;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 50px;
}
.footer__langs {
  font-family: OpenSans;
  font-weight: 300;
}
.footer__langs span {
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}
.footer__langs span:hover {
  color: #ECD06F;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 10px;
}
.footer-list__link {
  font-family: OpenSans;
  font-weight: 300;
  color: #fff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.footer-list__link:hover {
  color: #ECD06F;
}
.footer-list .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-list .social-link svg path {
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.footer-list .social-link:hover svg path {
  fill: #ECD06F;
}

@media (max-width: 1199.98px) {
  .footer {
    padding-top: 60px;
  }
  .footer__container {
    -moz-column-gap: 100px;
    -webkit-column-gap: 100px;
    column-gap: 100px;
    row-gap: 50px;
  }
}
@media (max-width: 990.98px) {
  .footer {
    padding-top: 60px;
    height: 450px;
  }
  .footer__container {
    -moz-column-gap: 100px;
    -webkit-column-gap: 100px;
    column-gap: 100px;
    row-gap: 70px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 768.98px) {
  .footer {
    padding-top: 60px;
    height: 540px;
  }
  .footer__container {
    padding: 0 100px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 30px auto;
    grid-template-columns: 2fr auto;
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
  }
  .footer-list__link {
    font-size: 16px;
  }
}
@media (max-width: 479.98px) {
  .footer-list__link {
    font-size: 14px;
  }
  .footer {
    padding-top: 60px;
    height: 540px;
  }
  .footer__container {
    padding: 0 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr auto;
    grid-template-columns: 2fr auto;
  }
}
.howto {
  font-family: "SF Pro Display";
  margin-top: 90px;
  padding-top: 100px;
  padding-bottom: 245px;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 94%, 0 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 94%, 0 100%);
  background-color: #2E2E2F;
}
.howto__button {
  margin: 38px auto;
  max-width: 216px;
  margin-bottom: 100px;
  padding-left: 5px;
  padding-right: 5px;
}
.howto__map {
  box-shadow: 4px 0px 150px rgba(236, 208, 111, 0.15);
  border: none;
  border-radius: 12px;
}

.schedule-howto__title {
  font-style: normal;
  font-weight: 500;
  font-size: 38px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 45px;
}

.body-schedule {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 115px 2fr;
  grid-template-columns: 2fr 2fr;
  -moz-column-gap: 115px;
  -webkit-column-gap: 115px;
  column-gap: 115px;
  row-gap: 80px;
}

.item-schedule__title {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 16px;
}
.item-schedule__subtitle {
  font-weight: 700;
  font-size: 19.5px;
  line-height: 23px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 26px;
}
.item-schedule__subtitle::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: 16px 20px;
}
.item-schedule .hours-icon::before {
  top: 1px;
  background-image: url(../../img/svg/hours.svg);
}
.item-schedule .address-icon::before {
  top: 2px;
  background-image: url(../../img/svg/location.svg);
}
.item-schedule .call-icon::before {
  top: 3px;
  background-image: url(../../img/svg/call.svg);
}
.item-schedule__text {
  font-weight: 200;
  font-size: 19.5px;
  line-height: 23px;
  margin-bottom: 15px;
  font-weight: 300;
}

.tel {
  color: #ECD06F;
}
.tel:hover {
  text-decoration: underline;
}

@media (max-width: 990.98px) {
  .item-schedule__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 16px;
  }
  .item-schedule__subtitle {
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 26px;
  }
  .item-schedule__text {
    font-size: 15px;
    font-weight: 400;
  }
}
@media (max-width: 768.98px) {
  .howto {
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 98%, 0 100%);
    clip-path: polygon(0% 0%, 100% 0, 100% 98%, 0 100%);
    padding-bottom: 100px;
  }
  .howto__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .howto__map {
    width: 80%;
    height: 400px;
  }
  .howto__button {
    min-width: 80%;
  }
  .body-schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 80px;
  }
  .item-schedule__text {
    max-width: 400px;
  }
  .item-schedule__title {
    font-size: 20px;
  }
  .schedule-howto__title {
    font-size: 30px;
  }
}
.exchange-bg {
  -webkit-clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%);
  background-color: #2E2E2F;
}

.moneypig {
  padding-top: 250px;
  background-color: #2E2E2F;
  padding-bottom: 100px;
}
.moneypig__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -moz-column-gap: 56px;
  -webkit-column-gap: 56px;
  column-gap: 56px;
}
.moneypig__pigs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-column-gap: 21px;
  -webkit-column-gap: 21px;
  column-gap: 21px;
  row-gap: 24px;
  max-width: 680px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.moneypig__pigs img {
  width: 200px;
  height: 200px;
}

.description-moneypig {
  max-width: 415px;
}
.description-moneypig__title {
  font-weight: 900;
  font-size: 38px;
  line-height: 45px;
}
.description-moneypig__text {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
  .moneypig__pigs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    -webkit-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .moneypig__pigs img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 990.98px) {
  .moneypig__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .moneypig__pigs {
    max-width: 500px;
  }
}
@media (max-width: 768.98px) {
  .moneypig {
    padding-top: 100px;
    padding-bottom: 0px;
  }
  .moneypig__pigs {
    max-width: 500px;
  }
  .moneypig__pigs img {
    width: 130px;
    height: 130px;
  }
  .exchange-bg {
    -webkit-clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
  }
}
.education {
  z-index: 999;
  text-align: center;
  font-family: "SF Pro Display";
  text-transform: uppercase;
  position: relative;
}
.education__mirror {
  position: absolute;
  top: -300px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.education__title {
  font-weight: 900;
  font-size: 56px;
  line-height: 101.84%;
  margin-bottom: 15px;
  margin-top: 235px;
}
.education__text {
  margin: 0 auto;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  max-width: 670px;
}
.education__circle {
  top: -1000px;
}
.education__scroll {
  position: relative;
  -webkit-transform: translate(-50%, 250px);
  transform: translate(-50%, 250px);
  -webkit-animation: upndown 1s ease-in-out 1s infinite alternate;
  animation: upndown 1s ease-in-out 1s infinite alternate;
}
@-webkit-keyframes upndown {
  0% {
    -webkit-transform: translate(-50%, 250px);
    transform: translate(-50%, 250px);
  }
  100% {
    -webkit-transform: translate(-50%, 260px);
    transform: translate(-50%, 260px);
  }
}
@keyframes upndown {
  0% {
    -webkit-transform: translate(-50%, 250px);
    transform: translate(-50%, 250px);
  }
  100% {
    -webkit-transform: translate(-50%, 260px);
    transform: translate(-50%, 260px);
  }
}

@media (max-width: 768.98px) {
  .education__mirror {
    position: absolute;
    top: -100%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .education__title {
    font-weight: 900;
    font-size: 47px;
    line-height: 101.84%;
    margin-bottom: 15px;
    margin-top: 150px;
  }
  .education__text {
    margin: 0 auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    max-width: 670px;
  }
  .education__circle {
    top: -1100px;
  }
  .education__scroll {
    -webkit-transform: translate(-50%, 170px);
    transform: translate(-50%, 170px);
  }
  @-webkit-keyframes upndown {
    0% {
      -webkit-transform: translate(-50%, 170px);
      transform: translate(-50%, 170px);
    }
    100% {
      -webkit-transform: translate(-50%, 180px);
      transform: translate(-50%, 180px);
    }
  }
  @keyframes upndown {
    0% {
      -webkit-transform: translate(-50%, 170px);
      transform: translate(-50%, 170px);
    }
    100% {
      -webkit-transform: translate(-50%, 180px);
      transform: translate(-50%, 180px);
    }
  }
}
@media (max-width: 479.98px) {
  .education__scroll {
    -webkit-transform: translate(-50%, 120px);
    transform: translate(-50%, 120px);
  }
  @-webkit-keyframes upndown {
    0% {
      -webkit-transform: translate(-50%, 120px);
      transform: translate(-50%, 120px);
    }
    100% {
      -webkit-transform: translate(-50%, 130px);
      transform: translate(-50%, 130px);
    }
  }
  @keyframes upndown {
    0% {
      -webkit-transform: translate(-50%, 120px);
      transform: translate(-50%, 120px);
    }
    100% {
      -webkit-transform: translate(-50%, 130px);
      transform: translate(-50%, 130px);
    }
  }
}
.galery {
  padding-top: 450px;
  padding-bottom: 150px;
}
.galery__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-column-gap: 45px;
  -webkit-column-gap: 45px;
  column-gap: 45px;
  row-gap: 132px;
}
.item-galery {
  max-width: 444px;
}
.item-galery__video {
  cursor: pointer;
  margin-bottom: 16px;
}
.item-galery__title {
  cursor: pointer;
  font-family: "SF Pro Display";
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 16px;
}
.item-galery__description {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 13.8px;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.item-galery__data {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12.9px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768.98px) {
  .galery {
    padding-top: 250px;
  }
}
.partners {
  text-align: center;
  font-family: "SF Pro Display";
  text-transform: uppercase;
  position: relative;
}
.partners__mirror {
  position: absolute;
  top: -300px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.partners__title {
  font-weight: 900;
  font-size: 56px;
  line-height: 101.84%;
  margin-bottom: 15px;
  margin-top: 235px;
}
.partners__text {
  margin: 0 auto;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  max-width: 670px;
}
.partners__circle {
  top: -1000px;
}
.partners__scroll {
  position: relative;
  -webkit-transform: translate(-50%, 250px);
  transform: translate(-50%, 250px);
  -webkit-animation: upndown 1s ease-in-out 1s infinite alternate;
  animation: upndown 1s ease-in-out 1s infinite alternate;
}
@keyframes upndown {
  0% {
    -webkit-transform: translate(-50%, 250px);
    transform: translate(-50%, 250px);
  }
  100% {
    -webkit-transform: translate(-50%, 260px);
    transform: translate(-50%, 260px);
  }
}

@media (max-width: 768.98px) {
  .partners__mirror {
    position: absolute;
    top: -100%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .partners__title {
    font-weight: 900;
    font-size: 47px;
    line-height: 101.84%;
    margin-bottom: 15px;
    margin-top: 150px;
  }
  .partners__text {
    margin: 0 auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    max-width: 670px;
  }
  .partners__circle {
    top: -1100px;
  }
  .partners__scroll {
    -webkit-transform: translate(-50%, 170px);
    transform: translate(-50%, 170px);
  }
  @-webkit-keyframes upndown {
    0% {
      -webkit-transform: translate(-50%, 170px);
      transform: translate(-50%, 170px);
    }
    100% {
      -webkit-transform: translate(-50%, 180px);
      transform: translate(-50%, 180px);
    }
  }
  @keyframes upndown {
    0% {
      -webkit-transform: translate(-50%, 170px);
      transform: translate(-50%, 170px);
    }
    100% {
      -webkit-transform: translate(-50%, 180px);
      transform: translate(-50%, 180px);
    }
  }
}
@media (max-width: 479.98px) {
  .partners__scroll {
    -webkit-transform: translate(-50%, 120px);
    transform: translate(-50%, 120px);
  }
  @-webkit-keyframes upndown {
    0% {
      -webkit-transform: translate(-50%, 120px);
      transform: translate(-50%, 120px);
    }
    100% {
      -webkit-transform: translate(-50%, 130px);
      transform: translate(-50%, 130px);
    }
  }
  @keyframes upndown {
    0% {
      -webkit-transform: translate(-50%, 120px);
      transform: translate(-50%, 120px);
    }
    100% {
      -webkit-transform: translate(-50%, 130px);
      transform: translate(-50%, 130px);
    }
  }
}
.info {
  padding-top: 450px;
  padding-bottom: 150px;
}
.info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-column-gap: 68px;
  -webkit-column-gap: 68px;
  column-gap: 68px;
  row-gap: 132px;
}

.item-info {
  max-width: 470px;
}
.item-info__title {
  cursor: pointer;
  font-family: "SF Pro Display";
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 16px;
}
.item-info__description {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 13.8px;
  line-height: 19px;
  color: #fff;
  margin-bottom: 16px;
}

.email-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
  column-gap: 10px;
  font-weight: 700;
}
.email-info__email {
  color: #ECD06F;
  text-decoration: underline;
}

@media (max-width: 768.98px) {
  .info {
    padding-top: 250px;
  }
}
.faq {
  text-align: center;
  font-family: "SF Pro Display";
  text-transform: uppercase;
  position: relative;
}
.faq__mirror {
  position: absolute;
  top: -300px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.faq__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 101.84%;
  margin-bottom: 15px;
  margin-top: 235px;
}
.faq__title span {
  font-weight: 900;
}
.faq__text {
  margin: 0 auto;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  max-width: 670px;
}
.faq__circle {
  top: -1000px;
}
.faq__scroll {
  position: relative;
  -webkit-transform: translate(-50%, 200px);
  transform: translate(-50%, 200px);
  -webkit-animation: up-down 1s ease-in-out 1s infinite alternate;
  animation: up-down 1s ease-in-out 1s infinite alternate;
}
@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translate(-50%, 200px);
    transform: translate(-50%, 200px);
  }
  100% {
    -webkit-transform: translate(-50%, 210px);
    transform: translate(-50%, 210px);
  }
}
@keyframes up-down {
  0% {
    -webkit-transform: translate(-50%, 200px);
    transform: translate(-50%, 200px);
  }
  100% {
    -webkit-transform: translate(-50%, 210px);
    transform: translate(-50%, 210px);
  }
}

@media (max-width: 768.98px) {
  .faq__mirror {
    position: absolute;
    top: -50%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .faq__title {
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: 150px;
  }
  .faq__text {
    margin: 0 auto;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    max-width: 670px;
  }
  .faq__circle {
    top: -1100px;
  }
  .faq__scroll {
    -webkit-transform: translate(-50%, 170px);
    transform: translate(-50%, 170px);
  }
  @-webkit-keyframes up-down {
    0% {
      -webkit-transform: translate(-50%, 170px);
      transform: translate(-50%, 170px);
    }
    100% {
      -webkit-transform: translate(-50%, 180px);
      transform: translate(-50%, 180px);
    }
  }
  @keyframes up-down {
    0% {
      -webkit-transform: translate(-50%, 170px);
      transform: translate(-50%, 170px);
    }
    100% {
      -webkit-transform: translate(-50%, 180px);
      transform: translate(-50%, 180px);
    }
  }
}
@media (max-width: 479.98px) {
  .faq__mirror {
    position: absolute;
    top: -50%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .faq__title {
    font-size: 30px;
    margin-bottom: 15px;
    margin-top: 100px;
  }
  .faq__text {
    font-weight: 300;
    font-size: 14px;
  }
  .faq__scroll {
    -webkit-transform: translate(-50%, 100px);
    transform: translate(-50%, 100px);
  }
  @-webkit-keyframes up-down {
    0% {
      -webkit-transform: translate(-50%, 100px);
      transform: translate(-50%, 100px);
    }
    100% {
      -webkit-transform: translate(-50%, 110px);
      transform: translate(-50%, 110px);
    }
  }
  @keyframes up-down {
    0% {
      -webkit-transform: translate(-50%, 100px);
      transform: translate(-50%, 100px);
    }
    100% {
      -webkit-transform: translate(-50%, 110px);
      transform: translate(-50%, 110px);
    }
  }
}
.cards {
  padding-top: 350px;
}
.cards__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
}
.item-cards {
  cursor: pointer;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  width: 352px;
  height: 234px;
  background: -webkit-gradient(linear, left bottom, left top, from(#171606), to(#171606));
  background: -webkit-linear-gradient(bottom, #171606, #171606);
  background: linear-gradient(0deg, #171606, #171606);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.item-cards:first-child:hover {
  box-shadow: 0px 0px 15px rgba(236, 208, 111, 0.3);
}
.item-cards:not(:first-child):hover .preview-card {
  margin-top: -100%;
}
.item-cards__answer {
  font-family: "SF Pro Display";
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  letter-spacing: normal;
}

.preview-card {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: inherit;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#171606), to(#171606));
  background: -webkit-linear-gradient(bottom, #171606, #171606);
  background: linear-gradient(0deg, #171606, #171606);
  -webkit-transition: all 0.8s ease-in-out 0s;
  transition: all 0.8s ease-in-out 0s;
  border-radius: 12px;
}
.preview-card__image {
  margin: 0 auto;
  width: 148px;
  height: 148px;
}
.preview-card__question {
  font-family: "SF Pro Display";
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
}

@media (max-width: 768.98px) {
  .cards {
    padding-top: 250px;
  }
}
.qa {
  padding-top: 72px;
  padding-bottom: 150px;
}
.qa__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
}

.item-qa {
  cursor: pointer;
  width: 100%;
  padding: 25px 25px 25px 35px;
  background: #131313;
  box-shadow: 0px 0px 9px rgba(236, 208, 111, 0.6);
  border-radius: 12px;
}
.item-qa:hover .item-qa__question {
  color: #ECD06F;
}
.item-qa__question {
  font-family: "SF Pro Display";
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.item-qa__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 768.98px) {
  .item-qa__question {
    font-size: 18px;
  }
}
.instruction-light-bg {
  background-color: #2E2E2F;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 100%);
  padding-top: 150px;
  padding-bottom: 200px;
}
@media (max-width: 990.98px) {
  .instruction-light-bg {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
  }
}
@media (max-width: 768.98px) {
  .instruction-light-bg {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 98%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 98%, 0% 100%);
  }
}

.instruction {
  text-align: center;
  font-family: "SF Pro Display";
  text-transform: uppercase;
  position: relative;
}
.instruction__mirror {
  position: absolute;
  top: -300px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.instruction__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 101.84%;
  margin-bottom: 15px;
  margin-top: 235px;
}
.instruction__title span {
  font-weight: 900;
}
.instruction__text {
  margin: 0 auto;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  max-width: 670px;
}
.instruction__circle {
  top: -1000px;
}
.instruction__scroll {
  position: relative;
  -webkit-transform: translate(-50%, 200px);
  transform: translate(-50%, 200px);
  -webkit-animation: up-down 1s ease-in-out 1s infinite alternate;
  animation: up-down 1s ease-in-out 1s infinite alternate;
}
@keyframes up-down {
  0% {
    -webkit-transform: translate(-50%, 200px);
    transform: translate(-50%, 200px);
  }
  100% {
    -webkit-transform: translate(-50%, 210px);
    transform: translate(-50%, 210px);
  }
}

@media (max-width: 768.98px) {
  .instruction__mirror {
    position: absolute;
    top: -50%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .instruction__title {
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: 150px;
  }
  .instruction__text {
    margin: 0 auto;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    max-width: 670px;
  }
  .instruction__circle {
    top: -1100px;
  }
  .instruction__scroll {
    -webkit-transform: translate(-50%, 170px);
    transform: translate(-50%, 170px);
  }
  @-webkit-keyframes up-down {
    0% {
      -webkit-transform: translate(-50%, 170px);
      transform: translate(-50%, 170px);
    }
    100% {
      -webkit-transform: translate(-50%, 180px);
      transform: translate(-50%, 180px);
    }
  }
  @keyframes up-down {
    0% {
      -webkit-transform: translate(-50%, 170px);
      transform: translate(-50%, 170px);
    }
    100% {
      -webkit-transform: translate(-50%, 180px);
      transform: translate(-50%, 180px);
    }
  }
}
@media (max-width: 479.98px) {
  .instruction__mirror {
    position: absolute;
    top: -50%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .instruction__title {
    font-size: 30px;
    margin-bottom: 15px;
    margin-top: 100px;
  }
  .instruction__text {
    font-weight: 300;
    font-size: 14px;
  }
  .instruction__scroll {
    -webkit-transform: translate(-50%, 100px);
    transform: translate(-50%, 100px);
  }
  @-webkit-keyframes up-down {
    0% {
      -webkit-transform: translate(-50%, 100px);
      transform: translate(-50%, 100px);
    }
    100% {
      -webkit-transform: translate(-50%, 110px);
      transform: translate(-50%, 110px);
    }
  }
  @keyframes up-down {
    0% {
      -webkit-transform: translate(-50%, 100px);
      transform: translate(-50%, 100px);
    }
    100% {
      -webkit-transform: translate(-50%, 110px);
      transform: translate(-50%, 110px);
    }
  }
}
.steps {
  padding-top: 435px;
  padding-bottom: 150px;
  font-family: "SF Pro Display";
}
.steps__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 190px;
}

.item-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-column-gap: 76px;
  -webkit-column-gap: 76px;
  column-gap: 76px;
}
.item-steps__image {
  width: 409px;
  height: 409px;
  border-radius: 16px;
  overflow: hidden;
}

.steps-description {
  max-width: 560px;
}
.steps-description__title {
  font-size: 34px;
  line-height: 41px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 400;
}
.steps-description__title span {
  font-weight: 900;
}
.img-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 990.98px) {
  .steps-description {
    max-width: 360px;
  }
  .item-steps__image {
    width: 309px;
    height: 309px;
    border-radius: 16px;
    overflow: hidden;
  }
}
@media (max-width: 768.98px) {
  .steps {
    padding-top: 270px;
    padding-bottom: 150px;
  }
  .steps-description {
    max-width: 360px;
  }
  .item-steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
  .item-steps__image {
    width: 350px;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
  }
}
.map__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-column-gap: 65px;
  -webkit-column-gap: 65px;
  column-gap: 65px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.map__description {
  max-width: 402px;
}

.map-description__text {
  margin-bottom: 30px;
}
.map-description__button {
  max-width: 162px;
}

.map__googlemap {
  border-radius: 12px;
  border: none;
  box-shadow: 4px 0px 120px rgba(236, 208, 111, 0.25);
  width: 718px;
  height: 446px;
}

@media (max-width: 990.98px) {
  .map__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 90px;
  }
  .map__description {
    max-width: 100%;
  }
  .map-description__button {
    max-width: 100%;
  }
  .map__googlemap {
    border-radius: 12px;
    border: none;
    box-shadow: 4px 0px 120px rgba(236, 208, 111, 0.25);
    max-width: 100%;
  }
}
.streets {
  padding-top: 168px;
}
.streets__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -moz-column-gap: 50px;
  -webkit-column-gap: 50px;
  column-gap: 50px;
  row-gap: 50px;
  justify-content: space-between;
}
@media (max-width: 768.98px) {
  .streets__container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.column-streets__title {
  font-family: "SF Pro Display";
  font-weight: 500;
  font-size: 38px;
  line-height: 45px;
  text-transform: capitalize;
  color: #ECD06F;
  margin-bottom: 30px;
}
.column-streets__item:not(:last-child) {
  margin-bottom: 12px;
}
.column-streets__link {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}
.column-streets__link:hover {
  color: #ECD06F;
  text-decoration: underline;
}

.buy-modal {
  min-width: 556px;
  min-height: 627px;
  background-color: #1B1B1B;
  position: absolute;
  top: 10%;
  left: 50%;
  right: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  z-index: 10100;
  border-radius: 12px;
  padding: 25px;
  display: none;
}
.buy-modal .cross {
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.buy-modal .cross:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 768.98px) {
  .buy-modal {
    bottom: 0;
    min-height: 100%;
    min-width: 100%;
  }
}

.modal-title {
  font-family: "SF Pro Display";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}

.modal-tip {
  margin-bottom: 28px;
}
.modal-tip__body {
  background: #171606;
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  border-radius: 12px;
}
.modal-tip .tip {
  font-family: "SF Pro Display";
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  max-width: 420px;
  margin-left: 10px;
}

.item-modal-inputs__title {
  font-family: "SF Pro Display";
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.item-modal-inputs__input {
  margin-bottom: 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 19px 16px;
  width: 100%;
  color: #fff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  font-family: "SF Pro Display";
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #fff;
}
.item-modal-inputs__input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #ECD06F;
}

.modal-inputs-narrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-inputs-narrow__item {
  max-width: 152px;
}
.modal-inputs-narrow__item:first-child {
  margin-right: 28px;
}

.modal-remember {
  text-align: center;
  margin-bottom: 34px;
  font-size: 14px;
}

.modal-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768.98px) {
  .modal-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.modal-btn {
  cursor: pointer;
  display: block;
  text-align: center;
  padding: 14px 10px;
  max-width: 240px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  border: 1px solid #ECD06F;
  border-radius: 12px;
  box-shadow: 0px 0px 4px #ECD06F;
  font-family: "SF Pro Display";
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ECD06F;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width: 768.98px) {
  .modal-btn {
    margin: 0;
    min-width: 100%;
    margin-bottom: 20px;
    padding: 20px 10px;
  }
  .modal-btn:last-child {
    background-color: #ECD06F;
    color: #131313;
  }
}
.modal-btn:hover {
  background-color: #ECD06F;
  color: #131313;
}
.modal-btn:first-child {
  margin-right: 29px;
}

.modal-remember {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.round {
  position: relative;
}

.round label {
  background-color: transparent;
  border: 1.4px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
}

.round label:after {
  content: "";
  width: 8px;
  height: 8px;
  left: 2.52px;
  top: 2.61px;
  opacity: 0;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ECD06F;
  border-color: #ECD06F;
  border-radius: 50%;
  -webkit-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
}

.round input[type=checkbox] {
  visibility: hidden;
}

.round input[type=checkbox]:checked + label {
  border: 1.4px solid #ECD06F;
}

.round input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.modal-remember__label-text {
  font-family: SF Pro Display;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.02em;
  margin-left: 8px;
}


._active-text {
  color: #ECD06F !important;
}
/* WIDGET ------------------------------- */

.buysell__widget {
  max-width: 443px;
  left: 443px;
  border-radius: 12px;
  background: linear-gradient(-245.7deg, rgba(19, 19, 19, 0.6) 47.22%, rgba(88, 84, 22, 0.6) 318.22%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 17px;
}

.widget-header {
  display: flex;
}

.left-widget-header {
  display: flex;
  flex: 1 1 auto;
}

.widget-header-sell {
  margin-right: 20px;
}

.widget-header-btn {
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: flex-end;
  color: #7a7a7a;
  cursor: pointer;
  transition: color .2s ease;
}
.widget-header-btn:hover {
  color: #ECD06F;
}

.widget-header-actions {
  display: flex;
}
.widget-header-actions img {
  cursor: pointer;
  transition: all .2s ease;
}
.widget-header-actions img:hover {
  transform: scale(1.1);
}
.widget-header-actions img:not(:last-child) {
  margin-right: 20px;
}

.widget-body {
  margin-top: 17px;
  margin-bottom: 12px;
}

.top-widget-body {
  margin-bottom: 12px;
  position: relative;
}
.widget-arrow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translate(-50%);
  width: 24px;
  height: 24px;
  background-color: #1b1b1b;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(254, 214, 54, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget-body-row {
  background: #131313;
  border-radius: 12px;
  width: 100%;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 140px;
}
._active-currency-row {
  border: 1px solid #ECD06F !important;
}

.widget-text {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  display: flex;
  align-items: flex-end;
  color: #7a7a7a;
  letter-spacing: 0.7px;
}

.currency-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.currency-dropdown {
  position: relative;
}

.current-currency {
  display: flex;

  align-items: center;
  cursor: pointer;
  position: relative;
}
.current-currency-item {
  display: flex;
}
.current-currency .arrow {
  width: 7px;
  height: 7px;
  margin-top: -3px;

  transform: rotate(45deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all 0.3s ease 0s;
}


.currency-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 12px;
}

.currency-name {
  color: #fff;
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  outline: none;
  margin-right: 12px;
}

.currencies-list {
  display: none;
  position: absolute;
  top: 130%;
  width: 110px;
  background-color: #1b1b1b;
  border-radius: 12px;
  padding: 8px !important;
  max-height: 0;
  overflow: hidden;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.currencies-list .currency-item:hover {
  background-color: #262626;
}

.currencies-list .currency-item {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease 0s;
  border-radius: 10px;
  padding: 2px 5px;
}
.currencies-list .currency-item .currency-icon {
  width: 15px;
  height: 15px;
}
.currencies-list .currency-item .currency-name {
  font-size: 14px;

}
.currencies-list .currency-item:not(:last-child) {
  margin-bottom: 3px;
}

.amount-input {
  text-align: right;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  outline: none;

  width: 235px;
}

.currency-info {
  display: flex;
  justify-content: space-between;
}

.widget-footer-btns {
  width: 100%;
  display: flex;
  margin-bottom: 12px;
}

.widget-footer-btn {
  flex: 1 1 33.33%;
  padding: 15px 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  text-align: center;

  font-family: 'SF Pro Display';
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;

  transition: all .2s ease;
}
.widget-footer-btn svg {
  margin-right: 5px;
}
.widget-footer-btn:not(:last-child) {
  margin-right: 9px;
}
.widget-footer-btn:hover {
  color: #ECD06F;
}
.widget-footer-btn path {
  transition: all .2s ease;
}
.widget-footer-btn:hover path{
  fill: #ECD06F;
}
.widget-footer-buy-btn {
  width: 100%;
  padding: 15px;

  display: flex;
  justify-content: center;
  border-radius: 12px;

  background-color: #ECD06F;
  filter: drop-shadow(0px 0px 4px #ECD06F);

  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #131313;

  transition: all .3s ease;
}
.widget-footer-buy-btn:hover {
  background-color: #131313;
  color: #ECD06F;
  filter: drop-shadow(0px 0px 4px #ECD06F);
}

@media (max-width: 479px) {
  .buysell__widget {
    width: 340px;
  }
  .widget-footer-btn {
    padding: 12px 1px;
    font-size: 12px;
    line-height: 15px;
  }
  .widget-footer-btn img {
    width: 10px;
    height: 10px;
  }
}