@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: RobotoMono;
  src: url("../fonts/RobotoMono-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: RobotoMono;
  src: url("../fonts/RobotoMono-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: RobotoMono;
  src: url("../fonts/RobotoMono-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: RobotoMono;
  src: url("../fonts/RobotoMono-SemiBold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: microgrammad_boldexte;
  src: url("../fonts/microgrammad_boldexte.ttf");
  font-weight: 400;
}
*, ul, ol, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 35px;
}
@media (max-width : 767.9px) {
  .container {
    padding: 0 10px;
  }
}

.wrapper {
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}
.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.animated_texts.white {
  background: #fff;
  color: #000;
}

.animated_texts.black {
  background: #111111;
  color: #fff;
}

.animated_texts {
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  user-select: none;
  display: flex;
  gap: 0 20px;
}
@media (max-width : 767.9px) {
  .animated_texts {
    font-size: 9px;
  }
  .animated_texts img {
    width: 8px;
    height: 8px;
  }
}

.animated_texts .animated_block {
  flex-shrink: 0;
  padding: 7px 0;
  animation: textLinearTransition 30s linear infinite;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  user-select: none;
  gap: 0 20px;
}
@media (max-width : 767.9px) {
  .animated_texts .animated_block {
    padding: 3px 0;
    gap: 0 5px;
  }
}

@keyframes textLinearTransition {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 40px));
  }
}
.products_cart .product_block .block_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width : 767.9px) {
  .products_cart .product_block .block_top {
    margin-bottom: 20px;
  }
}
.products_cart .product_block .block_top .product_type {
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #6A6A6A;
}
@media (max-width : 1000px) {
  .products_cart .product_block .block_top .product_type {
    font-size: 10px;
  }
}
.products_cart .product_block .block_top .type_name {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-family: microgrammad_boldexte;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width : 1000px) {
  .products_cart .product_block .block_top .type_name {
    font-size: 30px;
  }
}
.products_cart .product_block .block_top .type_name span {
  font-family: Roboto Mono;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #6A6A6A;
  padding: 7px 24px;
  border-radius: 6.543px;
  border: 1.309px solid #EEE;
}
@media (max-width : 1000px) {
  .products_cart .product_block .block_top .type_name span {
    padding: 4px 14px;
    font-size: 10px;
  }
}
.products_cart .product_block .block_top .button {
  padding: 20px 30px;
  color: #000;
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  border: 2px solid #404040;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media (max-width : 1000px) {
  .products_cart .product_block .block_top .button {
    padding: 10px 15px;
    font-size: 18px;
  }
}
@media (max-width : 767.9px) {
  .products_cart .product_block .block_top .button {
    width: 100%;
    padding: 5px 0;
    justify-content: center;
    font-size: 18px;
  }
}
.products_cart .product_block .products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 0;
}
@media (max-width : 767.9px) {
  .products_cart .product_block .products {
    gap: 20px 0;
  }
}
.products_cart .product_block .products .product_item {
  width: 24%;
  position: relative;
}
@media (max-width : 767.9px) {
  .products_cart .product_block .products .product_item {
    width: calc(50% - 5px);
  }
}
.products_cart .product_block .products .product_item .img {
  width: 100%;
  margin-bottom: 13px;
  position: relative;
}
.products_cart .product_block .products .product_item .img img {
  width: 100%;
  object-fit: contain;
}
.products_cart .product_block .products .product_item .img .product_badget {
  position: absolute;
  top: 11px;
  left: 13px;
  color: #FFF;
  font-family: microgrammad_boldexte;
  font-size: 20px;
  background-color: #1A1A1A;
  padding: 10px;
}
@media (max-width : 1000px) {
  .products_cart .product_block .products .product_item .img .product_badget {
    padding: 5px;
    font-size: 12px;
    top: 0;
    left: 0;
  }
}
.products_cart .product_block .products .product_item .img .favorite {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width : 1200px) {
  .products_cart .product_block .products .product_item .img .favorite {
    padding: 12px;
    right: 10px;
    bottom: 10px;
  }
  .products_cart .product_block .products .product_item .img .favorite img {
    width: 10px;
    height: 10 px;
  }
}
@media (max-width : 767.9px) {
  .products_cart .product_block .products .product_item .img .favorite {
    padding: 9px 9px;
    right: 7px;
    bottom: 7px;
  }
  .products_cart .product_block .products .product_item .img .favorite img {
    width: 6px;
    height: 6px;
  }
}
.products_cart .product_block .products .product_item .product_name {
  color: #1A1A1A;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 8px;
}
@media (max-width : 1400px) {
  .products_cart .product_block .products .product_item .product_name {
    font-size: 18px;
  }
}
@media (max-width : 1000px) {
  .products_cart .product_block .products .product_item .product_name {
    font-size: 16px;
  }
}
@media (max-width : 767.9px) {
  .products_cart .product_block .products .product_item .product_name {
    font-size: 8px;
  }
}
.products_cart .product_block .products .product_item .product_price {
  font-family: RobotoMono;
  font-size: 28px;
  font-weight: 400;
  color: #1A1A1A;
}
@media (max-width : 1400px) {
  .products_cart .product_block .products .product_item .product_price {
    font-size: 18px;
  }
}
@media (max-width : 1000px) {
  .products_cart .product_block .products .product_item .product_price {
    font-size: 14px;
  }
}
@media (max-width : 767.9px) {
  .products_cart .product_block .products .product_item .product_price {
    font-size: 9px;
  }
}
.products_cart .product_block .products .product_item .product_sale {
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  color: #6A6A6A;
}
@media (max-width : 1400px) {
  .products_cart .product_block .products .product_item .product_sale {
    font-size: 14px;
  }
}
@media (max-width : 1000px) {
  .products_cart .product_block .products .product_item .product_sale {
    font-size: 12px;
  }
}
@media (max-width : 767.9px) {
  .products_cart .product_block .products .product_item .product_sale {
    font-size: 6px;
  }
}
.products_cart .product_block .products .product_item .add_to_cart {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #FFF;
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 300;
  background-color: #1A1A1A;
  padding: 7px 0;
  text-decoration: none;
  width: 45%;
  text-align: center;
}
@media (max-width : 1400px) {
  .products_cart .product_block .products .product_item .add_to_cart {
    font-size: 16px;
  }
}
@media (max-width : 1000px) {
  .products_cart .product_block .products .product_item .add_to_cart {
    font-size: 12px;
  }
}
@media (max-width : 767.9px) {
  .products_cart .product_block .products .product_item .add_to_cart {
    font-size: 7px;
    width: 50%;
    padding: 6px 0;
  }
}

.breadcrumb {
  padding-top: 23px;
  padding-bottom: 23px;
}
@media (max-width : 767.9px) {
  .breadcrumb {
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 10px;
  }
}
.breadcrumb .breadcrumb-item a {
  color: #585858;
  font-size: 18px;
  text-decoration: none;
}
@media (max-width : 767.9px) {
  .breadcrumb .breadcrumb-item a {
    font-size: 10px;
  }
}

