@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:wght@300;500;900&display=swap");

@import url("https://fonts.cdnfonts.com/css/geometria");

@import url("https://fonts.googleapis.com/css2?family=Danfo&family=Manrope:wght@200..800&family=Roboto:wght@300;500;900&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Manrope", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  --main-blue: #003d64;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding-inline: 15px;
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  height: 84px;
  align-items: center;
}

section {
  padding: 120px 0;
}

.warning2 {
  border-color: red;
  box-shadow: 0px 3px 14px red;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.header {
  position: sticky;
  top: -1px;
  background-color: #fff;
  width: 100%;
  z-index: 100;
}

.header_left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.navigation_list {
  margin-bottom: 0 !important;
  display: flex;
  gap: 24px;
}

.burger_menu_items {
  left: -237px;
  padding: 24px;
  position: absolute;
  background-color: #eff2f6;
  border-radius: 12px;
  border-top-right-radius: 0;
  box-shadow: 0px 5px 17px rgb(99, 99, 99);
  margin-top: 24px;
  animation-duration: 0.5s;
  animation-name: burgerOpacity0;
  opacity: 0;
  display: none;
}

.burger_wrapper-active .burger_menu_items {
  display: block;
  animation-duration: 0.5s;
  animation-name: burgerOpacity1;
  opacity: 1;
}

@keyframes burgerOpacity1 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes burgerOpacity0 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.burger_menu_items a {
  display: block;
  /* width: max-content; */
  max-width: 100%;
}

.navigation_item a:hover {
  color: var(--main-blue);
}

.burger_list {
  display: flex;
  gap: 18px;
  flex-direction: column;
}

.navigation_item {
  color: #777e90;
  cursor: pointer;
}

.header_navigation {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.navigation_item:hover {
  color: var(--main-blue)
}

.header_right_item {
  border-radius: 100%;
  border: 1px solid;
  padding: 8px;
  color: #777e90;
  border-color: #e6e8ec;
}

.header_right_items:hover {
  background-color: var(--main-blue);
  transition: 0.5s;
  border-color: var(--main-blue);
  color: #fff;
}

.header_right-items:hover a {
  color: #ffffff !important;
}

.lang {
  color: #777e90;
}

.phone_number {
  display: none;
}

.phone_number a {
  text-decoration: none;
  color: #1d3448;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.header_right_item:hover {
  background-color: var(--main-blue);
  transition: 0.5s;
  border-color: var(--main-blue);
  color: #fff;
}

.header_right_items {
  border-radius: 1000px;
  border: 1px solid;
  padding: 8px;
  color: #777e90;
  border-color: #e6e8ec;
  background: none;
}

.header_right_items > a {
  text-decoration: none;
  color: #777e90;
}

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

.burger_lines {
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 16px;
  height: 14px;
}

.burger_lines::before,
.burger_lines::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: rgba(119, 126, 144, 1);
  margin: 0 auto;
}

.burger_lines::before {
  top: 0;
  box-shadow: 0 6px 0 rgba(119, 126, 144, 1);
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger_lines::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger_wrapper-active .burger_lines::before {
  top: 6px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger_wrapper-active .burger_menu_items {
  display: block;
  animation-duration: 0.5s;
  animation-name: burgerOpacity1;
  opacity: 1;
}
@keyframes burgerOpacity1 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes burgerOpacity0 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.burger_wrapper-active .burger_lines::after {
  bottom: 6px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

.special_features-item,
.header_right_item,
.header_right_items {
  cursor: pointer;
}

.special_features-item.burger_wrapper {
  position: relative;
  display: none;
}

.qulay_banner {
  padding-bottom: 120px;
}

.qulay_big_block {
  background: rgba(239, 242, 246, 1);
  border-radius: 16px;
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
  margin-top: 36px;
}

.main__img {
  max-width: 716px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.main__img img {
  width: 100%;
}

.qulay_h1 {
  color: var(--main-blue);
  font-family: "Geometria", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 125%;
  text-align: left;
  max-width: 575px;
}

.red {
  color: red;
}

.qulay_h2 {
  color: var(--main-blue);
  font-family: "Geometria", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.13px;
  text-align: left;
  max-width: 393px;
  margin-top: 14px;
  margin-bottom: 36px;
}

.qulay_btn {
  background-color: var(--main-blue);
  padding: 16px 24px 16px 24px;
  border-radius: 90px;
  border: none;
  font-family: "Geometria", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.13px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.qulay_blocks {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.qulay_block {
  background: #fff;
  border: 2px solid #EFF2F6;
  padding: 24px;
  border-radius: 12px;
  width: 268px;
}

.qulay_h3 {
  color: var(--main-blue);
  font-family: "Geometria", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.64px;
  text-align: left;
  margin-top: 16px;
}

.qulay_p {
  color: rgba(119, 126, 144, 1);
  font-family: Manrope;
  font-size: 12px;
  font-weight: 500;
  line-height: 16.39px;
  text-align: left;
  margin-top: 8px;
}

.qulay_block_easy {
  background-color: #fff;
  padding: 32px;
  border-radius: 12px;
  max-width: 362px;
  border: 1px solid rgba(239, 242, 246, 1);
  align-items: center;
}

.easy_h1 {
  color: var(--main-blue);
  font-family: "Geometria", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 45.29px;
}

.easy_open img {
  display: block;
  margin: 0 auto;
}

.easy_open .qulay_h3 {
  font-family: "Geometria", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.13px;
  text-align: center;
}

.callBackForm_wrapper {
  background-color: #eff2f6;
  padding: 64px 96px;
  border-radius: 12px;
  margin-bottom: 120px;
}

.callBackForm_title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--main-blue);
  line-height: 127%;
  font-family: "Geometria", sans-serif;
}

.callBackForm_subtitle {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--main-blue);
  margin-top: 6px;
  line-height: 125%;
  font-family: "Geometria", sans-serif;
}

.callBackForm {
  margin-top: 24px;
}

.callBackForm_wrapper input {
  border: 1px solid #e6e8ec33;
  color: rgb(0, 0, 0);
  font-weight: 600;
}

.callBackForm_wrapper label {
  color: var(--main-blue);
}

.callBackForm .form_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  row-gap: 24px;
  column-gap: 32px;
}

.callBackForm_text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(10, 30, 50, 0.6);
}

form button {
  background-color: var(--main-blue);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 10000px;
}

.good_to_know {
  padding-bottom: 160px;
}

.gtk_h1 {
  color: var(--main-blue);
  font-family: Manrope;
  font-size: 42px;
  font-weight: 500;
  line-height: 58.8px;
}

.gtk_btn {
  background-color: var(--main-blue);
  padding: 6px 33px 6px 33px;
  gap: 10px;
  border-radius: 42px;
  opacity: 0px;
  color: #fff;
  border: none;
  margin-top: 26px;
  margin-bottom: 73px;
}

.gtk_h3 {
  color: var(--main-blue);
  font-family: Manrope;
  font-size: 26px;
  font-weight: 600;
  line-height: 32.5px;
  max-width: 269px;
}

.gtk_p {
  color: rgba(10, 30, 50, 0.8);
  font-family: Manrope;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
}

.gtk_block {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 63px;
}

.gtk_main_content {
  display: flex;
  gap: 63px;
  flex-direction: column;
  gap: 42px;
}

.block {
  display: flex;
  gap: 56px;
  align-items: center;
}

.gtk_big_text {
  display: flex;
  gap: 63px;
}

.good_to_know hr {
  margin-block: 72px;
}

/* FOOTER */

footer {
  background-color: #eff2f6;
}

footer {
  padding-top: 120px;
  padding-bottom: 32px;
}

footer .footer_wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

footer .feedback_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 48px;
  border-radius: 12px;
  background-color: #fcfcfd;
  font-family: "Geometria", sans-serif;
  flex-wrap: wrap;
  gap: 64px;
}

footer .feedback_block .feedback_numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: start;
  gap: 48px;
}

