* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

@font-face {
  font-family: "BIP";
  src: url("BIP/bip.ttf");
}
body {
  background-color: #21213c;
}

.header_container {
  max-width: 1904px;
  margin: 0 auto;
  padding: 0 32px 0 8px;
  display: flex;
  align-items: center;
}

.recent_container {
  max-width: 1904px;
  margin: 0 auto;
  padding: 0 32px 0 8px;
}

.footer_container {
  position: relative;
  display: flex;
  align-items: start;
  max-width: 1900px;
  padding: 0 10px;
  margin: 0 auto;
  justify-content: space-between;
}

header {
  padding: 16px 0 0 0;
}
header .logo img {
  width: 250px;
}
header .nav_media {
  position: fixed;
  width: 250px;
  top: 0;
  right: -100%;
  z-index: 15;
  height: 100vh;
  margin-left: 27px;
  padding: 12px 17px;
  display: flex;
  align-items: left;
  flex-direction: column;
  text-align: left;
  gap: 16px;
  border-radius: 18px 0 0 18px;
  background-image: linear-gradient(#2b2b44, #2b2b4f);
  transition: 0.3s ease;
}
header .nav_media .nav_close {
  cursor: pointer;
  width: 30px;
  margin: 0 10px;
  margin-left: auto;
}
header .nav_media .nav_link {
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.266;
  font-weight: 400;
  transition: 0.2s ease;
}
header .nav_media .nav_link:hover {
  color: #feb341;
}
header nav {
  margin-left: 27px;
  padding: 5px 17px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  background-image: linear-gradient(#2b2b44, #2b2b4f);
}
header nav .nav_link {
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.266;
  font-weight: 400;
  transition: 0.2s ease;
}
header nav .nav_link:hover {
  color: #feb341;
}
header button {
  margin-left: auto;
  width: 67px;
  height: 67px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
header button img {
  width: 100%;
}
header .sign_in {
  white-space: nowrap;
  margin-left: auto;
  padding: 7px 12px;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.625;
  border-radius: 7px;
  background-color: #31315a;
}
header .header_burger {
  display: none;
  margin: 0 10px;
  width: 35px;
  height: 25px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
header .header_burger span {
  display: block;
  height: 3px;
  background-color: #feb341;
  width: 100%;
}

.recent h4 {
  margin-bottom: 10px;
  font-size: 13px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(99, 99, 115);
  line-height: 1.188;
  font-weight: 400;
}
.recent .recent_cards {
  overflow-x: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}
.recent .recent_cards .recent_card {
  cursor: pointer;
  position: relative;
  text-align: center;
  width: 104px;
  padding: 17px 9px 8px 9px;
  border-radius: 15px 15px 0px 15px;
  background: linear-gradient(180deg, rgb(45, 45, 90) 0%, rgb(59, 59, 156) 100%);
}
.recent .recent_cards .recent_card .card_line {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 0 0 2px 2px;
  width: 47px;
  height: 3px;
  background-color: #4545ff;
}
.recent .recent_cards .recent_card img {
  width: 100%;
}
.recent .recent_cards .recent_card h6 {
  font-size: 10px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(228, 228, 241);
  line-height: 1.141;
}

.main_menu {
  margin: 0 20px;
}
.main_menu .main_menu_in {
  max-width: 1440px;
  margin: 28px auto 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 53px;
}
.main_menu .category_btn,
.main_menu .region_btn {
  position: relative;
}
.main_menu .category_btn .category_list_one,
.main_menu .region_btn .category_list_one {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  flex-direction: column;
  background-color: #31315a;
  border-radius: 7px;
  padding: 0 5px;
  transition: 0.2s ease;
  width: 100%;
}
.main_menu .category_btn .category_list_one a,
.main_menu .region_btn .category_list_one a {
  display: inline-block;
  padding: 10px 20px;
  border-bottom: 1px solid #ababab;
  font-size: 14.322px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.257;
  transition: 0.2s ease;
}
.main_menu .category_btn .category_list_one a:hover,
.main_menu .region_btn .category_list_one a:hover {
  color: #feb341;
  border-bottom: 1px solid #feb341;
}
.main_menu .category_btn .category_list_one.active,
.main_menu .region_btn .category_list_one.active {
  display: flex;
  z-index: 2;
}
.main_menu .category_btn .category_list,
.main_menu .region_btn .category_list {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  flex-direction: column;
  background-color: #31315a;
  border-radius: 7px;
  padding: 0 5px;
  transition: 0.2s ease;
  width: 100%;
}
.main_menu .category_btn .category_list a,
.main_menu .region_btn .category_list a {
  display: inline-block;
  padding: 10px 20px;
  border-bottom: 1px solid #ababab;
  font-size: 14.322px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.257;
  transition: 0.2s ease;
}
.main_menu .category_btn .category_list a:hover,
.main_menu .region_btn .category_list a:hover {
  color: #feb341;
  border-bottom: 1px solid #feb341;
}
.main_menu .category_btn .category_list.active,
.main_menu .region_btn .category_list.active {
  display: flex;
  z-index: 2;
}
.main_menu .main_menu_btn {
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 13px 20px;
  border-radius: 7px;
  background-color: #31315a;
  font-size: 14.322px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.257;
  transition: 0.2s ease;
}
.main_menu .main_menu_btn:hover {
  background-color: #feb341;
}
.main_menu .wrapper {
  transform: translateY(-10px);
  width: 230px;
}
.main_menu .wrapper .price-input {
  gap: 143px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main_menu .wrapper .price-input .field {
  margin-bottom: 5px;
  display: flex;
  width: auto;
  justify-content: center;
  align-items: center;
}
.main_menu .wrapper .price-input .field span {
  white-space: nowrap;
  border-radius: 5px;
  background-color: #feb341;
  width: 100%;
  padding: 1px 8px;
  border: none;
  font-size: 12px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  outline: none;
  text-align: center;
}
.main_menu .wrapper .price-input .field .input-min {
  transform: translateX(-50%);
}
.main_menu .wrapper .price-input .field .input-max {
  transform: translateX(50%);
}
.main_menu .wrapper .price-input .field input {
  display: none !important;
}
.main_menu .wrapper .price-input .field input[type=number]::-webkit-outer-spin-button,
.main_menu .wrapper .price-input .field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.main_menu .wrapper .slider {
  height: 5px;
  position: relative;
  background: rgb(70, 52, 22);
}
.main_menu .wrapper .slider .progress {
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  background: #feb341;
  box-shadow: -1px 0px 23px -1px rgba(254, 179, 65, 0.75);
  -webkit-box-shadow: -1px 0px 23px -1px rgba(254, 179, 65, 0.75);
  -moz-box-shadow: -1px 0px 23px -1px rgba(254, 179, 65, 0.75);
}
.main_menu .wrapper .range-input {
  position: relative;
  width: calc(100% + 15px);
}
.main_menu .wrapper .range-input input {
  background-color: transparent;
  position: absolute;
  width: 100%;
  height: 5px;
  top: 5px;
  left: -7px;
  pointer-events: none;
  -webkit-appearance: none;
}
.main_menu .wrapper .range-input input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border: 12px solid transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  -moz-border-top-colors: transparent;
  -moz-border-left-colors: transparent;
  -moz-border-right-colors: transparent;
  border-bottom: 12px solid #feb341;
  background-color: transparent;
  pointer-events: auto;
  -webkit-appearance: none;
}
.main_menu .wrapper .range-input input[type=range]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: 12px solid transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  -moz-border-top-colors: transparent;
  -moz-border-left-colors: transparent;
  -moz-border-right-colors: transparent;
  border-bottom: 12px solid #feb341;
  background-color: transparent;
  pointer-events: auto;
  -moz-appearance: none;
}
.main_menu .wrapper .range-input input[type=range]::-webkit-slider-runnable-track {
  background-color: transparent;
}
.main_menu .wrapper .price-input .separator {
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.rendom_accounts {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.rendom_accounts h3 {
  margin-bottom: 45px;
  font-weight: 300;
  font-size: 30px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 0.967;
}
.rendom_accounts .rendom_accounts_card {
  display: block;
  margin: 0 auto;
  width: 250px;
  text-align: center;
}
.rendom_accounts .rendom_accounts_card img {
  width: 100%;
  transition: 0.2s ease;
}
.rendom_accounts .rendom_accounts_card h4 {
  font-size: 13px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.468;
  margin-bottom: 20px;
}
.rendom_accounts .rendom_accounts_card .price {
  transition: 0.2s ease;
  display: inline-block;
  position: relative;
  border: none;
  background-image: linear-gradient(45deg, rgb(15, 2, 193) 0%, rgb(65, 117, 235) 100%);
  background-image: -ms-linear-gradient(45deg, rgb(15, 2, 193) 0%, rgb(65, 117, 235) 100%);
  padding: 0 15px;
  border-radius: 6px;
  font-size: 17.369px;
  font-family: "Rubik", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.497;
}
.rendom_accounts .rendom_accounts_card .price .discount {
  white-space: nowrap;
  position: absolute;
  top: -15px;
  left: 65%;
  font-size: 12px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.465;
  padding: 1px 11px;
  border-radius: 6px;
  background-color: rgb(255, 61, 61);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.75);
}
.rendom_accounts .rendom_accounts_card .price .discount::before {
  content: "";
  position: absolute;
  width: 80%;
  top: 7px;
  left: 8px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-11deg);
}
.rendom_accounts .rendom_accounts_card:hover img {
  transform: translateY(-10px);
}
.rendom_accounts .rendom_accounts_card:hover .price {
  background-image: linear-gradient(45deg, rgb(83, 72, 232) 0%, rgb(114, 153, 236) 100%);
}
.rendom_accounts .rendom_bottom {
  margin-top: 58px;
}
.rendom_accounts .rendom_accounts_cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
.rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card {
  width: 250px;
  text-align: center;
}
.rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card img {
  width: 100%;
  transition: 0.2s ease;
}
.rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card h4 {
  font-size: 13px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.468;
  margin-bottom: 20px;
}
.rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card .price {
  transition: 0.2s ease;
  display: inline-block;
  position: relative;
  border: none;
  background-image: linear-gradient(45deg, rgb(15, 2, 193) 0%, rgb(65, 117, 235) 100%);
  background-image: -ms-linear-gradient(45deg, rgb(15, 2, 193) 0%, rgb(65, 117, 235) 100%);
  padding: 0 15px;
  border-radius: 6px;
  font-size: 17.369px;
  font-family: "Rubik", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.497;
}
.rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card .price .discount {
  white-space: nowrap;
  position: absolute;
  top: -15px;
  left: 65%;
  font-size: 12px;
  font-family: "MyriadPro", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.465;
  padding: 1px 11px;
  border-radius: 6px;
  background-color: rgb(255, 61, 61);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.75);
}
.rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card .price .discount::before {
  content: "";
  position: absolute;
  width: 80%;
  top: 7px;
  left: 8px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-11deg);
}
.rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card:hover img {
  transform: translateY(-10px);
}
.rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card:hover .price {
  background-image: linear-gradient(45deg, rgb(83, 72, 232) 0%, rgb(114, 153, 236) 100%);
}

.politics_text .politics_text_in {
  margin: 70px auto !important;
  max-width: 1440px;
  background-color: #242442;
  border-radius: 10px;
  padding: 32px 52px;
}
.politics_text p {
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.278;
}

#purchases {
  max-width: 1440px;
  margin: 40px auto;
}
#purchases h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 300;
  font-size: 30px;
  font-family: "Arial", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 0.967;
}
#purchases .purchases_wrapper {
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#purchases .purchases_wrapper .name {
  padding: 1px 7px;
  height: 35px;
  border: 1px solid rgb(77, 76, 76);
  flex: 1;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.75;
  font-weight: 700;
}
#purchases .purchases_wrapper .nameone {
  padding: 1px 7px;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.75;
  font-weight: 700;
  height: 35px;
  border: 1px solid rgb(77, 76, 76);
  border-right: none;
  flex: 2;
}
#purchases .purcheses_in {
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#purchases .purcheses_in .name_under {
  padding: 1px 7px;
  height: 40px;
  border-top: none;
  border: 1px solid rgb(77, 76, 76);
  flex: 1;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.75;
  font-weight: 400;
  display: flex;
  align-items: center;
}
#purchases .purcheses_in .name_under button {
  padding: 2px 6px;
  cursor: pointer;
  border: none;
  background-color: #414b93;
  font-size: 13px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.75;
  font-weight: 400;
}
#purchases .purcheses_in .name_underone {
  border-right: none;
  border-top: none;
  flex: 2;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.75;
  font-weight: 400;
  padding: 1px 7px;
  height: 40px;
  border: 1px solid rgb(77, 76, 76);
}

