body {
    margin: 0;
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    background-color: #03081B;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
/*    margin-bottom: 100vh;*/
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0 0 10px;
}

a, button {
    all: unset;
    cursor: pointer;
}

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

:root {
  --color-white: rgba(255, 255, 255, 1);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Для Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Container
===================*/
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.container__main {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    overflow:  hidden !important;
    position: relative;
}

/* NAV
===================*/

.theme-switch {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 32px;
  margin-right: 30px;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: 0.4s;
}

.theme-slider:before {
  position: absolute;
  content: "🌙";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: #2563eb;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .theme-slider {
  background-color: #4f46e5;
}

input:checked + .theme-slider:before {
  transform: translateX(28px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-menu {
    display: flex;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid #FFFFFF08;
    padding: 4px;
}

.navbar-menu a {
    display: flex;
    padding: 6px 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    align-items: center;
}

.navbar-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.nav__signin {
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    padding: 16px 25px;
    color: var(--color-white);
     background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(89, 44, 184, 1) 100%);
     border-radius: 8px;
}

.nav__signup {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    padding: 17px 20px 17px 0;
    color: var(--color-white);
}

/* burger =================== */
.burger-checkbox {
  position: absolute;
  visibility: hidden;
}

.burger {
  z-index: 1001;
  top: 20px;
  right: 20px;
  cursor: pointer;
  display: block;
  background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(170, 143, 224, 1) 100%);
  padding: 10px 12px;
  border-radius: 8px;
}

.burger_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.burger_divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

.burger_logo label img {
  width: 36px;
  height: 36px;
}

.burger_logo_img {
  width: 207px;
  height: auto;
}

.nav_burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.button_burger {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 39px;
}

.burger_hr {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav_burger a {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.nav_burger a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-list {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(3, 8, 27, 1);
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style-type: none;
  transition: top 0.3s ease;
  z-index: 1000;
  padding: 0 20px;
}

.menu-item {
  color: white;
  font-size: 24px;
  text-decoration: none;
  padding: 10px 20px;
  transition: background 0.2s ease;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.burger-checkbox:checked ~ .menu-list {
  top: 0;
}

/* Hero
===================*/

.hero__container {
  display: flex;
  margin-top: 40px;
  margin-bottom: 80px;
  position: relative;
  flex-wrap: wrap;
}

.hero__background-image {
  position: absolute;
  width: 80%;
  height: auto;
  left: 10%;
  top: 80px;
  z-index: -1;
}

.hero__background-image img {
  width: 100%;
  height: auto;
}

.hero__left {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-bottom: 97px;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__right{
  position: relative;
  max-width: 600px;
  background-color: #03081B99;
  width: 100%;
  border-radius: 10px;
  padding: 30px;
}

.hero__right_container{
  background-color: #FFFFFF0A;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.hero__right_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero__right_btn { 
  margin-top: 35px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  border-radius: 12px;
  background-color: #FFFFFF0D;
}

.hero__right_text{
  margin: 40px 0;
}

/* primary =================== */
#block2 {
  display: none;
  position: relative;
}

#block3, #loading-form{
  background-color: #FFFFFF0A;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.block2_content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rectangle{
  position: absolute;
  width: 205px;
  height: 230px;
  background-color: #4A40B8B2;
  border-radius: 100px;
  filter: blur(100px);
  z-index: 0;
}

.rectangle-first{
  top: 62px;
  left: -20px;
}

.rectangle-second{
  right: 0px;
}
.primary_left_part_subtitle, .primary_left_part_primary, .primary_hero_primary_right_box-img, .primary_left_part_primary_title{
  z-index: 1;
}

.primary_hero_right_element {
  background-color: #FFFFFF0A;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.primary_left_part_subtitle {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 27px;
}

.primary_left_part_primary { 
  gap: 7px;
}

.primary_hero_primary_right_box-img {
    width: 40px;
    height: 40px;
}

.primary_hero_primary_right_box-img img {
    width: 100%;
    height: 100%;
}

.primary_left_part_primary_title {
  font-weight: 500;
  font-size: 22px;
}

.primary_right_part_title_error {
    font-size: 12px;
    color: red;
}

.primary_right_part { 
  text-align: right;
  display: grid;
  justify-content: end;
  gap: 10px;
}

.primary_right_part_select { 
  position: relative;
  gap: 4px;
  background-color: #FFFFFF08;
  border-radius: 10px;
  padding: 5px 10px 5px;
}

.primary_right_part_select-box{
  justify-items: right;
}

.primary_hero_select_right_box-img{
    display: flex;
    align-items: center;
    justify-content: center;
  width: 24px;
}

.primary_hero_select_right_img { 
  width: 24px;
}

.primary_right_part_select_title {
  font-size: 14px;
}

.primary_right_part_title { 
  all: unset;
  font-size: 36px;
  font-weight: 500;
  max-width: 500px;
  width: 100%;
}

.primary_right_part_subtitle { 
  font-size: 18px;
  font-weight: 400;
  color: #9D9D9D;
  margin: 0;
}

.primary_hero_right_list{
  position: relative;
}

.primary_hero_right_element_box-img { 
  position: absolute;
    z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.primary_left_part_primary_subtitle { 
  font-size: 15px;
  font-weight: 400;
}

.primary_left_part_select_subtitle { 
  font-size: 10px;
  font-weight: 400;
}

.primary_hero_input{
  width: 100%;
  border-radius: 10px;
  border: 1px solid transparent;
  background-image: linear-gradient(rgba(3, 8, 27, 1), rgba(3, 8, 27, 1)), linear-gradient(90deg, rgba(44, 102, 184, 1), rgba(89, 44, 184, 1));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 20px;
  padding-right: 80px;
  color: var(--color-white);
  font-size: 20px;
  box-sizing: border-box;
}

.primary_hero_input_box{
  position: relative;
}

.primary_hero_input_box-img { 
  position: absolute;
  right: 20px;
  gap: 14px;
  display: flex;
}

.primary_hero_description_box { 
  margin: 15px 0;
  gap: 20px;
  font-size: 15px;
  font-weight: 400;
}

.primary_hero_description_box-img{
  margin-bottom: 10px;
}

.primary_hero_description_btn { 
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  gap: 10px;
  color: var(--color-white);
  padding: 18px 0;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(104, 77, 157, 1) 100%);
  margin-bottom: 19px;
}

.primary_hero_description_text {
  font-size: 12px;
  font-weight: 400;
  max-width: 320px;
  width: 100%;
  margin: auto;
  text-align: center;
}

.primary_hero_description_btn_box-img{
  margin-top: 5px;
}

/* currency =================== */

.currency__section { 
  margin-bottom: 14px;
}

.currency_section_list {
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}

.currency_section_element {
  filter: brightness(50%);
  transition: filter 0.3s ease;
}

.currency_section_element.active {
  filter: brightness(100%);
}

.status-first-line {
  color: #50AF95;
}

.status-second-line {
  margin-top: 0;
}

.status-first-line, .status-second-line{
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}

.red{
  color: red;
}

.currency_section_element { 
  display: flex;
  align-items: center;
}

.currency_section_title {
  margin-top: 10px;
  margin-left: 10px;
  font-weight: 600;
  font-size: 14px;
 }

 /* sent =================== */

.sent_section_element {
  background: #03081B66;
  border-radius: 10px;
  padding: 14px 20px;
  width: 100%;
 }

 .sent_section_title {
  word-break: break-all;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 600;
 }
 
.sent_section_subtitle, .order_section_subtitle, .qr_section_subtitle {
  color: #FFFFFF80;
  font-size: 15px;
  font-weight: 400;
 }

.sent_section_list{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr auto 1fr;
}

.sent_section_list_img{
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  overflow: hidden;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
 }

@media (max-width: 1024px) {
  .sent_section_list_img{ rotate: 90px;}
  .sent_section_list{ 
    display: grid;
    grid-template-columns: 1fr;
  }
  .sent_section_list_img{ 
    margin: auto;
    transform: rotate(90deg);
  }
  .order_section_list{
    display: flex !important;
    flex-wrap: wrap;
  }
  .order_section_element:last-child {
    flex: 1 1 auto;
  }
  .qr_section_list{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  }
  .primary_hero_right_element{
    grid-template-columns: 1fr;
  }
  .primary_left_part{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
  }
}

 .sent_section_box{
  justify-content: flex-start;
  gap: 10px;
 }
 .sent_section_box img{
  width: 40px;
  height: 40px;
 }

 #special_wallet_address,
 #receive_address{
  margin: 0px;
 }

/* order =================== */

.order_section_list{
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
}

.order_section_element {
  display: flex;
  flex: 1 1;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: #03081B66;
  border-radius: 10px;
  padding: 15px;
  z-index: 1;
}

.order_section_title {
  color: var(--color-white);
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}

.order_section_title {
  font-weight: 500;
  font-size: 18px;
}

.order_section_box-img, .box-img_element {
  margin-left: 5px; 
  padding: 5px;
}

.order_section_box-img:active, .box-img_element:active{
  background-color: #FFFFFF0A;
  border-radius: 4px;
}

/* qr =================== */

.qr_section_list{
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.qr_section_list_content{
  height: 100%;
  display: grid;
  gap: 10px;
  grid-template-rows: 1fr auto;
}

.qr_section_element{
  word-break: break-all;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.qr_section_element, .qr_section_element_img {
  background: #03081B66;
  border-radius: 10px;
  padding: 15px;
}

.qr_section_title {
  margin: 0;
  word-break: break-all;
}

.box-img_element { 
  border-radius: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.qr_section_element_img{
  margin: auto;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 150px;
}

.qr_section_btns { 
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
}

.qr_section_element_text{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qr_first_btn{
  padding: 10px 40px;
  text-align: center;
  color: var(--color-white);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(104, 77, 157, 1) 100%);
}

.qr_second_btn{
  padding: 9px 25px;
  border-radius: 10px;
  border: 1px solid #FFFFFF1A;
  text-align: center;
}

/* modal =================== */

.modal-backdrop-about_us{
  padding: 0 10px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #03081BE5;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.show{
  display: flex !important;
}

.modal-about_us { 
  background: #081229E5;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  z-index: 1000;
  position: relative;
  max-width: 720px;
}

.modal-about_us_title { 
  font-size: 24px;
  font-weight: 500;
  margin: auto;
}

.modal-about_us__container_title{
  margin-bottom: 20px;
}

.modal-about_us_element {
  align-items: center;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

.modal-about_us_number { 
  background: linear-gradient(to right, #2c66b8, #aa8fe0);
  border-radius: 30px;
  font-size: 15px;
  padding: 7px;
  height: 30px;
  width: 30px;
  text-align: center;
}

.modal-about_us_text { 
  line-height: 130%;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}

.modal-loading {
  position: relative; 
  display: grid;
  height: 100%;
  padding: 40px 0;
}

.modal-loading_title { 
  font-size: 24px;
  font-weight: 400;
  line-height: 110.00000000000001%;
  max-width: 330px;
  margin: auto;
  text-align: center;
  margin-bottom: 100px;
}

.modal-loading_percent { 
  font-weight: 900;
  font-size: 24px;
  line-height: 110.00000000000001%;
  text-align: center;
  margin-bottom: 24px;
}

.modal-loading_line {
  height: 10px;
  max-width: 300px;
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 68px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2C66B8 0%, #592CB8 100%);
  border-radius: 68px;
  transition: width 0.2s linear;
}

.modal-loading_subtitle { 
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 130%;
  max-width: 280px;
  padding-top: 22px;
  text-align: center;
  margin: auto;
}
.modal-loading_text { 
  font-size: 12px;
  font-weight: 400;
  line-height: 110.00000000000001%;
  letter-spacing: 0px;
  max-width: 405px;
  text-align: center;
}

.modal-loading__footer{
  margin-top: 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
}

/* select =================== */

.select {
  position: absolute;
  top: 50px;
  left: 50px;
  display: flex;
  justify-content: flex-end;
  z-index: 3;

  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(44, 102, 184, 1), rgba(104, 77, 157, 1));
    border-radius: 3px;
    border: none;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(60, 130, 210, 1), rgba(130, 100, 190, 1));
  }

  * {
    scrollbar-width: thin;
    scrollbar-color: rgba(60, 130, 210, 1) transparent;
  }
}

.select.network {
    left: auto;
    right: 50px;
}

@media (max-width: 768px) {
  .select{ margin: 20px; }
}

.select.hidden {
  display: none;
}

.select-content {
  align-self: flex-start;
  background-color: #03081BE5;
  border-radius: 8px;
  width: 100%;
  max-width: 150px;
  max-height: 400px;
  overflow-y: auto;
}

.select-content__input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background-color: #FFFFFF0D;
  border-radius: 8px;
  margin: 5px;
}

#searchInput, #searchNetworkInput {
  width: 100%;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--color-white);
  outline: none;
}

#coinList, #networkList {
  list-style: none;
  padding: 0;
  margin-left: 10px;
}

