html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: " ";
  content: none;
}

.container-fluid {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  display: inline-block;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html::-webkit-scrollbar {
  background-color: #000;
  width: 5px;
}
html::-webkit-scrollbar-thumb {
  background-color: #DA1A00;
  width: 3px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white-bg, #F3F3F3);
}

.wrapper {
  overflow: hidden;
}

.title {
  color: #191919;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 49.5px */
  letter-spacing: -2.7px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* The container */
.checkbox_item {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--grey, #A5A5A5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all ease-in 0.1s;
}
.checkbox_item.active {
  color: #FFC300;
}

/* Hide the browser's default checkbox */
.checkbox_item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.acc_input_item {
  gap: 4px;
  flex-direction: column;
}
.acc_input_item label {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.acc_input_item input {
  height: 55px;
  padding-left: 16px;
  width: 400px;
  border-radius: 30px;
  background: var(--white-bg, #F3F3F3);
  border: none;
  outline: none;
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.acc_input_item input::value {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}

.input_edit {
  position: absolute;
  z-index: 12;
  top: 0;
  bottom: 0;
  right: 35px;
  margin: auto;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  border: 1px solid var(--grey, #A5A5A5);
  background: var(--white-bg, #F3F3F3);
}

.copyright {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}

/* When the checkbox is checked, add a blue background */
.checkbox_item input:checked ~ .checkmark {
  border: 1px solid var(--accent-yellow, #FFC300);
  background: var(--accent-yellow-light, #FFF3CC);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_item input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_item .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid rgb(255, 195, 0);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox_item .last_span {
  position: relative;
  z-index: 2;
}

.checkbox_item {
  position: relative;
  z-index: 4;
}
.checkbox_item input {
  accent-color: #FFC300;
}

.login_modal .modal-content {
  padding: 32px;
  border-radius: 20px;
}
.login_modal .modal-content input {
  margin-bottom: 8px;
  height: 55px;
  border-radius: 212px;
  background: var(--white-bg, #F3F3F3);
  border: none;
  outline: none;
  padding-left: 16px;
  font-size: 16px;
  width: 100%;
}
.login_modal .modal-content input::-moz-placeholder {
  color: var(--grey, #A5A5A5);
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.login_modal .modal-content input::placeholder {
  color: var(--grey, #A5A5A5);
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.login_modal .forget_password {
  color: var(--accent-yellow, #FFC300);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.login_modal .modal-dialog {
  max-width: 660px;
}
.login_modal .submit_login {
  width: 100%;
  padding: 17px 0;
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 212px;
  background: var(--white-bg, #F3F3F3);
  margin-bottom: 8px;
  transition: all ease-in 0.2s;
}
.login_modal .submit_login:hover {
  color: #191919;
  background: var(--accent-yellow, #FFC300);
}
.login_modal .login_rules {
  text-align: center;
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.login_modal .login_rules a {
  color: var(--black, #191919);
  transition: all ease-in 0.2s;
}
.login_modal .login_rules a:hover {
  text-decoration: underline;
}
.login_modal .login_password.active::after {
  content: "";
  position: absolute;
  z-index: 23;
  height: 28px;
  background-color: rgb(81, 109, 136);
  width: 1px;
  top: 15px;
  right: 29px;
  transform: rotate(-45deg);
}
.login_modal .eye {
  position: absolute;
  top: 20px;
  right: 19px;
  z-index: 3;
  cursor: pointer;
}
.login_modal .eye img {
  width: 20px;
}
.login_modal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
}
.login_modal .login_logo {
  padding-top: 25px;
}
.login_modal .register_desc {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  margin-bottom: 8px;
  max-width: 320px;
}
.login_modal #register_check_block {
  margin-bottom: 12px;
}
.login_modal #register_check_block .checkbox_item {
  font-size: 16px;
}
.login_modal #register_check_block .checkmark {
  top: 1px;
}

body.active {
  position: relative;
  z-index: 3;
  height: 200vh;
  overflow: hidden;
}
body.active::after {
  content: " ";
  height: 200vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6705882353);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
}

header {
  background-color: #fff;
}
header .header_block {
  padding: 13px 0;
  border-bottom: 1px solid #DDD;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header_catalog {
  cursor: pointer;
  gap: 5px;
  border-radius: 100px;
  background: var(--accent-yellow, #FFC300);
  padding: 10px 15px;
}
header .dot_name {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
header .header_menus {
  gap: 0 32px;
}
header .header_menus li a {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
header .header_buttons {
  gap: 32px;
}
header .header_buttons > a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in;
}
header .header_buttons > a:hover .search_icon img, header .header_buttons > a:hover .name {
  opacity: 0.8;
}
header .header_buttons .name {
  color: #191919;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
header .cart_btn {
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid var(--pure-grey, #DDD);
}

.hero {
  padding: 80px 0 130px 0;
  background-color: #fff;
  border-radius: 0px 0px 40px 40px;
}
.hero .hero_left .hero_title {
  color: #191919;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 79.2px */
  letter-spacing: -4.32px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.hero .hero_left .hero_left_desc {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  max-width: 320px;
  margin-bottom: 25px;
}
.hero .hero_left .hero_buttons {
  gap: 20px;
}
.hero .hero_left .hero_buttons > a {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
  border-radius: 128px;
}
.hero .hero_left .hero_buttons .hero_button_name {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.hero .hero_left .hero_buttons .buy {
  background: var(--accent-yellow, #FFC300);
}
.hero .hero_left .hero_buttons .sell {
  transition: all ease-in 0.2s;
  border: 1px solid var(--pure-grey, #DDD);
}
.hero .hero_left .hero_buttons .sell:hover {
  border: 1px solid var(--pure-grey, #FFC300);
  background: var(--accent-yellow, #FFC300);
}
.hero .hero_left .hero_buttons .sell:hover .hero_sell_name {
  color: #191919;
}
.hero .hero_left .hero_buttons .hero_sell_name {
  color: var(--grey, #A5A5A5);
}
.hero .hero_right {
  display: flex;
}
.hero .hero_right .grey_block {
  border-radius: 20px;
  position: relative;
  z-index: 3;
}
.hero .hero_right .black_block {
  border-radius: 20px;
  position: relative;
  right: -100px;
  bottom: -70px;
}

.products {
  padding: 100px 0;
}
.products .product_block {
  padding-bottom: 100px;
}
.products .title {
  color: #191919;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 49.5px */
  letter-spacing: -2.7px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.products .product_item {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 16px;
  border: 1px solid var(--pure-grey, #DDD);
}
.products .product_img {
  position: relative;
  margin-bottom: 10px;
}
.products .product_img img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
.products .product_img .product_name {
  padding: 5px 15px;
  color: #191919;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border-radius: 10px;
  background: var(--white-bg, #F3F3F3);
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.products .product_body {
  padding: 0 20px 10px 20px;
}
.products .price {
  color: #191919;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
}
.products .price_type {
  color: var(--grey, #A5A5A5);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.products .product_prices {
  margin-bottom: 10px;
}
.products .product_date {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  margin-bottom: 10px;
}
.products .latest_block {
  margin-bottom: 15px;
}
.products .product_buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.products .product_buttons > a {
  padding: 10px 0px;
  width: 135px;
  text-align: center;
}
.products .product_buttons .bid {
  border-radius: 48px;
  background: var(--accent-yellow, #FFC300);
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.products .product_buttons .details {
  border-radius: 48px;
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border: 1px solid var(--grey, #A5A5A5);
  transition: all ease-in 0.2s;
}
.products .product_buttons .details:hover {
  background: var(--accent-yellow, #FFC300);
  color: #191919;
  border: 1px solid transparent;
}
.products .see_all a {
  padding: 17px 0;
  text-align: center;
  display: block;
  color: var(--grey, #A5A5A5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
  border-radius: 152px;
  border: 1px solid var(--pure-grey, #DDD);
}
.products .category_item {
  padding: 16px 0 0 16px;
  border-radius: 16px;
  background: var(--white, #FFF);
  height: 200px;
}
.products .category_item.category_last_item {
  padding: 24px;
}
.products .category_name {
  color: #191919;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
  margin-bottom: 8px;
}
.products .grey_arrow path {
  transition: all ease-in 0.2s;
}
.products .catalog {
  position: relative;
  margin-bottom: 10px;
}
.products .catalog:hover {
  color: #FFC300;
}
.products .catalog:hover .grey_arrow path {
  fill: #FFC300;
}
.products .catalog:hover::after {
  border-bottom: 1px dashed #FFC300;
}
.products .catalog:hover .catalog_name {
  color: #FFC300;
}
.products .catalog::after {
  content: " ";
  width: 72px;
  height: 1px;
  border-bottom: 1px dashed #a7a7a7;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all ease-in 0.2s;
}
.products .catalog_name {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  margin-right: 5px;
  transition: all ease-in 0.2s;
}
.products .cat_img img {
  width: 15px;
  margin-top: 5px;
}

.features {
  padding: 32px 0 100px 0;
  border-radius: 40px;
  background: var(--accent-yellow, #FFC300);
}
.features .features_block .feature_title {
  color: #191919;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 49.5px */
  letter-spacing: -2.7px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.features .feature_item {
  padding: 24px;
  border-radius: 24px;
  background: var(--white, #FFF);
}
.features .feature_top {
  margin-bottom: 95px;
}
.features .feature_name {
  color: #191919;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
}
.features .feature_wrap {
  margin-bottom: 30px;
}
.features .feature_bottom {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  max-width: 296px;
}
.features .feature_desc {
  color: #191919;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
  margin-bottom: 15px;
}
.features .feature_btn {
  gap: 150px;
  padding: 15px 20px;
  border-radius: 128px;
  background: var(--white, #FFF);
}
.features .btn_name {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}

.seller {
  transform: translate(0px, -60px);
  position: relative;
}
.seller::after {
  content: " ";
  width: 860px;
  height: 150px;
  background-image: url(../images/for_after.png);
  position: absolute;
  top: -101px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  z-index: 3;
}
.seller .seller_block {
  border-radius: 40px 0 40px 40px;
  background: var(--white, #FFF);
  padding: 32px 0 0 0;
}
.seller .seller_icon {
  padding: 4px 15px;
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 15px;
  background: var(--accent-yellow-light, #FFF3CC);
}
.seller .seller_title {
  color: #191919;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 79.2px */
  letter-spacing: -4.32px;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.seller .seller_desc {
  color: #191919;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
  margin-bottom: 28px;
}
.seller .seller_btn {
  padding: 15px 20px 12px 20px;
  border-radius: 128px;
  background: var(--accent-yellow, #FFC300);
  gap: 150px;
  margin-bottom: 50px;
}
.seller .sell_btn_name {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.seller .sell_black {
  border-radius: 50px 50px 0 0;
}
.seller .sell_black img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.services {
  margin-bottom: 100px;
}
.services .services_tabs {
  gap: 12px;
  margin-bottom: 16px;
}
.services .tab_item {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  padding: 5px 15px;
  border-radius: 10px;
  background: var(--pure-grey, #DDD);
  transition: all ease-in 0.1s;
}
.services .tab_item.active {
  background-color: #191919;
  color: #fff;
}
.services .service_item {
  border-radius: 30px;
  background: var(--white, #FFF);
  padding: 24px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 175px;
}
.services .service_row {
  margin-bottom: 17px;
}
.services .service_number {
  color: var(--grey, #A5A5A5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
}
.services .service_text {
  color: #191919;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
}
.services .start_sell {
  padding: 20px 20px 15px 20px;
  border-radius: 128px;
  background: var(--accent-yellow, #FFC300);
}
.services .sell_btn_name {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}

.faq {
  padding-bottom: 100px;
}
.faq .faq_block {
  gap: 20px;
}
.faq .faq_item {
  transition: all ease-in 0.5s;
  padding: 17px 24px 5px 24px;
  border-radius: 16px;
  background: var(--white, #FFF);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq .faq_item.active {
  padding: 17px 24px 5px 24px;
}
.faq .faq_item.active .faq_body {
  padding: 10px 20px 20px 0;
  max-height: unset;
  overflow: visible;
}
.faq .faq_body {
  padding: 10px 20px 0px 0;
  border-radius: 16px;
  background: var(--white, #FFF);
  max-height: 0;
  overflow: hidden;
  transition: all ease-in 0.2s;
}
.faq .faq_body p {
  color: #191919;
  font-size: 18px;
  font-style: normal;
  padding-right: 50px;
  font-weight: 500;
}
.faq .faq_top_title {
  color: #191919;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
  letter-spacing: -1.44px;
  max-width: 75%;
}
.faq .faq_top_img {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq .faq_top_img img {
  padding: 12px 10px;
  border-radius: 50%;
  background-color: #F3F3F3;
  transition: all ease-in 0.2s;
}
.faq .faq_top_img img.active {
  transform: rotate(180deg);
}
.faq .all_question {
  padding: 4px 15px;
  color: #191919;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
  border-radius: 10px;
  background: var(--pure-grey, #DDD);
}

footer {
  padding: 40px 0;
  border-radius: 40px 40px 0px 0px;
  background-color: #fff;
}
footer .footer_top {
  padding-bottom: 8px;
  border-bottom: 1px solid #DDD;
  margin-bottom: 40px;
}
footer .nav_name {
  color: #191919;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
  letter-spacing: -1.44px;
  margin-bottom: 14px;
}
footer .bindgo_navs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .bindgo_navs li a {
  color: var(--grey, #A5A5A5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
}
footer .bindgo_navs li a.border_bottom {
  border-bottom: 1px dashed #a5a5a5;
}
footer .form_inputs {
  margin-bottom: 8px;
}
footer .form_inputs .email {
  padding: 11px 0px 11px 15px;
  border-radius: 38px;
  background: var(--white-bg, #F3F3F3);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border: none;
  outline: none;
}
footer .form_inputs .email::-moz-placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
footer .form_inputs .email::placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
footer .form_inputs button {
  border: none;
  padding: 11px 50px 11px 16px;
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border-radius: 138px;
  background: var(--accent-yellow, #FFC300);
}
footer .check_text {
  color: var(--pure-grey, #DDD);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.72px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
footer .checkbox {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border-radius: 4px;
  border: 1px solid var(--pure-grey, #DDD);
  accent-color: #FFC300;
}

.breadcrumbs_section {
  margin-bottom: 70px;
  padding: 80px 0 32px 0;
  border-radius: 0px 0px 40px 40px;
  background: var(--white, #FFF);
}
.breadcrumbs_section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.breadcrumbs_section .breadcrumb li {
  color: var(--grey, #A5A5A5);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.72px;
}
.breadcrumbs_section .breadcrumb li a {
  position: relative;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.72px;
}
.breadcrumbs_section .breadcrumb li a::after {
  content: " ";
  width: 12px;
  height: 12px;
  background-image: url(../images/breadcrumb_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: -17px;
  bottom: 0;
  margin: auto;
}
.breadcrumbs_section .catalog_main_title {
  color: #191919;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 79.2px */
  letter-spacing: -4.32px;
  text-transform: uppercase;
}

.basket {
  padding-bottom: 100px;
}
.basket .filter_block {
  border-radius: 20px;
  background: #fff;
  padding: 24px;
}
.basket .pagination {
  gap: 16px;
}
.basket .pagination a {
  padding: 15px 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  transition: all ease-in 0.2s;
}
.basket .pagination a.active {
  background-color: #FFC300;
  border-color: transparent;
  color: #000;
}
.basket .numbers {
  position: absolute;
  top: 38px;
  right: 12px;
  z-index: 4;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  text-align: center;
  display: none;
}
.basket .numbers.active {
  display: flex;
}
.basket .numbers a {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.basket .pagination_count .display {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.basket .pagination_count .display span {
  color: #191919;
}
.basket .display_img {
  cursor: pointer;
  padding: 2px 6px 3px 6px;
  border-radius: 40px;
  background: var(--white, #FFF);
}
.basket .display_img img {
  width: 10px;
}
.basket .basket_tabs {
  gap: 40px;
  margin-bottom: 20px;
}
.basket .show {
  display: block;
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  padding: 16px 0;
  text-align: center;
  border-radius: 128px;
  border: 1px solid var(--pure-grey, #DDD);
  margin-bottom: 24px;
  transition: all ease-in 0.2s;
}
.basket .show:hover {
  border-color: #000;
  color: #000;
}
.basket .basket_block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.basket .img img {
  border-radius: 20px 0 0 20px;
}
.basket .basket_item {
  border-radius: 20px;
  background: #fff;
  padding-right: 24px;
}
.basket .tab_item a {
  display: flex;
  justify-content: center;
  width: 155px;
  padding: 12px 0;
  border-radius: 40px;
  color: var(--grey, #A5A5A5);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
  border: 1px solid var(--pure-grey, #DDD);
  transition: all ease-in 0.2s;
}
.basket .tab_item a.active {
  color: var(--black, #191919);
  border-color: transparent;
  background: var(--accent-yellow, #FFC300);
}
.basket .basket_name {
  color: #191919;
  margin-bottom: 15px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
  letter-spacing: -1.44px;
}
.basket .basket_desc {
  color: var(--grey, #A5A5A5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  margin-bottom: 15px;
}
.basket .basket_desc a {
  color: #191919;
  text-decoration: underline;
}
.basket .delivery {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}
.basket .delivery_name {
  color: var(--grey, #A5A5A5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
}
.basket .date {
  color: #191919;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  margin-bottom: 15px;
}
.basket .history {
  color: #191919;
  text-decoration: underline;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  text-decoration-line: underline;
}
.basket .basket_buttons {
  gap: 20px;
}
.basket .detail_btn {
  padding: 10px 32px;
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border-radius: 82px;
  border: 1px solid var(--pure-grey, #DDD);
  transition: all ease-in 0.2s;
}
.basket .detail_btn:hover {
  color: #191919;
  border: 1px solid #191919;
}
.basket .basket_main_btn {
  padding: 8px 20px;
  border-radius: 82px;
  border: 1px solid #191919;
}
.basket .basket_text {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.basket .basket_prices {
  margin-bottom: 28px;
}
.basket .current_bid {
  color: var(--grey, #A5A5A5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  border-radius: 30px;
  background: var(--white-bg, #F3F3F3);
  padding: 4px 8px;
  cursor: pointer;
}
.basket .current_price {
  color: #191919;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 49.5px */
  letter-spacing: -2.7px;
  text-transform: uppercase;
}
.basket .basket_input {
  margin-bottom: 15px;
}
.basket .basket_input input {
  border-radius: 212px;
  background: var(--white-bg, #F3F3F3);
  height: 55px;
  padding-left: 16px;
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border: none;
  outline: none;
}
.basket .antiques {
  margin-bottom: 35px;
}
.basket .antiques p {
  display: inline-block;
  color: #191919;
  padding: 4px 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  border-radius: 30px;
  background: var(--accent-yellow-light, #FFF3CC);
}
.basket .place_bid {
  padding: 10px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 82px;
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  background: var(--accent-yellow, #FFC300);
}
.basket .filter_title {
  color: #191919;
  margin-bottom: 30px;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
}
.basket .filter_block {
  gap: 24px;
}
.basket .sort_name {
  color: #191919;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}
.basket .catalog_sort, .basket .catalog_country {
  border-radius: 10px;
  border: 1px solid var(--pure-grey, #DDD);
  padding: 10px;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../images/faq_arrow.svg");
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 15px;
  color: #191919;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
}
.basket .catalog_sort option, .basket .catalog_country option {
  color: #191919;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
}
.basket .irs--round .irs-min,
.basket .irs--round .irs-max,
.basket .irs--round .irs-from, .basket .irs--round .irs-to,
.basket .irs--round .irs-line {
  display: none;
}
.basket .irs--round .irs-bar {
  height: 2px;
  background-color: #FFC300;
}
.basket .irs--round .irs-handle {
  top: 28px;
  background-color: #FFC300;
  width: 15px;
  height: 15px;
  border-color: #FFC300;
  cursor: pointer;
}
.basket .sort_inputs {
  gap: 10px;
}
.basket .sort_inputs input {
  outline: none;
  height: 40px;
  padding-left: 10px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--pure-grey, #DDD);
}
.basket .sort_inputs input:focus {
  box-shadow: unset;
}
.basket .sort_inputs input::-moz-placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
}
.basket .sort_inputs input::placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
}
.basket .irs--round {
  height: 40px;
}
.basket .irs {
  top: -13px;
}
.basket .show_more {
  color: var(--grey, #A5A5A5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  text-decoration-line: underline;
  margin-bottom: 30px;
}
.basket .reset {
  color: var(--Error, #F04438);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}

.lots {
  margin: 50px 0 0 0;
  padding-bottom: 0;
}
.lots .basket_main_btn {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.lots.products {
  padding-top: 0;
}

.contact .contact_text {
  color: #191919;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 49.5px */
  letter-spacing: -2.7px;
  text-transform: uppercase;
}
.contact .contact_form .contact_top {
  margin-bottom: 8px;
}
.contact .contact_form input {
  width: 49.5%;
  outline: none;
  height: 55px;
  border-radius: 30px;
  background: var(--white, #FFF);
  border: none;
  padding-left: 15px;
  font-size: 16px;
}
.contact .contact_form input::-moz-placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.contact .contact_form input::placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.contact .contact_form .contact_select {
  margin-bottom: 8px;
  border-radius: 30px;
  background: var(--white, #FFF);
  padding-left: 15px;
  height: 55px;
  outline: none;
  width: 100%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../images/faq_arrow.svg");
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 15px;
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.contact .contact_form .contact_select option {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.contact .contact_form textarea {
  border-radius: 20px;
  background: var(--white, #FFF);
  width: 100%;
  height: 85px;
  outline: none;
  border: none;
  padding: 17px 0 0 16px;
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.contact .contact_form textarea::-moz-placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.contact .contact_form textarea::placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.contact .contact_form .contact_rule {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.contact .contact_form .contact_rule input {
  accent-color: #FFC300;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--grey, #A5A5A5);
  background: var(--white-bg, #F3F3F3);
}
.contact .contact_form .rule_text {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contact .contact_form .submit_btn button {
  padding: 17px 0;
  width: 100%;
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border: none;
  outline: none;
  border-radius: 82px;
  background: var(--accent-yellow, #FFC300);
}

.breadcrumbs_section#product {
  padding: 20px 0 20px 0;
  margin-bottom: 40px;
}
.breadcrumbs_section#product .grey {
  color: var(--grey, #A5A5A5);
}

.product_details .swiper-slide .main_img {
  height: 480px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product_details .swiper_block {
  margin-bottom: 100px;
}
.product_details .mySwiper {
  margin-top: 8px;
}
.product_details .mySwiper .swiper-slide {
  width: unset !important;
}
.product_details .detail_title {
  padding-bottom: 8px;
  margin-bottom: 25px;
  color: #191919;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 49.5px */
  letter-spacing: -2.7px;
  border-bottom: 1px solid #D9D9D9;
}
.product_details .detail_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.product_details .detail_bid {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  margin-bottom: 8px;
}
.product_details .detail_price {
  color: #191919;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
}
.product_details .detail_desc {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.product_details .detail_forms {
  margin-bottom: 8px;
}
.product_details .detail_forms input {
  border-radius: 50px;
  background: var(--white, #FFF);
  height: 70px;
  padding-left: 24px;
  font-size: 20px;
  border: none;
  outline: none;
  width: 100%;
}
.product_details .detail_forms input::-moz-placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
}
.product_details .detail_forms input::placeholder {
  color: var(--grey, #A5A5A5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
}
.product_details .detail_forms button {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  padding: 22px 121px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #191919;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
  border-radius: 82px;
  border: none;
  background: var(--accent-yellow, #FFC300);
}
.product_details .detail_money_block {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}
.product_details .money_item {
  padding: 12px 30px;
  color: #191919;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border-radius: 40px;
  border: 1px solid var(--pure-grey, #DDD);
}
.product_details .detail_add_card {
  gap: 8px;
  border-radius: 82px;
  border: 1px solid var(--black, #191919);
  padding: 15px 105px;
  outline: none;
}
.product_details .card_name {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}

.detail_items {
  margin-bottom: 100px;
}
.detail_items .detail_part {
  border-radius: 20px;
  background: var(--white, #FFF);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.detail_items .part_icon {
  gap: 15px;
}
.detail_items .detail_part {
  height: 220px;
}
.detail_items .part_icon_name {
  color: var(--grey, #A5A5A5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
}
.detail_items .detail_part_desc {
  color: #191919;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
}

.detail_works {
  margin-bottom: 100px;
}
.detail_works .work_item {
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 30px;
  background: var(--white, #FFF);
  transition: all ease-in 0.2s;
}
.detail_works .work_item:hover {
  background: var(--accent-yellow, #FFC300);
}
.detail_works .work_number {
  color: var(--grey, #A5A5A5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1.2px;
}
.detail_works .work_name {
  color: #191919;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
}

.products#swiper_products {
  padding: 0;
}
.products#swiper_products .swiper_arrow {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
}
.products#swiper_products .swiper_catalog {
  border-radius: 128px;
  background: var(--white, #FFF);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products#swiper_products .cat_name {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}

.about_feature {
  align-self: flex-end;
}

.about_row {
  gap: 15px 0;
}

.about_misson {
  padding: 4px 16px;
  color: #191919;
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border-radius: 10px;
  background: var(--accent-yellow-light, #FFF3CC);
  margin-bottom: 6px;
}

.about_main_desc {
  color: #191919;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 49.5px */
  letter-spacing: -2.7px;
  text-transform: uppercase;
}

.about_seller_title {
  color: #191919;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 49.5px */
  letter-spacing: -2.7px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.features#about_features {
  padding: 32px 0 160px 0;
}

.account_title {
  color: var(--black, #191919);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.92px;
  margin-bottom: 16px;
}

.account_header {
  padding: 10px 0;
  background-color: #fff;
}
.account_header .header_left {
  gap: 63px;
}
.account_header .back_site {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 8px;
  background: var(--white-bg, #F3F3F3);
}
.account_header .back_site_text {
  color: var(--black, #191919);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}
.account_header .account_navs {
  gap: 32px;
}
.account_header .account_navs li a {
  color: var(--black, #191919);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  padding: 4px 8px;
  transition: all ease-in 0.2s;
  border-radius: 20px;
}
.account_header .account_navs li a.active, .account_header .account_navs li a:hover {
  background: var(--accent-yellow, #FFC300);
}
.account_header .button_header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.account_header .button_header a {
  padding: 10px 0;
  color: var(--black, #191919);
  font-size: 14px;
  font-style: normal;
  text-align: center;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  width: 105px;
  border-radius: 20px;
  transition: all ease-in 0.2s;
  border: 1px solid var(--pure-grey, #DDD);
}
.account_header .button_header a:hover {
  border-color: #FFC300;
  background: var(--accent-yellow, #FFC300);
}
.account_header .header_right {
  gap: 32px;
}
.account_header .acc_btn {
  gap: 8px;
}
.account_header .acc_name {
  color: var(--black, #191919);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
}

.acc_wrapper {
  border-radius: 20px;
  background: var(--white, #FFF);
  padding: 24px 40px;
}

.general {
  margin: 50px 0;
}
.general .acc_inputs {
  gap: 24px;
  margin-bottom: 16px;
}
.general .go_settings {
  color: var(--grey, #A5A5A5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
  text-decoration-line: none;
  border-bottom: 1px solid #a5a5a5;
}

.history .history_titles {
  padding-bottom: 12px;
  margin-bottom: 35px;
  border-bottom: 1px solid #DDD;
  gap: 20px;
}
.history .lot {
  width: 393px;
}
.history .acc_seller {
  width: 207px;
}
.history .amount {
  width: 207px;
  text-align: end;
}
.history .acc_table {
  width: 100%;
}
.history .acc_table thead tr td {
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
  padding-right: 20px;
}
.history .acc_table tbody tr td {
  padding: 24px 0 12px;
  border-bottom: 1px solid #ddd;
}
.history .table_date {
  width: 207px;
}
.history .history_black {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--grey, #A5A5A5);
}
.history .history_name {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  padding-right: 20px;
}
.history .history_name.price {
  padding-right: 30px;
}

.place_bids_btn {
  padding: 16px 0;
  width: 290px;
  text-align: center;
  color: #191919;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  border-radius: 128px;
  background: var(--accent-yellow, #FFC300);
}

.settings_input#settings_input {
  justify-content: flex-start !important;
}
.settings_input#settings_input .acc_input_item {
  width: 33%;
}

.settings_input#address_input .acc_input_item {
  width: 32%;
}

.payment {
  margin-bottom: 50px;
}
.payment .payment_block {
  gap: 24px;
  margin-bottom: 10px;
}
.payment .acc_input_item input {
  width: 180px;
  flex: 0 0 auto;
}
.payment .acc_input_item input.big {
  width: 400px;
  padding-left: 70px;
}
.payment .acc_input_item .input_payment {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 17px;
}

.notification .radio_custom {
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px #A5A5A5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  transition: all ease-in 0.2s;
}
.notification .radio_custom:checked {
  border: 2px solid #FFF3CC;
  box-shadow: 0 0 0 1px #FFC300;
  background-color: #FFC300;
}
.notification .notification_block {
  display: flex;
  align-items: center;
  gap: 24px;
}
.notification .not_item {
  padding: 8px;
  border-radius: 10px;
  background: var(--white-bg, #F3F3F3);
}
.notification .not_name {
  color: var(--grey, #A5A5A5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.96px;
  margin-bottom: 4px;
}
.notification .not_radio {
  align-items: center;
}
.notification .not_radios {
  gap: 24px;
  justify-content: flex-start !important;
}
.notification .not_radios p {
  color: #191919;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.84px;
}

.container {
  max-width: 1340px;
  padding: 0;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
  .settings_input#address_input .acc_input_item {
    width: 29%;
  }
  .hero .hero_right img {
    width: 100%;
  }
  .acc_input_item input {
    width: 100%;
  }
  .general .acc_inputs {
    flex-wrap: wrap;
  }
  .basket_row {
    padding-bottom: 50px;
    justify-content: flex-end;
  }
  .features .feature_btn {
    gap: 0;
  }
  .basket .img img {
    border-radius: 0px;
  }
  .seller::after {
    width: 720px;
    top: -85px;
  }
  .seller .seller_title {
    font-size: 60px;
  }
  .catalog_img img {
    width: 100%;
  }
  .hero .hero_left .hero_title {
    font-size: 60px;
  }
  .products .category_item {
    height: 189px;
  }
  footer .form_inputs {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .hero_block .col-lg-6 {
    padding: 0 15px !important;
  }
  .account_header .account_navs li a,
  .account_header .back_site_text {
    font-size: 14px;
  }
  .account_header .account_navs {
    gap: 23px;
  }
  .product_details .detail_forms button {
    padding: 22px 60px;
  }
  .basket .basket_tabs {
    flex-wrap: wrap;
    gap: 20px;
  }
  .basket_main_row {
    justify-content: center;
  }
  .about_seller_title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .basket .basket_item {
    padding: 0 24px;
  }
  .basket .place_bid {
    width: 245px;
  }
  .about_main_desc {
    color: #191919;
    font-size: 37px;
  }
  .seller .seller_block {
    border-radius: 0px 0 0px 0px;
  }
  .features .feature_top {
    margin-bottom: 0px;
  }
  .seller .seller_title {
    font-size: 55px;
  }
  .products .category_item {
    height: 170px;
  }
  .products .product_block {
    padding-bottom: 70px;
  }
  .features .feature_name {
    font-size: 27px;
  }
  .features .feature_item {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .seller::after {
    width: 490px;
    top: -57px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .payment .payment_block {
    flex-wrap: wrap;
    gap: 16px;
  }
  .account_hamburger_block {
    position: fixed;
    width: 50%;
    padding: 50px 0 0 20px;
    top: 72px;
    right: -150%;
    height: 100vh;
    background-color: #F3F3F3;
    z-index: 21231;
    transition: all ease 0.2s;
  }
  .account_hamburger_block.active {
    right: 0;
  }
  .settings_input#address_input .acc_input_item {
    width: 47%;
  }
  .close_img {
    display: none;
  }
  .account_header {
    transition: all ease-in 0.2s;
  }
  .account_header.active {
    position: relative;
    z-index: 12123;
  }
  .account_header .account_navs {
    align-items: flex-start !important;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .account_header .header_right {
    flex-direction: column-reverse;
    align-items: flex-start !important;
  }
  .basket .numbers {
    top: 95px;
    left: 60px;
    right: unset;
  }
  footer .footer_top {
    padding-bottom: 25px;
  }
  .detail_items .detail_part_desc {
    font-size: 22px;
  }
  .works_block {
    gap: 20px 0;
  }
  .product_details .swiper-slide .main_img {
    height: 400px;
  }
  .product_details .swiper_block {
    margin-bottom: 60px;
  }
  .detail_works {
    margin-bottom: 50px;
  }
  .detail_items {
    margin-bottom: 50px;
  }
  .product_details .detail_title {
    font-size: 38px;
    margin: 15px 0 15px 0;
  }
  .product_details .mySwiper .swiper-slide img {
    width: 75px;
  }
  .pagination_block {
    flex-wrap: wrap;
    gap: 20px;
  }
  .products#swiper_products .swiper_catalog {
    display: inline-flex;
    gap: 50px;
    margin: 20px 0;
  }
  .about_row {
    justify-content: center;
  }
  .products .product_block {
    padding-bottom: 50px;
  }
  .contact .contact_text {
    font-size: 39px;
    margin-bottom: 20px;
  }
  .about_main_desc {
    margin-bottom: 25px;
  }
  .features#about_features {
    padding: 32px 0 90px 0;
  }
  .breadcrumbs_section {
    margin-bottom: 60px;
    padding: 45px 0 25px 0;
  }
  .contact {
    margin-bottom: 50px;
  }
  footer .form_inputs button {
    padding: 11px 30px 11px 30px;
  }
  .header_mobile_menus {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    width: 56%;
    padding: 90px 15px 0 15px;
    height: 100vh;
    z-index: 444;
    transition: all ease-in 0.3s;
  }
  .header_mobile_menus.active {
    right: 0;
  }
  .close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
  }
  header .header_menus {
    gap: 14px;
    flex-direction: column;
    margin-bottom: 10px;
  }
  header .header_buttons {
    flex-direction: column;
    gap: 20px;
  }
  .seller .seller_title {
    margin-bottom: 15px;
  }
  .services {
    margin-bottom: 70px;
  }
  .seller .sell_black img {
    width: 500px;
  }
  .seller::after {
    display: none;
  }
  .service_item {
    margin-bottom: 15px;
  }
  .hero_block .row {
    gap: 45px;
  }
  .features .feature_item {
    padding: 16px;
    height: 200px;
  }
  .features .feature_top {
    margin-bottom: 81px;
  }
  .faq {
    padding-bottom: 70px;
  }
  .products .category_item {
    margin-bottom: 15px;
  }
  .products {
    padding: 70px 0;
  }
  .products .product_item {
    margin-bottom: 10px;
  }
  .products .category_item {
    height: 220px;
  }
  .mobile_header {
    display: flex;
    align-items: center;
  }
  .mobile_header {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  .hero {
    padding: 60px 0 130px 0;
  }
  .settings_input#settings_input .acc_input_item {
    width: 100%;
  }
  .account_hamburger_block {
    width: 70%;
  }
  .basket .numbers {
    top: 130px;
  }
  .detail_works .work_name {
    font-size: 27px;
  }
  .notification .notification_block {
    flex-wrap: wrap;
  }
  .basket {
    padding-bottom: 60px;
  }
  .basket .pagination a {
    padding: 10px 15px;
    font-size: 15px;
  }
  .features .feature_item {
    height: 200px;
  }
  .basket .pagination {
    gap: 9px;
    flex-wrap: wrap;
  }
  .breadcrumbs_section .catalog_main_title {
    font-size: 60px;
  }
  footer,
  .features {
    border-radius: 0;
  }
  .seller .seller_title {
    font-size: 49px;
    margin-bottom: 10px;
  }
  .feature_wrap {
    gap: 25px 0;
  }
  .products {
    padding: 50px 0;
  }
  .title {
    font-size: 43px;
  }
  .products .category_item {
    height: 185px;
  }
  .products .product_item {
    margin-bottom: 15px;
  }
  .services .service_text {
    font-size: 26px;
  }
  footer .bindgo_navs {
    gap: 2px;
  }
  footer .nav_name {
    margin-bottom: 0;
  }
  .hero .hero_left .hero_title {
    font-size: 52px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .payment .acc_input_item input {
    width: 100%;
  }
  .account_hamburger_block {
    width: 80%;
  }
  .settings_input#address_input .acc_input_item,
  .payment .acc_input_item input.big {
    width: 100%;
  }
  .product_details .detail_forms input {
    height: 55px;
  }
  .history .acc_table tbody tr td {
    vertical-align: middle;
    padding-right: 60px;
  }
  .history .history_name {
    font-size: 14px;
  }
  .history .acc_table thead tr td {
    padding-right: 75px;
  }
  .acc_wrapper {
    border-radius: 20px;
    padding: 20px 12px;
  }
  .products .product_item {
    margin-bottom: 20px;
  }
  .history .acc_table {
    width: 100%;
    display: block;
    overflow-x: auto;
    padding-bottom: 10px;
    white-space: nowrap;
  }
  .history .acc_table::-webkit-scrollbar {
    width: 4px;
    border-radius: 24px;
    border-left: 1px solid #E6ECF8;
  }
  .history .acc_table::-webkit-scrollbar-thumb {
    border-radius: 24px;
    background-color: #FFC300;
  }
  .basket .numbers {
    top: 82px;
  }
  .detail_items .detail_part_desc {
    letter-spacing: -0.92px;
  }
  .product_details .detail_forms button {
    padding: 15px 50px;
  }
  .product_details .swiper-slide .main_img {
    height: 260px;
  }
  .product_details .detail_title {
    font-size: 30px;
  }
  .basket .basket_tabs {
    gap: 10px;
  }
  .basket .tab_item a {
    width: 140px;
    padding: 10px 0;
    font-size: 17px;
  }
  .breadcrumbs_section {
    margin-bottom: 50px;
    padding: 35px 0 20px 0;
    border-radius: 0px 0px 30px 30px;
  }
  .basket .current_price {
    font-size: 35px;
  }
  .basket .basket_name {
    font-size: 21px;
  }
  .basket_row {
    padding-bottom: 30px;
  }
  .basket .basket_buttons,
  .basket .basket_prices {
    flex-wrap: wrap;
  }
  .basket .img img {
    width: 100%;
  }
  .basket .basket_prices {
    margin: 20px;
  }
  .contact .contact_text {
    font-size: 33px;
  }
  .contact .contact_form .contact_top {
    flex-direction: column;
    display: flex;
    gap: 8px;
  }
  .contact .contact_form .contact_top input {
    width: 100%;
  }
  .features .features_block .feature_title {
    font-size: 32px;
  }
  .seller .seller_title {
    font-size: 43px;
  }
  .seller .sell_black img {
    width: 100%;
  }
  .features .feature_item {
    height: 200px;
  }
  .services {
    margin-bottom: 50px;
  }
  footer .footer_top {
    margin-bottom: 20px;
  }
  .faq {
    padding-bottom: 50px;
  }
  .faq .faq_top_title {
    font-size: 20px;
  }
  .products .category_item {
    height: 257px;
  }
  .products .title {
    font-size: 32px;
  }
  .catalog_img img {
    width: 330px;
  }
  .products .category_item {
    height: 220px;
  }
  .products {
    padding: 40px 0;
  }
  .hero .hero_left .hero_title {
    font-size: 43px;
  }
  .hero_title img {
    width: 110px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .hero .hero_left .hero_title {
    font-size: 36px;
    letter-spacing: -1.32px;
  }
  .hero .hero_left .hero_buttons {
    flex-direction: column;
  }
  .hero .hero_left .hero_buttons a {
    width: 100%;
  }
  .hero .hero_right .black_block {
    right: -45px;
  }
  .header_mobile_menus {
    width: 80%;
  }
}
@media (max-width: 481px) {
  .catalog_img img {
    width: 270px;
  }
  .place_bids_btn {
    width: 100%;
    padding: 10px 0;
  }
  .basket_details {
    flex-wrap: wrap;
  }
  .input_edit {
    right: 15px;
  }
  .basket .basket_item {
    padding: 0 15px;
  }
  .acc_input_item input {
    font-size: 14px;
  }
  .account_title {
    font-size: 28px;
  }
  .notification .not_item {
    width: 100%;
  }
  .account_header .header_left {
    gap: 20px;
  }
  .account_hamburger_block {
    width: 88%;
  }
  .acc_input_item input {
    padding-right: 15px;
  }
  .products .price {
    font-size: 20px;
  }
  .general .acc_inputs {
    gap: 16px;
  }
  .acc_input_item input,
  .acc_input_item {
    width: 100%;
  }
  .register_top {
    flex-direction: column;
  }
  .info_block {
    width: 45%;
    margin-bottom: 15px;
  }
  .basket .numbers {
    top: 132px;
  }
  .products .product_buttons > a {
    width: 100px;
  }
  .products .title {
    font-size: 27px;
  }
  .product_details .detail_title {
    font-size: 25px;
    letter-spacing: -1.7px;
  }
  .product_details .detail_forms button {
    padding: 15px 15px;
  }
  .product_details .detail_add_card {
    padding: 15px 0;
    width: 100%;
  }
  .product_details .detail_money_block {
    flex-wrap: wrap;
  }
  .product_details .detail_price {
    font-size: 26px;
  }
  .product_details .detail_top {
    margin-bottom: 10px;
  }
  .products .product_block {
    padding-bottom: 30px;
  }
  .about_seller_title {
    font-size: 23px;
    margin-bottom: 10px;
    letter-spacing: -1.7px;
  }
  .seller .seller_desc {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .about_main_desc {
    font-size: 25px;
    margin-bottom: 15px;
    letter-spacing: -1.7px;
  }
  footer .bindgo_navs li a {
    font-size: 19px;
  }
  .contact .contact_text {
    font-size: 24px;
    letter-spacing: -0.7px;
  }
  .faq .faq_top_title {
    font-size: 18px;
  }
  .contact {
    margin-bottom: 40px;
  }
  .contact .contact_form .rule_text {
    font-size: 14px;
  }
  .faq .faq_body p {
    padding-right: 0;
    font-size: 14px;
  }
  .breadcrumbs_section {
    margin-bottom: 40px;
    padding: 20px 0 15px 0;
  }
  .breadcrumbs_section .catalog_main_title {
    font-size: 40px;
  }
  .features .feature_btn {
    gap: 110px;
  }
  .login_modal #register_check_block .checkbox_item {
    font-size: 14px;
  }
  .login_modal .modal-content {
    padding: 17px;
  }
  .seller .seller_title {
    font-size: 36px;
    letter-spacing: -1.32px;
  }
  .seller .seller_btn {
    gap: 100px;
  }
  .features .feature_name {
    font-size: 23px;
  }
  .features .feature_top {
    margin-bottom: 60px;
  }
  .products .category_item {
    height: 195px;
  }
  .title {
    font-size: 27px;
  }
  .faq .faq_body p {
    font-size: 16px;
  }
  .faq .faq_item {
    padding: 9px 15px 5px 15px;
  }
  .services .service_text {
    font-size: 23px;
  }
  .services .service_item {
    height: 150px;
  }
  .faq .faq_item.active {
    padding: 9px 15px 5px 15px;
  }
}/*# sourceMappingURL=main.css.map */