*, ol, ul, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0A0E12;
  font-family: Manrope;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1359px) {
  .container {
    max-width: 1200px;
    padding: 0 15px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 969px;
  }
}
@media (max-width: 966px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}

.row {
  flex-wrap: wrap;
  display: flex;
}

.section_title {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px; /* 120% */
  text-transform: uppercase;
}
@media (max-width: 966px) {
  .section_title {
    font-size: 35px;
    line-height: 35px;
  }
}

.description {
  color: #D7D7D7;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.bg_section {
  position: relative;
}

.item_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 1920px;
}
@media (min-width: 1921px) {
  .item_bg {
    right: 0;
    margin: 0 auto;
  }
}
.item_bg img {
  height: 100%;
  width: 100%;
}
@media (max-width: 966px) {
  .item_bg img {
    object-fit: cover;
  }
}

.lang_select {
  position: relative;
  width: max-content;
}

/* current button */
.lang_current {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 14px;
  border: none;
  background: transparent;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.lang_current span {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.2px; /* 180% */
}

.lang_current svg {
  transition: transform 0.3s ease;
}

/* rotate arrow */
.lang_select.active .lang_current svg {
  transform: rotate(180deg);
}

/* dropdown */
.lang_dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  border-radius: 18px;
  background: #111;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 50;
}