#shopping {
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 6;
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  background-color: rgba(29, 29, 29, 0.09);
}
#shopping .shopping_modal {
  z-index: 10;
  padding-bottom: 34px;
  text-align: center;
  border-radius: 5px;
  background-color: #242442;
  width: 500px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#shopping .shopping_modal .shopping_modal_head {
  border-radius: 5px 5px 0 0;
  background-color: #1c1d39;
  padding: 14px 0;
  position: relative;
}
#shopping .shopping_modal .shopping_modal_head h4 {
  font-size: 24px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(198, 198, 219);
  font-weight: bold;
  line-height: 1.083;
  text-align: center;
}
#shopping .shopping_modal .shopping_modal_head .modal_close {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}
#shopping .shopping_modal p {
  margin: 10px 0 17px 0;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(198, 198, 219);
  line-height: 1.625;
  font-weight: 400;
}
#shopping .shopping_modal form {
  display: flex;
  flex-direction: column;
}
#shopping .shopping_modal form input {
  text-align: center;
  padding: 11px 0;
  border: none;
  margin: 0 auto 26px auto;
  width: calc(100% - 110px);
  font-size: 24px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(50, 50, 90);
  font-weight: bold;
  line-height: 1.083;
  border-radius: 11px;
  background-color: rgb(25, 25, 33);
}
#shopping .shopping_modal form input:focus {
  outline: none;
}
#shopping .shopping_modal form button {
  padding: 13px 0;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  width: calc(100% - 110px);
  font-size: 28px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 0.929;
  border-radius: 4px;
  background-color: rgb(232, 193, 138);
}