.coin-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  cursor: pointer;
}

.coin-item img {
  width: 24px;
  height: 24px;
}

.coin-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.coin-body-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coin-symbol {
  font-size: 16px;
}

.coin-network {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 6px;
}

.coin-name {
    font-size: 14px;
    color: #FFFFFF96;
}

.bep20 { background-color: #FCF2DA; color: #ECB445; }
.arb, .default { background-color: #D0FBE7; color: #20BC7D; }
.or    { background-color: #FCF2DA; color: #ECB445; }
.trc20 { background-color: #FAC9D6; color: #B4153B; }

.hero_left_title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 70px;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--color-white);
    margin-top: 94px;
    margin-bottom: 0;
}

.hero_left_title span {
    display: flex;
    margin-top: 13px;
    line-height: 120%;
    background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(170, 143, 224, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_left_description {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: var(--color-white);
    margin-top: 10px;
}

.hero_left_button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  width: 200px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  margin-top: 33px;
  color: var(--color-white);
  border: 1px solid transparent;
  border-radius: 10px;
  background-image:
    linear-gradient(rgba(3, 8, 27, 1), rgba(3, 8, 27, 1)),
    linear-gradient(90deg, rgba(44, 102, 184, 1), rgba(89, 44, 184, 1)); 
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.menu {
  display: none;
  margin-left: 13px;
}

/* benefits
===================*/

.benefits {
  margin-bottom: 120px;
}

.benefits__title {
  display: flex;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  justify-content: center;
  gap: 10px;
}

.benefits__title span {
  background: linear-gradient(to right, rgba(44, 102, 184, 1) -60%, rgba(170, 143, 224, 1) 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits__description {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 22px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

.benefits__selection {
  margin-top: 32px;
  display: flex;
  position: relative;
}

.benefits__selection__background {
  position: absolute;
  display: flex;
  z-index: -5;
  justify-content: center;
  top: -52px;
  left: 140px;
}

.benefits__selection__background img {
  width: 80%;
  height: auto;
}

.benefits__selection .benefits__selection_block:first-child {
  transform: rotate(-6deg);
  transform-origin: right center;
}

.benefits__selection .benefits__selection_block:last-child {
  transform: rotate(6deg);
  transform-origin: left center; 
}

.benefits__selection .benefits__selection_block:nth-child(2) {
  z-index: -1;
}

.benefits__selection_block {
    width: 380px;
    height: 308px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-image: url('../img/hero/background.png');
    background-position: center 58px;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 15px;
    background-color: rgba(3, 10, 30, 0.7);
    position: relative;
    padding: 1px; 
    z-index: 1;
    isolation: isolate; 
}

.benefits__selection_block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    border-radius: 15px;
    background: linear-gradient(
            to top,
            rgba(255, 255, 255, 1) -600%,
            rgba(37, 40, 101, 0.1) 50%,
            rgba(255, 255, 255, 1) 600%
        ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.benefits__selection_block img {
  width: 100px;
  height: 100px;
  padding-bottom: 10px;
}

.benefits_block_title {
  margin-bottom: 13px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
}

.benefits_block_description {
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
}

/* features
===================*/

.features {
  width: 100%;
  margin-bottom: 45px;
  background: rgba(3, 10, 30, 0.7);
  border-top: 1px solid #1C2133;
  border-bottom: 1px solid #1C2133;
}

.features__text-wrapper {
  width: 100%;
  overflow-x: hidden; /* тут ховаємо зайве */
}

.features__text {
  display: flex;
  flex-wrap: nowrap;
  gap: 50px;
  padding: 37px 0 47px 26px;
}

.features__text img {
  flex-shrink: 0;
  height: auto;
  width: auto;
}

.container__main {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* advantages
===================*/

.advantages {
  background-image: url('../img/advantages/background.png');
  background-repeat: no-repeat;
  background-position: right -150px;
}

.advantages__title {
  display: flex;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  justify-content: center;
  gap: 10px;
}

.advantages__title span {
  background: linear-gradient(to right, rgba(44, 102, 184, 1) -60%, rgba(170, 143, 224, 1) 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.advantages__description {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 22px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

.advantages__section {
  background-color: rgba(6, 14, 34, 0.5);
  border-radius: 15px;
  border: 1px solid #1C2133;
  margin-top: 25px;
  max-height: 501px;
  overflow: hidden;
  margin-bottom: 85px;
  background-image: url('../img/advantages/blur.png');
  background-repeat: no-repeat;
  position: relative;
}

.phone_icon_phone {
  width: 711px;
  height: 546px;
  z-index: 2;
  display: flex;
  justify-content: left;
}

.phone_icon {
  position: relative;
  width: fit-content;
  display: flex;
  justify-content: left;
}

/* Основне зображення телефону */
.phone_icon_phone {
  width: 100%;
  max-width: 711px;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Блюр-ефект для телефону */
.phone_icon_blur {
  position: absolute;
  width: 80%; 
  max-width: 580px;
  z-index: 1; 
  height: 501px;
  left: 20px;
}

.advantages_icon_money {
  position: absolute;
  top: 0;
  left: 375px;
}

/* fag-map
===================*/
.fag__map {
  display: flex;
  margin-bottom: 125px;

}

.fag__map__section {
  display: flex;
  width: 29.3%;
}

.fag__map_text {
  padding: 10px;
  background: rgba(6, 14, 34, 0.8);
  border-radius: 15px;
  position: relative;
  isolation: isolate;
  display: flex;
}

.fag__map_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 15px;
  background: linear-gradient(
      to left,
      rgba(255, 255, 255, 1) -600%,
      rgba(37, 40, 101, 0.1) 50%,
      rgba(255, 255, 255, 1) 600%
    ) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.fag__map__block {
  display: flex;
}

.fag__map__section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.fag__map_text {
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  padding-left: 25px;
  padding-bottom: 25px;
  gap: 10px;
}

.fag__map_text_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}

.fag__map_text_description {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
}

.fag__map__logo {
  padding: 27px 31px;
  background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(89, 44, 184, 1) 100%);
  border-radius: 10px;
  margin: 85px 0;
  justify-content: center;
  align-items: center;
}

.fag__map__vector {
  max-width: 97px;
  height: auto;
}

.fag__map__section:nth-child(2) {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 495px;
  position: relative;
}

.fag_map_eth {
  position: absolute;
  bottom: 0;
}

.fag_map_usdt {
  position: absolute;
  right: 20px;
  top: 40px;
}

/* Asked
===================*/

.asked {
  margin-bottom: 120px;
}

.asked__selection {
  width: 100%;
  display: flex; 
  flex-direction: row;
}

.asked__left {
  width: 50%;
  position: relative;
}

.asked__right {
  width: 50%;
}

.asked__left__title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  margin-bottom: 40px;
}

.asked__left__title span {
  background: linear-gradient(90deg, rgba(44, 102, 184, 1) -10%, rgba(170, 143, 224, 1) 150%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.asked__left__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--color-white);
  margin-bottom: 30px;
}

.asked__left__button {
  width:fit-content;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  gap: 10px;
  color: var(--color-white);
  padding: 18px 70px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(104, 77, 157, 1) 100%);
  margin-bottom: 27px;
}

.asked__left::after {
  margin-right: 50px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
      to bottom,
      rgba(59, 123, 221, 0),      
      rgba(59, 123, 221, 0.6),    
      rgba(59, 123, 221, 0.6),    
      rgba(59, 123, 221, 0)      
  );
  border: none;
}

.asked__right_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  flex-direction: column;
}

.asked__right_block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px; 
  background: linear-gradient(
    to right, 
    rgba(59, 123, 221, 0),
    rgba(59, 123, 221, 0.6),
    rgba(59, 123, 221, 0.6),
    rgba(59, 123, 221, 0)
  );
}

.asked__right button {
  display: none;
}

.asked__right_answer {
  /* max-height: 0; */
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #fff;
  margin-top: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2em;
}

.js-asked-item.active .asked__right_answer {
  /* max-height: 200px;  */
  display: block;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2em;
}

.js-asked-toggle img {
  transition: transform 0.3s ease;
}

.js-asked-item.active .js-asked-toggle img {
  transform: rotate(90deg);
}

.asked__right_question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
/* blog
===================*/

.slick-center .blog_card {
    width: 500px;
    height: 280px;
    border-radius: 20px;
    background: 
        linear-gradient(#101630, #101630) padding-box,
        linear-gradient(90deg, #4923BB, #51A5DA) border-box; 
    border: 10px solid transparent;
    box-shadow: 0 0 60px 17px rgba(73, 35, 187, 0.3);
    color: white;
    box-sizing: border-box;
}

.slick-center {
    z-index: 10;
    position: relative;
    overflow: visible !important;
}

.blog_slider,
.blog,
.slick-list,
.slick-track {
    overflow: visible !important;
}

.blog_slider {
    padding-bottom: 200px;
}

.blog_title {
    display: flex;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 120%;
    justify-content: center;
    margin-bottom: 50px;
}

.content_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content_card img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    z-index: -1;
    border-radius: 10px;
    overflow: hidden;
}

.slider__main {
    position: absolute;
    background: rgba(3, 8, 27, 0.9);
    border-radius: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 20px 26px 20px 20px;
}

.slider__main__title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--color-white);
  margin-bottom: 7px;
}

.slider__main__subtitle {
    font-size: 14px;
    line-height: 120%;
    color: var(--color-white);
}

.slider__main__button {
  display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    padding: 12.5px 51.5px;
    background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(104, 77, 157, 1) 100%);
    border-radius: 10px;
    margin-top: 20px;
}

/* Слайди */
.slick-slide {
    transition: all 0.5s ease;
    transform: scale(0.85);
    opacity: 0.5;
}

.slick-center {
    transform: scale(1.1) !important;
    opacity: 1 !important;
}

.slick-slide:not(.slick-center) .blog_card {
    filter: blur(1px);
}

/* SLIDER CONTROLS */
.slider-controls {
    position: absolute;
    bottom: 130px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 175px;
    z-index: 20;
    pointer-events: none;
}

.slider-controls .custom-prew,
.slider-controls .custom-next {
    pointer-events: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.custom-prew,
.custom-next {
    width: 44px;
    height: 44px;
}

.custom-prew img,
.custom-next img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DOTS */
.blog_slider .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
    padding: 0 10px 0 0;
    pointer-events: auto;
    bottom: 108px;
}

.blog_slider .slick-dots li {
    margin: 0;
}

.blog_slider .slick-dots li button {
    width: 30px;
    height: 1px;
    padding: 0;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    text-indent: -9999px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.blog_slider .slick-dots li.slick-active button {
    background-color: var(--color-white);
}

.slick-dots li button:before{
  height: 1px !important;
}

.slick-dots li{
  height: 1px !important;
  width: 30px !important;
}

@media (max-width: 425px) {
  .blog_slider .slick-dots{
    gap: 5px !important;
  }

  .slick-dots li{
    overflow: hidden !important;
    width: 20px !important;
  }

  .custom-prew,
  .custom-next {
      width: 32px;
      height: 32px;
  }
}

/* footer
===================*/

.footer {
  background: rgba(6, 14, 34, 1);
  background-image: url('../img/footer/bg1.png'), url('../img/footer/bg2.png');
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: contain;
}

.footer_logo {
  display: flex;
}

.footer_menu {
  display: flex;
  justify-content: space-between;
  padding-top: 58px;
  padding-bottom: 52px;
  align-items: center;
}

.footer_nav a {
  font-size: 16px;
}

.footer__button {
  margin-top: 0;
  padding: 18px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.footer_divider {
  max-width: 690px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(59, 123, 221, 0),
    rgba(59, 123, 221, 0.5),
    rgba(59, 123, 221, 0.5),
    rgba(59, 123, 221, 0)
  );
  margin: 20px 0;
}

.footer_privacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
}

.footer_privacy_text h5 {
  margin: 0;
}

.footer_privacy_text {
  display: flex;
  color: var(--color-white);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  gap: 30px;
}

.footer_privacy_img {
  display: flex;
  gap: 20px;
}

.footer_nav-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.footer_nav-menu a {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(6, 14, 34, 0.8);
  padding: 10px 65px;
}

.footer_nav :nth-child(2) {
  display: none;
}

@media (max-width: 425px) {
  .footer_privacy_text {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }
  
  .footer_nav-menu a {
    padding: 10px 20px;
  }
}

/* ---------------------- ABOUT ---------------------- */

.hero_about {
   width: 100%;
  position: relative;
  overflow-x: clip;
}

.hero_about_selection {
  display: flex;
  position: relative;
  overflow: visible;
  width: 100%;
}

.about_selection_left {
  display: flex;
  flex-direction: column;
  width: 43%;
  z-index: 2;
}

.about_selection_left_title {
  font-size: 70px;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  padding-top: 50px;
  padding-bottom: 30px;
  line-height: 110%;
  color: var(--color-white);
}

.about_selection_left_subtitle {
  font-family: "Gilroy", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 120%;
  color: rgba(255, 255, 255, 1);
  padding-bottom: 15px;
  letter-spacing: 0;
}

.about_selection_left_description {
  font-family: "Gilroy", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  color: rgba(255, 255, 255, 1);
  padding: 13px 21px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  letter-spacing: 0;
  margin-top: 15px;
}

.about_selection_right {
  display: flex;
  width: 57%;
  position: absolute;
  overflow: visible;
  top: -130px;
  left: 35%;
}

.about_selection_right img {
  width: 175%;
}

.hero_about_selection {
  padding-bottom: 70px;
}

.about_selector_photo {
  display: flex;
}

.about_selector-images {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about_selector-images img {
  height: auto;
}

/* Proposal */

.proposal_block {
  display: flex;
  background: linear-gradient(to right, rgba(44, 102, 184, 1), rgba(170, 143, 224, 1));
  padding: 25px 50px;
  border-radius: 10px;
}

.proposal {
  margin-bottom: 70px;
}

.proposal_block_sector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proposal_block_sector_title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 110%;
}

.proposal_block_sector_subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

.proposal_divider {
  height: 100px;
  width: 1px;
  margin-left: 40px;
  margin-right: 40px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 425px) {
  .proposal_divider{
    height: auto;
    margin: 0 20px;
  }

  .proposal_block{
    padding: 16px 20px;
  }

  .proposal_block_sector_title{
    font-size: 36px !important;
  }
}

/* ---------------------- BLOG ---------------------- */

.blog__selection {
  margin-bottom: 120px;
  position: relative;
}

.blog__selection_title {
  padding-top: 55px;
  padding-bottom: 40px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 70px;
  line-height: 110%;
  text-align: center;
}

.blog__selection_block_global {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  row-gap: 30px;
  column-gap: 20px;
}

.blog__selection_block {
  border-radius: 10px;
  position: relative;
  max-height: 250px;
  height: 100%;
  overflow: hidden;
}

.blog__selection_block img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  height: auto;
}

.selection_block_text {
  position: absolute;
  background: rgba(3, 8, 27, 0.9);
  border-radius: 10px;
  bottom: 10px;
  left: 10px;
  padding: 20px 26px 20px 20px;
  margin-right: 25px;
}

.selection_block_text_title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--color-white);
  margin-bottom: 7px;
}

.selection_block_text_subtitle {
  font-size: 14px;
  line-height: 120%;
  color: var(--color-white);
}

.selection_block_text_button {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  padding: 13px 52px;
  background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(104, 77, 157, 1) 100%);
  border-radius: 10px;
  margin-top: 20px;
}

