@charset "UTF-8";
:root{
  --white: #F2F8FB;
  --black: #141318;
  --light-gray: #DADADA;
  --gray: #636376;
  --dark-gray: #1d1c21;
}
.alert {
  height: 60px;
  padding: 0 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.alert.info {
  background-color: #0177FC;
  color: #FFF;
}

.form-block {
  padding: 40px;
  background-color: #1C1B20;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.form-block p {
  color: #B8B8B8;
}
.form-block p.acceptance {
  color: #636376;
  font-size: 12px;
}
.form-block p.acceptance a {
  color: #636376;
}
.form-block button {
  width: 100%;
}
.form-block > *:not(:last-child) {
  margin-bottom: 40px;
}
.form-block textarea {
  resize: none;
}

.top-bar {
  display: flex;
  width: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
.top-bar::-webkit-scrollbar {
  display: none;
}
.top-bar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.top-bar .select {
  position: relative;
}
.top-bar .select::after {
  pointer-events: none;
  cursor: pointer;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 0;
  height: 60px;
  position: absolute;
  font-family: "iconsax" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 18px;
  color: #B8B8B8;
}
.top-bar select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding: 20px 60px 20px 20px;
  background-color: #1C1B20;
  color: #B8B8B8;
  outline: none;
  border: none;
  border-radius: 20px;
}
.top-bar > *:not(:last-child) {
  margin-right: 40px;
}

button {
  outline: none !important;
  border: none !important;
}

input[type=email],
input[type=phone],
input[type=text],
textarea {
  padding: 20px;
  border-radius: 10px;
  border: solid 1px rgba(255, 255, 255, 0.04);
  background-color: rgba(255, 255, 255, 0.04);
  outline: none;
  transition: border 0.2s ease;
  font-size: 15px;
  color: #DADADA;
}
input[type=email]::placeholder,
input[type=phone]::placeholder,
input[type=text]::placeholder,
textarea::placeholder {
  color: #636376 !important;
}

input[type=email]:focus,
input[type=phone]:focus,
input[type=text]:focus,
textarea:focus {
  border: solid 1px #0177FC;
  color: #DADADA;
}

p {
  line-height: 140%;
}

h1, .like-h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 140%;
}
@media (max-width: 1200px) {
  h1, .like-h1 {
    font-size: 36px;
  }
}

h2, .like-h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 140%;
}
@media (max-width: 1200px) {
  h2, .like-h2 {
    font-size: 24px;
  }
}

h3, .like-h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 140%;
}

h4, .like-h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 140%;
}

h5, .like-h5 {
  font-size: 15px;
  font-weight: bold;
  line-height: 140%;
}

body {
  background-color: #141318;
  display: flex;
  align-items: center;
  flex-direction: column;
}
body * {
  font-family: "Roboto", sans-serif;
}
header{
  width: 100%;
}
.container{
  max-width: 1400px;
  margin: 0 auto;
}
.header_logo{
  display: flex;
}
.header_logo img{
 max-width: 100%;
  object-fit: contain;
}
.desktop_header{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.desktop-menu{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 28px;
  font-weight: bold;
  color: var(--light-gray);
  gap: 1em;
}
.desktop-menu a{
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}
.desktop-menu .sub-menu{
  display: none;
  grid-gap: 0.5em;
  font-size: 18px;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--gray);
  color: var(--white);
  padding: 1em;
  width: max-content;
  border-radius: .5em;
}
.desktop-menu .menu-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: .5em;
}
.desktop-menu .menu-item:hover>.sub-menu{
  display: grid;
}
.desktop-menu .menu-item-has-children:after{
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}
.mobile_header{
  display: none;
  align-items: center;
  gap: 30px;
}
.mobile_header .header_logo{
  width: 70px;
  height: 70px;
}
.mobile-menu{
  color: var(--light-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: bold;
  gap: 1em;
}
.mobile-menu a{
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

footer {
  margin-top: 80px;
  min-height: 80px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
}
footer > *:not(:last-child) {
  margin-bottom: 20px;
}
footer .group {
  display: flex;
}
footer .group a {
  color: #636376;
}
footer .group > *:not(:last-child) {
  margin-right: 10px;
}
footer span {
  color: #636376;
}
.footer_menu-wrapper{
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer_menu a{
  color: var(--light-gray);
  text-decoration: none;
}
.footer_menu-title{
  color: var(--light-gray);
  margin: 0 0 1em 0;
}
.footer_menu-items{
  display: grid;
  grid-gap: .5em;
  color: var(--light-gray);
}
.delta_price.dec{
  color: #FF784B;
}
.delta_price.inc{
  color: #18CC55;
}

aside {
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  height: fit-content;
}
@media (max-width: 1200px) {
  aside {
    width: 100px;
  }
}
@media (max-width: 720px) {
  aside {
    z-index: 999;
    background: #141318;
    position: fixed;
    width: 100%;
    bottom: 0;
    top: unset;
    left: 0;
  }
  aside .logo {
    display: none;
  }
  aside nav {
    flex-direction: row !important;
    margin-bottom: unset !important;
  }
}
aside > *:not(:last-child) {
  margin-bottom: 40px;
}
aside .logo {
  width: 100%;
}
aside .logo .short {
  display: none;
}
@media (max-width: 1200px) {
  aside .logo {
    text-align: center;
    text-align: -webkit-center;
  }
  aside .logo .long {
    display: none;
  }
  aside .logo .short {
    display: block;
  }
}
aside nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
aside nav:not(:hover) .current {
  background-color: rgba(255, 255, 255, 0.04);
}
aside nav li {
  display: flex;
  width: 100%;
}
aside nav li a {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 0 15px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
aside nav li a.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
aside nav li a.disabled:hover {
  background-color: transparent;
}
aside nav li a.disabled .left-side {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #636376;
}
aside nav li a:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
aside nav li a .left-side {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #DADADA;
}
aside nav li a .left-side i {
  font-size: 24px;
}
aside nav li a .left-side > *:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 1200px) {
  aside nav li a {
    justify-content: center;
  }
  aside nav li a .left-side i {
    margin: 0 !important;
  }
  aside nav li a .left-side div {
    display: none;
  }
  aside nav li a .counter {
    display: none;
  }
  aside .socials {
    display: none !important;
  }
}
aside nav li a .counter {
  font-size: 15px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #636376;
}
aside .socials {
  padding: 0 15px;
  display: flex;
}
aside .socials a {
  display: block;
  text-decoration: none;
  width: 24px;
  height: 24px;
}
aside .socials a:not(:last-child) {
  margin-right: 10px;
}

main {
  min-height: 100vh;
  width: 100%;
}
main > *:not(:last-child) {
  margin-bottom: 40px;
}
main section > *:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  main {
    margin-bottom: 100px;
  }
}

#wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 40px 40px 0 40px;
  display: flex;
}
#wrapper > *:not(:last-child) {
  margin-right: 40px;
}