footer .feedback_block .feedback_numbers .feedback_number-wrapper {
  color: #003d64;
}

footer
  .feedback_block
  .feedback_numbers
  .feedback_number-wrapper
  .feedback_number {
  font-size: 24px;
  font-weight: 500;
  color: var(--main-blue);
}

footer
  .feedback_block
  .feedback_numbers
  .feedback_number-wrapper
  .feedback_title {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
}

footer .feedback_block .feedback_messengers {
  text-align: end;
}

footer .feedback_block .feedback_messengers-title {
  font-size: 12px;
  font-weight: 500;
  color: #003d64;
}

footer .feedback_block .feedback_messengers-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

footer .feedback_block .feedback_messengers-wrapper .feedback_messenger {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background-color: #003d64;
  padding: 5px;
}

.footer-400 p,
.footer-400 a {
  font-size: 14px;
  font-weight: 400;
  color: #353945;
}

.footer-500 {
  font-size: 14px;
  font-weight: 500;
  color: #353945;
}
.footer-500 .address_title {
  color: #777e90;
}

.main_links a.report_corruption-btn {
  margin-top: 16px;
  display: block;
  max-width: 363px;
  width: 100%;
  border-radius: 90px;
  color: #fcfcfd;
  background-color: #003d64;
  padding: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}