.blog_selection-images {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  top: 55%;
}

.blog_selection-images img {
  width: 100%;
  height: auto;
}

/* ---------------------- Arcticle ---------------------- */

.article_selector_block {
  position: relative;
  margin-bottom: 120px;
}

.article_selector_block ul{
  list-style: circle;
  list-style-position: inside;
  margin-bottom: 10px;
}

.article_selector_block h2,
.article_selector_block h3,
.article_selector_block h4,
.article_selector_block h5,
.article_selector_block h6 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.article_selector-images {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  top: 37%;
}

.articfe_selector-images img {
  height: auto;
}

.article_block_title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 110%;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 25px;
}

.article_block_subtitle {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  padding-bottom: 30px;
}

.article_block_subtitle {
  list-style: none;           
  padding: 0 0 30px;
  margin: 0;
  display: flex;
  gap: 10px;
}

.article_block_subtitle li {
  position: relative;
  padding-left: 14px;         
  font-size: 20px;
  color: var(--color-white);
}

.article_block_subtitle li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--color-white);
  font-size: 20px;
}

.article_block_paragraf_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: var(--color-white);
  padding-bottom: 5px;
}

.article_block_paragraf_text {
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: var(--color-white);
}

.article_block_paragraf {
  padding: 32px 0;
}