header .container {
  padding: 0;
}
header .container .block {
  display: flex;
  position: relative;
}
@media (max-width : 767.9px) {
  header .container .block {
    display: none;
  }
}
header .container .block .header_logo {
  display: flex;
  align-items: center;
  padding: 0 15px 0 16px;
  background-color: #222;
}
@media (max-width : 1200px) {
  header .container .block .header_logo {
    padding: 0 5px 0 5px;
  }
}
header .container .block .header_content {
  width: calc(100% - 123px);
}
@media (max-width : 1200px) {
  header .container .block .header_content {
    width: calc(100% - 102px);
  }
}
header .container .block .header_content .header_top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2px 10px 2px 32px;
  border-bottom: 1px solid #D9D9D9;
}
@media (max-width : 1700px) {
  header .container .block .header_content .header_top {
    padding-left: 15px;
  }
}
header .container .block .header_content .header_top .city {
  color: #5F5F5F;
  font-size: 14px;
  display: flex;
  align-items: center;
}
header .container .block .header_content .header_top .city .city_name {
  font-family: RobotoMono;
  font-weight: 700;
  margin-left: 20px;
}
header .container .block .header_content .header_top .social_networks {
  list-style: none;
  display: flex;
  gap: 0 20px;
}
header .container .block .header_content .header_top .social_networks a {
  text-decoration: none;
  color: #3D3D3D;
  font-size: 12px;
}
header .container .block .header_content .header_top .social_networks a:hover {
  border-bottom: 2px solid #000;
}
header .container .block .header_content .header_middle {
  padding-left: 32px;
  display: flex;
}
@media (max-width : 1700px) {
  header .container .block .header_content .header_middle {
    padding-left: 15px;
  }
}
header .container .block .header_content .header_middle .catalog {
  text-decoration: none;
  color: #000;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  gap: 0 15px;
  align-items: center;
  border-right: 1px solid #D9D9D9;
  padding-right: 31px;
  width: 8%;
}
@media (max-width : 1700px) {
  header .container .block .header_content .header_middle .catalog {
    width: 10%;
  }
}
@media (max-width : 1400px) {
  header .container .block .header_content .header_middle .catalog {
    width: 12%;
  }
}
@media (max-width : 1200px) {
  header .container .block .header_content .header_middle .catalog {
    gap: 0 5px;
  }
  header .container .block .header_content .header_middle .catalog img {
    width: 10px;
  }
}
@media (max-width : 1000px) {
  header .container .block .header_content .header_middle .catalog {
    font-size: 14px;
  }
}
header .container .block .header_content .header_middle .menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0 60px;
  padding-left: 60px;
  border-right: 1px solid #D9D9D9;
  width: 55%;
}
@media (max-width : 1700px) {
  header .container .block .header_content .header_middle .menu {
    width: 53%;
    padding-left: 30px;
    gap: 0 30px;
  }
}
@media (max-width : 1400px) {
  header .container .block .header_content .header_middle .menu {
    width: 51%;
  }
}
@media (max-width : 1400px) {
  header .container .block .header_content .header_middle .menu {
    width: 51%;
  }
}
@media (max-width : 1200px) {
  header .container .block .header_content .header_middle .menu {
    padding-left: 10px;
    gap: 0 10px;
  }
}
header .container .block .header_content .header_middle .menu li a {
  text-decoration: none;
  color: #5F5F5F;
  font-family: RobotoMono;
  font-size: 16.457px;
  font-weight: 400;
  transition: 0.3s ease all;
}
@media (max-width : 1000px) {
  header .container .block .header_content .header_middle .menu li a {
    font-size: 12px;
  }
}
header .container .block .header_content .header_middle .menu li a:hover {
  color: #424242;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width : 1000px) {
  header .container .block .header_content .header_middle .menu li a:hover {
    font-size: 14px;
  }
}
header .container .block .header_content .header_middle form {
  width: 22%;
}
header .container .block .header_content .header_middle form input {
  height: 100%;
  width: 100%;
  border: none;
  border-right: 1px solid #D9D9D9;
  padding-left: 20px;
  background-color: #F8F8F8;
}
@media (max-width : 1000px) {
  header .container .block .header_content .header_middle form input {
    font-size: 12px;
    padding-left: 10px;
  }
}
header .container .block .header_content .header_middle form input:focus {
  outline: none;
}
header .container .block .header_content .header_middle .header_action {
  width: 15%;
  display: flex;
  justify-content: space-evenly;
}
header .container .block .header_content .header_middle .header_action div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #D9D9D9;
  flex: 1;
  z-index: 10;
}
header .container .block .header_content .header_middle .header_action div a {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: center;
}
header .container .block .header_content .header_middle .header_action div a:hover {
  background-color: rgba(195, 0, 0, 0.3098039216);
}
header .container .block .catalog_open {
  position: absolute;
  top: 100%;
  left: -100%;
  height: 687px;
  z-index: 11;
  background-color: #fff;
  transition: 0.3s ease all;
}
header .container .block .catalog_open.show {
  left: 0;
}
header .container .block .catalog_open .catalog_list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 46px 0 4px 47px;
  border-right: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
  width: 300px;
}
header .container .block .catalog_open .catalog_list a {
  font-size: 27px;
  font-weight: 400;
  text-decoration: none;
  color: #393939;
  position: relative;
}
header .container .block .catalog_open .catalog_list a::before {
  content: "";
  width: 15px;
  height: 15px;
  display: none;
  background-image: url("../images/arrow_nav_catalog.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
}
header .container .block .catalog_open .catalog_list a:hover {
  color: #424242;
  font-weight: 700;
}
header .container .block .catalog_open .catalog_list a:hover::before {
  display: block;
}
header .container .block .catalog_open .catalog_list li {
  padding-bottom: 8px;
}
header .container .block .catalog_open .catalog_list li .sub_nav {
  height: 687px;
  background-color: #fff;
  padding-top: 38px;
  list-style: none;
  position: absolute;
  right: -99%;
  top: 0;
  display: block;
  width: 300px;
  padding-left: 40px;
  opacity: 0;
  visibility: hidden;
}
header .container .block .catalog_open .catalog_list li:hover .sub_nav {
  opacity: 1;
  visibility: visible;
}
header .container .block .catalog_open .catalog_list .sub_nav_content {
  width: 620px;
  height: 690px;
  position: absolute;
  background-image: url("../images/catalog_content_bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  right: -207%;
  top: -1px;
  padding: 0 32px 38px 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
header .container .block .catalog_open .catalog_list .sub_nav_content .left {
  display: block;
}
header .container .block .catalog_open .catalog_list .sub_nav_content .left .date {
  background-color: #fff;
  padding: 10px 16px 10px 21px;
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
}
header .container .block .catalog_open .catalog_list .sub_nav_content .left .type {
  background-color: #fff;
  padding: 4px 20px;
  color: #000;
  font-size: 40px;
  font-weight: 600;
}
header .container .block .catalog_open .catalog_list .sub_nav_content .right .link {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
header .container .block .catalog_open .catalog_list .sub_nav_content .right .link:hover::before {
  display: none;
}
header .container .block .catalog_open .catalog_list .sub_nav_content.active {
  right: -306%;
}
@media (max-width : 1200px) {
  header .container .block .catalog_open .catalog_list .sub_nav_content.active {
    display: none;
  }
}
header .container .block .catalog_open .catalog_nav {
  list-style: none;
  padding: 20px 0 0 46px;
  display: flex;
  flex-direction: column;
  gap: 14px 0;
}
header .container .block .catalog_open .catalog_nav a {
  text-decoration: none;
  font-size: 27px;
  color: #282828;
}
header .container .block .catalog_open .catalog_nav a:hover {
  font-weight: 700;
  color: #424242;
}
header .container .mobile_header {
  display: none;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width : 767.9px) {
  header .container .mobile_header {
    display: flex;
  }
}
header .container .mobile_header .gamburger_icon {
  padding: 0 6px;
}
header .container .mobile_header .mobile_actions {
  display: flex;
  list-style: none;
}
header .container .mobile_header .mobile_actions li {
  height: 100%;
  border-left: 1px solid #D9D9D9;
}
header .container .mobile_header .mobile_actions a {
  padding: 0 8px;
  height: 100%;
}
header .container .mobile_header .logo {
  padding-left: 20px;
}
header .container .mobile_menu_open {
  position: absolute;
  top: 100%;
  left: -100%;
  z-index: 10;
  background-color: #fff;
  width: 100%;
  transition: 0.3s ease all;
}
header .container .mobile_menu_open.show {
  left: 0;
}
header .container .mobile_menu_open .catalog_list, header .container .mobile_menu_open .catalog_nav, header .container .mobile_menu_open .nav_list {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 50%;
}
header .container .mobile_menu_open .catalog_list a, header .container .mobile_menu_open .catalog_nav a, header .container .mobile_menu_open .nav_list a {
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
header .container .mobile_menu_open .catalog_list, header .container .mobile_menu_open .catalog_nav {
  gap: 8px 0;
  padding: 38px 0 12px 24px;
  border-right: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}
header .container .mobile_menu_open .catalog_list a, header .container .mobile_menu_open .catalog_nav a {
  color: #393939;
}
header .container .mobile_menu_open .catalog_list a:hover, header .container .mobile_menu_open .catalog_nav a:hover {
  color: #424242;
  font-weight: 700;
}
header .container .mobile_menu_open .catalog_list {
  position: relative;
}
header .container .mobile_menu_open .catalog_list a {
  position: relative;
}
header .container .mobile_menu_open .catalog_list a::before {
  content: "";
  width: 8px;
  height: 8px;
  display: none;
  background-image: url("../images/arrow_nav_catalog.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: -15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
header .container .mobile_menu_open .catalog_list a:hover::before {
  display: block;
}
header .container .mobile_menu_open .catalog_list li .sub_nav {
  padding-top: 38px;
  list-style: none;
  position: absolute;
  right: -60%;
  top: 0;
  display: none;
}
header .container .mobile_menu_open .catalog_list li:hover .sub_nav {
  display: block;
}
header .container .mobile_menu_open .catalog_nav {
  padding-top: 10px;
}
header .container .mobile_menu_open .nav_list {
  gap: 14px 0;
  padding: 20px 0 34px 24px;
}
header .container .mobile_menu_open .nav_list a {
  color: #393939;
}

.carousel .container {
  padding: 0;
}
.carousel .container .carousel .carousel-inner {
  height: calc(100vh - 139px);
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner {
    height: auto;
  }
}
.carousel .container .carousel .carousel-inner .carousel-item {
  height: 100%;
  position: relative;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner .carousel-item {
    height: auto;
  }
}
.carousel .container .carousel .carousel-inner .carousel-item .content_top {
  position: absolute;
  left: 50px;
  top: 65px;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner .carousel-item .content_top {
    top: 22px;
    left: 11px;
  }
}
.carousel .container .carousel .carousel-inner .carousel-item .content_top .description {
  width: 300px;
  color: #fff;
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 500;
  line-height: 142.523%; /* 28.505px */
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner .carousel-item .content_top .description {
    font-size: 12px;
    width: 172px;
  }
}
.carousel .container .carousel .carousel-inner .carousel-item .content_bottom {
  position: absolute;
  left: 50px;
  bottom: 40px;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner .carousel-item .content_bottom {
    left: 10px;
  }
}
.carousel .container .carousel .carousel-inner .carousel-item .content_bottom .content_title {
  margin-bottom: 24px;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner .carousel-item .content_bottom .content_title {
    margin-bottom: 14px;
  }
}
.carousel .container .carousel .carousel-inner .carousel-item .content_bottom .content_title span {
  font-family: microgrammad_boldexte;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%; /* 89.862px */
  text-transform: uppercase;
  color: #222;
  background-color: white;
  padding: 24px;
}
.carousel .container .carousel .carousel-inner .carousel-item .content_bottom .content_title span:nth-child(2) {
  display: block;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner .carousel-item .content_bottom .content_title span {
    font-size: 19px;
    padding: 2px 7px;
  }
}
@media (max-width : 1700px) {
  .carousel .container .carousel .carousel-inner .carousel-item .content_bottom .content_title span {
    padding: 12px;
  }
}
.carousel .container .carousel .carousel-inner .carousel-item .content_bottom .button {
  padding: 20px 30px;
  color: #fff;
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 42px;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner .carousel-item .content_bottom .button {
    width: 300px;
    padding: 9px 0;
    justify-content: center;
    font-size: 8px;
    margin-bottom: 14px;
  }
  .carousel .container .carousel .carousel-inner .carousel-item .content_bottom .button img {
    width: 10px;
    height: 10px;
  }
}
@media (max-width : 1700px) {
  .carousel .container .carousel .carousel-inner .carousel-item .content_bottom .button {
    margin-bottom: 0;
  }
}
.carousel .container .carousel .carousel-inner .carousel-item img {
  height: 100%;
  object-fit: cover;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-inner .carousel-item img {
    width: 100%;
    height: 392px;
    object-fit: cover;
  }
}
.carousel .container .carousel .carousel-control-prev, .carousel .container .carousel .carousel-control-next {
  left: 37px;
  width: auto;
  display: inline-block;
  top: -150px;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-control-prev, .carousel .container .carousel .carousel-control-next {
    top: 0;
    left: 10px;
  }
}
.carousel .container .carousel .carousel-control-prev div, .carousel .container .carousel .carousel-control-next div {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFF;
  padding: 20px;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-control-prev div, .carousel .container .carousel .carousel-control-next div {
    padding: 10px;
  }
  .carousel .container .carousel .carousel-control-prev div img, .carousel .container .carousel .carousel-control-next div img {
    width: 3.3px;
    height: 6px;
  }
}
.carousel .container .carousel .carousel-control-next {
  left: auto;
  right: 37px;
}
.carousel .container .carousel .carousel-indicators {
  width: calc(100% - 100px);
  margin-right: 0;
  margin-left: 50px;
}
@media (max-width : 767.9px) {
  .carousel .container .carousel .carousel-indicators {
    width: calc(100% - 20px);
    margin-left: 10px;
  }
}
.carousel .container .carousel .carousel-indicators button {
  width: 33.3%;
  margin-right: 0;
  margin-left: 0;
}

.new_products {
  background-color: #F9F9F9;
  padding-bottom: 148px;
  padding-top: 123px;
}
@media (max-width : 767.9px) {
  .new_products {
    padding-top: 28px;
    padding-bottom: 37px;
  }
}

.custom_your_sense {
  margin-bottom: 164px;
}
@media (max-width : 767.9px) {
  .custom_your_sense {
    margin-bottom: 50px;
  }
}
.custom_your_sense .container {
  padding: 0;
}
.custom_your_sense .container .col-md-7 {
  background-image: url("../images/custom_section_bg_1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
  z-index: 10;
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .col-md-7 {
    display: none;
  }
}
.custom_your_sense .container .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1A1A1A;
  position: relative;
  overflow: hidden;
  padding-top: 170px;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 48px 100%, 0 calc(100% - 48px));
}
@media (max-width : 1200px) {
  .custom_your_sense .container .content {
    padding-top: 95px;
  }
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content {
    padding-top: 50px;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  }
}
.custom_your_sense .container .content a {
  text-decoration: none;
  font-family: RobotoMono;
  font-size: 40px;
  font-weight: 400;
  color: #6A6A6A;
  padding: 16px 20px;
  margin-bottom: 42px;
  position: relative;
  transition: 0.3s ease all;
}
.custom_your_sense .container .content a:hover {
  color: #1A1A1A;
  background-color: #fff;
  padding-right: 60px;
}
@media (max-width : 1200px) {
  .custom_your_sense .container .content a:hover {
    font-size: 25px;
  }
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content a:hover {
    font-size: 15px;
    padding-right: 24px;
  }
}
.custom_your_sense .container .content a:hover::after {
  display: block;
  opacity: 1;
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content a {
    font-size: 15px;
    margin-bottom: 20px;
    padding: 8px 10px;
  }
}
@media (max-width : 1200px) {
  .custom_your_sense .container .content a {
    font-size: 25px;
    margin-bottom: 0;
  }
}
.custom_your_sense .container .content a::after {
  content: "";
  background-image: url("../images/arrow.png");
  background-size: 100%;
  background-position: center;
  display: none;
  opacity: 0;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content a::after {
    right: 8px;
    width: 8px;
    height: 8px;
  }
}
.custom_your_sense .container .content .img_code img {
  margin-bottom: 55px;
  margin-top: 63px;
}
@media (max-width : 1200px) {
  .custom_your_sense .container .content .img_code img {
    width: 100px;
  }
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content .img_code img {
    width: 71px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.custom_your_sense .container .content .pluses img {
  position: absolute;
}
@media (max-width : 1200px) {
  .custom_your_sense .container .content .pluses img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content .pluses img {
    width: 13px;
    height: 13px;
  }
}
.custom_your_sense .container .content .pluses img:nth-child(1) {
  top: 45px;
  left: 41px;
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content .pluses img:nth-child(1) {
    top: 16px;
    left: 26px;
  }
}
.custom_your_sense .container .content .pluses img:nth-child(2) {
  top: 45px;
  right: 37px;
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content .pluses img:nth-child(2) {
    top: 16px;
    right: 26px;
  }
}
.custom_your_sense .container .content .pluses img:nth-child(3) {
  bottom: 62px;
  right: 37px;
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content .pluses img:nth-child(3) {
    bottom: 23px;
    right: 26px;
  }
}
.custom_your_sense .container .content .pluses img:nth-child(4) {
  bottom: 62px;
  left: 41px;
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content .pluses img:nth-child(4) {
    bottom: 23px;
    left: 26px;
  }
}
.custom_your_sense .container .content_text {
  margin-top: 54px;
  text-align: center;
}
.custom_your_sense .container .content_text img {
  width: 100%;
}
@media (max-width : 767.9px) {
  .custom_your_sense .container .content_text {
    margin-top: 7px;
  }
}

.top_products {
  padding-bottom: 94px;
}
@media (max-width : 767.9px) {
  .top_products {
    padding-bottom: 37px;
  }
}

.sale .container {
  padding: 0;
}
.sale .container .sale_block {
  background-image: url("../images/sale_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 143px 23px 179px 50px;
  display: flex;
  justify-content: center;
}
@media (max-width : 767.9px) {
  .sale .container .sale_block {
    padding: 26px 10px;
  }
}
.sale .container .sale_block .left_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  width: 90%;
  padding: 100px 45px 90px 65px;
  border-right: 3px dashed #A8A8AA;
  clip-path: polygon(27px 0%, calc(100% - 27px) 0%, 100% 27px, 100% calc(100% - 27px), calc(100% - 27px) 100%, 27px 100%, 0% calc(100% - 27px), 0% 27px);
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block {
    padding: 60px 15px 50px 40px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block {
    padding: 20px;
    align-items: start;
    position: relative;
    clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px), 0% 8px);
    width: 83%;
    border-right: 1px dashed;
  }
}
.sale .container .sale_block .left_block .content_title {
  position: relative;
}
.sale .container .sale_block .left_block .content_title .corners span {
  position: absolute;
  width: 35px;
  height: 35px;
  border-top: 5px solid #000;
  border-left: 5px solid #000;
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .content_title .corners span {
    width: 16px;
    height: 16px;
    border-top: 3px solid #000;
    border-left: 3px solid #000;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .corners span {
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    width: 8px;
    height: 8px;
  }
}
.sale .container .sale_block .left_block .content_title .corners span:nth-child(1) {
  top: -35px;
  left: -35px;
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .content_title .corners span:nth-child(1) {
    top: -16px;
    left: -16px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .corners span:nth-child(1) {
    top: -8px;
    left: -8px;
  }
}
.sale .container .sale_block .left_block .content_title .corners span:nth-child(2) {
  right: -35px;
  top: -35px;
  transform: rotate(90deg);
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .content_title .corners span:nth-child(2) {
    top: -16px;
    right: -16px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .corners span:nth-child(2) {
    right: 26px;
    top: -8px;
  }
}
.sale .container .sale_block .left_block .content_title .corners span:nth-child(3) {
  bottom: -35px;
  right: -35px;
  transform: rotate(180deg);
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .content_title .corners span:nth-child(3) {
    bottom: -16px;
    right: -16px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .corners span:nth-child(3) {
    right: 26px;
    bottom: 50px;
  }
}
.sale .container .sale_block .left_block .content_title .corners span:nth-child(4) {
  bottom: -35px;
  left: -35px;
  transform: rotate(-90deg);
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .content_title .corners span:nth-child(4) {
    bottom: -16px;
    left: -16px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .corners span:nth-child(4) {
    bottom: 50px;
    left: -8px;
  }
}
.sale .container .sale_block .left_block .content_title .title_top, .sale .container .sale_block .left_block .content_title .title_bottom {
  color: #FFF;
  font-family: microgrammad_boldexte;
  font-size: 49px;
  line-height: 175%;
  background-color: #101010;
  padding: 0 25px;
  height: 90px;
  display: flex;
  align-items: center;
}
@media (max-width : 1700px) {
  .sale .container .sale_block .left_block .content_title .title_top, .sale .container .sale_block .left_block .content_title .title_bottom {
    font-size: 35px;
  }
}
@media (max-width : 1400px) {
  .sale .container .sale_block .left_block .content_title .title_top, .sale .container .sale_block .left_block .content_title .title_bottom {
    font-size: 22px;
    height: 70px;
    padding: 0 15px;
  }
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .content_title .title_top, .sale .container .sale_block .left_block .content_title .title_bottom {
    font-size: 18px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .title_top, .sale .container .sale_block .left_block .content_title .title_bottom {
    font-size: 8px;
    padding: 5px;
    display: inline-block;
    height: auto;
  }
}
.sale .container .sale_block .left_block .content_title .content_bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}
.sale .container .sale_block .left_block .content_title .content_bottom .title_bottom {
  width: 78%;
}
@media (max-width : 1700px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .title_bottom {
    width: 75%;
  }
}
@media (max-width : 1400px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .title_bottom {
    width: 70%;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .title_bottom {
    width: 65%;
  }
}
.sale .container .sale_block .left_block .content_title .content_bottom .button {
  padding-left: 20px;
  width: 22%;
}
@media (max-width : 1700px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .button {
    width: 25%;
  }
}
@media (max-width : 1400px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .button {
    width: 30%;
    padding-left: 10px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .button {
    width: 133px;
    padding-left: 10px;
  }
}
.sale .container .sale_block .left_block .content_title .content_bottom .button a {
  width: 100%;
  padding: 20px 0;
  color: #040404;
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
@media (max-width : 1400px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .button a {
    font-size: 16px;
  }
}
@media (max-width : 1200px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .button a {
    padding: 10px 0;
    font-size: 14px;
  }
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .button a {
    font-size: 10px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .content_title .content_bottom .button a {
    font-size: 7px;
    margin-bottom: 20px;
    padding: 7px 0;
    margin-top: 11px;
  }
  .sale .container .sale_block .left_block .content_title .content_bottom .button a img {
    width: 4px;
    height: 4px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .sale_text {
    position: absolute;
    bottom: 12px;
    left: 155px;
  }
}
.sale .container .sale_block .left_block .sale_text div {
  font-family: microgrammad_boldexte;
  font-size: 61.372px;
  color: rgba(4, 4, 4, 0.72);
  line-height: 100%;
}
@media (max-width : 1700px) {
  .sale .container .sale_block .left_block .sale_text div {
    font-size: 45px;
  }
}
@media (max-width : 1400px) {
  .sale .container .sale_block .left_block .sale_text div {
    font-size: 35px;
  }
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .sale_text div {
    font-size: 28px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .sale_text div {
    font-size: 11px;
  }
}
.sale .container .sale_block .left_block .sale_text div:nth-child(2) {
  color: rgba(4, 4, 4, 0.4);
}
.sale .container .sale_block .left_block .sale_text div:nth-child(3) {
  color: rgba(4, 4, 4, 0.2);
}
.sale .container .sale_block .left_block .sale_text div:nth-child(4) {
  color: rgba(4, 4, 4, 0.1);
}
.sale .container .sale_block .left_block .sale_text div:nth-child(5) {
  color: rgba(4, 4, 4, 0.05);
}
@media (max-width : 1000px) {
  .sale .container .sale_block .left_block .network svg {
    width: 16px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .left_block .network {
    position: absolute;
    transform: rotate(90deg);
    bottom: -10px;
    left: 38px;
  }
  .sale .container .sale_block .left_block .network svg {
    height: 61px;
  }
}
.sale .container .sale_block .left_block .network svg path {
  fill: #4D4D4D;
}
.sale .container .sale_block .right_block {
  width: 10%;
  background-color: #fff;
  clip-path: polygon(27px 0%, calc(100% - 27px) 0%, 100% 27px, 100% calc(100% - 27px), calc(100% - 27px) 100%, 27px 100%, 0% calc(100% - 27px), 0% 27px);
  position: relative;
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .right_block {
    clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px), 0% 8px);
    width: 17%;
  }
}
.sale .container .sale_block .right_block .sale_code_text {
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -100px;
  display: flex;
  gap: 0 10px;
  align-items: center;
}
@media (max-width : 1700px) {
  .sale .container .sale_block .right_block .sale_code_text {
    left: -125px;
  }
}
@media (max-width : 1400px) {
  .sale .container .sale_block .right_block .sale_code_text {
    left: -85px;
    font-size: 16px;
  }
}
@media (max-width : 1200px) {
  .sale .container .sale_block .right_block .sale_code_text {
    left: -100px;
  }
}
@media (max-width : 1000px) {
  .sale .container .sale_block .right_block .sale_code_text {
    left: -80px;
    font-size: 14px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .right_block .sale_code_text {
    font-size: 5px;
    left: -30px;
  }
}
.sale .container .sale_block .right_block .sale_code_text .line {
  width: 145px;
  height: 1px;
  background-color: #000;
}
@media (max-width : 1400px) {
  .sale .container .sale_block .right_block .sale_code_text .line {
    width: 100px;
  }
}
@media (max-width : 1000px) {
  .sale .container .sale_block .right_block .sale_code_text .line {
    width: 60px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .right_block .sale_code_text .line {
    width: 36px;
    height: 0.25px;
  }
}
.sale .container .sale_block .right_block img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 40px;
}
@media (max-width : 1700px) {
  .sale .container .sale_block .right_block img {
    right: 40px;
  }
}
@media (max-width : 1400px) {
  .sale .container .sale_block .right_block img {
    left: auto;
    right: 20px;
    height: 280px;
  }
}
@media (max-width : 1000px) {
  .sale .container .sale_block .right_block img {
    height: 200px;
    right: 15px;
  }
}
@media (max-width : 767.9px) {
  .sale .container .sale_block .right_block img {
    height: 90px;
    right: 10px;
  }
}

.how_works {
  padding-bottom: 173px;
  background-color: #F9F9F9;
  padding-top: 113px;
}
@media (max-width : 767.9px) {
  .how_works {
    padding-bottom: 65px;
    padding-top: 53px;
  }
}
.how_works .block {
  display: flex;
  flex-wrap: wrap;
}
.how_works .block .block_left {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width : 767.9px) {
  .how_works .block .block_left {
    width: 100%;
  }
}
.how_works .block .block_left .big_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .big_logo img {
    display: none;
  }
}
.how_works .block .block_left .how_works_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.how_works .block .block_left .how_works_content .content_left {
  width: 35%;
  position: relative;
}
.how_works .block .block_left .how_works_content .content_left .small_text {
  display: none;
  width: 40px;
  color: #A6A6A6;
  text-align: right;
  font-family: RobotoMono;
  font-size: 8.707px;
  font-weight: 500;
  line-height: 150%; /* 13.061px */
  text-transform: uppercase;
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .how_works_content .content_left .small_text {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 30px;
    margin: auto;
  }
}
.how_works .block .block_left .how_works_content .content_left .mobile_logo {
  display: none;
  width: 100%;
}
.how_works .block .block_left .how_works_content .content_left .mobile_logo img {
  width: 100%;
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .how_works_content .content_left .mobile_logo {
    display: block;
    position: absolute;
    left: 0;
    bottom: -33%;
  }
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .how_works_content .content_left {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 125px;
  }
}
.how_works .block .block_left .how_works_content .content_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .how_works_content .content_left img {
    width: 45%;
  }
}
.how_works .block .block_left .how_works_content .content_right {
  width: 60%;
  padding-right: 25px;
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .how_works_content .content_right {
    width: 100%;
    padding-right: 0;
    margin-bottom: 37px;
  }
}
.how_works .block .block_left .how_works_content .content_right .title {
  color: #1A1A1A;
  font-family: RobotoMono;
  font-size: 34px;
  font-weight: 500;
  line-height: 150%; /* 51px */
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (max-width : 1700px) {
  .how_works .block .block_left .how_works_content .content_right .title {
    font-size: 25px;
  }
}
@media (max-width : 1400px) {
  .how_works .block .block_left .how_works_content .content_right .title {
    font-size: 22px;
  }
}
@media (max-width : 1200px) {
  .how_works .block .block_left .how_works_content .content_right .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width : 1000px) {
  .how_works .block .block_left .how_works_content .content_right .title {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .how_works_content .content_right .title {
    font-size: 22px;
    margin-bottom: 22px;
  }
}
.how_works .block .block_left .how_works_content .content_right .description {
  font-family: RobotoMono;
  color: #1A1A1A;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 81px;
}
@media (max-width : 1700px) {
  .how_works .block .block_left .how_works_content .content_right .description {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
@media (max-width : 1400px) {
  .how_works .block .block_left .how_works_content .content_right .description {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
@media (max-width : 1200px) {
  .how_works .block .block_left .how_works_content .content_right .description {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
@media (max-width : 1000px) {
  .how_works .block .block_left .how_works_content .content_right .description {
    font-size: 10px;
    margin-bottom: 15px;
  }
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .how_works_content .content_right .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.how_works .block .block_left .how_works_content .content_right .button {
  padding: 20px 30px;
  color: #000;
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  border: 2px solid #404040;
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}
@media (max-width : 1700px) {
  .how_works .block .block_left .how_works_content .content_right .button {
    padding: 18px 20px;
    font-size: 18px;
  }
}
@media (max-width : 1400px) {
  .how_works .block .block_left .how_works_content .content_right .button {
    padding: 16px 20px;
    font-size: 16px;
  }
}
@media (max-width : 1400px) {
  .how_works .block .block_left .how_works_content .content_right .button {
    padding: 10px 15px;
    font-size: 14px;
  }
}
@media (max-width : 1000px) {
  .how_works .block .block_left .how_works_content .content_right .button {
    padding: 8px 10px;
    font-size: 12px;
  }
}
@media (max-width : 767.9px) {
  .how_works .block .block_left .how_works_content .content_right .button {
    padding: 16px 0;
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
  .how_works .block .block_left .how_works_content .content_right .button img {
    width: 8px;
    height: 8px;
  }
}
.how_works .block .block_right {
  width: 55%;
  padding: 0;
}
.how_works .block .block_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width : 767.9px) {
  .how_works .block .block_right {
    width: 100%;
  }
}
.how_works .block .block_right img {
  width: 100%;
  object-fit: cover;
}

.blog_category .section_top {
  margin-bottom: 60px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top {
    margin-bottom: 30px;
  }
}
.blog_category .section_top .section_title {
  font-family: microgrammad_boldexte;
  text-align: center;
  color: #1A1A1A;
  font-size: 52px;
  font-weight: 400;
  line-height: 141%; /* 73.32px */
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .section_title {
    margin-top: 28px;
    font-size: 22px;
    margin-bottom: 8px;
  }
}
.blog_category .section_top .filter_block {
  display: flex;
  align-items: center;
  border-top: 1px solid #C2C2C2;
  border-bottom: 1px solid #C2C2C2;
  position: relative;
}
.blog_category .section_top .filter_block .filter {
  width: 300px;
  display: flex;
  align-items: center;
  gap: 0 15px;
  position: relative;
  height: 100% !important;
  padding: 30px 0 30px 35px;
}
@media (max-width : 1000px) {
  .blog_category .section_top .filter_block .filter {
    padding: 15px 0 15px 30px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter {
    padding: 7px 0 6px 35px;
    width: 50%;
  }
}
.blog_category .section_top .filter_block .filter a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-family: RobotoMono;
  font-size: 28px;
  font-weight: 400;
  color: #6A6A6A;
  position: relative;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter a {
    font-size: 13px;
  }
}
.blog_category .section_top .filter_block .filter a .filter_count {
  position: absolute;
  left: 100px;
  right: -22px;
  color: #7E7E7E;
  font-size: 12px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter a .filter_count {
    left: 45px;
    font-size: 6px;
  }
}
.blog_category .section_top .filter_block .filter .filter_icon {
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter .filter_icon {
    right: 44px;
    width: 5px;
    height: 5px;
  }
}
.blog_category .section_top .filter_block .filter .filter_clear_icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter .filter_clear_icon {
    width: 10px;
    height: 10px;
    left: 18px;
  }
}
.blog_category .section_top .filter_block .filter.active {
  background-color: #222;
}
.blog_category .section_top .filter_block .filter.active a {
  color: #fff;
}
.blog_category .section_top .filter_block .filter.active a .filter_count {
  color: #fff;
}
.blog_category .section_top .filter_block .filter.active .filter_clear_icon {
  display: none;
}
.blog_category .section_top .filter_block .blog_filter_nav {
  display: flex;
  list-style: none;
  padding-left: 310px;
  gap: 0 100px;
  border-left: 1px solid #C2C2C2;
}
@media (max-width : 1700px) {
  .blog_category .section_top .filter_block .blog_filter_nav {
    padding-left: 120px;
  }
}
@media (max-width : 1200px) {
  .blog_category .section_top .filter_block .blog_filter_nav {
    padding-left: 30px;
    gap: 0 60px;
  }
}
@media (max-width : 1000px) {
  .blog_category .section_top .filter_block .blog_filter_nav {
    padding-left: 30px;
    gap: 0 30px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .blog_filter_nav {
    display: none;
  }
}
.blog_category .section_top .filter_block .blog_filter_nav li {
  padding: 30px 0;
}
@media (max-width : 1000px) {
  .blog_category .section_top .filter_block .blog_filter_nav li {
    padding: 15px 0;
  }
}
.blog_category .section_top .filter_block .blog_filter_nav li a {
  text-decoration: none;
  color: #6A6A6A;
  font-family: RobotoMono;
  font-size: 28px;
  font-weight: 400;
}
@media (max-width : 1000px) {
  .blog_category .section_top .filter_block .blog_filter_nav li a {
    font-size: 22px;
  }
}
.blog_category .section_top .filter_block .blog_filter_nav li a:hover {
  color: #393939;
  font-weight: 500;
}
.blog_category .section_top .filter_block .filter_open {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background-color: #222;
  color: #fff;
  width: 100%;
  display: none;
  transition: 0.3s ease all;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .row {
    margin: 0;
  }
}
.blog_category .section_top .filter_block .filter_open.show {
  display: block;
}
.blog_category .section_top .filter_block .filter_open .nav_block {
  padding: 38px 74px 50px 68px;
  display: flex;
  gap: 0 57px;
  border-right: 1px solid #CECECE;
}
@media (max-width : 1400px) {
  .blog_category .section_top .filter_block .filter_open .nav_block {
    padding: 38px 8px 50px 20px;
    gap: 0 15px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .nav_block {
    padding: 30px 10px 50px 10px;
  }
}
.blog_category .section_top .filter_block .filter_open .nav_block .title {
  font-family: RobotoMono;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width : 1400px) {
  .blog_category .section_top .filter_block .filter_open .nav_block .title {
    font-size: 24px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .nav_block .title {
    font-size: 22px;
  }
}
.blog_category .section_top .filter_block .filter_open .nav_block .filter_nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .nav_block .filter_nav {
    gap: 16px 0;
  }
}
.blog_category .section_top .filter_block .filter_open .nav_block .filter_nav a {
  text-decoration: none;
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width : 1400px) {
  .blog_category .section_top .filter_block .filter_open .nav_block .filter_nav a {
    font-size: 14px;
  }
}
@media (max-width : 1000px) {
  .blog_category .section_top .filter_block .filter_open .nav_block .filter_nav a {
    font-size: 18px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .nav_block .filter_nav a {
    font-size: 15px;
  }
}
.blog_category .section_top .filter_block .filter_open .nav_block .filter_nav a.active {
  border-bottom: 1px solid #fff;
  font-weight: 600;
}
.blog_category .section_top .filter_block .filter_open .price_block {
  padding: 38px 107px 0 56px;
  border-right: 1px solid #CECECE;
}
@media (max-width : 1400px) {
  .blog_category .section_top .filter_block .filter_open .price_block {
    padding: 38px 20px 40px 20px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block {
    padding: 30px 10px 40px 10px;
    border-top: 1px solid #CECECE;
  }
}
.blog_category .section_top .filter_block .filter_open .price_block .form_price .title {
  color: #CBCBCB;
  font-family: RobotoMono;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block .form_price .title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 0;
  }
}
.blog_category .section_top .filter_block .filter_open .price_block .form_price input {
  width: 100%;
  margin-bottom: 18px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block .form_price input {
    margin-bottom: 11px;
  }
}
.blog_category .section_top .filter_block .filter_open .price_block .form_price input[type=range] {
  -webkit-appearance: none !important;
  background: #fff;
  height: 1px;
}
.blog_category .section_top .filter_block .filter_open .price_block .form_price input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  background: #fff;
  height: 8px;
  width: 8px;
}
.blog_category .section_top .filter_block .filter_open .price_block .form_price .range_min_max {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block .form_price .range_min_max {
    margin-bottom: 40px;
  }
}
.blog_category .section_top .filter_block .filter_open .price_block .form_price .range_min_max .min, .blog_category .section_top .filter_block .filter_open .price_block .form_price .range_min_max .max {
  padding: 3px 15px;
  color: #CECECE;
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 400;
  border: 1px solid #CECECE;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block .form_price .range_min_max .min, .blog_category .section_top .filter_block .filter_open .price_block .form_price .range_min_max .max {
    padding: 2px 12px;
    font-size: 17px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block .form_color {
    padding-top: 30px;
    padding-bottom: 39px;
    border-bottom: 1px solid #CECECE;
    border-top: 1px solid #CECECE;
  }
}
.blog_category .section_top .filter_block .filter_open .price_block .form_color .title {
  color: #CBCBCB;
  font-family: RobotoMono;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block .form_color .title {
    font-size: 22px;
  }
}
.blog_category .section_top .filter_block .filter_open .price_block .form_color .colors {
  display: flex;
  gap: 0 28px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block .form_color .colors {
    gap: 0 18px;
  }
}
.blog_category .section_top .filter_block .filter_open .price_block .form_color .colors .color_1 .color, .blog_category .section_top .filter_block .filter_open .price_block .form_color .colors .color_2 .color {
  width: 100px;
  height: 38px;
  border: 1px solid #E9E9E9;
  cursor: pointer;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .price_block .form_color .colors .color_1 .color, .blog_category .section_top .filter_block .filter_open .price_block .form_color .colors .color_2 .color {
    width: 70px;
    height: 30px;
  }
}
.blog_category .section_top .filter_block .filter_open .price_block .form_color .colors .color_1 .color {
  background-color: #D9D9D9;
}
.blog_category .section_top .filter_block .filter_open .price_block .form_color .colors input {
  display: none;
}
.blog_category .section_top .filter_block .filter_open .price_block .form_color .colors input:checked + .color {
  box-shadow: 0 0 20px rgba(217, 217, 217, 0.8);
}
.blog_category .section_top .filter_block .filter_open .size_block {
  padding: 38px 0 0 123px;
}
@media (max-width : 1400px) {
  .blog_category .section_top .filter_block .filter_open .size_block {
    padding: 38px 0 0 20px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .size_block {
    padding: 0 10px 80px 10px;
  }
}
.blog_category .section_top .filter_block .filter_open .size_block .title {
  color: #CBCBCB;
  font-family: RobotoMono;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .size_block .title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
  }
}
.blog_category .section_top .filter_block .filter_open .size_block .form_size {
  display: flex;
  gap: 0 139px;
}
@media (max-width : 1400px) {
  .blog_category .section_top .filter_block .filter_open .size_block .form_size {
    gap: 0 50px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .size_block .form_size {
    gap: 0 26px;
  }
}
.blog_category .section_top .filter_block .filter_open .size_block .form_size label {
  cursor: pointer;
}
.blog_category .section_top .filter_block .filter_open .size_block .form_size label input {
  display: none;
}
.blog_category .section_top .filter_block .filter_open .size_block .form_size label input:checked + .text {
  color: #fff;
}
.blog_category .section_top .filter_block .filter_open .size_block .form_size label .text {
  color: #5B5B5B;
  font-family: Inter;
  font-size: 41.538px;
  font-weight: 400;
}
@media (max-width : 1400px) {
  .blog_category .section_top .filter_block .filter_open .size_block .form_size label .text {
    font-size: 35px;
  }
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .size_block .form_size label .text {
    font-size: 23px;
  }
}
.blog_category .section_top .filter_block .filter_open .filter_list {
  display: flex;
  justify-content: center;
  padding: 26px;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .filter_list {
    display: none;
  }
}
.blog_category .section_top .filter_block .filter_open .filter_list .list {
  list-style: none;
  display: flex;
  gap: 0 75px;
}
.blog_category .section_top .filter_block .filter_open .filter_list .list li {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.blog_category .section_top .filter_block .filter_open .buttons {
  padding: 40px 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  gap: 0 57px;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .buttons {
    padding: 0 10px 50px 10px;
    justify-content: center;
    gap: 20px 0;
  }
}
.blog_category .section_top .filter_block .filter_open .buttons .clear {
  color: #FFF;
  font-family: RobotoMono;
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
}
.blog_category .section_top .filter_block .filter_open .buttons .view {
  color: #030303;
  text-align: center;
  font-family: RobotoMono;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  padding: 20px 30px;
  width: 260px;
  text-decoration: none;
  background-color: #fff;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .filter_open .buttons .view {
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
  }
}
.blog_category .section_top .filter_block .blog_filter_nav_mobile {
  display: none;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .blog_filter_nav_mobile {
    border-right: 0.6px solid #C2C2C2;
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 0 7px;
    font-family: RobotoMono;
    font-size: 14px;
    font-weight: 400;
    color: #6A6A6A;
  }
  .blog_category .section_top .filter_block .blog_filter_nav_mobile .text.active svg {
    transform: rotate(180deg);
  }
}
.blog_category .section_top .filter_block .blog_filter_nav_mobile_open {
  display: none;
}
@media (max-width : 767.9px) {
  .blog_category .section_top .filter_block .blog_filter_nav_mobile_open.show {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    z-index: 2;
    background-color: #fff;
    width: 100%;
    padding: 13px 0 29px 38px;
    list-style: none;
  }
  .blog_category .section_top .filter_block .blog_filter_nav_mobile_open.show a {
    font-family: RobotoMono;
    font-size: 13.622px;
    color: #6A6A6A;
    font-weight: 400;
    text-decoration: none;
  }
  .blog_category .section_top .filter_block .blog_filter_nav_mobile_open.show a.active {
    color: #393939;
    font-weight: 500;
  }
}
.blog_category .product_block {
  margin-bottom: 100px;
}

.product_view .container .product_slider_block .product_cart_slider {
  width: 100%;
  margin-bottom: 22px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_slider_block .product_cart_slider {
    margin-bottom: 8px;
  }
}
.product_view .container .product_slider_block .product_cart_slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  object-fit: cover;
}
.product_view .container .product_slider_block .swiper_thumbnail .swiper-slide-thumb-active img {
  transform: scale(0.95);
}
.product_view .container .product_slider_block .swiper_thumbnail .swiper-wrapper .swiper-slide {
  padding: 0 5px;
  cursor: pointer;
}
.product_view .container .product_slider_block .swiper_thumbnail .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.product_view .container .additional_view {
  margin-bottom: 132px;
}
@media (max-width : 767.9px) {
  .product_view .container .additional_view {
    margin-bottom: 55px;
  }
}
.product_view .container .history_product {
  margin-bottom: 117px;
}
@media (max-width : 767.9px) {
  .product_view .container .history_product {
    margin-bottom: 65px;
  }
}
.product_view .container .product_content_block {
  padding-bottom: 65px;
  margin-bottom: 70px;
  border-bottom: 1px solid #AEAEAE;
  clip-path: polygon(100% 0, 100% calc(100% - 56px), calc(100% - 137px) 100%, 0 100%, 0 0);
  position: relative;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block {
    clip-path: none;
  }
}
.product_view .container .product_content_block::after {
  content: "";
  display: block;
  width: 148px;
  height: 1px;
  background-color: #AEAEAE;
  position: absolute;
  bottom: 27px;
  right: -4px;
  transform: rotate(-23deg);
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block::after {
    display: none;
  }
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block {
    padding-bottom: 24px;
    margin-bottom: 65px;
  }
}
.product_view .container .product_content_block .product_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 80px;
}
@media (max-width : 1400px) {
  .product_view .container .product_content_block .product_info {
    padding-left: 20px;
  }
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info {
    padding-left: 10px;
  }
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info {
    position: relative;
  }
}
.product_view .container .product_content_block .product_info .top_info .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product_view .container .product_content_block .product_info .top_info .left .top .product_name {
  color: #0B0B0B;
  font-family: microgrammad_boldexte;
  font-size: 65px;
  font-weight: 400;
  line-height: 141%; /* 91.65px */
  text-transform: uppercase;
}
@media (max-width : 1200px) {
  .product_view .container .product_content_block .product_info .top_info .left .top .product_name {
    font-size: 40px;
  }
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .left .top .product_name {
    font-size: 23px;
    margin-top: 30px;
  }
}
.product_view .container .product_content_block .product_info .top_info .left .top .product_id {
  font-size: 16px;
  color: #717171;
  margin-bottom: 25px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .left .top .product_id {
    font-size: 9px;
    margin-bottom: 17px;
  }
}
.product_view .container .product_content_block .product_info .top_info .left .top .price {
  display: flex;
  gap: 0 12px;
  align-items: center;
  margin-bottom: 105px;
}
@media (max-width : 1400px) {
  .product_view .container .product_content_block .product_info .top_info .left .top .price {
    margin-bottom: 20px;
  }
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .left .top .price {
    gap: 0 6px;
    margin-bottom: 35px;
  }
}
.product_view .container .product_content_block .product_info .top_info .left .top .price .new_price {
  color: #151515;
  font-family: RobotoMono;
  font-size: 38px;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .left .top .price .new_price {
    font-size: 20px;
  }
}
.product_view .container .product_content_block .product_info .top_info .left .top .price .old_price {
  color: #A6A6A6;
  font-size: 30px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .left .top .price .old_price {
    font-size: 16px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right {
    flex-direction: column-reverse;
    position: static;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .favorite {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
  background-color: #fff;
  border: 1.062px solid #DEDEDE;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .favorite {
    top: 35px;
    padding: 10px;
  }
  .product_view .container .product_content_block .product_info .top_info .right .favorite img {
    width: 8px;
    height: 8px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_nav {
  display: flex;
  gap: 0 55px;
  list-style: none;
  margin-bottom: 50px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_nav {
    justify-content: center;
    gap: 0 78px;
    margin-bottom: 16px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_nav li a {
  text-decoration: none;
  font-family: RobotoMono;
  font-size: 18px;
  color: #6A6A6A;
  font-weight: 400;
  line-height: 150%;
  padding-bottom: 2px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_nav li a {
    font-size: 12px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_nav li a.active {
  font-weight: 700;
  color: #1A1A1A;
  border-bottom: 2px solid #1A1A1A;
}
.product_view .container .product_content_block .product_info .top_info .right .product_info_content {
  margin-bottom: 40px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_info_content {
    margin-bottom: 24px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_info_content .info_item {
  display: none;
  font-size: 18px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_info_content .info_item {
    font-size: 10px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_info_content .info_item.show {
  display: block;
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  margin-bottom: 20px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons {
    gap: 17px 0;
    margin-bottom: 34px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty {
  width: 15%;
  position: relative;
}
@media (max-width : 1200px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty {
    width: 30%;
  }
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty {
    width: 25%;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty .btn_qty {
  text-decoration: none;
  position: absolute;
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty .dec {
  height: 100%;
  width: 28%;
  text-align: center;
  background-color: #B6B6B6;
  color: white;
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty .dec {
    font-size: 6px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty .inc {
  height: 100%;
  width: 28%;
  text-align: center;
  background-color: #B6B6B6;
  color: white;
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 0;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty .inc {
    font-size: 12px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty input {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 20px;
  border: 1px solid #B6B6B6;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty input {
    font-size: 16px;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .product_qty input:focus {
  outline: none;
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons select {
  width: 15%;
  padding: 15px 0;
}
@media (max-width : 1200px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons select {
    width: 30%;
  }
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons select {
    width: 48%;
    padding: 10px 0;
  }
}
.product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .button {
  width: 50%;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  background-color: #000;
  padding: 15px 0;
}
@media (max-width : 1200px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .button {
    min-width: 340px;
  }
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .top_info .right .product_chars_buttons .button {
    min-width: 70%;
    font-size: 8px;
    padding: 13px 0;
  }
}
.product_view .container .product_content_block .product_info .bottom_info .bottom_menu {
  display: flex;
  list-style: none;
  gap: 0 60px;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .bottom_info .bottom_menu {
    gap: 0 52px;
  }
}
.product_view .container .product_content_block .product_info .bottom_info .bottom_menu li a {
  text-decoration: none;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  color: #6A6A6A;
}
@media (max-width : 767.9px) {
  .product_view .container .product_content_block .product_info .bottom_info .bottom_menu li a {
    font-size: 12px;
  }
}

.cart .title_block {
  margin-bottom: 25px;
}
@media (max-width : 767.9px) {
  .cart .title_block {
    margin-bottom: 17px;
  }
}
.cart .title_block .cart_title {
  font-family: microgrammad_boldexte;
  font-size: 52px;
  color: #0B0B0B;
  line-height: 141%; /* 73.32px */
  text-transform: uppercase;
}
@media (max-width : 767.9px) {
  .cart .title_block .cart_title {
    font-size: 22px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .row {
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
  }
}
.cart .cart_block .left_block {
  background-color: #EEE;
  padding: 33px 72px 106px 47px;
}
@media (max-width : 1200px) {
  .cart .cart_block .left_block {
    padding-right: 33px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block {
    padding: 23px 10px 150px 10px;
  }
}
.cart .cart_block .left_block .user_contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 0;
  padding-bottom: 32px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .user_contact {
    padding-bottom: 24px;
  }
}
.cart .cart_block .left_block .user_contact .form_item {
  width: calc(50% - 18px);
}
@media (max-width : 1200px) {
  .cart .cart_block .left_block .user_contact .form_item {
    width: 100%;
  }
}
.cart .cart_block .left_block .user_contact .form_item .name {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width : 1200px) {
  .cart .cart_block .left_block .user_contact .form_item .name {
    margin-bottom: 6px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .user_contact .form_item .name {
    font-size: 12px;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
  }
  .cart .cart_block .left_block .user_contact .form_item .name::before {
    content: "*";
    position: absolute;
    right: -7px;
    top: -4px;
    color: #000;
  }
}
.cart .cart_block .left_block .user_contact .form_item input {
  width: 100%;
  height: 55px;
  padding-left: 20px;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .user_contact .form_item input {
    height: 40px;
    font-size: 14px;
  }
}
.cart .cart_block .left_block .user_city {
  margin-bottom: 27px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .user_city {
    margin-bottom: 0;
  }
}
.cart .cart_block .left_block .user_city .form_item {
  width: 100%;
  padding: 24px 0 44px 0;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .user_city .form_item {
    padding: 25px 0 39px 0;
    border-bottom: none;
  }
}
.cart .cart_block .left_block .user_city .form_item .name {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .user_city .form_item .name {
    font-size: 12px;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
  }
  .cart .cart_block .left_block .user_city .form_item .name::before {
    content: "*";
    position: absolute;
    right: -7px;
    top: -4px;
    color: #000;
  }
}
.cart .cart_block .left_block .user_city .form_item input {
  width: 100%;
  height: 55px;
  padding-left: 20px;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .user_city .form_item input {
    height: 40px;
    font-size: 14px;
  }
}
.cart .cart_block .left_block .delivery_type {
  margin-bottom: 20px;
}
.cart .cart_block .left_block .delivery_type .title {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_type .title {
    font-size: 12px;
  }
}
.cart .cart_block .left_block .delivery_type .form_item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
.cart .cart_block .left_block .delivery_type .form_item label {
  width: calc(50% - 18px);
  cursor: pointer;
}
@media (max-width : 1200px) {
  .cart .cart_block .left_block .delivery_type .form_item label {
    width: 100%;
  }
}
.cart .cart_block .left_block .delivery_type .form_item label .name {
  text-align: center;
  padding: 14px 0;
  color: #1A1A1A;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  border: 1px solid #575757;
  background-color: #FFF;
}
@media (max-width : 1200px) {
  .cart .cart_block .left_block .delivery_type .form_item label .name {
    font-size: 16px;
    padding: 12px 0;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_type .form_item label .name {
    padding: 10px 0;
    font-size: 14px;
  }
}
.cart .cart_block .left_block .delivery_type .form_item label .value {
  padding: 6px 0;
  text-align: center;
  color: #6A6A6A;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #575757;
  border-top: none;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_type .form_item label .value {
    padding: 10px 0;
    font-size: 12px;
  }
}
.cart .cart_block .left_block .delivery_type .form_item label input {
  display: none;
}
.cart .cart_block .left_block .delivery_type .form_item label input:checked + .name {
  background-color: #000;
  color: #fff;
}
.cart .cart_block .left_block .delivery_option {
  margin-bottom: 32px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_option {
    margin-bottom: 22px;
  }
}
.cart .cart_block .left_block .delivery_option .form_item .name {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_option .form_item .name {
    font-size: 12px;
  }
}
.cart .cart_block .left_block .delivery_option .form_item input {
  display: none;
  width: 100%;
  height: 55px;
  padding-left: 20px;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_option .form_item input {
    height: 40px;
    font-size: 14px;
  }
}
.cart .cart_block .left_block .delivery_option .form_item input.active {
  display: block;
}
.cart .cart_block .left_block .delivery_option .form_item select {
  display: none;
  height: 55px;
  width: 100%;
  padding-left: 20px;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_option .form_item select {
    height: 40px;
    font-size: 14px;
  }
}
.cart .cart_block .left_block .delivery_option .form_item select.active {
  display: block;
}
.cart .cart_block .left_block .delivery_calculation {
  margin-bottom: 38px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_calculation {
    margin-bottom: 30px;
  }
}
.cart .cart_block .left_block .delivery_calculation .title {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_calculation .title {
    font-size: 12px;
    margin-bottom: 7px;
  }
}
.cart .cart_block .left_block .delivery_calculation .list {
  display: flex;
  gap: 0 45px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_calculation .list {
    gap: 0 24px;
  }
}
.cart .cart_block .left_block .delivery_calculation .list .list_left, .cart .cart_block .left_block .delivery_calculation .list .list_right {
  list-style: none;
  font-family: RobotoMono;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 13px 0;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .delivery_calculation .list .list_left, .cart .cart_block .left_block .delivery_calculation .list .list_right {
    gap: 8px 0;
    font-size: 12px;
  }
}
.cart .cart_block .left_block .delivery_calculation .list .list_left {
  font-weight: 400;
  color: #6A6A6A;
}
.cart .cart_block .left_block .delivery_calculation .list .list_right {
  font-weight: 500;
  color: #000;
}
.cart .cart_block .left_block .street {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 34px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .street {
    margin-bottom: 20px;
  }
}
.cart .cart_block .left_block .street .form_item {
  width: calc(50% - 18px);
}
@media (max-width : 1200px) {
  .cart .cart_block .left_block .street .form_item {
    width: 100%;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .street .form_item {
    width: 100%;
  }
  .cart .cart_block .left_block .street .form_item:nth-child(1) .name {
    position: relative;
    display: inline-block;
  }
  .cart .cart_block .left_block .street .form_item:nth-child(1) .name::before {
    content: "*";
    position: absolute;
    right: -7px;
    top: -4px;
    color: #000;
  }
}
.cart .cart_block .left_block .street .form_item .name {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .street .form_item .name {
    font-size: 12px;
  }
}
.cart .cart_block .left_block .street .form_item input {
  display: none;
  width: 100%;
  height: 55px;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding-left: 20px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .street .form_item input {
    height: 40px;
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.cart .cart_block .left_block .street .form_item input.active {
  display: block;
}
.cart .cart_block .left_block .street .form_item .delivery_point {
  display: none;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
  height: 55px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .street .form_item .delivery_point {
    height: 40px;
    font-size: 14px;
  }
}
.cart .cart_block .left_block .street .form_item .delivery_point.active {
  display: flex;
  align-items: center;
}
.cart .cart_block .left_block .street .form_item .payments {
  height: 55px;
  display: flex;
  align-items: center;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .street .form_item .payments {
    font-size: 14px;
  }
}
.cart .cart_block .left_block .comment {
  margin-bottom: 60px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .comment {
    margin-bottom: 40px;
  }
}
.cart .cart_block .left_block .comment .name {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .comment .name {
    font-size: 12px;
    margin-bottom: 7px;
  }
}
.cart .cart_block .left_block .comment textarea {
  width: 100%;
  height: 110px;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
  padding: 20px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .comment textarea {
    height: 95px;
    padding: 5px;
    font-size: 12px;
  }
}
.cart .cart_block .left_block .expenses_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cart .cart_block .left_block .expenses_list .left {
  width: calc(60% - 18px);
}
@media (max-width : 1200px) {
  .cart .cart_block .left_block .expenses_list .left {
    width: 100%;
    margin-bottom: 45px;
  }
}
.cart .cart_block .left_block .expenses_list .left .block_content {
  background-color: #fff;
  padding-top: 20px;
}
.cart .cart_block .left_block .expenses_list .left .block_content .sale_price, .cart .cart_block .left_block .expenses_list .left .block_content .product_price, .cart .cart_block .left_block .expenses_list .left .block_content .delivery_price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #000;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  padding: 0 20px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .expenses_list .left .block_content .sale_price, .cart .cart_block .left_block .expenses_list .left .block_content .product_price, .cart .cart_block .left_block .expenses_list .left .block_content .delivery_price {
    font-size: 11px;
    margin-bottom: 9px;
    padding: 0 12px;
  }
}
.cart .cart_block .left_block .expenses_list .left .block_content .sale_price .value, .cart .cart_block .left_block .expenses_list .left .block_content .product_price .value, .cart .cart_block .left_block .expenses_list .left .block_content .delivery_price .value {
  font-weight: 700;
}
.cart .cart_block .left_block .expenses_list .left .block_content .total_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: RobotoMono;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 150%;
  padding: 20px;
  border-top: 1px solid #CECECE;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .expenses_list .left .block_content .total_price {
    padding: 12px;
    font-size: 11px;
  }
}
.cart .cart_block .left_block .expenses_list .left .block_content .total_price .value {
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .expenses_list .left .block_content .total_price .value {
    font-size: 17px;
  }
}
.cart .cart_block .left_block .expenses_list .left .order_confirm {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 15px 0;
}
.cart .cart_block .left_block .expenses_list .right {
  width: calc(40% - 16px);
  display: flex;
  align-items: end;
}
@media (max-width : 1200px) {
  .cart .cart_block .left_block .expenses_list .right {
    width: 100%;
  }
}
.cart .cart_block .left_block .expenses_list .right button {
  width: 100%;
  padding: 15px 0;
  background-color: #000;
  color: #fff;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .cart .cart_block .left_block .expenses_list .right button {
    padding: 8px 0;
    font-size: 16px;
  }
}
.cart .cart_block .right_block {
  padding: 0 40px 0 84px;
  border-top: 1px solid #CECECE;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block {
    padding: 0 15px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
.cart .cart_block .right_block .clear_cart {
  display: block;
  color: #6A6A6A;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-align: right;
  margin: 22px 0;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .clear_cart {
    font-size: 7px;
    margin: 5px 0;
  }
}
.cart .cart_block .right_block .left_cart {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-bottom: 57px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart {
    gap: 10px 0;
    margin-bottom: 18px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item {
  border: 1px solid #AEAEAE;
  display: flex;
}
.cart .cart_block .right_block .left_cart .cart_item .cart_img {
  width: 20%;
}
.cart .cart_block .right_block .left_cart .cart_item .cart_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info {
  padding: 19px 6px 16px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info {
    padding: 8px 10px 12px 27px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info {
    padding: 4px 6px 8px 23px;
    position: relative;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .left .product_name {
  color: #0B0B0B;
  font-family: microgrammad_boldexte;
  font-size: 20.21px;
  font-weight: 400;
  line-height: 141%; /* 28.496px */
  text-transform: uppercase;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .left .product_name {
    font-size: 8px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .left .product_chars {
  margin-bottom: 3px;
  display: flex;
  list-style: none;
  gap: 0 14px;
  font-family: RobotoMono;
  color: #000;
  font-size: 11.015px;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .left .product_chars {
    font-size: 6px;
    gap: 0 7px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .left .del_cart {
  color: #6A6A6A;
  font-family: RobotoMono;
  font-size: 13.059px;
  font-weight: 400;
  text-decoration: none;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .left .del_cart {
    font-size: 7px;
    position: absolute;
    right: 6px;
    top: 4px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right {
  display: flex;
  gap: 0 52px;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty {
  position: relative;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty {
    position: absolute;
    left: 23px;
    bottom: 0;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty .btn_qty {
  text-decoration: none;
  position: absolute;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty .dec {
  height: 37px;
  width: 25%;
  background-color: #B6B6B6;
  color: white;
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty .dec {
    height: 17px;
    padding: 0 3px;
    font-size: 12px;
    top: 9px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty .inc {
  height: 37px;
  width: 25%;
  background-color: #B6B6B6;
  color: white;
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 0;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty .inc {
    height: 17px;
    padding: 0 3px;
    font-size: 12px;
    top: 9px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty input {
  width: 105px;
  height: 37px;
  text-align: center;
  border: 1px solid #B6B6B6;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty input {
    height: 18px;
    width: 50px;
    font-size: 12px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .product_qty_parent .product_qty input:focus {
  outline: none;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .price {
  display: flex;
  flex-direction: column;
  align-items: end;
  font-family: RobotoMono;
  font-size: 19.856px;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .right .price {
    font-size: 12px;
    padding-top: 25px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .price .new_price {
  color: #151515;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .right .price .old_price {
  color: #A6A6A6;
  font-size: 14px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .left_cart .cart_item .product_info .right .price .old_price {
    font-size: 10px;
  }
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .bottom {
  display: flex;
  justify-content: space-between;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .bottom .left {
  display: flex;
  align-items: end;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .bottom .left a {
  text-decoration: none;
  color: #000;
  font-family: RobotoMono;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding-right: 15px;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .bottom .left a:first-child {
  border-right: 1px solid #393939;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .bottom .left a:nth-child(2) {
  padding-left: 15px;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .bottom .right {
  width: 140px;
  height: 55px;
  display: inline-flex;
}
.cart .cart_block .right_block .left_cart .cart_item .product_info .bottom .right input {
  width: 100%;
  height: 100%;
}
.cart .cart_block .right_block .right_cart .top {
  padding: 25px 42px 33px 40px;
  border: 1px solid #AEAEAE;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .top {
    padding: 16px 20px 26px 23px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .top {
    padding: 12px 16px 22px 19px;
  }
}
.cart .cart_block .right_block .right_cart .top .gain {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .top .gain {
    margin-bottom: 3px;
  }
}
.cart .cart_block .right_block .right_cart .top .gain .name {
  color: #000;
  font-family: microgrammad_boldexte;
  font-size: 24px;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .top .gain .name {
    font-size: 20px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .top .gain .name {
    font-size: 11px;
  }
}
.cart .cart_block .right_block .right_cart .top .gain .value {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .top .gain .value {
    font-size: 14px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .top .gain .value {
    font-size: 8px;
  }
}
.cart .cart_block .right_block .right_cart .top .sale_list {
  list-style: none;
  margin-bottom: 30px;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .top .sale_list {
    margin-bottom: 20px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .top .sale_list {
    margin-bottom: 16px;
  }
}
.cart .cart_block .right_block .right_cart .top .sale_list li {
  display: flex;
  justify-content: space-between;
  font-family: RobotoMono;
  font-size: 18px;
  color: #6A6A6A;
  font-weight: 400;
  line-height: 150%;
  margin-left: 20px;
  padding-left: 10px;
  position: relative;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .top .sale_list li {
    font-size: 14px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .top .sale_list li {
    font-size: 9px;
    margin-left: 8px;
    padding-left: 6px;
  }
}
.cart .cart_block .right_block .right_cart .top .sale_list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #6A6A6A;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .top .sale_list li::before {
    width: 2px;
    height: 2px;
  }
}
.cart .cart_block .right_block .right_cart .top .promoCode {
  padding: 16px 0 16px 20px;
  background-color: #EDEDED;
  color: #7C7C7C;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .top .promoCode {
    font-size: 15px;
    padding: 12px 0 12px 14px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .top .promoCode {
    padding: 8px 0 8px 10px;
    font-size: 10px;
  }
}
.cart .cart_block .right_block .right_cart .bottom {
  padding: 25px 48px 38px 40px;
  border: 1px solid #AEAEAE;
  border-top: none;
  background-color: #F0F0F0;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .bottom {
    padding: 18px 19px 22px 23px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .bottom {
    padding: 14px 15px 18px 19px;
  }
}
.cart .cart_block .right_block .right_cart .bottom .total_product {
  display: flex;
  justify-content: space-between;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #1A1A1A;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .bottom .total_product {
    font-size: 14px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .bottom .total_product {
    font-size: 9px;
  }
}
.cart .cart_block .right_block .right_cart .bottom .total_product span {
  font-size: 28px;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .bottom .total_product span {
    font-size: 20px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .bottom .total_product span {
    font-size: 14px;
  }
}
.cart .cart_block .right_block .right_cart .bottom .all_product_price {
  text-align: end;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
  color: #6A6A6A;
}
@media (max-width : 1200px) {
  .cart .cart_block .right_block .right_cart .bottom .all_product_price {
    font-size: 12px;
  }
}
@media (max-width : 767.9px) {
  .cart .cart_block .right_block .right_cart .bottom .all_product_price {
    font-size: 8px;
  }
}

.about .about_hero {
  padding-bottom: 430px;
  background-image: url("../images/about_hero_bg.png");
  background-repeat: no-repeat;
  background-position: bottom;
  margin-bottom: 50px;
}
@media (max-width : 767.9px) {
  .about .about_hero {
    background-image: url("../images/about_hero_mobile-bg.png");
    margin-bottom: 40px;
    padding-bottom: 160px;
    background-color: #EAEAEA;
    background-size: cover;
    background-position: bottom;
  }
}
@media (max-width : 767.9px) {
  .about .about_hero .container {
    padding: 0 10px;
  }
}
.about .about_hero .row {
  padding-top: 95px;
}
@media (max-width : 767.9px) {
  .about .about_hero .row {
    padding-top: 0;
  }
}
@media (max-width : 767.9px) {
  .about .about_hero .row .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.about .about_hero .row .col-md-4 .big_title {
  font-family: microgrammad_boldexte, serif;
  font-size: 90px;
  color: #000;
}
@media (max-width : 1200px) {
  .about .about_hero .row .col-md-4 .big_title {
    font-size: 60px;
  }
}
@media (max-width : 767.9px) {
  .about .about_hero .row .col-md-4 .big_title {
    font-size: 44px;
  }
}
.about .about_hero .row .col-md-4 .mid_title {
  color: #CECECE;
  font-family: microgrammad_boldexte, serif;
  font-size: 32px;
}
@media (max-width : 767.9px) {
  .about .about_hero .row .col-md-4 .mid_title {
    font-size: 16px;
  }
}
.about .about_hero .row .description {
  font-family: RobotoMono, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #1A1A1A;
  padding-top: 20px;
}
@media (max-width : 1200px) {
  .about .about_hero .row .description {
    font-size: 16px;
  }
}
@media (max-width : 767.9px) {
  .about .about_hero .row .description {
    font-size: 14px;
  }
}
.about .about_content {
  margin-bottom: 95px;
}
@media (max-width : 767.9px) {
  .about .about_content {
    margin-bottom: 60px;
  }
}
@media (max-width : 767.9px) {
  .about .about_content .link_vk {
    margin-bottom: 40px;
  }
}
.about .about_content .link_vk .title {
  color: #6A6A6A;
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 60px;
}
@media (max-width : 1400px) {
  .about .about_content .link_vk .title {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media (max-width : 767.9px) {
  .about .about_content .link_vk .title {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.about .about_content .link_vk a {
  text-decoration: none;
  width: 340px;
  display: inline-block;
  text-align: center;
  padding: 15px 0;
  background-color: #000;
  color: #FFF;
  font-family: RobotoMono, serif;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width : 1400px) {
  .about .about_content .link_vk a {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width : 767.9px) {
  .about .about_content .link_vk a {
    font-size: 9px;
    padding: 13px 0;
    width: 100%;
  }
}
.about .about_content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width : 767.9px) {
  .about .about_content .block1 {
    margin-bottom: 3px;
  }
}
@media (max-width : 767.9px) {
  .about .about_content .block1 .img {
    width: 50%;
    flex: 0 0 auto;
  }
  .about .about_content .block1 .img:nth-child(2) {
    padding-right: 2px;
    padding-left: 0;
  }
  .about .about_content .block1 .img:nth-child(3) {
    padding-left: 2px;
    padding-right: 0;
  }
}
@media (max-width : 767.9px) {
  .about .about_content .block2 {
    justify-content: space-between;
  }
  .about .about_content .block2 .img {
    width: 40%;
    padding-left: 0;
    padding-right: 0;
  }
}
.about .about_content .block2 .logo {
  padding: 78px 0 0 95px;
}
.about .about_content .block2 .logo img {
  width: 100%;
}
@media (max-width : 1000px) {
  .about .about_content .block2 .logo {
    padding: 40px 0 0 40px;
  }
}
@media (max-width : 767.9px) {
  .about .about_content .block2 .logo {
    width: 50%;
    padding: 17px 0 0 0;
  }
  .about .about_content .block2 .logo img {
    width: 100%;
  }
}

.favorite .favorite_block {
  margin-bottom: 20px;
  padding-bottom: 70px;
  border-bottom: 1px solid #AEAEAE;
  clip-path: polygon(100% 0, 100% calc(100% - 56px), calc(100% - 137px) 100%, 0 100%, 0 0);
  position: relative;
}
.favorite .favorite_block::after {
  content: "";
  display: block;
  width: 148px;
  height: 1px;
  background-color: #AEAEAE;
  position: absolute;
  bottom: 28px;
  right: -4px;
  transform: rotate(-23deg);
}
@media (max-width : 767.9px) {
  .favorite .favorite_block::after {
    display: none;
  }
}
@media (max-width : 767.9px) {
  .favorite .favorite_block {
    padding-bottom: 20px;
    border: none;
    clip-path: none;
  }
}
.favorite .additional_view {
  margin-bottom: 255px;
}
@media (max-width : 767.9px) {
  .favorite .additional_view {
    margin-bottom: 65px;
  }
}

.user .user_form {
  background-color: #F9F9F9;
  padding: 60px 0 85px 0;
}
@media (max-width : 767.9px) {
  .user .user_form {
    padding: 13px 0 73px 0;
  }
  .user .user_form form .row {
    margin: 0;
  }
}
.user .user_form .form_name {
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  color: #393939;
  margin-bottom: 20px;
}
@media (max-width : 767.9px) {
  .user .user_form .form_name {
    margin-bottom: 22px;
    font-size: 16px;
  }
}
.user .user_form .left_form {
  padding: 0 50px 0 0;
}
@media (max-width : 767.9px) {
  .user .user_form .left_form {
    padding: 0;
  }
}
.user .user_form .right_form {
  padding: 0 0 0 50px;
}
@media (max-width : 767.9px) {
  .user .user_form .right_form {
    padding: 0;
  }
}
.user .user_form .form_item .name {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (max-width : 767.9px) {
  .user .user_form .form_item .name {
    font-size: 12px;
  }
}
.user .user_form .form_item input {
  border: 1px solid #575757;
  height: 55px;
  width: 100%;
  padding-left: 20px;
  margin-bottom: 15px;
}
@media (max-width : 767.9px) {
  .user .user_form .form_item input {
    height: 40px;
  }
}
.user .user_form .form_item input::placeholder {
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .user .user_form .form_item input::placeholder {
    font-size: 14px;
  }
}
.user .user_form .form_item input:focus {
  outline: none;
}
.user .user_form .button_block .col-md-4 {
  padding: 0;
}
.user .user_form .button_block .col-md-4 .button {
  margin-top: 30px;
  width: 270px;
  text-align: center;
  padding: 13px 0;
  background-color: #1A1A1A;
  color: #fff;
}
@media (max-width : 767.9px) {
  .user .user_form .button_block .col-md-4 .button {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
  }
}
.user .orders_history {
  background-color: #EEE;
}
.user .orders_history .orders_history_block {
  padding: 110px 0;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block {
    padding: 27px 0 40px 0;
  }
}
.user .orders_history .orders_history_block .order_title {
  color: #393939;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_title {
    font-size: 16px;
    margin-bottom: 27px;
  }
}
.user .orders_history .orders_history_block .order_item {
  margin-bottom: 40px;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_item {
    margin-bottom: 20px;
  }
}
.user .orders_history .orders_history_block .order_item .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1A1A1A;
  color: #FFF;
  font-family: RobotoMono;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 16px 16px 26px;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_item .top {
    padding: 12px 16px 10px 10px;
    font-size: 10px;
  }
}
.user .orders_history .orders_history_block .order_item .top .order_all_data {
  display: flex;
  list-style: none;
  gap: 0 68px;
  color: #F9F9F9;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_item .top .order_all_data {
    gap: 0 11px;
  }
}
.user .orders_history .orders_history_block .order_item .bottom {
  padding: 20px 16px 24px 16px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_item .bottom {
    padding: 8px 8px 12px 10px;
    flex-direction: column-reverse;
  }
}
.user .orders_history .orders_history_block .order_item .bottom .products {
  display: flex;
  list-style: none;
  gap: 0 30px;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_item .bottom .products {
    gap: 0 18px;
  }
}
.user .orders_history .orders_history_block .order_item .bottom .products li {
  width: 92px;
}
.user .orders_history .orders_history_block .order_item .bottom .products li img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.user .orders_history .orders_history_block .order_item .bottom .product_info {
  text-align: right;
  font-family: RobotoMono;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_item .bottom .product_info {
    text-align: left;
    margin-bottom: 11px;
  }
}
.user .orders_history .orders_history_block .order_item .bottom .product_info .from_address {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_item .bottom .product_info .from_address {
    font-size: 10px;
    margin-bottom: 2px;
  }
}
.user .orders_history .orders_history_block .order_item .bottom .product_info .to_address {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width : 767.9px) {
  .user .orders_history .orders_history_block .order_item .bottom .product_info .to_address {
    font-size: 6px;
  }
}

.customer_assistance .section_title {
  margin-top: 45px;
  font-family: microgrammad_boldexte;
  font-size: 52px;
  margin-bottom: 16px;
}
@media (max-width : 767.9px) {
  .customer_assistance .section_title {
    margin-top: 22px;
    font-size: 22px;
  }
}
.customer_assistance .section_tab_nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  gap: 0 30px;
}
@media (max-width : 767.9px) {
  .customer_assistance .section_tab_nav {
    padding: 10px 0;
    justify-content: center;
  }
}
.customer_assistance .section_tab_nav a {
  text-decoration: none;
  font-family: RobotoMono;
  font-size: 28px;
  color: #6A6A6A;
  font-weight: 400;
}
@media (max-width : 767.9px) {
  .customer_assistance .section_tab_nav a {
    font-size: 13px;
  }
}
.customer_assistance .section_tab_nav a.active, .customer_assistance .section_tab_nav a:hover {
  font-weight: 500;
  color: #393939;
}
.customer_assistance .tab_content .tab_item {
  height: 600px;
  display: none;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .tab_item {
    height: auto;
  }
}
.customer_assistance .tab_content .tab_item.show {
  display: block;
}
.customer_assistance .tab_content .delivery {
  display: flex;
  gap: 0 36px;
  padding-top: 72px;
  flex-wrap: wrap;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .delivery {
    gap: 20px 0;
    padding-top: 30px;
  }
}
.customer_assistance .tab_content .delivery .delivery_title img {
  width: 140px;
}
.customer_assistance .tab_content .delivery .delivery_content .content_description {
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 28px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .delivery .delivery_content .content_description {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.customer_assistance .tab_content .delivery .delivery_content .content_title {
  font-family: RobotoMono;
  font-size: 18px;
  color: #000;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .delivery .delivery_content .content_title {
    font-size: 12px;
  }
}
.customer_assistance .tab_content .payment .payment_block {
  background-color: #F0F0F0;
  padding-top: 90px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .payment .payment_block {
    padding-top: 20px;
    position: relative;
  }
}
.customer_assistance .tab_content .payment .payment_block .left {
  display: flex;
  justify-content: center;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .payment .payment_block .left {
    justify-content: start;
    padding: 20px 0 0 17px;
  }
}
.customer_assistance .tab_content .payment .payment_block .left .phone_block {
  width: 295px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 32px 43px 0 32px;
  border-radius: 30px 30px 0 0;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .payment .payment_block .left .phone_block {
    width: 137px;
    height: 107px;
    padding: 11px 13px 0 14px;
  }
}
.customer_assistance .tab_content .payment .payment_block .left .phone_block .text {
  color: #000;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 500;
  line-height: 96%;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .payment .payment_block .left .phone_block .text {
    font-size: 8px;
  }
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .payment .payment_block .left .phone_block svg {
    width: 8px;
  }
}
.customer_assistance .tab_content .payment .payment_block .right {
  padding-top: 30px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .payment .payment_block .right {
    padding-top: 17px;
    background-color: #fff;
  }
}
.customer_assistance .tab_content .payment .payment_block .right .title {
  color: #000;
  font-family: RobotoMono;
  font-size: 34px;
  font-weight: 500;
  line-height: 150%; /* 51px */
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .payment .payment_block .right .title {
    position: absolute;
    top: 90px;
    left: 30px;
    font-size: 15px;
    margin-bottom: 0;
  }
}
.customer_assistance .tab_content .payment .payment_block .right .description {
  color: #000;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 120px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .payment .payment_block .right .description {
    font-size: 8px;
    margin-bottom: 52px;
  }
}
.customer_assistance .tab_content .return_product {
  height: auto;
  padding: 72px 0 150px 0;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .return_product {
    padding: 40px 0 65px 0;
  }
}
.customer_assistance .tab_content .return_product .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.customer_assistance .tab_content .return_product .left .title {
  font-family: RobotoMono;
  font-size: 34px;
  color: #000;
  font-weight: 500;
  line-height: 150%; /* 51px */
  text-transform: uppercase;
  margin-bottom: 41px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .return_product .left .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.customer_assistance .tab_content .return_product .left .description {
  color: #6A6A6A;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 35px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .return_product .left .description {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.customer_assistance .tab_content .return_product .left .bottom .description {
  margin-bottom: 0;
}
.customer_assistance .tab_content .return_product .right .title {
  color: #000;
  font-family: RobotoMono;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 43px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .return_product .right .title {
    margin-top: 30px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.customer_assistance .tab_content .return_product .right .return_list {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .return_product .right .return_list {
    gap: 20px 0;
  }
}
.customer_assistance .tab_content .return_product .right .return_list li {
  font-family: RobotoMono;
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: 150%;
  margin-left: 20px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .return_product .right .return_list li {
    font-size: 14px;
  }
}
.customer_assistance .tab_content .faq {
  padding: 78px 0 170px 0;
  height: auto;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .faq {
    padding: 40px 0 65px 0;
  }
}
.customer_assistance .tab_content .faq .faq_title {
  font-family: RobotoMono;
  font-size: 34px;
  color: #000;
  font-weight: 500;
  line-height: 150%; /* 51px */
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .faq .faq_title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.customer_assistance .tab_content .faq .faq_content {
  gap: 40px 0;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .faq .faq_content {
    gap: 20px 0;
  }
}
.customer_assistance .tab_content .faq .faq_content .card {
  height: 100%;
  border-radius: 0;
}
.customer_assistance .tab_content .faq .faq_content .card .card-body {
  padding: 36px;
  font-family: RobotoMono;
  font-style: normal;
  font-weight: 400;
  line-height: 141%;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .faq .faq_content .card .card-body {
    padding: 23px;
  }
}
.customer_assistance .tab_content .faq .faq_content .card .card-body .card_title {
  color: #000;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .faq .faq_content .card .card-body .card_title {
    font-size: 16px;
  }
}
.customer_assistance .tab_content .faq .faq_content .card .card-body .card_description {
  color: #5C5C5C;
  font-size: 18px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .faq .faq_content .card .card-body .card_description {
    font-size: 12px;
  }
}
.customer_assistance .tab_content .size_tables {
  padding: 84px 0 144px 0;
  height: auto;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .size_tables {
    padding: 40px 0 35px 0;
  }
}
.customer_assistance .tab_content .size_tables .title {
  font-family: RobotoMono;
  font-size: 34px;
  color: #000;
  font-weight: 500;
  line-height: 150%; /* 51px */
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .size_tables .title {
    font-size: 18px;
  }
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .size_tables .table {
    margin-bottom: 30px;
  }
}
.customer_assistance .tab_content .size_tables .table thead th {
  background-color: #D9D9D9;
  border: 2px solid #0E0E0E;
  text-align: center;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .size_tables .table thead th {
    font-size: 6px;
  }
}
.customer_assistance .tab_content .size_tables .table tbody td {
  border: 2px solid #0E0E0E;
  text-align: center;
}
@media (max-width : 767.9px) {
  .customer_assistance .tab_content .size_tables .table tbody td {
    font-size: 6px;
  }
}

body {
  position: relative;
}

.checkout .checkout_block {
  position: relative;
}
.checkout .checkout_block .checkout_tab_nav {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  list-style: none;
  align-items: center;
  gap: 0 20px;
}
.checkout .checkout_block .checkout_tab_nav .line {
  border-top: 1px dashed #D1D1D1;
  width: 230px;
}
.checkout .checkout_block .checkout_tab_nav a {
  text-decoration: none;
  font-family: RobotoMono;
  font-size: 28px;
  color: #6A6A6A;
  font-weight: 400;
}
.checkout .checkout_block .checkout_tab_nav a.active {
  font-weight: 500;
  color: #393939;
}
.checkout .checkout_block .checkout_content {
  background-color: #F9F9F9;
}
.checkout .checkout_block .checkout_content .tab_item {
  display: none;
}
.checkout .checkout_block .checkout_content .tab_item.show {
  display: block;
}
.checkout .checkout_block .checkout_content .tab_item .register, .checkout .checkout_block .checkout_content .tab_item .checkout_form {
  padding: 67px 0 80px 0;
}
.checkout .checkout_block .checkout_content .tab_item .register .title, .checkout .checkout_block .checkout_content .tab_item .checkout_form .title {
  font-family: RobotoMono;
  font-size: 34px;
  color: #000;
  font-weight: 500;
  line-height: 150%; /* 51px */
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 9px;
}
.checkout .checkout_block .checkout_content .tab_item .register .description, .checkout .checkout_block .checkout_content .tab_item .checkout_form .description {
  font-family: RobotoMono;
  font-size: 16px;
  color: #676767;
  font-weight: 400;
  margin-bottom: 23px;
  text-align: center;
}
.checkout .checkout_block .checkout_content .tab_item .register .form_item, .checkout .checkout_block .checkout_content .tab_item .checkout_form .form_item {
  margin-bottom: 15px;
}
.checkout .checkout_block .checkout_content .tab_item .register .form_item .name, .checkout .checkout_block .checkout_content .tab_item .checkout_form .form_item .name {
  color: #000;
  font-family: RobotoMono;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
.checkout .checkout_block .checkout_content .tab_item .register .form_item input:not([type=radio]), .checkout .checkout_block .checkout_content .tab_item .checkout_form .form_item input:not([type=radio]) {
  width: 100%;
  height: 55px;
  padding-left: 20px;
  color: #848484;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
}
.checkout .checkout_block .checkout_content .tab_item .register .form_item input:not([type=radio]):focus, .checkout .checkout_block .checkout_content .tab_item .checkout_form .form_item input:not([type=radio]):focus {
  outline: none;
}
.checkout .checkout_block .checkout_content .tab_item .register .next, .checkout .checkout_block .checkout_content .tab_item .checkout_form .next {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  padding: 13px 0;
  background-color: #1A1A1A;
  color: #fff;
  margin-bottom: 25px;
}
.checkout .checkout_block .checkout_content .tab_item .register .contract, .checkout .checkout_block .checkout_content .tab_item .checkout_form .contract {
  text-align: center;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
  color: #646464;
}
.checkout .checkout_block .checkout_content .tab_item .register .contract a, .checkout .checkout_block .checkout_content .tab_item .checkout_form .contract a {
  text-decoration: none;
  color: #1A1A1A;
}
.checkout .checkout_block .checkout_content .tab_item .delivery input[type=radio] {
  display: none;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item {
  margin-bottom: 30px;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item input[type=radio]:checked + .type_text::after {
  display: block;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item .type_text {
  cursor: pointer;
  position: relative;
  padding-left: 43px;
  margin-bottom: 20px;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item .type_text .type_title {
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #1A1A1A;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item .type_text .radio_description {
  font-family: RobotoMono;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #6A6A6A;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item .type_text:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item .type_text:after {
  content: "";
  display: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item:nth-child(4) {
  margin-bottom: 10px;
}
.checkout .checkout_block .checkout_content .tab_item .delivery .form_item:nth-child(5) {
  margin-bottom: 20px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left {
  padding: 114px 0 250px 0;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .block_title {
  font-family: RobotoMono;
  font-size: 28px;
  color: #000;
  font-weight: 500;
  margin-bottom: 9px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .block_small_title {
  color: #6C6C6C;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  margin-bottom: 50px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .info_delivery_title {
  color: #000;
  font-family: RobotoMono;
  font-size: 28px;
  margin-bottom: 6px;
  font-weight: 500;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .info_delivery_small_title {
  color: #595959;
  font-family: RobotoMono;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 150%;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .delivery_date, .checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .delivery_address {
  display: flex;
  align-items: center;
  gap: 0 22px;
  color: #6A6A6A;
  font-family: RobotoMono;
  font-size: 16px;
  margin-bottom: 13px;
  font-weight: 400;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .delivery_address {
  margin-bottom: 40px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .user_info_title {
  font-family: Roboto Mono;
  font-size: 18px;
  color: #6A6A6A;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 18px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .user_name, .checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .user_phone {
  font-family: RobotoMono;
  font-size: 16px;
  color: #6A6A6A;
  font-weight: 400;
  margin-bottom: 18px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .user_name .line, .checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .user_phone .line {
  display: inline-block;
  border-bottom: 1px dashed #B1B1B1;
  width: 63px;
  margin-right: 15px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .user_name .value, .checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .user_phone .value {
  color: #6A6A6A;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .left .user_phone {
  margin-bottom: 0;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right {
  height: 100%;
  background-color: #EEE;
  padding: 146px 0 280px 0;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_title .name {
  color: #000;
  font-family: RobotoMono;
  font-size: 28px;
  font-weight: 500;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_title .value {
  color: #787878;
  font-family: RobotoMono;
  font-size: 16px;
  font-weight: 400;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content {
  background-color: #fff;
  padding-top: 20px;
  margin-bottom: 23px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content .sale_price, .checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content .product_price, .checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content .delivery_price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #000;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  padding: 0 20px;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content .sale_price .value, .checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content .product_price .value, .checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content .delivery_price .value {
  font-weight: 700;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content .total_price {
  display: flex;
  justify-content: space-between;
  font-family: RobotoMono;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 150%;
  padding: 20px;
  border-top: 1px solid #CECECE;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .block_content .total_price .value {
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
}
.checkout .checkout_block .checkout_content .tab_item .checkout_form_content .right .order_confirm {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 15px 0;
}

.modal_checkout {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.52);
  justify-content: center;
  padding-top: 450px;
  z-index: 10;
  position: absolute;
  top: 0;
}
.modal_checkout .content {
  width: 500px;
  background-color: #fff;
  padding: 155px 0;
}
.modal_checkout .content .title {
  display: flex;
  color: #000;
  text-align: center;
  font-family: Roboto Mono;
  font-size: 28px;
  font-weight: 500;
}

footer {
  background-color: #1C1C1C;
  padding: 156px 0 132px 0;
}
@media (max-width : 767.9px) {
  footer {
    padding: 57px 0 10px 0;
  }
}
@media (max-width : 767.9px) {
  footer .container {
    padding-right: 0;
  }
}
footer .section_title {
  text-align: center;
  color: #FFF;
  font-family: microgrammad_boldexte;
  font-size: 52px;
  font-weight: 400;
  line-height: 150%; /* 78px */
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media (max-width : 767.9px) {
  footer .section_title {
    font-size: 29px;
    text-align: left;
    margin-bottom: 26px;
  }
}
footer .block .block_top .small_title {
  color: #A9A9A9;
  font-size: 12px;
}
@media (max-width : 767.9px) {
  footer .block .block_top .small_title {
    font-size: 5px;
  }
}
footer .block .block_top .title {
  color: #FFF;
  font-family: microgrammad_boldexte;
  font-size: 48px;
  line-height: 100%;
}
@media (max-width : 1200px) {
  footer .block .block_top .title {
    font-size: 25px;
  }
}
@media (max-width : 767.9px) {
  footer .block .block_top .title {
    font-size: 15px;
  }
}
footer .block .block_top .bottom {
  color: #ADADAD;
  font-size: 22px;
  line-height: 150%;
  width: 40%;
}
@media (max-width : 1200px) {
  footer .block .block_top .bottom {
    font-size: 12px;
  }
}
@media (max-width : 767.9px) {
  footer .block .block_top .bottom {
    width: 105px;
    font-size: 8px;
  }
}
footer .block .block_top .block_left, footer .block .block_top .block_right {
  padding: 90px 0 50px 0;
  border: 1px solid #979797;
  display: flex;
  flex-direction: column;
  gap: 160px 0;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width : 1200px) {
  footer .block .block_top .block_left, footer .block .block_top .block_right {
    gap: 80px 0;
  }
}
@media (max-width : 767.9px) {
  footer .block .block_top .block_left, footer .block .block_top .block_right {
    padding: 18px 0 26px 0;
    gap: 50px 0;
  }
}
footer .block .block_top .block_left .link_arrow, footer .block .block_top .block_right .link_arrow {
  position: absolute;
  right: 20px;
  top: 20px;
}
@media (max-width : 767.9px) {
  footer .block .block_top .block_left .link_arrow, footer .block .block_top .block_right .link_arrow {
    width: 6px;
    height: 6px;
    top: -7px;
    right: 7px;
  }
  footer .block .block_top .block_left .link_arrow img, footer .block .block_top .block_right .link_arrow img {
    width: 100%;
  }
}
footer .block .block_top .block_left {
  padding-left: 84px;
  height: 100%;
  border-right: none;
  background-image: url("../images/contacts_left_img.png");
  background-position: calc(100% - 35px) bottom;
  background-repeat: no-repeat;
  background-size: 445px 400px;
  background-color: #0D0D0D;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
  transition: 0.3s ease all;
}
footer .block .block_top .block_left:hover {
  background-size: 465px 420px;
  background-position: calc(100% - 25px) bottom;
}
@media (max-width : 767.9px) {
  footer .block .block_top .block_left {
    padding-left: 26px;
    clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
    background-position: calc(100% - 20px) bottom;
    background-size: 155px;
  }
}
footer .block .block_top .block_left::before {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #979797;
  position: absolute;
  top: 24px;
  left: -10px;
  transform: rotate(-45deg);
}
@media (max-width : 767.9px) {
  footer .block .block_top .block_left::before {
    width: 24px;
    top: 7px;
    left: -5px;
  }
}
footer .block .block_top .block_right {
  padding-left: 42px;
  height: 100%;
  background-image: url("../images/contacts_right_img.png");
  background-position: calc(100% - 35px) bottom;
  background-color: #606060;
  background-size: 455px 475px;
  transition: 0.3s ease all;
}
footer .block .block_top .block_right:hover {
  background-size: 475px 495px;
  background-position: calc(100% - 25px) bottom;
}
@media (max-width : 767.9px) {
  footer .block .block_top .block_right {
    border-top: none;
    border-bottom: none;
    background-size: 150px;
    background-position: calc(100% - 15px) bottom;
    padding-left: 14px;
  }
}
footer .block .block_top .row .col-md-6:nth-child(1) {
  padding-right: 0;
}
@media (max-width : 767.9px) {
  footer .block .block_top .row .col-md-6:nth-child(1) {
    padding-right: 12px;
  }
}
footer .block .block_top .row .col-md-6:nth-child(2) {
  padding-left: 0;
}
@media (max-width : 767.9px) {
  footer .block .block_top .row .col-md-6:nth-child(2) {
    padding-left: 12px;
  }
}
footer .block .block_bottom {
  padding: 40px 25px 55px 25px;
  border: 1px solid #979797;
  clip-path: polygon(100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0);
  position: relative;
}
@media (max-width : 767.9px) {
  footer .block .block_bottom {
    padding: 30px 0 10px 0;
    border: none;
  }
}
footer .block .block_bottom .footer_bottom_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .block .block_bottom .footer_bottom_block .left {
  display: flex;
  align-items: start;
}
@media (max-width : 767.9px) {
  footer .block .block_bottom .footer_bottom_block .left {
    margin-bottom: 45px;
  }
}
footer .block .block_bottom .footer_bottom_block .left img {
  margin-right: 33px;
}
@media (max-width : 767.9px) {
  footer .block .block_bottom .footer_bottom_block .left img {
    width: 120px;
  }
}
footer .block .block_bottom .footer_bottom_block .left .footer_text {
  width: 225px;
  color: #9E9E9E;
  font-family: RobotoMono, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width : 767.9px) {
  footer .block .block_bottom .footer_bottom_block .left .footer_text {
    font-size: 13px;
    width: 180px;
  }
}
footer .block .block_bottom .footer_bottom_block .footer_nav {
  display: flex;
  gap: 0 250px;
  width: 41%;
}
@media (max-width : 1400px) {
  footer .block .block_bottom .footer_bottom_block .footer_nav {
    gap: 0 110px;
  }
}
@media (max-width : 767.9px) {
  footer .block .block_bottom .footer_bottom_block .footer_nav {
    gap: 0 68px;
    margin-bottom: 50px;
  }
}
footer .block .block_bottom .footer_bottom_block .footer_nav .nav {
  list-style: none;
  flex-direction: column;
  gap: 20px 0;
}
footer .block .block_bottom .footer_bottom_block .footer_nav .nav a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}
@media (max-width : 767.9px) {
  footer .block .block_bottom .footer_bottom_block .footer_nav .nav {
    gap: 10px 0;
  }
  footer .block .block_bottom .footer_bottom_block .footer_nav .nav a {
    font-size: 18px;
  }
}
footer .block .block_bottom .footer_bottom_block .right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-right: 4%;
}
@media (max-width : 767.9px) {
  footer .block .block_bottom .footer_bottom_block .right {
    flex-direction: row;
    width: 100%;
    padding: 0 10px 0 0;
    margin-bottom: 40px;
  }
}
footer .block .block_bottom .footer_bottom_block .right .contact_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
footer .block .block_bottom .footer_bottom_block .right .contact_list:nth-child(1) {
  margin-bottom: 20px;
}
@media (max-width : 767.9px) {
  footer .block .block_bottom .footer_bottom_block .right .contact_list:nth-child(1) {
    margin-bottom: 0;
  }
}
footer .block .block_bottom .footer_bottom_block .right .contact_list li a {
  text-decoration: none;
  font-size: 30px;
  color: #fff;
}
@media (max-width : 767.9px) {
  footer .block .block_bottom .footer_bottom_block .right .contact_list li a {
    font-size: 16px;
  }
}
footer .block .block_bottom::before {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #979797;
  position: absolute;
  bottom: 23px;
  right: -10px;
  transform: rotate(-45deg);
}
@media (max-width : 767.9px) {
  footer .block .block_bottom::before {
    display: none;
  }
}
footer .block .block_bottom .row {
  width: 100% !important;
}
footer .block .agreement {
  text-decoration: none;
  color: #FFF;
  font-family: RobotoMono;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width : 767.9px) {
  footer .block .agreement {
    font-size: 10px;
  }
}

/*# sourceMappingURL=main.css.map */