#shopping:target {
  visibility: visible;
  opacity: 1;
}

#error {
  height: 100vh;
  background-color: #1b1b3a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#error .error_block .error_img {
  transform: translateX(-50px);
}
#error .error_block h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(173, 173, 219);
  line-height: 1.444;
  font-weight: 400;
}
#error .error_block h4 {
  margin-bottom: 19px;
  font-size: 27px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(173, 173, 219);
  line-height: 1.444;
  font-weight: 400;
}
#error .error_block a {
  width: 165px;
  margin: 0 auto;
  cursor: pointer;
  padding: 9px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: transparent;
  border: 1px solid rgb(198, 198, 219);
  border-radius: 14px;
  font-size: 20px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(198, 198, 219);
  line-height: 1.3;
}

#accardion_wrapper {
  margin: 0 20px;
}
#accardion_wrapper .accardion_in {
  max-width: 1460px;
  margin: 40px auto 85px auto;
  padding: 32px 52px;
  background-color: #242442;
  border-radius: 10px;
}
#accardion_wrapper .accardion_head {
  margin-bottom: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
#accardion_wrapper .accardion_head h4 {
  font-size: 30px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.2;
  font-weight: bold;
}
#accardion_wrapper .accardion_block {
  margin-bottom: 15px;
  background-color: rgb(28, 29, 57);
  border-radius: 20px;
}
#accardion_wrapper .accardion_block button {
  background-color: transparent;
  width: 100%;
  border: none;
  padding: 15px 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