.article_block_paragraf_nominay_title {
  font-weight: 600;
  font-size: 17px;
  line-height: 130%;
  color: var(--color-white);
}

.article_block_paragraf_nominay_text {
  padding-top: 3px;
  padding-left: 20px;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: var(--color-white);
}

.article_block_paragraf_nominay {
  padding-top: 10px;
}

/* ---------------------- FAQ ---------------------- */


.faq_block_title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 110%;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

.faq_block_subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

.faq_block_title_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
}

.faq_block_text {
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
}

.faq__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  row-gap: 30px;
  column-gap: 60px;
  padding-top: 40px;
}

.faq__right_block {
  position: relative;
  display: flex;
  flex-direction: column;
}

.faq__right_block_end {
  display: flex;
  width: 50%;
  flex-direction: column;
  margin: 30px auto 0;
  position: relative;
}

.faq_selector, .blog__selection{
  flex: 1;
}

.faq_selector_block {
  position: relative;
  margin-bottom: 100px;
}

.faq__right_block::after,
.faq__right_block_end::after {
  content: "";
  /* position: absolute;
  left: 0;
  right: 0;
  bottom: 0; */
  height: 1px; 
  background: linear-gradient(
    to right, 
    rgba(59, 123, 221, 0),
    rgba(59, 123, 221, 0.8),
    rgba(59, 123, 221, 0.8),
    rgba(59, 123, 221, 0)
  );
}