.main_links {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.main_links a {
  color: #353945;
  font-size: 14px;
  font-weight: 500;
}

.main_links-left {
  display: flex;
  align-items: start;
  gap: 63px;
}

.address_items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.address_items .address_item {
  max-width: 221px;
}

.address_items .address_item .address_title {
  margin-bottom: 8px;
  font-family: "Geometria", sans-serif;
}

.footer_list {
  display: flex;
  align-items: start;
  gap: 31px;
}

.footer_list .footer_list-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.main_links-third_column {
  font-family: "Geometria", sans-serif;
  line-height: 100%;
}

.main_links-third_column .helpline_block-item {
  display: flex;
  gap: 32px;
}

.main_links-third_column .helpline_block-item .helpline {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.helpline_block-second {
  margin-top: 24px;
}

.footer_lang {
  margin-top: 43px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about_sqbMobile {
  border-top: 1px solid #e6e8ec;
  border-bottom: 1px solid #e6e8ec;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #003d64;
  flex-wrap: wrap;
}

.about_sqbMobile .sqbMobile_download {
  display: flex;
  align-items: center;
  gap: 41px;
}

.about_sqbMobile .sqbMobile_download .sqbMobile_download-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.sqbMobile_download-title_text {
  font-size: 16px;
  font-weight: 700;
}

.sqbMobile_download .app_markets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sqbMobile_download .app_markets .app_market {
  height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #003d64;
  background-color: #fcfcfd;
  border-radius: 12px;
}

.sqbMobile_iso {
  text-align: end;
}

.sqbMobile_iso .footer_iso {
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.footer_iso-text {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
}

.footer_link-lists {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 16px;
  row-gap: 32px;
  font-family: "Geometria", sans-serif;
  color: #003d64;
}
.footer_link-lists a {
  color: #003d64;
}

.footer_link-lists .footer_link-lists-col .footer_link-title {
  font-size: 18px;
  font-weight: 500;
}

.footer_link-lists .footer_link-lists-col .footer_link-list {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_mobile_app {
  padding: 10px;
  background-color: #FFFFFF;
  border-radius: 12px;
}

.footer_ending {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid #353945;
  color: #777e90;
}
.deposit_application {
  background-color: #eff2f6;
}
.section_title {
  font-family: "Geometria", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--main-blue);
}
.redText {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #ea0000;
}





.deposit_calc .deposit_calc-first {
  padding: 48px;
  background-color: #ffffff;
  border-radius: 12px;
}
.deposit_calc-first_title {
  font-size: 24px;
  font-weight: 500;
  color: var(--main-blue);
}
.deposit_calc-first_subtitle {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #0a1e3299;
}
.block_head {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #0a1e3299;
}
.choose_method-wrapper {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.choose_method-wrapper label {
  position: relative;
}
.choose_method-wrapper input {
  position: absolute;
  opacity: 0;
}
.choose_method-block {
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--main-blue);
  line-height: normal;
  border: 1px solid var(--main-blue);
  border-radius: 100px;
  cursor: pointer;
  background-color: #FFFFFF;
}
.choose_method-wrapper input:checked + div.choose_method-block {
  background-color: var(--main-blue);
  color: #ffffff;
}
.deposit_calc form {
  margin-top: 32px;
}

.microloan_bank {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.form-group {
  label {
  font-size: 14px;
  font-weight: 500;
  color: #0A1E3299;
  }
}

.form_text-p {
  color: #0A1E3299;
  font-size: 14px;
  font-weight: 400;
  max-width: 400px;
}

input,
select,
#region {
  width: 100%;
  display: flex;
  padding: 12px 16px 12px 18px;
  justify-content: space-between;
  align-items: center;
  border-radius: 1000px;
  border: 1px solid #b1b5c3;
  margin-top: 8px;
  box-shadow: none;
  transition: 0.5s all;
}

form input:disabled {
  background-color: #f0f0f0;
}
form select:focus-visible,
#region:focus-visible,
form input:focus-visible {
  outline: none;
  box-shadow: 0px 6px 15px 0px gray;
}
.range-toggle {
  height: 0;
  margin-inline: 20px;
  margin-top: 3px;
}
.irs--round .irs-handle {
  width: 15px !important;
  height: 15px !important;
  border: 2px solid #fff !important;
  top: -10px;
}
.irs--round .irs-line,
.irs--round .irs-bar {
  height: 3px !important;
}
.irs.irs--round.js-irs-0 {
  height: 0;
}

.deposit_calc-second {
  height: 100%;
  width: 457px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.more-padding {
  padding: 36px 36px 0 36px;
}
.deposit_calc-second_title {
  font-size: 24px;
  font-weight: 500;
  color: var(--main-blue);
}
.headed_blocks {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-template-rows: auto;
  justify-content: space-between;
  row-gap: 32px;
  column-gap: 20px;
}
.deposit_calc-second input,
.deposit_calc-second input:focus-visible {
  outline: none;
  border: none;
}
.input_wrapper {
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.input_wrapper .input_replace {
  line-height: 100%;
  font-size: 24px;
  font-weight: 700;
  font-family: "Geometria", sans-serif;
  color: var(--main-blue);
}
.input_wrapper span {
  font-size: 16px;
  font-weight: 700;
  font-family: "Geometria", sans-serif;
  color: var(--main-blue);
}
#deposit_submit {
  margin: 0 16px 16px 16px;
}

/* MODAL */

#modal_text {
  font-size: 26px;
  font-weight: 600;
  color: var(--main-blue);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  /* display: none; */
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity .5s;
}
.modal__dialog {
  max-width: 100%;
  margin-inline: auto;
}
.modal__content {
  position: relative;
  width: 100%;
  padding: 48px;
  background-color: #fff;
  border-radius: 24px;
  max-height: 80vh;
  overflow-y: auto;
}
.modal__content-wrapper {
  margin-top: 32px;
  display: flex;
  gap: 36px;
}
.modal-first_block label {
  font-size: 14px;
  font-weight: 500;
  color: #0A1E3299;
}
.modal-first_block button {
  margin-top: 32px;
  width: 100%;
}
.modal-first_inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-first_block {
  width: 100%;
}
.modal .modal__fixed {
  background-color: #EFF2F6;
  padding: 32px;
  border-radius: 12px;
  height: max-content;
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 30px;
  color: #000;
  opacity: 0.5;
  font-weight: 700;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.modal.hide {
    display: none !important;
}
.modal.show {
  opacity: 1;
  display: flex;
  align-items: center;
}

/* TABS */

.catalog__content {
  display: none;
  margin-top: 60px;
}
.catalog__content.catalog__content_active {
  display: block;
}
.catalog__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.catalog__tabs .catalog__tab {
  padding: 6px 33px;
  border: 2px solid;
  border-color: #B1B3B3;
  border-radius: 42px;
  color: var(--main-blue);
  cursor: pointer;
  transition: all .3s;
}
.catalog__tabs .catalog__tab div {
  line-height: 140%;
  font-size: 18px;
  font-weight: 500;
}
.catalog__tabs .catalog__tab.catalog__tab_active,
.catalog__tabs .catalog__tab:hover {
  border-color: var(--main-blue);
  background-color: var(--main-blue);
  color: #FFFFFF;
}

/* FILES TO DOWNLOAD */

.file_download_block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  border-radius: 6px;
  background: #f2f5f8;
}
.file_left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.informational_files {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.file_name {
  font-size: 16px;
  font-weight: 400;
}
.download_btn {
  color: #1e3549;
  font-weight: 600;
  border: 1px solid #bfc6cf;
  transition: box-shadow .3s ease-in-out, color .3s ease-in-out;
  background: 0 0;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 16px;
  padding: 12px 34px;
  border-radius: 10px;
  text-align: center;
}
.download_btn:hover {
  background: #004d7e;
  transition: .3s linear, color .3s linear;
  color: #fff !important;
}

/* DEPO CALC */

.deposit_calc .deposit_calc-wrapper {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 457px;
  grid-template-rows: auto;
  gap: 24px;
}
.deposit_calc-block {
  padding: 48px;
  background-color: #ffffff;
  border-radius: 8px;
}
.deposit_calc-wrapper .deposit_calc-block {
  background-color: #eff2f6;
}











@media (max-width: 1150px) {
  .container {
    max-width: 992px;
  }

  .advantages_block {
    justify-content: center;
    gap: 16px;
  }
  .main__img {
    max-width: 630px;
  }
}

@media (max-width: 1022px) {
  .container {
    max-width: 768px;
  }

  .header_left {
    gap: 24px;
  }

  .header_right {
    gap: 12px;
  }

  .banner-header {
    padding-top: 147px;
  }
  .deposit_calc form {
    grid-template-columns: 100%;
  }
  .deposit_calc-second {
    width: 100%;
  }
  .headed_blocks {
    justify-content: start;
    column-gap: 50px;
  }

  .qulay_big_block {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-block: 0;
    padding-inline: 0;
  }
  .main__img {
    position: relative;
    top: 0;
    width: 100%;
  }
  .img_wrapper {
    width: 100%;
    display: flex;
    justify-content: end;
  }

  .qulay_text {
    padding: 24px 24px 0 24px; 
  }

  .main__img img {
    width: 100%;
  }
  .qulay_h1 {
    max-width: 100%;
    font-size: 32px;
  }
  .qulay_h2 {
    max-width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #777e90;
  }

  .modal .headed_blocks {
    grid-template-columns: 100%;
  }
  
  .deposit_calc .deposit_calc-wrapper {
    grid-template-columns: 100%;
  }
}

@media (max-width: 798px) {
  .container {
    max-width: 576px;
  }

  .navigation_list,
  .header_right_items {
    display: none;
  }

  .special_features-item.burger_wrapper {
    display: block;
    border-radius: 100%;
    border: 1px solid;
    padding: 11px;
    color: #777e90;
    border-color: #e6e8ec;
    width: 39px;
    height: 38px;
  }

  .microloan_bank {
    grid-template-columns: 1fr;
  }

  .phone_number {
    display: flex;
    align-items: center;
  }
  .gtk_block {
    grid-template-columns: 100%;
  }
  .gtk_h3 {
    max-width: 100%;
  }
  .qulay_blocks {
    margin-top: 32px;
  }
  .callBackForm_title {
    font-size: 36px;
  }
  .callBackForm_subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #0a1e3299;
  }
  .callBackForm .form_content {
    grid-template-columns: 100%;
  }
  .form_content .form_elem.callBackForm_text {
    display: none;
  }
  .gtk_big_text {
    flex-direction: column;
    gap: 10px;
  }
  .qulay_big_block {
    margin-top: 0;
  }
  .qulay_block {
    width: 265px;
  }

  .modal .modal__content-wrapper {
    flex-direction: column-reverse;
    }
    .modal .headed_blocks {
      grid-template-columns: repeat(2, max-content);
    }
}
@media (max-width: 606px) {
  .more-padding {
    padding: 24px 24px 0 24px;
  }
  .headed_blocks {
    grid-template-columns: repeat(2, max-content);
  }
  .headed_block-income {
    grid-column: 1 / 3;
  }
  .headed_block-profit {
    grid-column: 1 / 3;
  }
  .headed_block-percentage {
    grid-row: 3;
  }
  section {
    padding-block: 64px;
  }
  .qulay_banner {
    padding-bottom: 64px;
  }
  .section_title {
    font-size: 28px;
  }
  .callBackForm_wrapper {
    padding: 36px 24px;
  }

  .modal .modal__content {
    padding: 24px;
  }
  .modal .modal__fixed {
    padding: 24px;
  }
  .gtk_main_content .block {
    gap: 24px;
  }

  .deposit_calc .deposit_calc-first {
    padding: 24px;
  }
  .microloan_bank {
    gap: 16px;
  }
  .catalog__tabs {
    gap: 12px;
  }
  .catalog__tabs .catalog__tab {
    padding: 6px 16px;
  }
  .catalog__tabs .catalog__tab div {
    font-size: 14px;
  }
  .gtk_block {
    gap: 40px;
  }
  .gtk_main_content {
    gap: 24px;
  }
  .catalog__content {
    margin-top: 40px;
  }
}

@media (max-width: 450px) {
  .file_download_block {
    flex-direction: column;
    gap: 16px;
  }
  .download_btn {
    width: 100%;
  }
  .file_name {
    font-weight: 600;
  }
}

@media (max-width: 400px) {
  .modal .headed_blocks {
    grid-template-columns: 100%;
  }
  .modal .headed_blocks .headed_block {
    grid-area: auto;
  }
  .deposit_calc-block {
    padding: 24px !important;
  }
  .qulay_block {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .headed_blocks {
    grid-template-columns: 100%;
  }
  .headed_block-income,
  .headed_block-profit {
    grid-column: auto;
  }
}