#accardion_wrapper .accardion_block button img {
  width: 20px;
}
#accardion_wrapper .accardion_block button .button_open {
  display: none;
}
#accardion_wrapper .accardion_block button h5 {
  font-size: 17px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.75;
  font-weight: 400;
}
#accardion_wrapper .accardion_block p {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding-left: 65px;
  padding-right: 38px;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 2.333;
  font-weight: 400;
}
#accardion_wrapper .accardion_block.active button .button_close {
  display: none;
}
#accardion_wrapper .accardion_block.active button .button_open {
  display: block;
}
#accardion_wrapper .accardion_block.active button h5 {
  color: rgb(255, 150, 0);
}
#accardion_wrapper .accardion_text {
  margin-top: 30px;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.75;
}
#accardion_wrapper .accardion_text a {
  color: #feb341;
}

.payment_wrapper {
  margin: 0 20px;
}

#payment {
  max-width: 1440px;
  border-radius: 10px;
  margin: 20px auto 110px auto;
  background-color: #242442;
  display: flex;
  align-items: stretch;
  gap: 56px;
  overflow: auto;
}
#payment .payment_text {
  padding: 28px 33px;
}
#payment .payment_text .payment_text_head {
  display: flex;
  gap: 50px;
}
#payment .payment_text .payment_text_head .payment_text_right {
  max-width: 520px;
  padding: 26px 37px;
  border-radius: 10px;
  background-color: rgb(33, 33, 60);
}
#payment .payment_text .payment_text_head .payment_text_right h3 {
  font-size: 24px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 0.958;
  margin-bottom: 47px;
}
#payment .payment_text .payment_text_head .payment_text_right h4 {
  font-size: 30px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 0.767;
  margin-bottom: 5px;
}
#payment .payment_text .payment_text_head .payment_text_right p {
  margin-top: 1px;
  margin-bottom: 5px;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.278;
}
#payment .payment_text p {
  max-width: 854px;
  margin-top: 60px;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.278;
}
#payment .payment_text h2 {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 24px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 0.958;
}
#payment .payment_text h6 {
  margin-bottom: 7px;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.278;
  max-width: 854px;
}
#payment .payment_form {
  top: 80px;
  position: sticky;
  width: 454px;
  padding: 33px;
  border-radius: 10px;
  background-color: #2c2c4d;
}
#payment .payment_form .form_head {
  margin-bottom: 23px;
  border-radius: 10px;
  border: 1px solid #d9d9e8;
  padding: 15px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
