

/* Start:/bitrix/templates/mn/components/bitrix/form.result.new/main/style.css?177493348512339*/
.cp-form-modal{
  position:fixed;
  inset:0;
  z-index:10000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}

.cp-form-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.cp-form-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(8px);
}

.cp-form-modal__dialog{
  position:relative;
  width:min(860px, 100%);
  max-height:90vh;
  overflow:auto;
 /* border-radius:32px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(251,191,36,.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow:0 30px 100px rgba(0,0,0,.45);*/

 background: linear-gradient(135deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
  border: 1px solid var(--tg-border-1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;

  transform:translateY(24px) scale(.97);
  opacity:0;
  transition:transform .35s ease, opacity .35s ease;
}

.cp-form-modal.is-open .cp-form-modal__dialog{
  transform:translateY(0) scale(1);
  opacity:1;
}

.cp-form-modal__dialog::-webkit-scrollbar{
  width:8px;
}

.cp-form-modal__dialog::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.18);
  border-radius:999px;
}

.cp-form-modal__close{
  position:absolute;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, background .2s ease;
}

.cp-form-modal__close:hover{
  transform:scale(1.06);
  background:rgba(255,255,255,.12);
}

.cp-form-modal__head{
  padding:34px 34px 0;
}

.cp-form-modal__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  line-height:1;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(253,224,71,.9);
  font-weight:700;
}

.cp-form-modal__title{
  margin:14px 0 0;
  font-size:40px;
  line-height:1.08;
  font-weight:700;
  color:#fff;
}

.cp-form-modal__lead{
  margin:16px 0 0;
  font-size:16px;
  line-height:1.75;
  color:rgba(255,255,255,.68);
}

.cp-form-modal__alert{
  margin:24px 34px 0;
  padding:16px 18px;
  border-radius:18px;
  font-size:15px;
  line-height:1.65;
}

.cp-form-modal__alert--error{
  border:1px solid rgba(248,113,113,.28);
  background:rgba(127,29,29,.22);
  color:#fecaca;
}

.cp-form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
  padding:28px 34px 0;
}

.cp-form-field--wide{
  grid-column:1 / -1;
}

.cp-form-field{
  display:grid;
  gap:10px;
}

.cp-form-field__label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:16px;
  line-height:1.4;
  font-weight:600;
  color:#fff;
}

.cp-form-field__required{
  color:#fde047;
}

.cp-form-control{
  width:100%;
  min-height:54px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgb(28 28 30);
  color:#fff;
  font-size:16px;
  line-height:1.5;
  box-sizing:border-box;
  outline:none;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.cp-form-control::placeholder{
  color:rgba(255,255,255,.42);
  font-size:14px;
}

.cp-form-control:focus{
  border-color:rgba(253,224,71,.55);
  background:rgba(255,255,255,.06);
  box-shadow:0 0 0 4px rgba(253,224,71,.08);
}

.cp-form-control--textarea{
  min-height:160px;
  padding:16px;
  resize:vertical;
}

.cp-form-control--select{
  appearance:none;
}

.cp-form-captcha{
  display:grid;
  gap:14px;
}

.cp-form-captcha__image{
  display:block;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
}

.cp-form-modal__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:28px 34px 34px;
}

.cp-form-modal__meta{
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.5);
}

.cp-form-submit{
  min-width:220px;
  min-height:54px;
  padding:0 26px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  color:#151515;
  text-transform:uppercase;
  background:linear-gradient(90deg, #fde047 0%, #f59e0b 55%, #f97316 100%);
  transition:transform .2s ease, filter .2s ease;
}

.cp-form-submit:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
}

.cp-form-submit[disabled]{
  opacity:.5;
  cursor:not-allowed;
  transform:none;
}

.cp-form-success{
  padding:28px 34px 34px;
  display:grid;
  gap:14px;
}

.cp-form-success__icon{
  width:54px;
  height:54px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:700;
  color:#151515;
  background:linear-gradient(90deg, #fde047 0%, #f59e0b 55%, #f97316 100%);
}

.cp-form-success__title{
  font-size:28px;
  line-height:1.15;
  font-weight:700;
  color:#fff;
}

.cp-form-success__text,
.cp-form-success__note{
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.72);
}

body.cp-modal-open{
  overflow:hidden;
}


.cp-form-submit:hover{color:#000;}

@media (max-width:767px){
  .cp-form-modal{
    padding:16px;
  }

  .cp-form-modal__dialog{
    width:min(100%, 100%);
    max-height:92vh;
    border-radius:24px;
  }

  .cp-form-modal__head{
    padding:24px 20px 0;
  }

  .cp-form-modal__title{
    font-size:30px;
  }

  .cp-form-grid{
    grid-template-columns:1fr;
    padding:22px 20px 0;
  }

  .cp-form-modal__footer{
    flex-direction:column;
    align-items:stretch;
    padding:22px 20px 24px;
  }

  .cp-form-submit{
    width:100%;
  }

  .cp-form-modal__alert,
  .cp-form-success{
    margin-left:20px;
    margin-right:20px;
    padding-left:0;
    padding-right:0;
  }

  .cp-form-modal__close{
    top:12px;
    right:12px;
  }
}


.cp-form-field__control{
  display:block;
}

.cp-form-field--has-error .cp-form-control{
  border-color:rgba(248,113,113,.45);
  background:rgba(127,29,29,.10);
  box-shadow:0 0 0 4px rgba(248,113,113,.08);
}

.cp-form-field--has-error .cp-form-control:focus{
  border-color:rgba(248,113,113,.6);
  box-shadow:0 0 0 4px rgba(248,113,113,.12);
}

.cp-form-field__control{
  position:relative;
  display:block;
}

.cp-form-field--has-error .cp-form-control{
  padding-right:56px;
}

.cp-form-field--wide.cp-form-field--has-error .cp-form-control--textarea{
  padding-right:52px;
}

.cp-form-field__error-badge{
  position:absolute;
  top:50%;
  right:14px;
  transform:translateY(-50%);
  width:26px;
  height:26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(239,68,68,.16);
  border:1px solid rgba(248,113,113,.45);
  color:#fca5a5;
  font-size:14px;
  font-weight:700;
  line-height:1;
  cursor:help;
  z-index:3;
}

.cp-form-field--wide .cp-form-field__error-badge{
  top:16px;
  transform:none;
}

.cp-form-field__error-tooltip{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  min-width:180px;
  max-width:260px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(248,113,113,.35);
  background:rgba(24,10,10,.96);
  color:#fecaca;
  font-size:12px;
  line-height:1.45;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:4;
}

.cp-form-field__error-tooltip::before{
  content:"";
  position:absolute;
  top:-6px;
  right:18px;
  width:10px;
  height:10px;
  background:rgba(24,10,10,.96);
  border-left:1px solid rgba(248,113,113,.35);
  border-top:1px solid rgba(248,113,113,.35);
  transform:rotate(45deg);
}

.cp-form-field__error-badge:hover + .cp-form-field__error-tooltip,
.cp-form-field__error-badge:focus + .cp-form-field__error-tooltip{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}


.cp-form-field--contact .cp-form-control{
  padding-right:210px;
}

.cp-form-contact-hint{
  position:absolute;
  top:50%;
  right:14px;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  gap:6px;
  z-index:2;
}

.cp-form-contact-hint__item{
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cp-form-field--contact.cp-form-field--has-error .cp-form-control{
  padding-right:248px;
}

.cp-form-field--contact .cp-form-field__error-badge{
  right:222px;
}

@media (max-width:767px){
  .cp-form-field--contact .cp-form-control{
    padding-right:180px;
  }

  .cp-form-field--contact.cp-form-field--has-error .cp-form-control{
    padding-right:214px;
  }

  .cp-form-field--contact .cp-form-field__error-badge{
    right:186px;
  }

  .cp-form-contact-hint{
    right:12px;
    gap:4px;
  }

  .cp-form-contact-hint__item{
    width:22px;
    height:22px;
    font-size:10px;
  }
}


.cp-form-contact-hint{
  pointer-events:auto;
}

.cp-form-contact-hint__item{
  position:relative;
  cursor:help;
  pointer-events:auto;
}

.cp-form-contact-hint__item img{
  display:block;
  width:24px;
  height:24px;
  object-fit:contain;
}

.cp-form-contact-hint__item::after{
  content:attr(data-tooltip);
  position:absolute;
  left:50%;
  bottom:calc(100% + 8px);
  transform:translateX(-50%) translateY(6px);
  padding:6px 8px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(18,18,18,.96);
  color:#fff;
  font-size:11px;
  line-height:1.2;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events:none;
  z-index:5;
}

.cp-form-contact-hint__item::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:calc(100% + 2px);
  width:8px;
  height:8px;
  background:rgba(18,18,18,.96);
  border-left:1px solid rgba(255,255,255,.12);
  border-top:1px solid rgba(255,255,255,.12);
  transform:translateX(-50%) rotate(45deg);
  opacity:0;
  visibility:hidden;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events:none;
  z-index:5;
}

.cp-form-contact-hint__item:hover::after,
.cp-form-contact-hint__item:hover::before,
.cp-form-contact-hint__item:focus::after,
.cp-form-contact-hint__item:focus::before{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

.cp-form-consent{
  padding:0 34px;
  margin-top:20px;
}

.cp-form-consent__label{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:flex-start;
  cursor:pointer;
}

.cp-form-consent__checkbox{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.cp-form-consent__box{
  position:relative;
  width:22px;
  height:22px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
  margin-top:2px;
  flex:0 0 auto;
}

.cp-form-consent__box::after{
  content:"";
  position:absolute;
  left:7px;
  top:3px;
  width:6px;
  height:11px;
  border-right:2px solid #151515;
  border-bottom:2px solid #151515;
  transform:rotate(45deg) scale(0);
  transform-origin:center;
  transition:transform .2s ease;
}

.cp-form-consent__checkbox:checked + .cp-form-consent__box{
  border-color:rgba(253,224,71,.55);
  background:linear-gradient(90deg, #fde047 0%, #f59e0b 55%, #f97316 100%);
  box-shadow:0 0 0 4px rgba(253,224,71,.08);
}

.cp-form-consent__checkbox:checked + .cp-form-consent__box::after{
  transform:rotate(45deg) scale(1);
}

.cp-form-consent__checkbox:focus-visible + .cp-form-consent__box{
  box-shadow:0 0 0 4px rgba(253,224,71,.12);
}

.cp-form-consent__text{
  font-size:13px;
  line-height:1.65;
  color:rgba(255,255,255,.74);
}

.cp-form-consent__text a{
  color:#fde047;
  text-decoration:none;
}

.cp-form-consent__text a:hover{
  text-decoration:underline;
}

.cp-form-consent__error{
  margin-top:10px;
  padding-left:34px;
  font-size:12px;
  line-height:1.5;
  color:#fecaca;
}

.cp-form-consent--has-error .cp-form-consent__box{
  border-color:rgba(248,113,113,.5);
  background:rgba(127,29,29,.12);
  box-shadow:0 0 0 4px rgba(248,113,113,.08);
}

@media (max-width:767px){
  .cp-form-consent{
    padding:0 20px;
  }
}

/* End */


/* Start:/bitrix/templates/mn/styles.css?17750284822110*/
.cp-badge{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding:10px 16px;
        border-radius:30px;
        border:1px solid rgba(255,255,255,.12);
        color:#fff;
        text-decoration:none;
        background:rgba(255,255,255,.04);
        transition:.3s ease;
    }
    .cp-badge:hover{
        color:#fff;
        background:rgba(255,255,255,.12);
        transform:translateY(-2px);
    }


.slide1_img_center{width:300px;}
.slide12_img_center{width:450px;}

.exchange__icons .list-wrap li a{text-align:center;}
.section-mt-120{margin-top:120px;}

.cp-scrollbar{
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.22) rgba(255,255,255,.04);
}

.cp-scrollbar::-webkit-scrollbar{
  width:8px;
  height:8px;
}

.cp-scrollbar::-webkit-scrollbar-track{
  background:rgba(255,255,255,.04);
  border-radius:999px;
}

.cp-scrollbar::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.22);
  border-radius:999px;
  border:1px solid rgba(255,255,255,.06);
}

.cp-scrollbar::-webkit-scrollbar-thumb:hover{
  background:rgba(255,255,255,.34);
}


@media (max-width: 767.98px) {

.banner__shape{display: none;}
.banner__bg {padding: 135px 0 0px; margin-bottom: 0;}
.brand__area {padding: 50px 0 0;}
.features__icon { width: 150px; }
.exchange__icons .list-wrap li { width: 100px; height: 100px;}

#services, #work,.crypto__area, .roadmap__area,.section-pys-120 {padding: 50px 0 !important;}
.section-pyd-120{padding: 120px 0 50px 0 !important;}
.section-py-120 {padding: 0 0;}

#cpTariffsFormModal .cp-form-grid {
        grid-template-columns: 1fr;
        padding: 22px 20px 0;
    }

#cpTariffsFormModal .cp-form-field {
    grid-column: span 3;
}

#cpTariffsFormModal .cp-form-field--wide {
    grid-column: span 3;
}

.team__items .shape{margin-top:20px;}
.banner__content .sub-title { margin-top: 20px;}
.blog__post-area{margin-top:50px;}

 /*   .cp-page__content {
        padding: 14px;
        background: unset;
        border: unset;
    }*/


}
/* End */
/* /bitrix/templates/mn/components/bitrix/form.result.new/main/style.css?177493348512339 */
/* /bitrix/templates/mn/styles.css?17750284822110 */