.faq_selector-images {
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.faq_selector-images img {
  height: auto;
}

.faq_block_text {
  /* max-height: 0; */
  display: none;
  overflow: hidden;
  transition: max-height 1s ease;
}

.faq__right_block.active .faq_block_text {
  /* max-height: 400px; */
  padding-bottom: 20px;
}

.faq__right_block_end.active .faq_block_text {
  display: block;
  /* max-height: 400px; */
  padding-bottom: 20px;
}

.js-faq-toggle img {
  transition: transform 0.3s ease;
}

.js-faq-item.active .js-faq-toggle img {
  transform: rotate(90deg);
}

/* ---------------------- FORM ---------------------- */

.create_form {
  position: relative;
}

.create_form_bg {
  position: absolute;
  left: 0;
  top: -300px;
  z-index: -5;
}

.create_form_bg img {
  width: 100vw;
  z-index: -5;
}

.create_form_selector {
  background-image: url('../img/create-account_page/bg-form.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  max-width: 1000px;
  width: 100%;
  margin: 110px auto 155px auto;
}

.create_form_block {
  display: flex;
  justify-content: end;
  padding: 50px 40px 65px 40px;
  position: relative;
  overflow: hidden;
}

.create_form_block .form {
    position: relative;
    z-index: 2;
}

.form-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.form-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  padding-bottom: 10px;
}

.form-subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  padding-bottom: 24px;
}