#payment .payment_form .form_head h2 {
  font-size: 48px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(185, 185, 241);
  font-weight: bold;
  line-height: 0.479;
}
#payment .payment_form .form_head h3 {
  padding: 8px 4px;
  font-size: 24px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 0.479;
  border-radius: 10px;
  background-color: rgb(253, 157, 157);
}
#payment .payment_form .form_head h4 {
  font-size: 24.58px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(114, 114, 123);
  line-height: 0.936;
  position: relative;
}
#payment .payment_form .form_head h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 100%;
  height: 2px;
  background-color: #fd9d9d;
  transform: rotate(-12deg);
}
#payment .payment_form .oplate h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(198, 198, 219);
  line-height: 1.643;
  margin-top: 25px;
  margin-bottom: 15px;
}
#payment .payment_form .oplate span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgb(198, 198, 219);
  font-size: 10px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(198, 198, 219);
  line-height: 1.643;
}
#payment .payment_form .oplate .banks {
  display: flex;
  align-items: start;
  gap: 10px;
}
#payment .payment_form .oplate .banks a {
  width: 55px;
  height: 58px;
  text-align: center;
  display: inline-block;
  padding: 4px 7px 2px 7px;
  border: 1px solid rgb(198, 198, 219);
  border-radius: 10px;
  transition: 0.2s ease;
}
#payment .payment_form .oplate .banks a img {
  width: 100%;
  height: 70%;
}
#payment .payment_form .oplate .banks a h5 {
  transition: 0.2s ease;
  font-size: 9px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(198, 198, 219);
}
#payment .payment_form .oplate .banks a:hover {
  border: 1px solid rgb(211, 165, 116);
  border-radius: 10px;
  background-color: rgb(71, 57, 46);
}
#payment .payment_form .oplate .banks a:hover h5 {
  color: rgb(226, 171, 112);
}
#payment .payment_form .oplate input {
  height: 62px;
  padding: 15px 10px;
  border: none;
  text-align: center;
  width: 100%;
  font-size: 30px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(44, 44, 77);
  font-weight: bold;
  line-height: 0.767;
  border-radius: 10px;
  background-color: rgb(25, 25, 33);
}
#payment .payment_form .oplate input:focus {
  outline: none;
}
#payment .payment_form .oplate h6 {
  margin-top: 40px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.143;
}
#payment .payment_form .oplate button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 64px;
  padding-bottom: 10px;
  border: none;
  font-size: 36px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 0.639;
  border-radius: 10px;
  background-color: rgb(253, 187, 86);
}
#payment .payment_form .oplate a {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  font-family: "Segoe UI", sans-serif;
  color: #bebed3;
  font-weight: 300;
  line-height: 1.143;
}