/* open */
.lang_select.active .lang_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* option */
.lang_option {
  height: 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.lang_option:hover,
.lang_option.active {
  color: #fff;
}

header {
  display: flex;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 966px) {
  header {
    padding-top: 0;
  }
}
header.active {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background: #0A0E12;
  width: 100%;
  height: 100%;
}
header.active .row {
  padding-top: 100px;
  justify-content: center;
  flex-direction: column;
  gap: 20px 0;
}
header.active .row .header_logo {
  display: none;
}
header.active .row nav {
  display: flex;
}
header.active .row nav .links {
  flex-direction: column;
  gap: 20px;
}
header.active .row .close_btn {
  display: flex;
  position: absolute;
  top: 30px;
  right: 30px;
}
header.active .row .open_mobile_btn {
  display: none;
}
header.active .row .another_website {
  display: flex;
}
header .row {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header .row .header_logo {
  display: flex;
  width: 254px;
  height: 68px;
}
@media (max-width: 966px) {
  header .row .header_logo {
    width: 150px;
  }
}
header .row .header_logo img {
  width: 100%;
  height: 100%;
}
@media (max-width: 966px) {
  header .row nav {
    display: none;
  }
}
header .row nav .links {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .row nav .links li a {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: 0.3s all ease;
}
header .row nav .links li a:hover {
  color: rgb(255, 0, 0);
}
header .row .another_website {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #FFF;
  gap: 0 4px;
  transition: 0.3s all ease;
}
@media (max-width: 966px) {
  header .row .another_website {
    display: none;
  }
}
header .row .another_website:hover {
  border-color: rgb(255, 0, 0);
}
header .row .another_website:hover span {
  color: rgb(255, 0, 0);
}
header .row .another_website:hover svg path {
  stroke: rgb(255, 0, 0);
}
header .row .another_website span {
  line-height: 16px;
  text-transform: uppercase;
  transition: 0.3s all ease;
}
header .row .another_website svg path {
  transition: 0.3s all ease;
}
header .open_mobile_btn {
  display: none;
}
@media (max-width: 966px) {
  header .open_mobile_btn {
    display: flex;
  }
}
header .close_btn {
  display: none;
}

.hero {
  position: relative;
}
.hero.nothing .item_bg {
  display: none;
}
.hero.request_section {
  padding-bottom: 35px;
}
.hero.request_section .request_content {
  padding-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 31px 0;
  align-items: center;
  width: 100%;
  max-width: 812px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 966px) {
  .hero.request_section .request_content {
    padding-top: 30px;
  }
}
.hero.request_section .request_content .request_info {
  padding: 25px;
  border-radius: 32px;
  border: 1px solid #FFF;
  background: radial-gradient(90.49% 61.77% at 6.09% 90.7%, rgba(113, 91, 248, 0.2) 0%, rgba(113, 91, 248, 0) 100%), radial-gradient(91.6% 91.6% at 50.12% 8.4%, rgba(113, 91, 248, 0.2) 0%, rgba(113, 91, 248, 0) 100%), #0A0E12;
  width: 100%;
}
.hero.request_section .request_content .request_info .link {
  word-wrap: break-word;
}
.hero.request_section .request_content .request_info .op {
  color: #D7D7D7;
}
.hero.request_section .request_content .request_info .client_adress {
  color: #fff;
  font-weight: 700;
  line-height: 22.4px; /* 140% */
  margin: 5px 0 23px 0;
}
.hero.request_section .request_content .request_info .more_info {
  max-width: 645px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: 21px;
}
.hero.request_section .request_content .request_info .transaction_adress {
  margin-top: 8px;
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 28px;
  word-wrap: break-word;
}
.hero.request_section .request_content .request_info .qrcode {
  width: 240px;
  height: 240px;
  margin: 0 auto;
}
.hero.request_section .request_content .request_info .qrcode img {
  width: 100%;
  height: 100%;
}
.hero.request_section .request_content .request_info .download_btn {
  margin: 19px auto 0 auto;
  display: flex;
  width: 285.67px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60.38px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6.4px;
  background: #715BF8;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .hero_content {
  padding-top: 52px;
  max-width: 812px;
  margin: 0 auto;
  padding-bottom: 65px;
  gap: 106px 0;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 966px) {
  .hero .hero_content {
    padding-top: 30px;
  }
}
.hero .hero_content .hero_text {
  display: flex;
  flex-direction: column;
  gap: 22px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero .hero_content .hero_text h2 {
  color: #FFF;
  font-size: 58px;
  font-style: normal;
  font-weight: 800;
  line-height: 58px; /* 100% */
  letter-spacing: 0.68px;
  text-transform: uppercase;
}
@media (max-width: 966px) {
  .hero .hero_content .hero_text h2 {
    font-size: 45px;
    line-height: 45px;
  }
}
.hero .hero_content .hero_text p {
  color: #D7D7D7;
  line-height: 25.2px; /* 140% */
  max-width: 504px;
}
.hero .hero_content .mixer {
  padding-bottom: 41px;
  border-radius: 32px;
  border: 1px solid #FFF;
  background: radial-gradient(90.49% 61.77% at 6.09% 90.7%, rgba(113, 91, 248, 0.2) 0%, rgba(113, 91, 248, 0) 100%), radial-gradient(91.6% 91.6% at 50.12% 8.4%, rgba(113, 91, 248, 0.2) 0%, rgba(113, 91, 248, 0) 100%), #0A0E12;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media (max-width: 966px) {
  .hero .hero_content .mixer {
    gap: 20px 0;
  }
}
.hero .hero_content .mixer .block_row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.hero .hero_content .mixer .block_row .info_block {
  width: 33.333%;
  flex: 0 0 auto;
  height: 80px;
  display: flex;
  flex-direction: column;
  gap: 2px 0;
  justify-content: center;
  align-items: center;
  border-radius: 32px 0;
  transition: 0.3s all ease;
}
@media (max-width: 966px) {
  .hero .hero_content .mixer .block_row .info_block {
    width: 100%;
    border-radius: 0 0 32px 32px;
  }
}
.hero .hero_content .mixer .block_row .info_block.active {
  border-bottom: 4px solid #715BF8;
  background: linear-gradient(180deg, rgba(113, 91, 248, 0) 0%, rgba(113, 91, 248, 0.4) 95%);
}
.hero .hero_content .mixer .block_row .info_block span {
  line-height: normal;
  text-transform: uppercase;
  font-weight: 800;
}
.hero .hero_content .mixer .block_row .info_block:nth-child(2) {
  border-radius: 0 0 32px 32px;
}
.hero .hero_content .mixer .block_row .info_block:nth-child(3) {
  border-radius: 0 0 0 32px;
}
@media (max-width: 966px) {
  .hero .hero_content .mixer .block_row .info_block:nth-child(3) {
    width: 100%;
    border-radius: 0 0 32px 32px;
  }
}
.hero .hero_content .mixer .terms {
  padding: 0 41px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media (max-width: 966px) {
  .hero .hero_content .mixer .terms {
    padding: 0 15px;
  }
}
.hero .hero_content .mixer .terms .information {
  display: flex;
  justify-content: space-between;
  gap: 15px 30px;
}
@media (max-width: 966px) {
  .hero .hero_content .mixer .terms .information {
    flex-direction: column;
  }
}
.hero .hero_content .mixer .terms .information li {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
  align-items: start;
}
.hero .hero_content .mixer .terms .information li .head_info {
  color: #828282;
  line-height: 16px; /* 100% */
}
.hero .hero_content .mixer .terms .information li .bottom_info {
  font-weight: 600;
  text-transform: uppercase;
}
.hero .hero_content .mixer .terms .information li img {
  width: 38px;
  height: 20px;
}
.hero .hero_content .mixer .btc_address {
  padding: 0 41px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media (max-width: 966px) {
  .hero .hero_content .mixer .btc_address {
    padding: 0 15px;
  }
}
.hero .hero_content .mixer .btc_address .item_input {
  display: flex;
  flex-direction: column;
  gap: 11.18px 0;
}
.hero .hero_content .mixer .btc_address .item_input input {
  height: 57.2px;
  padding: 0 15px;
  border-radius: 5.6px;
  border: 1px solid #715BF8;
  background: #0A0E12;
  box-shadow: 0 0 4px 0 #715BF8;
  color: #fff;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  outline: none;
}
.hero .hero_content .mixer .btc_address .item_input input::placeholder {
  color: #828282;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.hero .hero_content .mixer .btc_address .item_input .blue_btn {
  height: 54px;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 6.4px;
  background: linear-gradient(90deg, rgba(27, 14, 108, 0.6) 0%, rgba(140, 8, 143, 0.6) 67.05%, rgba(55, 36, 171, 0.6) 100%), #715BF8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease, color 0.5s ease;
}
.hero .hero_content .mixer .btc_address .item_input .blue_btn:hover {
  color: #715BF8;
  background: #fff;
}
.hero .hero_content .mixer .btc_address .item_input .work_btn {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: 0.5s all ease;
}
.hero .hero_content .mixer .btc_address .item_input .work_btn:hover {
  color: #ff0000;
}

.compare {
  padding: 144px 0;
}
.compare.only {
  padding: 70px 0;
}
@media (max-width: 1199px) {
  .compare {
    padding: 70px 0;
  }
}
@media (max-width: 966px) {
  .compare {
    padding: 45px 0;
  }
}
.compare .row {
  margin-top: 43px;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 1199px) {
  .compare .row {
    gap: 20px 0;
  }
}
.compare .row .comp_item {
  width: calc(33.333% - 11px);
  flex: 0 0 auto;
  padding: 18px 24px 27px 24px;
  border-radius: 24px;
  background: linear-gradient(0deg, rgba(57, 45, 131, 0) 0%, #392D83 100%);
}
@media (max-width: 1199px) {
  .compare .row .comp_item {
    width: calc(50% - 5px);
  }
}
@media (max-width: 966px) {
  .compare .row .comp_item {
    width: 100%;
    padding: 15px;
  }
}
.compare .row .comp_item .energy {
  width: 96px;
  height: 60px;
  margin-bottom: 56px;
}
.compare .row .comp_item .energy img {
  height: 100%;
  width: 100%;
}
.compare .row .comp_item .item_title {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px; /* 103.571% */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
.compare .row .comp_item .adv_info {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 23px 0;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(221, 221, 221, 0.6);
}
.compare .row .comp_item .adv_info li {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.compare .row .comp_item .adv_info li .circle {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background: #FFF;
}
.compare .row .comp_item .adv_info li .description {
  line-height: 29px; /* 161.111% */
  letter-spacing: 0.36px;
  color: #FFF;
}
.compare .row .comp_item .item_more_description {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  align-items: start;
}
.compare .row .comp_item .item_more_description li {
  display: flex;
  align-items: start;
  gap: 0 12px;
}
.compare .row .comp_item .item_more_description li svg {
  flex: 0 0 auto;
}
.compare .row .comp_item .item_more_description .description {
  line-height: 29px; /* 161.111% */
  letter-spacing: 0.36px;
  color: #fff;
}

.guarante {
  padding: 144px 0;
}
@media (max-width: 1359px) {
  .guarante {
    padding: 70px 0;
  }
}
@media (max-width: 966px) {
  .guarante {
    padding: 45px 0;
  }
}
.guarante .row {
  align-items: start;
  gap: 0 50px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .guarante .row {
    gap: 20px 0;
  }
}
.guarante .row .item_left {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
  max-width: 334px;
}
.guarante .row .item_left .description {
  line-height: 29px; /* 161.111% */
  letter-spacing: 0.36px;
  color: #ddd;
}
.guarante .row .right_time {
  display: flex;
  gap: 0 22px;
}
@media (max-width: 966px) {
  .guarante .row .right_time {
    flex-direction: column;
    gap: 20px 0;
  }
}
.guarante .row .right_time .guarante_info {
  display: flex;
  flex-direction: column;
  gap: 22px 0;
  max-width: 438px;
}
@media (max-width: 1359px) {
  .guarante .row .right_time .guarante_info {
    max-width: 370px;
  }
}
@media (max-width: 1199px) {
  .guarante .row .right_time .guarante_info {
    max-width: none;
    width: calc(50% - 10px);
  }
}
@media (max-width: 966px) {
  .guarante .row .right_time .guarante_info {
    width: 100%;
    gap: 20px 0;
  }
}
.guarante .row .right_time .guarante_info .info_item {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 17px 0;
  border-radius: 24px;
  background: linear-gradient(180deg, #392D83 0%, rgba(57, 45, 131, 0) 100%);
}
@media (max-width: 1359px) {
  .guarante .row .right_time .guarante_info .info_item {
    padding: 24px;
  }
}
.guarante .row .right_time .guarante_info .info_item .item_title {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
.guarante .row .right_time .guarante_info .info_item .item_title span {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 128.571% */
  text-transform: uppercase;
}
@media (max-width: 1359px) {
  .guarante .row .right_time .guarante_info .info_item .item_title span {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 966px) {
  .guarante .row .right_time .guarante_info .info_item .item_title span {
    font-size: 20px;
    line-height: 20px;
  }
}
.guarante .row .right_time .guarante_info .info_item .description {
  color: #ddd;
  line-height: 29px; /* 161.111% */
}

.priority {
  padding: 73px 0;
}
@media (max-width: 966px) {
  .priority {
    padding: 45px 0;
  }
}
.priority .row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.priority .row .left_content {
  display: flex;
  flex-direction: column;
  gap: 33px 0;
  max-width: 402px;
}
@media (max-width: 1199px) {
  .priority .row .left_content {
    max-width: 100%;
  }
}
.priority .row .left_content .description {
  line-height: 32px; /* 177.778% */
  letter-spacing: 0.36px;
  color: #ddd;
}
.priority .row .right_content {
  display: flex;
  flex-direction: column;
  padding: 59px 100px 64px 100px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(39, 27, 116, 0.8) 0%, rgba(39, 27, 116, 0) 100%);
  backdrop-filter: blur(4px);
  max-width: 898px;
  width: 100%;
  flex: 0 0 auto;
  text-align: center;
}
@media (max-width: 1359px) {
  .priority .row .right_content {
    padding: 50px 44px;
    max-width: 735px;
  }
}
@media (max-width: 1199px) {
  .priority .row .right_content {
    max-width: 100%;
  }
}
@media (max-width: 966px) {
  .priority .row .right_content {
    padding: 20px;
  }
}
.priority .row .right_content .item_title {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 128.571% */
  text-transform: uppercase;
  max-width: 417px;
  margin: 0 auto;
}
.priority .row .right_content .crystal_info {
  align-items: center;
  gap: 15px 10px;
  margin: 35px 0 41px 0;
}
@media (max-width: 966px) {
  .priority .row .right_content .crystal_info {
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 966px) {
  .priority .row .right_content .crystal_info .link {
    margin: 0 auto;
  }
}
.priority .row .right_content .description {
  max-width: 563px;
  margin: 0 auto;
  color: #ddd;
  line-height: 32px; /* 177.778% */
}

.faq {
  background: linear-gradient(0deg, #0A0E12 0%, #0A0E12 100%), #FFF;
  padding: 72px 0 144px 0;
}
@media (max-width: 966px) {
  .faq {
    padding: 45px 0;
  }
}
.faq .row {
  margin-top: 32px;
}
.faq .row .faq_item {
  width: 100%;
}
.faq .row .faq_item .faq_title {
  border-bottom: 1px solid #AAAAAB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 25px 0;
}
@media (max-width: 966px) {
  .faq .row .faq_item .faq_title {
    padding: 20px 0;
  }
}
.faq .row .faq_item .faq_title span {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px; /* 150% */
  text-transform: uppercase;
}
@media (max-width: 966px) {
  .faq .row .faq_item .faq_title span {
    font-size: 18px;
    line-height: normal;
  }
}

.faq_title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
}

.faq_title svg {
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq_item.active .faq_title svg {
  transform: rotate(-90deg);
}

.faq .description {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-top: 25px;
}

.faq_item.active .description {
  opacity: 1;
}

footer {
  padding-bottom: 40px;
}
footer .row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px 20px;
  padding-bottom: 45px;
}
footer .row .logo_language .footer_logo {
  width: 254px;
  display: flex;
  height: 68px;
  margin-bottom: 57px;
}
@media (max-width: 966px) {
  footer .row .logo_language .footer_logo {
    margin-bottom: 0;
  }
}
footer .row .logo_language .footer_logo img {
  width: 100%;
  height: 100%;
}
footer .row .nav_item {
  display: flex;
  flex-direction: column;
}
footer .row .nav_item .item_title {
  color: #7C8698;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.2px; /* 180% */
}
footer .row .nav_item .links {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  margin-top: 14px;
}
footer .row .nav_item .links li a {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px; /* 200% */
  transition: 0.3s all ease;
}
footer .row .nav_item .links li a:hover {
  color: rgb(255, 0, 0);
}
footer .row .nav_item .telegram_channel {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5.6px;
  background: linear-gradient(2deg, #1E6185 0%, #1F9DD3 99.11%);
  width: 112px;
  height: 48px;
  margin: 14px 0 18px 0;
  padding: 0 8px;
  transition: 0.5s all ease;
}
footer .row .nav_item .telegram_channel:hover {
  background: #fff;
}
footer .row .nav_item .telegram_channel:hover .link {
  color: #1E6185;
}
footer .row .nav_item .telegram_channel:hover svg path {
  fill: #1E6185;
}
footer .row .nav_item .telegram_channel .link {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.2px; /* 180% */
  text-transform: capitalize;
  transition: 0.5s all ease;
}
footer .row .nav_item .telegram_channel svg path {
  transition: 0.5s all ease;
}
footer .row .nav_item .jabber {
  display: flex;
  flex-direction: column;
  transition: 0.5s all ease;
}
footer .row .nav_item .jabber:hover .link {
  color: #fd0000;
}
footer .row .nav_item .jabber:hover .description {
  color: #fd0000;
}
footer .row .nav_item .jabber .title {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
footer .row .nav_item .jabber .description {
  transition: 0.5s all ease;
}
footer .row .nav_item .jabber .link {
  line-height: normal;
  transition: 0.5s all ease;
  text-transform: capitalize;
}
footer .row .nav_item .mirror {
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid #FFF;
  width: max-content;
  margin-bottom: 20px;
  transition: 0.5s all ease;
}
footer .row .nav_item .mirror:hover {
  border-bottom: 1px solid #fd0000;
}
footer .row .nav_item .mirror:hover .link {
  color: #fd0000;
}
footer .row .nav_item .mirror:hover svg path {
  stroke: #fd0000;
}
footer .row .nav_item .mirror .link {
  text-transform: uppercase;
  line-height: 16px;
  transition: 0.5s all ease;
}
footer .row .nav_item .mirror svg path {
  transition: 0.5s all ease;
}
footer .row .nav_item .telegram_bot {
  border-radius: 5.6px;
  background: linear-gradient(90deg, rgba(27, 14, 108, 0.6) 0%, rgba(140, 8, 143, 0.6) 67.05%, rgba(55, 36, 171, 0.6) 100%), #715BF8;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
}
footer .bottom_row {
  border-top: 1px solid #AAAAAB;
  padding-top: 18px;
  position: relative;
  display: flex;
  align-items: center;
}
footer .bottom_row p {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
  text-transform: uppercase;
}
footer .bottom_row .top_to {
  display: flex;
  align-items: center;
  gap: 0 8px;
  margin: 0 auto;
  transition: 0.5s all ease;
}
footer .bottom_row .top_to:hover span {
  color: rgb(255, 0, 0);
}
footer .bottom_row .top_to:hover svg path {
  stroke: rgb(255, 0, 0);
}
footer .bottom_row .top_to span {
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
  transition: 0.5s all ease;
}
footer .bottom_row .top_to svg path {
  transition: 0.5s all ease;
}

.contact {
  padding: 30px 0 70px 0;
}
.contact .contact_form {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  max-width: 648px;
  margin: 0 auto;
  align-items: center;
}
.contact .contact_form .item_img {
  width: 100%;
  max-width: 324px;
}
.contact .contact_form .item_img img {
  width: 100%;
  height: 100%;
}
.contact .contact_form .item_inputs {
  flex-direction: column;
  gap: 30px 0;
  display: flex;
  width: 100%;
}
.contact .contact_form .item_inputs input {
  border-radius: 6px;
  border: 1px solid #dbe4f7;
  width: 100%;
  padding: 10px 15px;
  line-height: 21px;
  font-size: 0.9em;
  color: #305082;
  transition: all 0.4s;
  background-color: transparent;
  color: #eef3fc;
  background: rgba(15, 25, 50, 0.3);
  border-color: rgba(219, 228, 247, 0.25);
  outline: none;
}
.contact .contact_form .item_inputs textarea {
  border-radius: 6px;
  border: 1px solid #dbe4f7;
  width: 100%;
  padding: 10px 15px;
  line-height: 21px;
  font-size: 0.9em;
  color: #305082;
  transition: all 0.4s;
  background-color: transparent;
  color: #eef3fc;
  background: rgba(15, 25, 50, 0.3);
  border-color: rgba(219, 228, 247, 0.25);
  height: 112px;
  outline: none;
}
.contact .contact_form button {
  font-size: 12px;
  line-height: 24px;
  padding: 8px 20px;
  min-width: 160px;
  cursor: pointer;
  background-color: #f42f54;
  border-color: #f42f54;
  position: relative;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 15px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  min-width: 120px;
  max-width: 100%;
  border: 2px solid #f42f54;
  box-sizing: border-box;
  transition: all 0.5s;
  position: relative;
  border-radius: 5px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}/*# sourceMappingURL=main.css.map */