/*
Theme Name: Riisk Main
Text Domain: riisk
Domain Path: /languages
*/

.container {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
}

@media only screen and (min-width: 1600px) {
  .container--fluid {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1299px) {
  .container {
    max-width: 960px;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Light.woff2") format("woff2"), url("./fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Regular.woff2") format("woff2"), url("./fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Medium.woff2") format("woff2"), url("./fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-MediumItalic.woff2") format("woff2"), url("./fonts/Inter-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-SemiBold.woff2") format("woff2"), url("./fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Bold.woff2") format("woff2"), url("./fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --text-color: #000;
  --body-color: #EBEEF2;
  --blue: #259DFF;
  --accent-color: var(--blue);
  --border-color: #dae4ed;
  --light-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.45) 100%);
  --brs: 10px;
  --blur: blur(8px);
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  min-width: 320px;
  line-height: normal;
  color: var(--text-color);
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: var(--body-color);
  margin: 0;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: #fff;
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 127px;
  position: relative;
}

.img--light {
  display: block;
}
.img--dark {
  display: none;
}

.section {
  margin: 160px 0;
  position: relative;
}
.section-title {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
}

.h3 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
}

.btn {
  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;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border-radius: 9999em;
  font-weight: 600;
  padding: 20px 60px;
  color: #fff;
  background-color: transparent;
  -webkit-box-shadow: 0 11px 15px 0 rgba(0, 123, 102, 0.25);
          box-shadow: 0 11px 15px 0 rgba(0, 123, 102, 0.25);
  position: relative;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #00A269;
  background: -webkit-gradient(linear, left top, right top, from(#03b453), to(#00ac75));
  background: linear-gradient(90deg, #03b453 0%, #00ac75 100%);
  overflow: hidden;
}
.btn:after {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#17cc68), to(#09bf86));
  background: linear-gradient(90deg, #17cc68 0%, #09bf86 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.btn__title {
  position: relative;
  z-index: 2;
}
.btn:hover:after {
  opacity: 1;
}
.btn:disabled, .btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.wow {
  visibility: hidden;
}

@media only screen and (max-width: 1299px) {
  body.noscroll {
    overflow: hidden;
  }
  .main {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section {
    margin: 120px 0;
  }
  .section-title {
    font-size: 40px;
  }
  .h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  .section {
    margin: 80px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .h3 {
    font-size: 20px;
  }
}
[data-theme=dark] {
  --text-color: #fff;
  --body-color: #0E0D18;
}
[data-theme=dark] .img--light {
  display: none;
}
[data-theme=dark] .img--dark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-theme=dark] .btn {
  -webkit-box-shadow: 0 11px 15px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 11px 15px 0 rgba(0, 0, 0, 0.25);
  background: -webkit-gradient(linear, left top, right top, from(#009c46), to(#008d60));
  background: linear-gradient(90deg, #009c46 0%, #008d60 100%);
  border-color: 1px solid #21CA8F;
}
[data-theme=dark] .btn:after {
  background: -webkit-gradient(linear, left top, right top, from(#0EC05E), to(#01A873));
  background: linear-gradient(90deg, #0EC05E 0%, #01A873 100%);
}

.slideInLeftOpacity {
  -webkit-animation-name: slideInLeftOpacity;
          animation-name: slideInLeftOpacity;
}

@-webkit-keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInRightOpacity {
  -webkit-animation-name: slideInRightOpacity;
          animation-name: slideInRightOpacity;
}

@-webkit-keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInUpOpacity {
  -webkit-animation-name: slideInUpOpacity;
          animation-name: slideInUpOpacity;
}

@-webkit-keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInDownOpacity {
  -webkit-animation-name: slideInDownOpacity;
          animation-name: slideInDownOpacity;
}

@-webkit-keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInOpacity {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
}

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

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.rotateImage {
  -webkit-animation-name: rotateImage;
          animation-name: rotateImage;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fadeInScaleOpacity {
  -webkit-animation-name: fadeInScaleOpacity;
          animation-name: fadeInScaleOpacity;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes bgScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bgScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.bgScaleOpacity {
  -webkit-animation-name: bgScaleOpacity;
          animation-name: bgScaleOpacity;
}

.logo {
  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;
}
.logo img {
  width: 100%;
}

.language {
  position: relative;
  padding: 10px 0;
}
.language__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.language__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10px;
  height: 10px;
}
.language__dropdown {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  z-index: 3;
  top: 100%;
  left: -20px;
  padding: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  border-radius: var(--brs);
  background: #F4F6F9;
  border: 1px solid #D2DEE4;
}
.language__dropdown.visible {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.language__item {
  color: var(--text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.language__item:hover {
  color: var(--accent-color);
}
.language__icon {
  width: 20px;
  height: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 5px;
}
.language__text {
  font-size: 14px;
  text-wrap-mode: nowrap;
}

.dark-mode {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.dark-mode__icon {
  height: 16px;
  width: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dark-mode__icon svg {
  width: 16px;
  height: 16px;
}
.dark-mode__icon--sun svg path {
  fill: var(--blue);
}
.dark-mode__btn {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  width: 35px;
  height: 20px;
  -webkit-box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  border-radius: 10em;
  border: 1px solid #AEAEAE;
  position: relative;
}
.dark-mode__btn:after {
  position: absolute;
  content: "";
  display: inline-block;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 2px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
  background: -webkit-gradient(linear, left bottom, left top, from(#585858), to(#898989));
  background: linear-gradient(360deg, #585858 0%, #898989 100%);
  border: 1px solid #3F4C6D;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
.dark-mode.active .dark-mode__icon svg path {
  fill: #a2a2a2;
}
.dark-mode.active .dark-mode__icon--moon svg path {
  fill: var(--blue);
}
.dark-mode.active .dark-mode__btn:after {
  left: 17px;
}

.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 127px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.header.fixed {
  height: 80px;
  background: #F4F6F9;
  border-color: #D2DEE4;
}
.header.fixed .header-block {
  height: 80px;
}
.header-block {
  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;
  height: 127px;
  gap: 30px;
  position: relative;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.header__logo {
  width: 82px;
  position: relative;
  z-index: 2;
}
.header__language {
  margin-right: auto;
  margin-left: 10px;
  position: relative;
  z-index: 2;
}
.header__btn {
  padding: 15px 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.menu {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #F4F6F9;
  padding: 5px;
  border: 1px solid #D2DEE4;
  backdrop-filter: var(--blur);
  border-radius: 9999em;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.menu__item.current_page_item .menu__link:after {
  opacity: 1;
}
.menu__link {
  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;
  padding: 10px 24px;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  color: var(--text-color);
  border-radius: 9999em;
}
.menu__link:after {
  position: absolute;
  content: "";
  border-radius: inherit;
  inset: 0;
  opacity: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(207, 218, 228, 0.8)), to(rgba(207, 218, 228, 0.8)));
  background: linear-gradient(180deg, rgba(207, 218, 228, 0.8) 0%, rgba(207, 218, 228, 0.8) 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #D7DFE8;
  z-index: -1;
}
.menu__link:hover:after {
  opacity: 1;
}
.menu__link.highlight:after {
  opacity: 1;
}
.menu__btn {
  display: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.hamburger {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  height: 36px;
  background-color: transparent;
  z-index: 12;
}
.hamburger .hamburger-box {
  width: 36px;
  height: 24px;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::after,
.hamburger .hamburger-inner::before {
  background: var(--text-color);
  height: 3px;
  width: 36px;
  border-radius: 0;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger .hamburger-inner::before {
  top: 10px;
}

@media only screen and (max-width: 1299px) {
  .header {
    height: 80px;
  }
  .header-block {
    height: 80px;
  }
  .header.opened .header__menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header.opened .header__menu .menu__list {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__menu {
    margin: 0;
    padding: 0;
    border-radius: 0;
    -webkit-transform: none;
            transform: none;
    border: none;
    position: fixed;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: var(--body-color);
    opacity: 0;
    visibility: hidden;
    padding-top: 100px;
    backdrop-filter: none;
    background-image: none;
    background-color: #fff;
  }
  .header__menu .menu-block {
    min-height: 100%;
    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;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .header__menu .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    gap: 20px;
  }
  .header__menu .menu__item {
    width: 100%;
  }
  .header__menu .menu__link {
    font-size: 16px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 767px) {
  .header__btn {
    display: none;
  }
  .header__language {
    margin-left: auto;
    margin-right: 0;
  }
  .menu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .header__logo {
    width: 60px;
  }
}
[data-theme=dark] .language {
  color: #fff;
}
[data-theme=dark] .language__toggle svg path {
  stroke: #fff;
}
[data-theme=dark] .language__dropdown {
  background-color: #151624;
  border-color: #202B42;
}
[data-theme=dark] .dark-mode__icon svg path {
  fill: #5D5D5D;
}
[data-theme=dark] .dark-mode__icon--sun svg path {
  fill: #48BBFF;
}
[data-theme=dark] .dark-mode__btn {
  border-color: #313131;
  background-color: #000;
}
[data-theme=dark] .dark-mode__btn:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(74, 91, 132, 0.8)), to(rgba(74, 91, 132, 0.4)));
  background: linear-gradient(180deg, rgba(74, 91, 132, 0.8) 0%, rgba(74, 91, 132, 0.4) 100%);
}
[data-theme=dark] .dark-mode.active .dark-mode__icon svg path {
  fill: #5D5D5D;
}
[data-theme=dark] .dark-mode.active .dark-mode__icon--moon svg path {
  fill: #48BBFF;
}
[data-theme=dark] .header.fixed {
  background-color: #151624;
  border-color: #202B42;
}
[data-theme=dark] .menu {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 32, 60, 0.8)), to(rgba(27, 32, 60, 0.4)));
  background: linear-gradient(180deg, rgba(27, 32, 60, 0.8) 0%, rgba(27, 32, 60, 0.4) 100%);
  border-color: #202B42;
}
[data-theme=dark] .menu__link:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(74, 91, 132, 0.8)), to(rgba(74, 91, 132, 0.4)));
  background: linear-gradient(180deg, rgba(74, 91, 132, 0.8) 0%, rgba(74, 91, 132, 0.4) 100%);
  border-color: #3F4C6D;
}
@media only screen and (max-width: 1299px) {
  [data-theme=dark] .header__menu {
    background: #151624;
  }
}

.page-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.page-content > *:first-child {
  margin-top: 0;
}
.page-content > *:last-child {
  margin-bottom: 0;
}
.page-content p {
  margin: 20px 0;
}
.page-content p:has(img) {
  margin: 40px 0;
}
.page-content strong, .page-content b {
  font-weight: 600;
}
.page-content a:not(.btn) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: inherit;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.page-content a:not(.btn):hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.page-content h1 {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
}
.page-content h2 {
  margin: 40px 0;
  font-weight: 600;
  font-size: 24px;
}
.page-content .alignleft,
.page-content .alignright,
.page-content .aligncenter,
.page-content .alignnone {
  width: auto;
  border-radius: 10px;
}
.page-content .alignleft {
  float: left;
  margin-right: 20px;
}
.page-content .alignright {
  float: right;
  margin-left: 20px;
}
.page-content .aligncenter,
.page-content div.aligncenter {
  display: block;
  margin: 10px auto;
}
.page-content ul, .page-content ol {
  padding: 0;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.page-content ul li, .page-content ol li {
  position: relative;
  padding-left: 25px;
}
.page-content ul li::before {
  position: absolute;
  left: 4px;
  top: 8px;
  content: "";
  width: 9px;
  height: 9px;
  background-color: #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}
.page-content ol {
  counter-reset: item;
}
.page-content ol li:before {
  position: absolute;
  transform: stroke-box;
  left: 0;
  content: "";
  content: counter(item) ".";
  counter-increment: item;
  font-weight: 700;
  /* color: #fff; */
}

@media only screen and (max-width: 1199px) {
  .page-content h1 {
    font-size: 40px;
  }
  .page-content h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .page-content .alignleft,
  .page-content .alignright,
  .page-content .aligncenter,
  .page-content .alignnone {
    float: none;
    margin: 0;
  }
}
@media only screen and (max-width: 575px) {
  .page-content {
    font-size: 14px;
  }
  .page-content h1 {
    font-size: 32px;
  }
  .page-content h2 {
    font-size: 20px;
  }
  .page-content ul li::before {
    top: 6px;
  }
  .page-content .alignleft,
  .page-content .alignright,
  .page-content .aligncenter,
  .page-content .alignnone {
    width: 100%;
  }
  .page-content .alignleft img,
  .page-content .alignright img,
  .page-content .aligncenter img,
  .page-content .alignnone img {
    width: 100%;
  }
}
[data-theme=dark] .page-content {
  color: rgba(255, 255, 255, 0.6);
}

.start-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1.7777777778;
  pointer-events: none;
  z-index: -1;
}
.start-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
.start-video:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 10vw;
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(235, 238, 242, 0)), to(rgb(235, 238, 242)));
  background-image: linear-gradient(180deg, rgba(235, 238, 242, 0) 0%, rgb(235, 238, 242) 100%);
}

.final-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1.28;
  pointer-events: none;
  z-index: -1;
}
.final-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
.final-video:after {
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 10vw;
  content: "";
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(235, 238, 242, 0)), to(rgb(235, 238, 242)));
  background-image: linear-gradient(0deg, rgba(235, 238, 242, 0) 0%, rgb(235, 238, 242) 100%);
}

.hero {
  padding-top: 80px;
  padding-bottom: 120px;
}
.hero-block {
  text-align: center;
  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;
  position: relative;
  z-index: 2;
}
.hero__title {
  margin: 0;
  font-weight: 700;
  font-size: 64px;
}
.hero__slogan {
  margin: 0;
  margin-top: 40px;
  font-weight: 500;
  font-size: 20px;
}
.hero__btn {
  margin-top: 70px;
}

.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}
.features__item {
  width: 270px;
  backdrop-filter: blur(23px);
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  background: var(--light-gradient);
  border-radius: var(--brs);
  border: 1px solid #EAEAEA;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.features__icon {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
}
.features__title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}
.features__text {
  font-weight: 300;
  font-size: 14px;
}

@media only screen and (max-width: 1599px) {
  .features__item {
    width: 100%;
  }
}
@media only screen and (max-width: 1299px) {
  .features__item {
    padding: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .hero__title {
    font-size: 54px;
  }
  .hero__slogan {
    font-size: 18px;
  }
  .features {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .features {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .features__item {
    width: calc(50% - 10px);
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .start-video,
  .final-video {
    aspect-ratio: 1;
  }
  .final-video {
    aspect-ratio: 1;
  }
  .features__item {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .bg-top-video {
    display: nones;
  }
  .hero {
    padding-bottom: 80px;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__slogan {
    font-size: 16px;
    margin-top: 30px;
  }
  .hero__btn {
    margin-top: 50px;
  }
  .features {
    gap: 15px;
  }
  .features__item {
    width: calc(50% - 7.5px);
  }
  .features__title {
    font-size: 14px;
  }
  .features__text {
    font-size: 12px;
  }
}
[data-theme=dark] .start-video::after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 13, 24, 0)), to(rgb(14, 13, 24)));
  background-image: linear-gradient(180deg, rgba(14, 13, 24, 0) 0%, rgb(14, 13, 24) 100%);
}
[data-theme=dark] .final-video::after {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(14, 13, 24, 0)), to(rgb(14, 13, 24)));
  background-image: linear-gradient(0deg, rgba(14, 13, 24, 0) 0%, rgb(14, 13, 24) 100%);
}
[data-theme=dark] .features__item {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 45, 81, 0.8)), to(rgba(31, 45, 81, 0.4)));
  background: linear-gradient(180deg, rgba(31, 45, 81, 0.8) 0%, rgba(31, 45, 81, 0.4) 100%);
  border-color: #202B42;
}

.badge {
  padding: 90px;
  border-radius: 20px;
  backdrop-filter: var(--blur);
  background: rgba(255, 255, 255, 0.9);
}

@media only screen and (min-width: 1600px) {
  .badge {
    margin-left: -90px;
    margin-right: -90px;
  }
}
.trading-features {
  margin-top: 0;
}
.trading-features-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 65px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.trading-features-info {
  max-width: 420px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.trading-features__text {
  margin-top: 30px;
}
.trading-features__slogan {
  margin-top: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  background: -webkit-gradient(linear, right top, left top, from(#1c99ff), to(#275adb));
  background: linear-gradient(270deg, #1c99ff 0%, #275adb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trading-features__btn {
  margin-top: 50px;
}

.markets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 650px;
}
.markets-card {
  width: calc(50% - 10px);
  border: 1px solid #dae3ed;
  border-radius: var(--brs);
  padding: 30px 40px;
  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;
  gap: 20px;
  backdrop-filter: var(--blur);
  background: var(--light-gradient);
}
.markets-card--full-width {
  width: 100%;
}
.markets-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.markets-card__title {
  font-weight: 600;
  font-size: 20px;
}
.markets-card__text {
  font-size: 14px;
}
.markets-card__icon {
  width: 76px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid var(--border-color);
  border-radius: var(--brs);
  background: #f2f5f8;
}
.benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
  gap: 20px;
}
.benefits__icon {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  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;
}
.benefits__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.benefits__title {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
}
.benefits__text {
  font-size: 14px;
  font-weight: 300;
}

@media only screen and (max-width: 1599px) {
  .badge {
    padding: 70px;
  }
  .trading-features-info {
    max-width: 400px;
  }
}
@media only screen and (max-width: 1299px) {
  .markets {
    width: 100%;
  }
  .benefits {
    gap: 0;
  }
  .benefits__item {
    padding: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .badge {
    padding: 60px;
  }
  .trading-features-info {
    max-width: 100%;
  }
  .markets-card {
    padding-left: 30px;
    padding-right: 30px;
  }
  .benefits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
    gap: 30px;
  }
  .benefits__item {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .badge {
    padding: 50px;
  }
  .markets-card {
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .badge {
    padding: 30px;
  }
  .trading-features-grid {
    gap: 50px;
  }
  .trading-features__slogan {
    font-size: 18px;
    margin-top: 30px;
  }
  .trading-features__text {
    margin-top: 20px;
  }
  .trading-features__btn {
    margin-top: 30px;
  }
  .markets {
    gap: 15px;
  }
  .markets-card {
    padding: 30px;
  }
  .markets-card__title {
    font-size: 18px;
  }
  .markets-card__text {
    font-size: 12px;
  }
  .benefits__title {
    font-size: 14px;
  }
  .benefits__text {
    font-size: 12px;
  }
}
[data-theme=dark] .badge {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 32, 60, 0.6)), to(rgba(27, 32, 60, 0.3)));
  background: linear-gradient(180deg, rgba(27, 32, 60, 0.6) 0%, rgba(27, 32, 60, 0.3) 100%);
}
[data-theme=dark] .markets-card {
  border-color: #202B42;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 42, 82, 0.8)), to(rgba(34, 42, 82, 0.4)));
  background: linear-gradient(180deg, rgba(34, 42, 82, 0.8) 0%, rgba(34, 42, 82, 0.4) 100%);
}
[data-theme=dark] .benefits {
  background-color: #111224;
  border-color: #161B38;
}
[data-theme=dark] .benefits__icon {
  background-color: #161B38;
}
[data-theme=dark] .benefits__title {
  color: rgba(255, 255, 255, 0.8);
}

.trading-platform-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
.trading-platform-info {
  max-width: 520px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.trading-platform__text {
  margin-top: 30px;
}

.platform-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  width: 650px;
}
.platform-advantage {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  width: calc(50% - 20px);
}
.platform-advantage__num {
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  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;
  color: var(--accent-color);
}
.platform-advantage__title {
  font-weight: 600;
  font-size: 16px;
}
.platform-advantage__text {
  font-size: 14px;
}

.platform-showcase {
  margin-top: 100px;
  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;
  margin-left: -25px;
}

@media only screen and (max-width: 1299px) {
  .platform-advantages {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .trading-platform-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
  .trading-platform-info {
    max-width: 100%;
  }
  .platform-showcase {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .trading-platform-grid {
    gap: 50px;
  }
  .platform-advantages {
    gap: 30px 40px;
  }
  .platform-advantage__title {
    font-size: 14px;
  }
  .platform-advantage__text {
    font-size: 12px;
  }
  .platform-showcase {
    margin-top: 50px;
  }
}
[data-theme=dark] .platform-advantage__num {
  background-color: #161B38;
}

.trust-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.trust-info {
  width: 370px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.trust__text {
  margin-top: 40px;
}
.trust__license {
  font-weight: 600;
  font-size: 16px;
  background: -webkit-gradient(linear, right top, left top, color-stop(25.48%, #4aa7ff), color-stop(82.69%, #5073ff));
  background: linear-gradient(270deg, #4aa7ff 25.48%, #5073ff 82.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 65px;
}
.trust__btn {
  margin-top: 65px;
}
.trust__image {
  pointer-events: none;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 614px;
  height: 614px;
}
.trust__image img {
  width: 100%;
}
.trust-features {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 614px;
  margin-left: -45px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 340px;
  width: 400px;
}
.trust-features-wrap {
  margin-top: -80px;
  margin-left: -45px;
  margin-bottom: -80px;
  position: relative;
}
.trust-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #000;
}
.trust-feature:nth-child(2) {
  margin-left: 40px;
}

@media only screen and (max-width: 1599px) {
  .trust-features {
    width: 35%;
    margin-top: 5px;
    height: 350px;
  }
  .trust-features-wrap {
    margin-top: -60px;
    margin-bottom: -60px;
  }
}
@media only screen and (max-width: 1299px) {
  .trust-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 65px;
  }
  .trust-info {
    width: 100%;
    max-width: 400px;
  }
  .trust__text {
    margin-top: 30px;
  }
  .trust__license {
    margin-top: 40px;
  }
  .trust__btn {
    margin-top: 40px;
  }
  .trust-features {
    left: 510px;
    width: auto;
    height: 56%;
    margin-top: 0;
  }
  .trust-features-wrap {
    margin-left: -35px;
    margin-top: -35px;
    margin-bottom: -35px;
  }
  .trust-features__image {
    width: 500px;
    height: 500px;
  }
}
@media only screen and (max-width: 1199px) {
  .trust-features {
    left: 410px;
  }
  .trust-features__image {
    width: 400px;
    height: 400px;
  }
}
@media only screen and (max-width: 991px) {
  .trust-info {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .trust-feature {
    font-size: 14px;
  }
  .trust-feature:nth-child(2) {
    margin-left: 20px;
  }
  .trust-features {
    left: 70%;
    margin-left: -20px;
    width: auto;
    height: 70%;
    margin-top: 0;
  }
  .trust-features-wrap {
    margin-left: -20px;
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .trust-features__image {
    width: 70%;
    height: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .trust-block {
    gap: 50px;
  }
  .trust__text {
    margin-top: 20px;
  }
  .trust__license {
    margin-top: 30px;
  }
  .trust__btn {
    margin-top: 30px;
  }
  .trust-feature {
    font-size: 12px;
  }
  .trust-features {
    margin-left: -10px;
    height: 80%;
  }
}
[data-theme=dark] .trust-feature {
  color: #fff;
}

.about-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  margin-bottom: 30px;
}
.about-info {
  max-width: 620px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about__text {
  margin-top: 30px;
  max-width: 430px;
}

.tizers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 20px;
  width: 560px;
}

.tizer {
  width: calc(50% - 10px);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.tizer__value {
  font-weight: 600;
  font-size: 48px;
  background: -webkit-gradient(linear, right top, left top, from(#1c99ff), to(#275adb));
  background: linear-gradient(270deg, #1c99ff 0%, #275adb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tizer__text {
  font-size: 14px;
  line-height: 150%;
  color: #000;
}

@media only screen and (max-width: 1299px) {
  .tizers {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .tizer__value {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .about-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .about-info {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .about-block {
    gap: 30px;
    margin-bottom: 0;
  }
  .tizers {
    gap: 30px 20px;
  }
  .tizer {
    gap: 5px;
  }
  .tizer__value {
    font-size: 32px;
  }
  .tizer__text {
    font-size: 12px;
  }
}
[data-theme=dark] .about .benefits {
  backdrop-filter: blur(23px);
  border: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 45, 81, 0.8)), to(rgba(31, 45, 81, 0.64)));
  background: linear-gradient(180deg, rgba(31, 45, 81, 0.8) 0%, rgba(31, 45, 81, 0.64) 100%);
}
[data-theme=dark] .tizer__value {
  background: -webkit-gradient(linear, right top, left top, color-stop(25.48%, #1fceff), color-stop(82.69%, #538aff));
  background: linear-gradient(270deg, #1fceff 25.48%, #538aff 82.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme=dark] .tizer__text {
  color: #fff;
}

.live-insights {
  padding: 40px;
  backdrop-filter: var(--blur);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  width: 100%;
}
.live-insights-header {
  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;
  gap: 30px;
}
.live-insights__title {
  font-weight: 500;
  line-height: 1.3;
}
.live-insights__update {
  font-weight: 500;
  text-align: right;
  font-size: 13px;
  line-height: 130%;
  color: #0cbd7e;
}
.live-insights-content {
  margin-top: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  display: none;
}
.live-insights-content--light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.live-insights-content--dark {
  display: none;
}
.live-insights-card {
  width: 100%;
  height: 320px;
  border: 1px solid #DFDFDF;
  border-radius: var(--brs);
  overflow: hidden;
}

.tradingview-widget-container {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media only screen and (max-width: 991px) {
  .live-insights-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .live-insights__update {
    font-size: 12px;
  }
}
@media only screen and (max-width: 575px) {
  .live-insights {
    padding: 30px;
  }
  .live-insights__update {
    font-size: 11px;
  }
  .live-insights-card {
    height: 280px;
  }
}
[data-theme=dark] .live-insights {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 32, 60, 0.8)), to(rgba(27, 32, 60, 0.64)));
  background: linear-gradient(180deg, rgba(27, 32, 60, 0.8) 0%, rgba(27, 32, 60, 0.64) 100%);
}
[data-theme=dark] .live-insights-content--light {
  display: none;
}
[data-theme=dark] .live-insights-content--dark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-theme=dark] .live-insights-card {
  border: none;
}

.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.advantage {
  backdrop-filter: blur(23px);
  background: var(--light-gradient);
  padding: 30px 40px;
  border-radius: var(--brs);
  border: 1px solid #E3E3E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
}
.advantage__icon {
  width: 46px;
  height: 46px;
  background-color: #fff;
  border-radius: 50%;
  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;
}
.advantage__title {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

@media only screen and (max-width: 991px) {
  .advantages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 575px) {
  .advantage {
    padding-left: 30px;
    padding-right: 30px;
  }
  .advantage__title {
    font-size: 14px;
  }
  .advantage__text {
    font-size: 12px;
  }
}
[data-theme=dark] .advantage {
  border-color: #273058;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 45, 81, 0.8)), to(rgba(31, 45, 81, 0.4)));
  background: linear-gradient(180deg, rgba(31, 45, 81, 0.8) 0%, rgba(31, 45, 81, 0.4) 100%);
}
[data-theme=dark] .advantage__icon {
  background-color: #273058;
}
[data-theme=dark] .advantage__title {
  color: #fff;
}

.footer {
  padding: 100px 0;
  line-height: 1.5;
  background-color: #fff;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 82px;
  margin-bottom: 25px;
}
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
.footer-info {
  max-width: 475px;
  color: rgba(0, 0, 0, 0.5);
}
.footer-disclaimer {
  color: rgba(0, 0, 0, 0.5);
}
.footer-copy {
  margin-top: 45px;
  color: rgba(0, 0, 0, 0.5);
}
.footer-bottom {
  margin-top: 100px;
}
.footer-text {
  color: #9a9a9a;
}
.footer-nav {
  width: 100%;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%;
  gap: 30px;
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}
.footer-link {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.footer-link:hover {
  text-decoration: underline;
  text-decoration-color: #000;
}
.footer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer-btns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-btns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer-btns__title {
  font-size: 20px;
  color: #000;
}

@media only screen and (max-width: 1199px) {
  .footer {
    padding: 80px 0;
  }
  .footer-top {
    gap: 80px;
  }
  .footer-bottom {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-info {
    max-width: 100%;
  }
  .footer-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-btns-wrap {
    text-align: center;
  }
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    padding: 60px 0;
    gap: 50px;
  }
  .footer-copy {
    margin-top: 30px;
  }
  .footer-nav {
    gap: 50px;
  }
  .footer-bottom {
    margin-top: 50px;
  }
}
[data-theme=dark] .footer {
  background-color: #151624;
}
[data-theme=dark] .footer-info {
  color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .footer-disclaimer {
  color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .footer-copy {
  color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .footer-link {
  color: #fff;
}
[data-theme=dark] .footer-link:hover {
  text-decoration-color: white;
}
[data-theme=dark] .footer-btns__title {
  color: #fff;
}

*::-webkit-input-placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 300;
  color: #4B537E;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 300;
  color: #4B537E;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*:-ms-input-placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 300;
  color: #4B537E;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::-ms-input-placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 300;
  color: #4B537E;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::placeholder {
  opacity: 1;
  font-size: 14px;
  font-weight: 300;
  color: #4B537E;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input[type=text],
input[type=password],
input[type=url],
input[type=email],
input[type=tel],
input[type=number],
textarea {
  text-align: left;
  color: #4B537E;
  line-height: 1.5;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  height: 53px;
  padding: 0 40px;
  border: 1px solid #BEBFD3;
  border-radius: 9999em;
  -webkit-box-shadow: none;
          box-shadow: none;
}
input[type=text]:focus::-webkit-input-placeholder, input[type=password]:focus::-webkit-input-placeholder, input[type=url]:focus::-webkit-input-placeholder, input[type=email]:focus::-webkit-input-placeholder, input[type=number]:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
input[type=text]:focus::-moz-placeholder, input[type=password]:focus::-moz-placeholder, input[type=url]:focus::-moz-placeholder, input[type=email]:focus::-moz-placeholder, input[type=number]:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}
input[type=text]:focus:-ms-input-placeholder, input[type=password]:focus:-ms-input-placeholder, input[type=url]:focus:-ms-input-placeholder, input[type=email]:focus:-ms-input-placeholder, input[type=number]:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
input[type=text]:focus::-ms-input-placeholder, input[type=password]:focus::-ms-input-placeholder, input[type=url]:focus::-ms-input-placeholder, input[type=email]:focus::-ms-input-placeholder, input[type=number]:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
input[type=text]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=number]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  resize: none;
  height: 95px;
  padding-top: 30px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 53px #fff;
  -webkit-text-fill-color: #4B537E;
}

.form-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.form-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}

.form-section {
  padding: 80px 0;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form-section .container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 90px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form-content {
  width: 100%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  padding: 60px 0 80px;
}
.form-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.form__logo {
  width: 82px;
}
.form-info {
  max-width: 500px;
}
.form__text {
  margin-top: 40px;
}

.form {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 80px 90px;
}
.form-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form__subtitle {
  font-weight: 300;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.form-label {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  opacity: 0.8;
}
.form-label span {
  color: #d12e33;
}
.form-link {
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: var(--text-color);
}
.form-link a {
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.form-link a:hover {
  text-decoration: underline;
  text-decoration-color: inherit;
}
.form-foot {
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  color: var(--text-color);
}
.form-foot a {
  font-weight: 700;
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: inherit;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.form-foot a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.fancybox-bg {
  background-color: var(--black);
}

.fancybox-is-open .fancybox-bg {
  background-color: var(--black);
  opacity: 0.75;
}

.input-password {
  position: relative;
}
.input-password input {
  width: 100%;
  padding-right: 80px;
}
.input-password__toggle {
  border: none;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  background-color: transparent;
  cursor: pointer;
  right: 40px;
  bottom: 15px;
  width: 24px;
  height: 24px;
  background-image: url("./img/eye-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.input-password__toggle.is-active {
  opacity: 1;
}

@media only screen and (max-height: 899px) and (min-width: 992px) {
  .form {
    padding: 70px;
  }
  .form-section {
    padding: 60px 0;
  }
  .form-content {
    padding: 40px 0 60px;
  }
}
@media only screen and (max-width: 1299px) {
  .form {
    padding: 60px;
  }
  .form-block {
    gap: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .form {
    margin-bottom: auto;
    margin-top: auto;
  }
  .form-video {
    aspect-ratio: 1.7777777778;
    bottom: auto;
  }
  .form-video:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 10vw;
    content: "";
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(235, 238, 242, 0)), to(rgb(235, 238, 242)));
    background-image: linear-gradient(180deg, rgba(235, 238, 242, 0) 0%, rgb(235, 238, 242) 100%);
  }
  .form-section {
    padding: 0px 0 80px;
  }
  .form-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-content {
    padding: 0;
  }
  .form-header {
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .form {
    padding: 50px;
  }
  .form-video {
    aspect-ratio: 1;
  }
}
@media only screen and (max-width: 575px) {
  input[type=text],
  input[type=password],
  input[type=url],
  input[type=email],
  input[type=number],
  textarea {
    padding-left: 20px;
    padding-right: 20px;
  }
  .input-password input {
    padding-right: 50px;
  }
  .input-password__toggle {
    right: 20px;
  }
  .form {
    padding: 40px 30px;
    gap: 40px;
  }
  .form-block {
    gap: 50px;
  }
  .form-content {
    gap: 40px;
  }
  .form__text {
    margin-top: 20px;
  }
  .form-fields {
    gap: 20px;
  }
  .form-body {
    gap: 20px;
  }
  .form__logo {
    width: 60px;
  }
  .form-section {
    padding: 0px 0 60px;
  }
  .form__subtitle {
    font-size: 12px;
  }
  .form-label {
    font-size: 14px;
  }
}
[data-theme=dark] input[type=text],
[data-theme=dark] input[type=password],
[data-theme=dark] input[type=url],
[data-theme=dark] input[type=email],
[data-theme=dark] input[type=tel],
[data-theme=dark] input[type=number],
[data-theme=dark] textarea {
  border-color: #333555;
  background-color: #111224;
}
[data-theme=dark] input:-webkit-autofill,
[data-theme=dark] input:-webkit-autofill:hover,
[data-theme=dark] input:-webkit-autofill:focus,
[data-theme=dark] input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 53px #111224;
}
[data-theme=dark] .form {
  border-radius: 10px;
  background-color: #111224;
  color: #fff;
  padding: 60px 80px;
}
[data-theme=dark] .form__subtitle {
  color: rgba(255, 255, 255, 0.6);
}
[data-theme=dark] .form-label {
  color: #fff;
}
[data-theme=dark] .form-content {
  padding: 0;
}
[data-theme=dark] .form-block {
  padding: 80px 90px;
  backdrop-filter: blur(13px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 32, 60, 0.9)), to(rgba(27, 32, 60, 0.45)));
  background: linear-gradient(180deg, rgba(27, 32, 60, 0.9) 0%, rgba(27, 32, 60, 0.45) 100%);
  border-radius: 20px;
  margin-left: -90px;
  margin-right: -90px;
}
@media only screen and (max-width: 1599px) {
  [data-theme=dark] .form {
    padding-left: 70px;
    padding-right: 70px;
  }
  [data-theme=dark] .form-section {
    padding: 30px;
  }
  [data-theme=dark] .form-block {
    margin-left: 0;
    margin-right: 0;
    padding: 70px;
  }
}
@media only screen and (max-width: 1299px) {
  [data-theme=dark] .form {
    padding: 50px;
  }
  [data-theme=dark] .form-block {
    padding: 50px;
  }
}
@media only screen and (max-width: 991px) {
  [data-theme=dark] .form-video::after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 13, 24, 0)), to(rgb(14, 13, 24)));
    background-image: linear-gradient(180deg, rgba(14, 13, 24, 0) 0%, rgb(14, 13, 24) 100%);
  }
  [data-theme=dark] .form {
    border-radius: 20px;
  }
  [data-theme=dark] .form-section {
    padding: 0 0 80px;
  }
  [data-theme=dark] .form-block {
    margin: 0;
    padding: 0;
    background: none;
    backdrop-filter: none;
  }
}
@media only screen and (max-width: 575px) {
  [data-theme=dark] .form {
    padding: 40px 30px;
  }
  [data-theme=dark] .form-section {
    padding: 0 0 60px;
  }
}

.auth-form__step {
  display: none;
}
.riisk-auth-page .form-content {
  justify-content: flex-start;
}
.riisk-auth-page .form-info {
  margin-top: clamp(48px, 12vh, 140px);
}
.auth-form__step.is-active {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.auth-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.auth-form__grid .form-field {
  margin: 0;
}
.auth-field__input {
  width: 100%;
}
select.auth-field__input {
  height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(75, 84, 126, 0.14);
  border-radius: 10px;
  color: #111224;
  background-color: #fff;
  outline: none;
}
[data-theme=dark] select.auth-field__input {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background-color: #111224;
}
.auth-form__dynamic {
  display: grid;
  gap: 20px;
}
.riisk-register-page .form-body {
  gap: 22px;
}
.riisk-register-page .form-fields {
  gap: 18px;
}
.riisk-register-page .form-field {
  margin-bottom: 0;
}
.riisk-register-page .auth-form__next,
.riisk-register-page .auth-form__submit {
  margin-top: 4px;
}
.auth-form__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}
.auth-form__actions .form__btn {
  margin-top: 0;
}
.auth-form__back {
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid rgba(75, 84, 126, 0.18);
  border-radius: 10px;
  color: #111224;
  background: transparent;
  cursor: pointer;
}
[data-theme=dark] .auth-form__back {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.auth-form__message {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.45;
}
.auth-form__message.is-error {
  color: #d94d4d;
}
.auth-form__message.is-success {
  color: #03A86B;
}
.auth-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 16px 0;
  color: #4B547E;
  font-size: 14px;
  line-height: 1.45;
}
[data-theme=dark] .auth-check {
  color: rgba(255, 255, 255, 0.72);
}
.auth-check input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid rgba(75, 84, 126, 0.42);
  border-radius: 4px;
  background: #fff;
  appearance: none;
  cursor: pointer;
  position: relative;
}
[data-theme=dark] .auth-check input {
  background: #111224;
  border-color: rgba(255, 255, 255, 0.42);
}
.auth-check input:checked {
  border-color: #03A86B;
  background: #03A86B;
}
.auth-check input:checked::after {
  position: absolute;
  content: "";
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.auth-form .iti {
  display: block;
  width: 100%;
}
.auth-form .iti input {
  width: 100%;
  padding-left: 96px;
}
.auth-form .iti__country-container {
  color: #111224;
}
.auth-form .iti__selected-country {
  min-width: 78px;
  padding: 0 12px;
  border-right: 1px solid rgba(75, 84, 126, 0.14);
  border-radius: 10px 0 0 10px;
}
.auth-form .iti__selected-dial-code {
  color: #111224;
}
[data-theme=dark] .auth-form .iti__selected-dial-code {
  color: #fff;
}
[data-theme=dark] .auth-form .iti__selected-country {
  border-color: rgba(255, 255, 255, 0.14);
}
.flatpickr-calendar {
  border: 1px solid rgba(75, 84, 126, 0.14);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(17, 18, 36, 0.16);
}
.flatpickr-calendar .flatpickr-current-month,
.flatpickr-calendar .flatpickr-weekday,
.flatpickr-calendar .flatpickr-day {
  color: #111224;
}
.flatpickr-calendar .flatpickr-day:hover,
.flatpickr-calendar .flatpickr-day:focus {
  border-color: rgba(3, 168, 107, 0.2);
  background: rgba(3, 168, 107, 0.12);
}
.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day.selected:focus {
  border-color: #03A86B;
  background: #03A86B;
  color: #fff;
}
[data-theme=dark] .flatpickr-calendar {
  border-color: #333555;
  background: #111224;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}
[data-theme=dark] .flatpickr-calendar:before {
  border-bottom-color: #333555;
}
[data-theme=dark] .flatpickr-calendar:after {
  border-bottom-color: #111224;
}
[data-theme=dark] .flatpickr-calendar .flatpickr-months,
[data-theme=dark] .flatpickr-calendar .flatpickr-current-month,
[data-theme=dark] .flatpickr-calendar .flatpickr-weekday,
[data-theme=dark] .flatpickr-calendar .flatpickr-day,
[data-theme=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled,
[data-theme=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  color: #fff;
}
[data-theme=dark] .flatpickr-calendar .flatpickr-day.prevMonthDay,
[data-theme=dark] .flatpickr-calendar .flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.34);
}
[data-theme=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled,
[data-theme=dark] .flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.22);
}
[data-theme=dark] .flatpickr-calendar .flatpickr-day:hover,
[data-theme=dark] .flatpickr-calendar .flatpickr-day:focus {
  border-color: rgba(3, 168, 107, 0.32);
  background: rgba(3, 168, 107, 0.2);
}
[data-theme=dark] .flatpickr-calendar .flatpickr-monthDropdown-months {
  color: #fff;
  background: #111224;
}
[data-theme=dark] .flatpickr-calendar .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fff;
}
[data-theme=dark] .flatpickr-calendar .numInputWrapper span.arrowDown:after {
  border-top-color: #fff;
}
[data-theme=dark] .flatpickr-calendar .flatpickr-prev-month svg,
[data-theme=dark] .flatpickr-calendar .flatpickr-next-month svg {
  fill: #fff;
}
@media only screen and (max-width: 575px) {
  .auth-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .auth-form__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
[data-theme=dark] .text-page__inner{
  background: linear-gradient(180deg, rgb(27 32 60) 0%, rgb(27 32 60) 100%);
}
[data-theme=dark] .page-content ul li::before{
  background-color: rgba(255, 255, 255, 0.6);
}
.text-page__inner{
  padding:40px;
  background-color: #fff;
  border-radius: 25px;
}
.page-content li>*{
  margin:0;
}