.blue {
  background-color: #0177FC;
}

.green {
  background-color: #18CC55;
}

.button {
  height: 60px;
  display: flex;
  justify-content: center;
  padding: 5px 50px;
  width: fit-content;
  align-items: center;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #FFF;
  text-decoration: none;
}
.button.disabled {
  background-color: rgba(255, 255, 255, 0.04);
  color: #B8B8B8;
  cursor: not-allowed;
}
.button i {
  font-size: 24px;
}
.button > *:not(:last-child) {
  margin-right: 10px;
}

.graph-element {
  border-radius: 20px;
  padding: 20px;
  background: #1C1B20;
}
.graph-element .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.graph-element .title h4, .like-h4 {
  font-weight: bold;
  font-size: 18px;
  color: #DADADA;
}
.graph-element .title h5, .like-h5 {
  font-weight: bold;
  font-size: 15px;
  color: #B8B8B8;
}
.graph-element .title h5, .like-h5 span {
  font-weight: normal;
  font-size: 12px;
  text-transform: uppercase;
  color: #636376;
}
.graph-element h6, .like-h6 {
  font-weight: normal;
  font-size: 12px;
  color: #636376;
  float: right;
}
.graph-element h6.color-green, .like-h6.color-green {
  color: #18CC55;
}
.graph-element h6.color-red, .like-h6.color-red {
  color: #FF784B;
}
/*# sourceMappingURL=general.css.map */

@media (max-width: 1024px) {
  .container{
    padding: 0 30px;
  }
  .desktop_header{
    display: none;
  }
  .mobile_header{
    display: flex;
  }
}

.faq-list{
  display: grid;
}
.faq-item{
  padding: 1em;
  border-top: 1px solid var(--gray);
  color: var(--white);
}
.faq-item:last-child{
  border-bottom: 1px solid var(--gray);
}
.faq_question{
  cursor: pointer;
  list-style: none;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
[open] .faq_question{
  margin: 0 0 .5em 0;
}
.faq_question:after{
  content: '';
  width: 30px;
  height: 30px;
  background: linear-gradient(to bottom,
  transparent,
  transparent calc(50% - 1px),
  var(--gray) calc(50% - 1px),
  var(--gray) calc(50% + 1px),
  transparent calc(50% + 1px),
  transparent);
}
[open] .faq_question:after{
  background: linear-gradient(to bottom,
    transparent,
    transparent calc(50% - 1px),
    var(--gray) calc(50% - 1px),
    var(--gray) calc(50% + 1px),
    transparent calc(50% + 1px),
    transparent),
  linear-gradient(to right,
    transparent,
    transparent calc(50% - 1px),
    var(--gray) calc(50% - 1px),
    var(--gray) calc(50% + 1px),
    transparent calc(50% + 1px),
    transparent);
}

.other-soft{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
}
.soft{
  background: var(--dark-gray);
  color: var(--white);
  text-decoration: none;
  display: grid;
  grid-gap: .5em;
  padding: 1em;
}
.soft:hover{
  background: var(--gray);
}
.soft_title{
  font-size: 1.2em;
  font-weight: bold;
}