.form-subtitle a {
  color: #7A6EB1;
  text-decoration: underline;
}

.form-row {
  display: flex;
  gap: 20px;
  padding-bottom: 15px;
}
@media (max-width: 425px) {
  .form-row{ flex-direction: column; }
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-email {
  padding-bottom: 15px;
}

.password-input {
  padding-bottom: 15px;
}

.form-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  padding-bottom: 6px;
}

.form {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  max-width: 460px;
  width: 100%;
}

.form-group input {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  outline: none;
  border-radius: 8px;
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.form button {
  display: flex;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 100%;
  color: var(--color-white);
  padding-top: 15px;
  padding-bottom: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(44, 102, 184, 1) 0%, rgba(170, 143, 224, 1) 100%);
}

.support__title {
  display: flex;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 70px;
  line-height: 1.1em;
  margin: 0;
  text-align: center;
}

.support__subtitle {
  display: flex;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 70px;
  line-height: 1.1em;
  margin: 0;
  background: linear-gradient(to right, rgba(44, 102, 184, 1), rgba(170, 143, 224, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.support__contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 19px;
  margin-top: 29px;
  margin-bottom: 25px;
}

.support__contact-block {
  background: rgba(3, 10, 30, 0.7);
  border: 1px solid rgb(64 66 93 / 33%);
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  gap: 12px;
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  line-height: 1em;
  align-items: center;
}

.support__form {
  margin-left: 90px;
  margin-right: 90px;
  background: rgba(3, 10, 30, 0.7);
  margin-bottom: 100px;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgb(64 66 93 / 33%);
}

.support__form-title {
  display: flex;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1em;
  margin-bottom: 35px;
}

.support__form_group {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  padding-bottom: 20px;
}

.support__form_group_input {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.support__form_group_input label {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
}

.support__form_group_input input {
  font-family: "Gilroy", sans-serif;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 300;
  font-size: 14px;
  line-height: 1em;
  border: none;
  outline: none;
  border-radius: 8px;
}

.support__form_group_input textarea {
  font-family: "Gilroy", sans-serif;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 300;
  font-size: 14px;
  line-height: 1em;
  height: 140px;
  border: none;
  outline: none;
  border-radius: 8px;
  margin-bottom: 20px;
}

.support__form-submit {
  width: 100%;
  background: linear-gradient(to right, rgba(44, 102, 184, 1), rgba(89, 44, 184, 1));
  padding-top: 15px;
  padding-bottom: 16px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  font-weight: 500;
}

.support__footer {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  line-height: 130%;
}

.support_bg {
  top: 600px;
}

.acardion_block_main {
  margin: 0;
}

.form_login {
  padding-bottom: 150px;
}

.fag__map__logo {
  height: 80px;
}
.faq_bg {
  top: 550px;
}
.form button:hover,
.nav__signin:hover,
.hero_left_button:hover,
.asked__left__button:hover,
.slider__main__button:hover,
.selection_block_text_button:hover,
.support__form-submit:hover,
.primary_hero_description_btn:hover {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}
.navbar-menu a.active,
.nav_burger a.active {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.reset-order__container{
  margin-top: 22px;
  text-align: center;
  font-size: 1rem;
}

.reset-order__container-footer{
  font-size: 12px;
}

.reset-order__btn{
  background: linear-gradient(to right, rgba(44, 102, 184, 1) -60%, rgba(170, 143, 224, 1) 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#loading-form-modal.show{
  display: block !important;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  inset: 0;
  backdrop-filter: blur(4px);
}

.loading-container{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.spinner {
  border: 4px solid #fff;
  border-top: 4px solid transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

.loading-text {
  color: #fff;
  font-size: 24px;
  max-width: 350px;
  text-align: center;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  40% {
    transform: scale(1.6);
    opacity: 1;
  }
}

.post-loading-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.article_block_img{
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
}
@media (max-width: 576px) {
  .article_block_img{
    height: 220px;
  }
}

.article_block_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.support__contact-info {
    margin: 0 10px;
}