footer {
  overflow: hidden;
  padding: 132px 56px 80px 56px;
  background-color: #242442;
  border-bottom: 1px solid rgb(56, 55, 55);
}
footer .footer_left {
  display: flex;
  gap: 5px;
  align-items: start;
}
footer .footer_left .footer_logo img {
  transform: translateY(-21px);
}
footer .footer_left .logo_text {
  position: relative;
  z-index: 5;
}
footer .footer_left .logo_text h3 {
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.278;
}
footer .footer_left .logo_text .top_link {
  display: block;
  margin-top: 6px;
  margin-bottom: 22px;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  color: rgb(165, 165, 165);
  line-height: 1.278;
  font-weight: 400;
}
footer .footer_left .logo_text .footer_link {
  display: block;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  color: rgb(165, 165, 165);
  line-height: 1.278;
  font-weight: 400;
  margin-bottom: 5px;
  transition: 0.2s ease;
}
footer .footer_left .logo_text .footer_link:hover {
  color: #feb341;
}
footer .footer_left .logo_text .copiration {
  display: inline-block;
  margin-top: 13px;
  margin-bottom: 91px;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 0.958;
  padding: 10px 18px;
  border-radius: 8px;
  background-color: rgb(15, 2, 193);
  background-image: linear-gradient(45deg, rgb(15, 2, 193) 0%, rgb(65, 117, 235) 100%);
  background-image: -ms-linear-gradient(45deg, rgb(15, 2, 193) 0%, rgb(65, 117, 235) 100%);
}
footer .footer_left .logo_text .social_media {
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .footer_left .logo_text .social_media p {
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(165, 165, 165);
  line-height: 1.278;
}
footer .footer_left .logo_text .social_media a {
  width: 30px;
  height: 30px;
  cursor: pointer !important;
}
footer .footer_left .logo_text .social_media a img {
  width: 100%;
}
footer .footer_center {
  position: absolute;
  bottom: -20%;
  left: 20%;
  right: 0;
  margin: 0 auto;
}
footer .footer_right .footer_right_text {
  padding: 60px 43px;
  display: inline-block;
  border-radius: 14px;
  background-color: #191939;
  font-size: 16.636px;
  font-family: "BIP";
  color: rgb(247, 223, 189);
  line-height: 1.383;
}
footer .footer_right p {
  margin-top: 135px;
  font-size: 12.343px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(140, 140, 140);
  line-height: 1.539;
}

.footer_under {
  background-color: #242442;
}
.footer_under p {
  padding: 20px;
  max-width: 1900px;
  margin: 0 auto;
  font-size: 12.343px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(140, 140, 140);
  line-height: 1.539;
}
.footer_under p a {
  font-size: 12.343px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(140, 140, 140);
  line-height: 1.539;
  transition: 0.2s ease;
}
.footer_under p a:hover {
  color: #feb341;
}

@media (max-width: 1920px) {
  footer {
    padding: 132px 5px 80px 5px;
  }
  footer .footer_center img {
    width: 60%;
  }
  footer .footer_right {
    position: relative;
    z-index: 3;
  }
  footer .footer_right img {
    width: 100%;
  }
  footer .footer_right .footer_right_text {
    width: 570px;
  }
}
@media (max-width: 1600px) {
  footer .footer_center img {
    width: 70%;
  }
  footer .footer_right .footer_right_text {
    width: 400px;
  }
  footer .footer_right .footer_right_text p {
    text-align: right;
  }
}
@media (max-width: 1250px) {
  #payment {
    gap: 10px;
  }
  #payment .payment_text {
    padding: 20px;
    flex: 1;
  }
  #payment .payment_text .payment_text_head {
    flex-direction: column;
  }
  #payment .payment_text .payment_text_head img {
    width: 100%;
    height: auto;
  }
  #payment .payment_text .payment_text_head .payment_text_right {
    max-width: 100%;
  }
  #payment .payment_form {
    flex: 1;
  }
  footer {
    padding: 40px 20px;
  }
  footer .footer_container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  footer .footer_left {
    gap: 10px;
  }
  footer .footer_left .logo_text .copiration {
    margin-bottom: 50px;
  }
  footer .footer_center {
    margin: 0;
    left: 0;
    margin-top: 25px;
    position: sticky;
  }
  footer .footer_center img {
    width: 100%;
  }
  footer .footer_right {
    position: sticky;
  }
  footer .footer_right .footer_right_text {
    width: 100% !important;
  }
  footer .footer_right .footer_right_text img {
    width: 100%;
  }
  footer .footer_right p {
    margin-top: 25px;
    text-align: left;
  }
}
@media (max-width: 993px) {
  .header_container {
    padding: 0 10px;
  }
  #payment {
    flex-direction: column;
  }
  #payment .payment_form {
    margin: 0 auto;
  }
  header .logo img {
    width: 75%;
  }
  header .nav_media.active {
    right: 0;
  }
  header nav {
    display: none;
  }
  header .header_burger {
    display: flex;
  }
}
@media (max-width: 768px) {
  #accardion_wrapper .accardion_head h4 {
    font-size: 25px;
  }
  #accardion_wrapper .accardion_in {
    margin: 100px auto;
    padding: 15px;
  }
  #accardion_wrapper .accardion_in .accardion_block button {
    gap: 15px;
    padding: 10px 20px;
    text-align: left;
  }
  #accardion_wrapper .accardion_in .accardion_block button h5 {
    font-size: 18px;
  }
  #accardion_wrapper .accardion_in .accardion_block button img {
    width: 25px;
    height: 25px;
  }
  #accardion_wrapper .accardion_in .accardion_block p {
    padding-left: 10%;
  }
  #accardion_wrapper .accardion_text {
    margin-top: 70px;
    font-size: 16px;
  }
  .politics_text .politics_text_in {
    padding: 30px 20px;
  }
  .politics_text .politics_text_in p {
    font-size: 14px;
  }
  .rendom_accounts h3 {
    margin-bottom: 25px;
    font-size: 22px;
  }
  .main_menu .main_menu_in {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .main_menu .main_menu_in {
    gap: 15px;
  }
  .rendom_accounts .rendom_accounts_card {
    width: 70%;
  }
  .rendom_accounts .rendom_accounts_cards {
    margin-bottom: 100px;
    gap: 10px;
    flex-direction: column;
  }
  .rendom_accounts .rendom_accounts_cards .rendom_accounts_bottom_card {
    width: 70%;
  }
  #shopping .shopping_modal {
    width: 90%;
  }
  #shopping .shopping_modal form input {
    width: calc(100% - 45px);
  }
  #shopping .shopping_modal form button {
    padding: 11px 0;
    font-size: 23px;
    width: calc(100% - 45px);
  }
  #payment {
    flex-direction: column;
  }
  #payment .payment_text .payment_text_head {
    gap: 15px;
  }
  #payment .payment_text .payment_text_head .payment_text_right {
    padding: 15px;
  }
  #payment .payment_text .payment_text_head .payment_text_right h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  #payment .payment_text .payment_text_head .payment_text_right h4 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  #payment .payment_text .payment_text_head .payment_text_right p {
    font-size: 14px;
  }
  #payment .payment_text p {
    margin-top: 20px;
    font-size: 16px;
  }
  #payment .payment_text h2 {
    font-size: 20px;
  }
  #payment .payment_text h6 {
    font-size: 14px;
  }
  #payment .payment_form {
    padding: 15px;
    width: 100%;
    margin: 0 auto;
  }
  #payment .payment_form input {
    height: 50px;
    font-size: 25px;
  }
  #payment .payment_form .oplate h6 {
    margin-bottom: 15px;
  }
  #payment .payment_form .oplate button {
    height: 55px;
    font-size: 30px;
  }
  footer .footer_left {
    flex-direction: column;
  }
  footer .footer_left .footer_logo img {
    width: 100px;
    transform: translateY(1px);
  }
  #error .error_block .error_img {
    width: 100%;
  }
  #purchases h2 {
    font-size: 20px;
  }
  #purchases .purchases_wrapper .nameone, #purchases .purchases_wrapper .name {
    flex: 1;
    font-size: 13px;
  }
  #purchases .purcheses_in .name_underone, #purchases .purcheses_in .name_under {
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */