/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.show-tablet {
  display: none;
}
@media only screen and (max-width: 991px) {
  .show-tablet {
    display: block;
  }
}
.hide-tablet {
  display: block;
}
@media only screen and (max-width: 991px) {
  .hide-tablet {
    display: none;
  }
}
.show-mob {
  display: none;
}
@media only screen and (max-width: 767px) {
  .show-mob {
    display: block;
  }
}
.hide-mob {
  display: block;
}
@media only screen and (max-width: 767px) {
  .hide-mob {
    display: none;
  }
}
.transition {
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-size: 16px !important;
  font-family: 'Roboto', sans-serif !important;
  background: #080a0f;
  overflow-x: hidden;
  color: #fff !important;
  line-height: 1.4 !important;
}
.white {
  color: #fff !important;
}
.green {
  color: #35ff5a !important;
}
.red {
  color: #f60004 !important;
}
.container-fluid {
  width: 100%;
  max-width: 1098px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
.rates {
  text-transform: uppercase;
  color: #616b7c;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 30px;
  overflow: hidden;
  height: 42px;
  align-items: center;
}
.stocks {
  background: rgba(92, 124, 255, 0.1);
  border-top: 1px solid #171d27;
  border-bottom: 1px solid #171d27;
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  justify-content: center;
  gap: 15px;
}
.stocks span {
  font-size: 12px;
  color: #616b7c;
  display: flex;
  align-items: center;
  gap: 5px;
}
.stocks span:before {
  content: '';
  display: block;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  background: #5c7cff;
}
.head {
  border-bottom: 1px solid #1f2632;
}
.head-inner {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu a {
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: #0f131b;
  border: 2px solid #1f2632;
  color: #98a1b2 !important;
  text-decoration: none !important;
  font-size: 13px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 600;
}
.menu a.connect {
  gap: 10px;
  background: #5c7cff;
  border: none;
  color: #06080d !important;
}
.menu a:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
@media only screen and (max-width: 767px) {
  .menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    padding: 15px;
    border-bottom: 1px solid #5c7cff;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.33s cubic-bezier(0.55, 0, 0.1, 1), transform 0.33s cubic-bezier(0.55, 0, 0.1, 1);
  }
  .menu a {
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .menu.opened {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.menu-mob-btn img {
  width: 24px;
  height: auto;
}
.intro {
  background: url('../img/intro.jpg') center center no-repeat;
  background-size: cover;
}
.intro-inner {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .intro-inner {
    padding-top: 45px;
  }
}
.intro-top-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.intro-top-tab {
  border: 1px solid #3b3b3b;
  border-radius: 99px;
  padding: 0 20px;
  height: 30px;
  text-transform: uppercase;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .intro-top-tab {
    font-size: 10px;
    padding: 0 10px;
  }
}
.intro-title {
  text-align: center;
  font-weight: bold;
  font-size: 60px;
  line-height: 1;
  margin-top: 30px;
}
.intro-title span {
  color: #616b7c;
}
.intro-subtitle {
  text-align: center;
  font-size: 20px;
  color: #98a1b2;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .intro-subtitle br {
    display: none;
  }
}
.intro-subtitle2 {
  text-align: center;
  font-size: 12px;
  color: #98a1b2;
  margin-top: 15px;
}
.intro-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.intro-buttons a {
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: #0f131b;
  border: 2px solid #1f2632;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 600;
}
.intro-buttons a.intro-button-start {
  background: #5c7cff;
  border: none;
  gap: 10px;
  color: #06080d !important;
}
.intro-buttons a:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
.intro-feats {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(86, 88, 92, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid #2c3646;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  .intro-feats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
.intro-feat {
  border-right: 1px solid #2c3646;
  height: 93px;
  text-align: center;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.intro-feat:last-child {
  border: none !important;
}
@media only screen and (max-width: 767px) {
  .intro-feat {
    border: none;
    border-bottom: 1px solid #2c3646;
    width: 100%;
  }
}
.intro-feat-num {
  font-weight: bold;
  font-size: 32px;
}
.intro-feat-title {
  text-transform: uppercase;
  font-size: 9px;
  color: #616b7c;
}
.feat {
  background: url('../img/features.jpg') center center no-repeat;
  background-size: cover;
}
.feat-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 15px;
  margin-top: 45px;
}
@media only screen and (max-width: 767px) {
  .feat-items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
.feat-item {
  border: 1px solid #1d3ab4;
  background: rgba(15, 19, 27, 0.2);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
}
.feat-item-title {
  font-weight: bold;
  font-size: 15px;
  margin-top: 15px;
}
.feat-item-text {
  margin-top: 10px;
  color: #98a1b2;
  font-size: 12px;
}
.online-inner {
  border-radius: 16px;
  border: 1px solid #5c7cff;
  background: #0f131b;
  margin-top: 15px;
  overflow: hidden;
}
.online-top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1f2632;
  justify-content: space-between;
  padding: 0 15px;
}
.online-top-left {
  display: flex;
  gap: 15px;
}
.online-top-item {
  display: flex;
  color: #616b7c;
  font-size: 10px;
  height: 40px;
  align-items: center;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 45px;
  gap: 8px;
  border-right: 1px solid #1f2632;
  flex-wrap: nowrap;
}
.online-top-item b {
  font-weight: normal;
  color: #3fae8b;
  padding-left: 15px;
}
.online-top-item:last-child {
  border: none;
}
.online-top-right .online-top-item {
  padding-right: 0;
}
.status {
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #171d27;
  padding: 0 15px;
}
.status-dots {
  display: flex;
  gap: 5px;
}
.status-dot {
  width: 34px;
  height: 3px;
  background: #1f2632;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.status-dot.on {
  background: #5c7cff;
}
@media only screen and (max-width: 767px) {
  .status-dot {
    width: 20px;
  }
}
.status-text {
  font-size: 10px;
  text-transform: uppercase;
  color: #616b7c;
}
.engine {
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #171d27;
  padding: 0 15px;
}
.engine-left {
  display: flex;
  gap: 15px;
  font-size: 11px;
  color: #98a1b2;
}
.engine-left span {
  color: #616b7c;
}
.engine-left b {
  border-right: 1px solid #616b7c;
  padding-right: 15px;
  font-weight: normal;
}
.signal {
  font-size: 11px;
  color: #616b7c;
}
.signal span {
  color: #fff;
}
.online-middle {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .online-middle {
    flex-direction: column-reverse;
  }
}
.online-left {
  border-right: 1px solid #171d27;
  width: 300px;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 30px 15px;
}
@media only screen and (max-width: 767px) {
  .online-left {
    border: none;
    border-top: 1px solid #171d27;
    width: 100%;
  }
}
.online-right {
  padding: 30px;
}
.splash {
  width: 200px;
  height: 200px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.big-circle,
.small-circle,
.sputniks {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.big-circle {
  width: 223px;
  height: 223px;
}
.small-circle {
  width: 117px;
  height: 117px;
}
.small-circle span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  display: none;
}
.small-circle span.filled {
  font-weight: bold;
  color: #00d492;
}
.small-circle span.risk {
  color: #ff0000;
}
.small-circle span.on {
  display: flex;
}
.small-circle span i {
  font-style: normal;
}
@keyframes slow-bounce {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}
.splash .small-circle {
  animation: slow-bounce 2.6s cubic-bezier(0.61, 0.01, 0.25, 1) infinite;
}
.sputniks {
  width: 198px;
  height: 128px;
  animation: sputniks-rotate 5.5s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes sputniks-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.action {
  margin-top: 45px;
  text-align: center;
}
.action-title {
  font-size: 13px;
}
.action-text {
  color: #616b7c;
  font-size: 10px;
}
.logics {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.logic {
  display: none;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.35s cubic-bezier(0.61, 0.01, 0.25, 1), transform 0.4s cubic-bezier(0.61, 0.01, 0.25, 1);
  pointer-events: none;
  visibility: hidden;
}
.logic.on {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  animation: logic-fadein 0.4s cubic-bezier(0.61, 0.01, 0.25, 1);
}
@keyframes logic-fadein {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.logic-title {
  text-transform: uppercase;
  font-size: 10px;
  color: #616b7c;
}
.logic-subtitle2 {
  font-size: 23px;
  color: #ccc;
  font-weight: normal;
  margin-top: 15px;
}
.logic-subtitle {
  font-size: 23px;
  color: #4c6cef;
  font-weight: 600;
  margin-top: 15px;
}
.logic-metric-title {
  text-transform: uppercase;
  font-size: 10px;
  color: #616b7c;
  margin-top: 15px;
}
.logic-metric-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}
.logic-metric-item-title {
  text-transform: uppercase;
  font-size: 10px;
  color: #616b7c;
}
.logic-metric-item-text {
  font-size: 20px;
  font-weight: bold;
}
.log-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #616b7c;
  border-top: 1px solid #1f2632;
  padding: 0 15px;
}
.log-top-left {
  height: 38px;
  display: flex;
  align-items: center;
}
.log-top-right {
  color: #3fae8b;
  display: flex;
  align-items: center;
  height: 38px;
  gap: 5px;
}
.log-items {
  height: 200px;
  overflow: hidden;
  font-size: 12px;
  background: #020617;
  padding: 15px;
}
.log-items-inner {
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: none;
}
.log-items-inner::-webkit-scrollbar {
  display: none;
}
.log-item {
  opacity: 0;
  transform: translateX(-8px);
  animation: log-item-in 0.25s ease-out forwards;
}
@keyframes log-item-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section {
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .section {
    padding: 45px 0;
  }
}
.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  color: #616b7c;
}
.section-title-del {
  text-align: center;
  margin-top: 0px;
}
.section-title-del img {
  margin-left: auto;
  margin-right: auto;
}
.section-bigtitle {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .section-bigtitle {
    font-size: 24px;
  }
}
.section-text {
  color: #98a1b2;
  text-align: center;
  margin-top: 15px;
}
.modes {
  background: url('../img/modes.jpg') center center no-repeat;
  background-size: cover;
}
.modes-items {
  display: flex;
  gap: 20px;
  margin-top: 45px;
}
@media only screen and (max-width: 767px) {
  .modes-items {
    flex-direction: column;
  }
}
.modes-item {
  width: 50%;
  border: 1px solid #1d3ab4;
  background: rgba(15, 19, 27, 0.2);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .modes-item {
    width: 100%;
  }
}
.modes-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modes-item-info {
  font-size: 10px;
  text-transform: uppercase;
  color: #5c7cff;
  border-radius: 8px;
  padding: 5px 10px;
  border: 1px solid #1f2632;
}
.modes-item-title {
  margin-top: 15px;
  font-weight: bold;
  font-size: 20px;
}
.modes-item-text {
  font-size: 14px;
  line-height: 1.75;
  color: #98a1b2;
  margin-top: 15px;
}
.modes-item-text p {
  margin: 0 0 15px 0;
}
.modes-item-text ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.modes-item-text ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.modes-item-text ul li:last-child {
  margin-bottom: 0;
}
.steps {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .steps {
    display: flex;
    flex-direction: column;
  }
}
.steps2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 20px;
}
.steps2 .step-num {
  text-transform: none;
  font-size: 12px;
}
.steps2 .step-text {
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .steps2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
.step {
  width: 50%;
  border: 1px solid #1d3ab4;
  background: rgba(15, 19, 27, 0.2);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  gap: 30px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .step {
    width: 100%;
  }
}
.step-num {
  font-size: 10px;
  text-transform: uppercase;
  color: #616b7c;
}
.step-title {
  margin-top: 15px;
  font-weight: bold;
  font-size: 17px;
}
.step-text {
  margin-top: 15px;
  line-height: 1.75;
  font-size: 14px;
  color: #98a1b2;
}
.safe {
  background: url('../img/safe.jpg') center center no-repeat;
  background-size: cover;
}
.safe-items {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 15px;
}
.safe-item {
  width: 50%;
  border: 1px solid #1d3ab4;
  background: rgba(15, 19, 27, 0.2);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  gap: 30px;
  width: auto;
  display: flex;
  gap: 15px;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .safe-item {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .safe-item {
    flex-direction: column;
  }
}
.safe-item-title {
  font-size: 17px;
  color: #98a1b2;
}
.safe-item-title b {
  font-weight: normal;
  color: #fff;
}
.automated-mode {
  margin-top: 45px;
  text-align: center;
  color: #6b717c;
  font-size: 14px;
}
.pricing {
  background: url('../img/pricing.jpg') center center no-repeat;
  background-size: cover;
}
.pricing-info {
  margin-top: 45px;
  border: 1px solid #1d3ab4;
  border-radius: 12px;
  display: flex;
  background: rgba(21, 26, 36, 0.2);
  backdrop-filter: blur(12px);
  gap: 15px;
  padding: 15px;
}
.pricing-info-title {
  font-weight: bold;
  font-size: 15px;
}
.pricing-info-text {
  color: #98a1b2;
  font-size: 14px;
  margin-top: 10px;
}
.prices {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .prices {
    display: flex;
    flex-direction: column;
  }
}
.prices-item {
  border: 1px solid #1d3ab4;
  border-radius: 12px;
  background: rgba(21, 26, 36, 0.2);
  backdrop-filter: blur(12px);
  padding: 25px;
  position: relative;
  padding-bottom: 100px;
}
.prices-item-title {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  font-size: 17px;
  font-weight: bold;
}
.prices-item-subtitle {
  margin-top: 15px;
  color: #98a1b2;
  font-size: 14px;
  text-transform: uppercase;
}
.prices-item-price {
  margin-top: 15px;
  font-size: 13px;
  color: #616b7c;
}
.prices-item-price b {
  font-size: 31px;
  color: #fff;
}
.prices-item-text {
  margin-top: 15px;
  font-size: 13px;
  color: #98a1b2;
}
.prices-item-text p {
  margin: 0 0 15px 0;
}
.prices-item-text ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.prices-item-text ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.prices-item-text ul li:last-child {
  margin-bottom: 0;
}
.prices-item-button {
  margin-top: 15px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1f2632;
  background: #0f131b;
  font-weight: bold;
  font-size: 14px;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 8px;
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
}
.prices-item-button:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
.prices-item-hl {
  background: rgba(92, 124, 255, 0.1);
  border: 3px solid #1d3ab4;
  box-shadow: 0px 0px 30px 0px rgba(92, 124, 255, 0.5);
}
.prices-item-hl .prices-item-button {
  background: #5c7cff;
  color: #000 !important;
  border: none;
}
.prices-item-title-right {
  border-radius: 4px;
  background: #151c34;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
  font-weight: bold;
  color: #5c7cff;
  padding: 4px 8px;
}
.prices-bottom {
  margin-top: 45px;
  text-align: center;
  color: #616b7c;
  font-size: 12px;
}
.about-text {
  margin-top: 30px;
}
.about-text p {
  margin: 0 0 20px 0;
  line-height: 1.75;
  color: #98a1b2;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-text p b {
  color: #fff;
  font-weight: normal;
}
.based {
  background: url('../img/based.jpg') center center no-repeat;
  background-size: cover;
}
.why-items .step-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer {
  background: url('../img/footer.jpg') center center no-repeat;
  background-size: cover;
}
.footer-inner {
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .footer-inner {
    padding: 45px 0 30px 0;
  }
}
.footer-icon {
  text-align: center;
}
.footer-icon img {
  margin-left: auto;
  margin-right: auto;
}
.footer-title {
  font-weight: bold;
  text-align: center;
  font-size: 22px;
}
.footer-text {
  font-size: 15px;
  margin-top: 15px;
  text-align: center;
  color: #98a1b2;
}
.footer-connect {
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: #0f131b;
  border: 2px solid #1f2632;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center;
  margin-top: 30px;
  font-weight: 600;
  width: 165px;
  background: #5c7cff;
  border: none;
  gap: 10px;
  color: #06080d !important;
  margin-left: auto;
  margin-right: auto;
}
.footer-connect:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
.footer-middle {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .footer-middle {
    flex-direction: column;
  }
}
.footer-middle-left {
  max-width: 360px;
}
.footer-left-title {
  margin-top: 15px;
  font-size: 13px;
  color: #616b7c;
}
.footer-addr {
  margin-top: 15px;
  color: #616b7c;
  font-size: 13px;
  line-height: 1.75;
}
.footer-menu {
  display: flex;
  gap: 120px;
}
.footer-menu-title {
  color: #616b7c;
  font-size: 10px;
  text-transform: uppercase;
}
.footer-menu-links {
  margin-top: 15px;
}
.footer-menu-links a {
  color: #98a1b2 !important;
  text-decoration: none !important;
  font-size: 13px;
  margin-top: 10px;
  display: block;
}
.footer-menu-links a:hover {
  color: #fff !important;
}
.footer-menu-links a:first-child {
  margin-top: 0;
}
.footer-bottom {
  border-top: 2px solid #171d27;
  padding-top: 15px;
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
  }
}
.footer-bottom-left {
  font-size: 12px;
  color: #616b7c;
}
.footer-bottom-left a {
  color: #fff !important;
  text-decoration: none !important;
}
.footer-bottom-right {
  font-size: 12px;
  color: #616b7c;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-bottom-right img {
  animation: footer-flash 1s linear infinite;
}
@keyframes footer-flash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.page {
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .page {
    padding: 45px 0;
  }
}
.page-title {
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 32px;
}
.page-text {
  margin-top: 45px;
  background: rgba(86, 88, 92, 0.2);
  border: 1px solid #5c7cff;
  padding: 15px 25px;
  border-radius: 12px;
  color: #98a1b2;
  line-height: 1.75;
  font-size: 14px;
}
.page-text p,
.page-text h1,
.page-text h2,
.page-text h3,
.page-text ul {
  margin: 15px 0;
}
.page-text h2,
.page-text h3,
.page-text h4,
.page-text h1 {
  text-align: center;
  color: #ccc;
  font-size: 14px;
}
.page-text ul {
  margin-left: 0;
  padding-left: 1em;
}
.page-text a {
  color: #fff !important;
}
* {
  outline: none !important;
}
.dark:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
.bright:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
/* ==========================================================================
   Download Popup Styles
   ========================================================================== */
/* ── Bounce animation ── */
@keyframes popupBounce {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes overlayFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.show {
  display: flex;
  opacity: 1;
  animation: overlayFade 0.3s ease;
}
.popup {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 560px;
  width: 90%;
  box-shadow: 0 0 40px rgba(255, 255, 0, 0.3);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media only screen and (max-width: 767px) {
  .popup {
    padding: 30px 20px;
    margin: 15px;
  }
}
.popup-bounce {
  animation: popupBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.popup-step {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.95);
}
.popup-step.active {
  display: block;
  opacity: 1;
  transform: scale(1);
  animation: popupBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.popup-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffea00 0%, #998c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media only screen and (max-width: 767px) {
  .popup-title {
    font-size: 28px;
  }
}
.popup-text {
  font-size: 18px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .popup-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.popup-progress {
  text-align: center;
}
.popup-progress-percent {
  font-size: 64px;
  font-weight: bold;
  color: #ccc;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .popup-progress-percent {
    font-size: 48px;
  }
}
.popup-progress-bar-wrap {
  width: 100%;
  height: 21px;
  background: #333;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 15px;
}
.popup-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff0000 0%, #610099 100%);
  border-radius: 6px;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.popup-progress-time {
  font-size: 16px;
  color: #999;
}
.popup-instructions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 30px;
}
.popup-instruction {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 12px;
}
.popup-instruction-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff0000 0%, #0003cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 32px;
  color: #fff;
}
.popup-instruction-text {
  font-size: 16px;
  color: #ddd;
  line-height: 1.5;
  padding-top: 6px;
}
.popup-instruction-text b {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .popup-instruction-text {
    font-size: 14px;
  }
}
.popup-btn {
  width: 100%;
  max-width: 310px;
  height: 72px;
  margin: 0 auto;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff0000 0%, #610099 100%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.popup-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .popup-btn {
    font-size: 16px;
    height: 50px;
  }
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
:-moz-placeholder {
  color: #666;
  opacity: 1;
}
::-moz-placeholder {
  color: #666;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
/* Контейнер .rates должен быть в вашем main.css,
         здесь только доопределяем нужное для тикера */
#rates-list {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  /* Анимация: ширина ≈ 50 % (один дубль) */
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Пауза при наведении */
#rates-list:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
}
.ticker-sym {
  font-weight: 600;
  opacity: 0.85;
}
.ticker-price {
  font-weight: 500;
}
.ticker-chg {
  font-weight: 600;
}
.ticker-up {
  color: #22c55e;
}
/* зелёный */
.ticker-dn {
  color: #ef4444;
}
/* красный */
.ticker-sep {
  opacity: 0.3;
  padding: 0 4px;
}
