@charset "UTF-8";
/* Подключение Montserrat Arm */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "arm bebas neue";
  src: url("../../fonts/armbebas/armbebas.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  font-family: "montserrat arm", sans-serif;
  transition: 0.3s;
  box-sizing: border-box;
}
*:hover {
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #EFEFEF;
}

ul,
ol {
  list-style: none;
}

a {
  display: block;
  text-decoration: none;
}

img {
  display: block;
}

button,
input,
textarea,
select {
  display: block;
  outline: none;
  border: none;
  background: none;
}

button,
select {
  cursor: pointer;
}

textarea {
  resize: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.product {
  width: 100%;
  max-width: 244px;
  position: relative;
  background: #F9F5F5;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .product {
    max-width: 290px;
    min-width: 290px;
    background: transparent;
  }
}
.product__offer {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  z-index: 1020;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .product__offer {
    top: 15px;
    left: 20px;
  }
}
.product__pic {
  width: 100%;
  height: 186px;
  padding: 10px;
  background: #fff;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1010;
}
@media (max-width: 768px) {
  .product__pic {
    height: 280px;
    width: 290px;
    border-radius: 36px;
    overflow: hidden;
  }
}
.product__pic:hover .product__pic_img {
  transform: scale(1.1);
}
.product__pic_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.product__wishlist {
  position: absolute;
  top: 10px;
  right: 13px;
  width: 27px;
  height: 25px;
  z-index: 1030;
}
@media (max-width: 768px) {
  .product__wishlist {
    top: 16px;
    right: 32px;
    width: 35px;
    height: 32px;
  }
}
.product__wishlist_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.product__wishlist_icon.checked {
  opacity: 0;
}
.product__wishlist.active .product__wishlist_icon {
  opacity: 0;
}
.product__wishlist.active .product__wishlist_icon.checked {
  opacity: 1;
}
.product__desc {
  padding: 10px;
  height: 120px;
}
@media (max-width: 768px) {
  .product__desc {
    background: none;
    padding: 45px 25px 20px;
    height: 200px;
  }
}
.product__desc_time {
  display: none;
}
.product__desc_price {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product__desc_price_static {
  color: #000;
  opacity: 0.3;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 768px) {
  .product__desc_price_static {
    font-size: 24px;
    line-height: 30px;
  }
}
.product__desc_price_static::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-10deg);
}
.product__desc_price_static .currency {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}
.product__desc_price_new {
  color: #F62B02;
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .product__desc_price_new {
    font-size: 32px;
    line-height: 30px;
  }
}
.product__desc_price_new .currency {
  font-weight: 600;
  font-size: 16px;
  color: #F62B02;
}
.product__desc_name, .product__desc_txt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product__desc_name {
  margin: 5px 0 8px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .product__desc_name {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin: 8px 0;
  }
}
.product__desc_txt {
  font-size: 14px;
  color: #8F8F8F;
}
@media (max-width: 768px) {
  .product__desc_txt {
    font-size: 18px;
    line-height: 20px;
  }
}
.product__btn {
  background: #0080E5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px;
  border-radius: 2px;
  width: 100%;
  position: relative;
  z-index: 1030;
}
@media (max-width: 768px) {
  .product__btn {
    border-radius: 20px;
    border: 2px solid #FFFBFB;
    width: 77px;
    height: 73px;
    position: absolute;
    top: 226px;
    right: 10px;
  }
}
.product__btn:hover {
  background: #005fa8;
}
.product__btn_icon {
  width: 20px;
}
@media (max-width: 768px) {
  .product__btn_icon {
    width: 31px;
  }
}
.product__btn_txt {
  color: #fff;
  font-weight: 400;
}
@media (max-width: 768px) {
  .product__btn_txt {
    display: none;
  }
}

.seeMore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  width: 240px;
  padding: 14px;
  font-size: 14px;
  color: #0B2543;
  border: 0.86px solid #0B2543;
}
@media (max-width: 768px) {
  .seeMore {
    width: 100vw;
    max-width: 540px;
    padding: 22px;
  }
}
.seeMore:hover {
  border-color: #F62B02;
}

.footer a:hover {
  color: #F62B02;
}
.footer__lang {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__lang_btn {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__lang_btn:hover .footer__lang_btn_globus {
  transform: scale(1.2);
}
.footer__lang_btn_txt {
  font-size: 16px;
  font-weight: 400;
  color: #7F7F7F;
}
.footer__lang_btn_globus {
  width: 20px;
  height: 20px;
}
.footer__lang_btns {
  display: flex;
  max-width: 0px;
  overflow: hidden;
}
.footer__lang_btns_btn {
  font-size: 16px;
  font-weight: 400;
  color: #7F7F7F;
  white-space: nowrap;
  padding: 12px;
}
.footer__lang_btns_btn:hover {
  color: #fff;
}
.footer__container.gray {
  background: #151515;
  position: relative;
  padding: 36px 0;
}
@media (max-width: 768px) {
  .footer__container.gray {
    padding: 0 0 60px;
  }
}
.footer__container.gray::before {
  content: "";
  display: block;
  width: 50%;
  height: 7px;
  background: #F62B02;
  position: absolute;
  top: -7px;
  left: 0;
}
@media (max-width: 768px) {
  .footer__container.gray::before {
    display: none;
  }
}
.footer__container.gray::after {
  content: "";
  display: block;
  width: 50%;
  height: 7px;
  position: absolute;
  top: -7px;
  left: 50%;
  background: #0080E5;
}
@media (max-width: 768px) {
  .footer__container.gray::after {
    display: none;
  }
}
.footer__container.black {
  background: #000;
}
.footer__wrapper {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .footer__wrapper {
    padding: 0 26px;
  }
}
.footer__menu {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 768px) {
  .footer__menu {
    flex-direction: column;
    gap: 0px;
  }
}
@media (max-width: 768px) {
  .footer__menu_el {
    width: 100%;
  }
  .footer__menu_el:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
  }
}
.footer__menu_el_title {
  height: 40px;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 170px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer__menu_el_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    max-width: 100%;
    padding: 35px 0;
    width: 100%;
    height: auto;
  }
}
.footer__menu_el_title img {
  display: none;
}
@media (max-width: 768px) {
  .footer__menu_el_title img {
    display: block;
  }
}
.footer__menu_el_title.active img {
  transform: rotate(180deg);
}
.footer__menu_el_list {
  display: grid;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__menu_el_list {
    gap: 0;
    overflow: hidden;
    max-height: 0px;
    margin-top: -10px;
  }
  .footer__menu_el_list li:last-child {
    display: block;
    padding-bottom: 20px;
  }
}
.footer__menu_el_list_link {
  font-size: 15px;
  line-height: 1.5;
  display: block;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
.footer__bankList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  gap: 15px;
}
@media (max-width: 768px) {
  .footer__bankList {
    display: grid;
    grid-template-columns: repeat(3, auto);
  }
}
.footer__bankList_link {
  display: block;
  padding: 28px 0;
}
@media (max-width: 768px) {
  .footer__bankList_link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
  }
}
.footer__bankList_link:hover img {
  transform: scale(1.2);
}
.footer__content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 34px 0 20px;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
  }
  .footer__content.bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 65px 0px 50px 14px;
    gap: 50px;
  }
}
.footer__desc {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 490px;
}
@media (max-width: 768px) {
  .footer__desc {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .footer__desc.big {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .footer__desc.big .footer__desc_txt {
    font-size: 16px;
  }
}
.footer__desc_title {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer__desc_title {
    font-size: 27px;
  }
}
.footer__desc_txt {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5019607843);
}
@media (max-width: 768px) {
  .footer__desc_txt {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .footer__desc_social {
    padding-top: 34px;
  }
}
.footer__desc_social_list {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .footer__desc_social_list {
    gap: 25px;
  }
}
.footer__desc_social_link, .footer__desc_social_txt {
  font-weight: 400;
  font-size: 14px;
  color: #D9D9D9;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .footer__desc_social_link, .footer__desc_social_txt {
    font-size: 19px;
    margin-bottom: 9px;
  }
}
@media (max-width: 768px) {
  .footer__desc_social_link_icon, .footer__desc_social_txt_icon {
    width: 28px;
    height: 28px;
  }
}
.footer__desc_social_link.bold, .footer__desc_social_txt.bold {
  font-weight: 500;
}
.footer__pic {
  width: 144px;
}
@media (max-width: 768px) {
  .footer__pic {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100%;
  }
  .footer__pic img {
    width: 100%;
  }
}
.footer__pic_txt {
  text-align: center;
  font-size: 10px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .footer__pic_txt {
    font-size: 16px;
    margin-top: 10px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #efefef;
  box-shadow: 0px 1px 8.7px 0px rgba(0, 0, 0, 0.2);
  z-index: 1090;
}
@media (max-width: 768px) {
  .navbar__container {
    display: none;
  }
}
.navbar__container.black {
  background: #000;
  padding: 6px 0;
}
.navbar__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  padding: 0 15px;
  margin: 0 auto;
}
.navbar__wrapper.bottom {
  padding: 13px 15px;
}
.navbar__contacts {
  display: flex;
  gap: 30px;
}
.navbar__contacts_el {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__contacts_el_icon {
  width: 15px;
  height: auto;
}
.navbar__contacts_el_link {
  color: #7C7C7C;
  font-size: 13px;
  font-weight: 500;
}
.navbar__contacts_el_link:hover {
  color: #F73004;
}
.navbar__burger #burger {
  width: 100%;
  background: rgba(0, 0, 0, 0.5647058824);
  position: absolute;
  top: 0;
  z-index: 1100;
  left: -100%;
  transition: 0.3s;
  opacity: 0;
}
.navbar__burger #burger.active {
  left: 0;
  opacity: 1;
}
.navbar__burger #burger .burger {
  display: flex;
  width: 100%;
  height: 100%;
}
.navbar__burger #burger .burger__menu {
  position: relative;
  z-index: 1200;
}
.navbar__burger #burger .burger__menu, .navbar__burger #burger .burger__submenu {
  background: #fff;
  width: 330px;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.navbar__burger #burger .burger__menu::-webkit-scrollbar, .navbar__burger #burger .burger__submenu::-webkit-scrollbar {
  background: #fff;
  width: 9px;
  border-radius: 20px;
}
.navbar__burger #burger .burger__menu::-webkit-scrollbar-thumb, .navbar__burger #burger .burger__submenu::-webkit-scrollbar-thumb {
  background: #AAAAAA;
  width: 9px;
  border-radius: 20px;
}
.navbar__burger #burger .burger__menu_list, .navbar__burger #burger .burger__submenu_list {
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 13px;
}
.navbar__burger #burger .burger__menu_list_link, .navbar__burger #burger .burger__submenu_list_link {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 13px;
}
.navbar__burger #burger .burger__menu_list_link_txt, .navbar__burger #burger .burger__submenu_list_link_txt {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-left: 24px;
}
.navbar__burger #burger .burger__menu_list_link_arr, .navbar__burger #burger .burger__submenu_list_link_arr {
  display: block;
  margin-left: auto;
  opacity: 0;
}
.navbar__burger #burger .burger__menu_list_link:hover, .navbar__burger #burger .burger__menu_list_link.active, .navbar__burger #burger .burger__submenu_list_link:hover, .navbar__burger #burger .burger__submenu_list_link.active {
  background: #E8E4E4;
}
.navbar__burger #burger .burger__menu_list_link.active .burger__menu_list_link_arr, .navbar__burger #burger .burger__menu_list_link:hover .burger__menu_list_link_arr, .navbar__burger #burger .burger__submenu_list_link.active .burger__menu_list_link_arr, .navbar__burger #burger .burger__submenu_list_link:hover .burger__menu_list_link_arr {
  opacity: 1;
}
.navbar__burger #burger .burger__submenu {
  position: absolute;
  left: -100%;
  transition: 0.5s;
  z-index: 1100;
  padding: 20px 13px;
  height: -moz-fit-content;
  height: fit-content;
}
.navbar__burger #burger .burger__submenu_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 0 13px;
}
.navbar__burger #burger .burger__submenu_list {
  padding: 0;
}
.navbar__burger #burger .burger__submenu_list_link {
  padding: 13px;
}
.navbar__burger #burger .burger__submenu.active {
  left: 330px;
}
.navbar__burger #burger .burger__submenu:hover {
  left: 330px;
}
.navbar__lang {
  position: relative;
}
@media (max-width: 768px) {
  .navbar__lang {
    border-radius: 6px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.navbar__lang_title {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .navbar__lang_title {
    font-size: 22px;
  }
}
.navbar__lang_list_link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px 6px 3px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .navbar__lang_list_link {
    padding: 8px 0;
  }
}
.navbar__lang_list_link:hover {
  background: #E8E4E4;
}
.navbar__lang_list_link_checked {
  margin-left: auto;
  display: none;
}
.navbar__lang_list_link_checked.active {
  display: block;
}
.navbar__lang_list_link_flag {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .navbar__lang_list_link_flag {
    width: 32px;
    height: 32px;
  }
}
.navbar__lang_list_link_txten {
  color: #7C7C7C;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .navbar__lang_list_link_txten {
    font-size: 22px;
  }
}
.navbar__lang_list_link_txt {
  font-size: 15px;
  font-weight: 400;
  color: #161616;
}
.navbar__lang_btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 6px;
  border-radius: 6px;
  gap: 6px;
}
@media (max-width: 768px) {
  .navbar__lang_btn {
    background: none;
    padding: 12px;
  }
}
@media (min-width: 768px) {
  .navbar__lang_btn:hover {
    background: #fff;
  }
  .navbar__lang_btn:hover .navbar__lang_btn_txt {
    color: #000;
  }
}
.navbar__lang_btn_flag {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .navbar__lang_btn_flag {
    width: 32px;
    height: 32px;
  }
}
.navbar__lang_btn_txt {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .navbar__lang_btn_txt {
    display: none;
  }
}
.navbar__lang_wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
  top: 35px;
  right: 0;
  width: 280px;
  z-index: 102000;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.4392156863);
}
@media (max-width: 768px) {
  .navbar__lang_wrapper {
    padding: 12px;
    top: 70px;
  }
}
.navbar__lang_wrapper.active {
  visibility: visible;
  opacity: 1;
}
.navbar__search {
  width: 100%;
  max-width: 940px;
  position: relative;
}
@media (max-width: 1296px) {
  .navbar__search {
    max-width: 680px;
  }
}
.navbar__search_photo, .navbar__search_loop {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
.navbar__search_photo input, .navbar__search_loop input {
  display: none;
}
.navbar__search_photo:hover .navbar__search_photo_icon, .navbar__search_photo:hover .navbar__search_loop_icon, .navbar__search_loop:hover .navbar__search_photo_icon, .navbar__search_loop:hover .navbar__search_loop_icon {
  transform: scale(1.1);
}
.navbar__search_photo {
  right: 19px;
}
.navbar__search_loop {
  right: 64px;
}
.navbar__search_inp {
  background: #fff;
  width: 100%;
  border-radius: 15px;
  padding: 21px 57px;
  font-size: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 1296px) {
  .navbar__search_inp {
    font-size: 16px;
  }
}
.navbar__search_inp::-moz-placeholder {
  font-size: 18px;
}
.navbar__search_inp::placeholder {
  font-size: 18px;
}
@media (max-width: 1296px) {
  .navbar__search_inp::-moz-placeholder {
    font-size: 16px;
  }
  .navbar__search_inp::placeholder {
    font-size: 16px;
  }
}
.navbar__controls {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}
@media (max-width: 1296px) {
  .navbar__controls {
    gap: 30px;
  }
}
.navbar__controls_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.navbar__controls_btn:hover .navbar__controls_btn_icon {
  transform: scale(1.2);
}
.navbar__controls_btn:hover .navbar__controls_btn_txt {
  color: #F73004;
}
.navbar__controls_btn_txt {
  font-size: 14px;
}
.navbar__controls_btn_icon {
  height: 24px;
}
.navbar__logo_img {
  width: 132px;
}
@media (max-width: 1296px) {
  .navbar__logo_img {
    width: 100px;
  }
}

.navbarMobile {
  display: none;
}
@media (max-width: 768px) {
  .navbarMobile {
    display: block;
  }
  .navbarMobile__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    box-shadow: 0px 1px 8.7px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1200;
  }
  .navbarMobile__btns {
    display: flex;
    gap: 20px;
  }
  .navbarMobile__btns > * {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }
  .navbarMobile__btns_phone {
    background: #0080E5;
  }
  .navbarMobile__btns_phone_icon {
    width: 26px;
  }
  .navbarMobile__btns_sign, .navbarMobile__btns_basket {
    background: #E4E3E3;
    border: 1px solid #fff;
  }
  .navbarMobile__btns_sign_icon, .navbarMobile__btns_basket_icon {
    height: 28px;
  }
  .navbarMobile__btns_burger_icon {
    display: block;
    width: 61px;
    height: 64px;
  }
  .navbarMobile__btns_burger_icon.active {
    display: none;
  }
  .navbarMobile__btns_burger.active .navbarMobile__btns_burger_icon {
    display: none;
  }
  .navbarMobile__btns_burger.active .navbarMobile__btns_burger_icon.active {
    display: block;
  }
  .navbarMobile .mobileBurger {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 1190;
    background: #EFEFEF;
    width: 100%;
  }
  .navbarMobile .mobileBurger.active {
    left: 0;
  }
  .navbarMobile .mobileBurger__search {
    padding: 20px 26px;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .navbarMobile .mobileBurger__search form {
    width: 100%;
  }
  .navbarMobile .mobileBurger__search_lab {
    position: relative;
    width: 100%;
  }
  .navbarMobile .mobileBurger__search_lab_inp {
    width: 100%;
    border-radius: 15px;
    background: #FFFFFF;
    padding: 27px 25px;
    font-size: 18px;
    font-weight: 400;
    color: #000;
  }
  .navbarMobile .mobileBurger__search_lab_inp::-moz-placeholder {
    font-size: 18px;
    font-weight: 400;
    color: rgba(124, 124, 124, 0.6980392157);
  }
  .navbarMobile .mobileBurger__search_lab_inp::placeholder {
    font-size: 18px;
    font-weight: 400;
    color: rgba(124, 124, 124, 0.6980392157);
  }
  .navbarMobile .mobileBurger__search_lab_btn {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translate(0, -50%);
  }
  .navbarMobile .mobileBurger__search_lab_btn_icon {
    width: 30px;
  }
  .navbarMobile .mobileBurger__search_lab_photo {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    cursor: pointer;
  }
  .navbarMobile .mobileBurger__search_lab_photo_icon {
    width: 40px;
  }
  .navbarMobile .mobileBurger__search_lab_photo_inp {
    display: none;
  }
  .navbarMobile .mobileBurger__container {
    padding: 0 26px 26px;
    position: relative;
  }
  .navbarMobile .mobileBurger__container::before {
    content: "";
    right: 26px;
    background: #0080E5;
  }
  .navbarMobile .mobileBurger__container::after {
    content: "";
    left: 26px;
    background: #F62B02;
  }
  .navbarMobile .mobileBurger__container::after, .navbarMobile .mobileBurger__container::before {
    display: block;
    width: calc(50% - 26px);
    height: 7px;
    position: absolute;
    bottom: 23px;
  }
  .navbarMobile .mobileBurger__wrapper {
    background: #fff;
    height: 100%;
    padding-right: 4px;
    padding-top: 4px;
  }
  .navbarMobile .mobileBurger__footer {
    display: grid;
    gap: 35px;
    padding: 30px 40px;
  }
  .navbarMobile .mobileBurger__footer_link {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
  .navbarMobile .mobileBurger__footer_link_icon {
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navbarMobile .mobileBurger__footer_link_txt {
    font-size: 25px;
    font-weight: 400;
    color: #0B2543;
  }
  .navbarMobile .mobileBurger__menu {
    position: relative;
    height: 67%;
    max-height: 67%;
    overflow-y: auto;
    padding: 0px 25px 0 13px;
  }
  .navbarMobile .mobileBurger__menu::-webkit-scrollbar {
    width: 9px;
    background: transparent;
    border-radius: 20px;
  }
  .navbarMobile .mobileBurger__menu::-webkit-scrollbar-thumb {
    width: 9px;
    background: #AAAAAA;
    border-radius: 20px;
  }
  .navbarMobile .mobileBurger__menu_btns_btn {
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 2px 0;
    padding: 15px 20px;
    background: #E8E4E4;
    border-radius: 13px;
    width: 100%;
  }
  .navbarMobile .mobileBurger__menu_btns_btn_icon {
    width: 38px;
  }
  .navbarMobile .mobileBurger__menu_btns_btn_arr {
    margin-left: auto;
    width: 14px;
  }
  .navbarMobile .mobileBurger__menu_btns_btn_txt {
    font-size: 28px;
    font-weight: 400;
    color: #0B2543;
  }
  .navbarMobile .mobileBurger__menu_list {
    position: absolute;
    background: #fff;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 14px 25px;
    left: -100%;
  }
  .navbarMobile .mobileBurger__menu_list.active {
    left: 0;
  }
  .navbarMobile .mobileBurger__menu_list_title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px;
    max-width: 90%;
    color: #0B2543;
  }
  .navbarMobile .mobileBurger__menu_list .mobileBurgerMenu {
    height: 86%;
    max-height: 86%;
    overflow-y: auto;
    padding: 5px 25px 0 13px;
  }
  .navbarMobile .mobileBurger__menu_list .mobileBurgerMenu::-webkit-scrollbar {
    width: 9px;
    background: transparent;
    border-radius: 20px;
  }
  .navbarMobile .mobileBurger__menu_list .mobileBurgerMenu::-webkit-scrollbar-thumb {
    width: 9px;
    background: #AAAAAA;
    border-radius: 20px;
  }
  .navbarMobile .mobileBurger__menu_list .mobileBurgerMenu__list_link {
    padding: 10px 0;
    font-size: 24px;
    font-weight: 400;
    color: #0B2543;
  }
  .navbarMobile .mobileBurger__menu_list_closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .navbarMobile .mobileBurger__menu_list_closeBtn_icon {
    width: 24px;
  }
  .navbarMobile .mobileBurger__scroll {
    height: 100%;
  }
}

.crumbs {
  padding: 24px 26px;
}
@media (max-width: 768px) {
  .crumbs {
    max-width: 590px;
    overflow-y: auto;
  }
  .crumbs::-webkit-scrollbar {
    display: none;
  }
}
.crumbs__list {
  display: flex;
  gap: 25px;
}
.crumbs__list_link {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 22px;
  color: #747474;
  white-space: nowrap;
}

.productsSlider {
  padding: 73px 0 52px;
}
@media (max-width: 768px) {
  .productsSlider {
    padding-top: 0px;
  }
}
.productsSlider__container {
  width: 100%;
  max-width: 1790px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .productsSlider__container {
    padding: 0;
  }
}
.productsSlider__wrapper {
  padding: 0 80px;
  position: relative;
}
@media (max-width: 768px) {
  .productsSlider__wrapper {
    padding: 120px 4px 0;
  }
}
.productsSlider__btns {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .productsSlider__btns {
    top: 65px;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 26px;
  }
}
.productsSlider__btns_btn {
  width: 43px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.74px solid rgba(0, 0, 0, 0.3019607843);
}
@media (max-width: 768px) {
  .productsSlider__btns_btn {
    width: 58px;
    height: 48px;
  }
}
.productsSlider__btns_btn:hover {
  border-color: #F73004;
}
.productsSlider__btns_btn.next .productsSlider__btns_btn_icon {
  transform: rotate(180deg);
}
.productsSlider__title {
  padding-left: 80px;
  margin-bottom: 84px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .productsSlider__title {
    display: none;
  }
}

.select {
  margin-bottom: 16px;
  position: relative;
}
.select__btn {
  width: 100%;
  display: flex;
  align-items: center;
  background: #F3F3F3;
  border: 1px solid rgba(0, 0, 0, 0.2509803922);
  justify-content: space-between;
  padding: 17px 20px;
}
.select__btn::before {
  content: "";
  display: block;
  width: 1px;
  height: 17px;
  border-right: 1px solid rgba(0, 0, 0, 0.5019607843);
  position: absolute;
  top: 18px;
  right: 50px;
}
.select__btn:hover, .select__btn.active {
  border-color: #F73004;
}
.select__options {
  background: #E8E4E4;
  position: absolute;
  width: 100%;
  top: 55px;
  z-index: 1089;
  max-height: 0px;
  overflow: hidden;
}
.select__options.active {
  border: 0.5px solid #F62B02;
}
.select__options_wrapper {
  max-height: 390px;
  overflow-y: auto;
  background: #fff;
}
.select__options_wrapper::-webkit-scrollbar {
  background: #E8E4E4;
  width: 19px;
}
.select__options_wrapper::-webkit-scrollbar-thumb {
  background: #AAAAAA;
  border-radius: 12px;
  border: 5px solid transparent;
  background-clip: padding-box;
}
.select__options_wrapper::before {
  content: "";
  position: absolute;
  top: 48px;
  border-radius: 2px;
  right: 3.5px;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #AAAAAA transparent;
  pointer-events: none;
  z-index: 1;
}
.select__options_title {
  font-weight: 600;
  padding: 21px 31px;
}
.select__options_el {
  border: 0.82px solid rgba(195, 195, 195, 0.5019607843);
  width: 100%;
  padding: 20px 31px;
  background: #fff;
  text-align: left;
}
.select__options_el:hover {
  background: #F73004;
  color: #fff;
}

.contactUs__container {
  width: 100%;
  max-width: 1622px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .contactUs__container {
    padding: 0 26px 30px;
  }
}
.contactUs__title {
  font-weight: 500;
  margin-bottom: 32px;
  color: #0B2543;
}
.contactUs__wrapper {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px 48px;
  background: #E8E4E4;
  border: 1px solid rgba(114, 114, 114, 0.2);
  padding: 66px 122px;
  border-radius: 20px;
}
@media (max-width: 1296px) {
  .contactUs__wrapper {
    padding: 60px;
  }
}
@media (max-width: 768px) {
  .contactUs__wrapper {
    flex-direction: column;
    padding: 22px 25px 50px;
    border-radius: 0;
    gap: 0px;
  }
}
.contactUs__el {
  width: 100%;
  max-width: 540px;
}
.contactUs__el input,
.contactUs__el textarea {
  margin-bottom: 20px;
  background: #EFEFEF;
  padding: 22px 43px;
  border: 0.96px solid #C7C7C7;
  width: 100%;
  border-radius: 5px;
  color: #000;
}
@media (max-width: 768px) {
  .contactUs__el input,
  .contactUs__el textarea {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
.contactUs__el input::-moz-placeholder, .contactUs__el textarea::-moz-placeholder {
  color: #A5A7A8;
}
.contactUs__el input::placeholder,
.contactUs__el textarea::placeholder {
  color: #A5A7A8;
}
.contactUs__el textarea {
  height: 184px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contactUs__el textarea {
    margin-bottom: 10px;
    height: 234px;
  }
}
.contactUs__agree {
  display: flex;
  margin-bottom: 27px;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}
.contactUs__agree_inp {
  display: none;
}
.contactUs__agree_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  border: 2px solid #0080E5;
  border-radius: 3px;
}
.contactUs__agree_checkbox img {
  width: 15px;
  opacity: 0;
}
.contactUs__agree_inp:checked + .contactUs__agree_checkbox img {
  opacity: 1;
}
.contactUs__agree_txt {
  font-size: 11px;
  color: #484848;
  font-weight: 600;
}
.contactUs__txt {
  font-weight: 400;
  color: #484848;
  font-size: 15px;
  max-width: 460px;
}
.contactUs .file {
  width: 100%;
  max-width: 756px;
}
.contactUs__footer {
  width: 100%;
}
@media (max-width: 768px) {
  .contactUs__footer {
    margin-top: 30px;
  }
}
.contactUs__file {
  width: 100%;
}
.contactUs__file_inner {
  width: 100%;
  background: #efefef;
  border: 0.96px solid #C7C7C7;
  min-height: 350px;
  border-radius: 5px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-height: 350px;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 768px) {
  .contactUs__file_inner {
    height: 104px;
    min-height: -moz-fit-content;
    min-height: fit-content;
    grid-template-columns: repeat(2, 1fr);
  }
}
.contactUs__file_inner_decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contactUs__file_inner_decor.inactive {
  opacity: 0;
}
.contactUs__file_inner::-webkit-scrollbar {
  background: #E8E4E4;
  width: 9px;
}
.contactUs__file_inner::-webkit-scrollbar-thumb {
  background: #AAAAAA;
  border-radius: 12px;
  border: 5px solid transparent;
  background-clip: padding-box;
}
.contactUs__file_inner .attachedWrapper {
  position: relative;
  width: 165px;
  height: 120px;
  border: 1px solid #C7C7C7;
}
.contactUs__file_inner .attachedWrapper__btn {
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
  z-index: 1020;
}
.contactUs__file_inner .attachedWrapper__btn_icon {
  width: 20px;
  height: 20px;
}
.contactUs__file_inner .attachedImage {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contactUs__file_lab {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  cursor: pointer;
}
.contactUs__file_lab_icon {
  width: 19px;
}
.contactUs__file_lab_icon.hover {
  opacity: 0;
  margin-left: -32px;
}
.contactUs__file_lab_txt {
  font-size: 13px;
  color: #0080E5;
}
.contactUs__file_lab_inp {
  display: none;
}
.contactUs__file_lab:hover .contactUs__file_lab_icon {
  opacity: 0;
}
.contactUs__file_lab:hover .contactUs__file_lab_icon.hover {
  opacity: 1;
}
.contactUs__file_lab:hover .contactUs__file_lab_txt {
  color: #F62B02;
}
.contactUs__submit {
  margin: -60px 0 0 auto;
  width: 290px;
  text-align: center;
  font-weight: 500;
  border-radius: 5px;
  padding: 22px;
  background: #0080E5;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 768px) {
  .contactUs__submit {
    margin-top: 40px;
    width: 100%;
  }
}
.contactUs__submit:hover {
  background: #005fa8;
}

.header {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 174px 15px 0;
}
.header .crumbs {
  padding: 24px 0;
}
@media (max-width: 768px) {
  .header {
    padding: 94px 26px 0;
  }
}

.container {
  display: grid;
  grid-template-columns: 54fr 112fr;
  gap: 35px;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 4px;
  }
}

.contactUs {
  padding: 34px 0 0;
}
.contactUs__title {
  font-size: 15px;
  margin-bottom: 19px;
}
.contactUs__wrapper {
  padding: 20px 28px;
  border-radius: 0;
}
.contactUs input,
.contactUs textarea {
  margin-bottom: 6px;
  font-size: 15px;
}
.contactUs input::-moz-placeholder, .contactUs textarea::-moz-placeholder {
  font-size: 15px;
}
.contactUs input::placeholder,
.contactUs textarea::placeholder {
  font-size: 15px;
}
.contactUs__file_inner {
  min-height: 100px;
  grid-template-columns: repeat(2, 1fr);
}
.contactUs__submit {
  margin: 30px auto 0;
}
.contactUs__agree {
  margin: 20px 0;
}

.seeMore {
  margin-top: 46px;
}

.filterToggleBtn {
  display: none;
}
@media (max-width: 768px) {
  .filterToggleBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 1040;
    background: #F62B02;
    width: 77px;
    height: 73px;
    border-radius: 19px;
    border: 2px solid #FFFFFF;
  }
}

.aside .filter {
  background: #E8E4E4;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .aside .filter {
    height: auto !important;
    min-height: 0 !important;
    padding: 22px 22px 33px !important;
  }
}
@media (max-width: 768px) {
  .aside .filter {
    position: fixed;
    left: 0;
    z-index: 1100;
    width: 590px;
    padding: 26px !important;
    max-height: 100vh;
    bottom: -100%;
  }
  .aside .filter.active {
    bottom: 0%;
  }
}
.aside .filter__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 24px;
}
.aside .filter__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}
.aside .filter__form .select.gc-2 {
  grid-column: 1/3;
}
@media (max-width: 768px) {
  .aside .filter__wrapper {
    height: 100vh;
    max-height: 100vh;
    padding-right: 10px;
    overflow-y: auto;
  }
  .aside .filter__wrapper::-webkit-scrollbar {
    width: 9px;
    background: none;
    border-radius: 20px;
  }
  .aside .filter__wrapper::-webkit-scrollbar-thumb {
    width: 9px;
    border-radius: 20px;
    background: #8E8E8E;
  }
  .aside .filter__wrapper::before {
    border-width: 0 6px 6px 6px !important;
  }
}
.aside .filter__footer {
  display: flex;
  gap: 17px;
}
@media (max-width: 768px) {
  .aside .filter__footer {
    position: absolute;
    bottom: 26px;
    left: 26px;
    width: calc(100% - 44px);
  }
}
.aside .filter__footer_submit {
  padding: 12px;
  background: #1E1E1E;
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  width: 100%;
}
.aside .filter__footer_clear {
  display: none;
  width: 62px;
  padding: 18px 22px;
  background: #9E9E9E;
}
@media (max-width: 768px) {
  .aside .filter__footer_clear {
    display: block;
  }
}
.aside .filter__footer_clear:hover {
  background: #1E1E1E;
}

.categorie__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 23px;
}
.categorie__header_links {
  display: flex;
  gap: 22px;
}
@media (max-width: 768px) {
  .categorie__header_links {
    padding: 0 22px;
  }
}
.categorie__header_links_link {
  padding: 15px 40px;
  border-radius: 5px;
  background: #E9E9E9;
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
}
.categorie__header_links_link:hover, .categorie__header_links_link.active {
  color: #fff;
  background: #F62B02;
}
.categorie__header_btns {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .categorie__header_btns {
    display: none;
  }
}
.categorie__header_btns_btn {
  padding: 8px;
  background: transparent;
}
.categorie__header_btns_btn.active, .categorie__header_btns_btn:hover {
  background: #0080E5;
}
.categorie__header_btns_btn_icon {
  display: block;
}
.categorie__header_btns_btn_icon.active {
  display: none;
}
.categorie__header_btns_btn.active .categorie__header_btns_btn_icon, .categorie__header_btns_btn:hover .categorie__header_btns_btn_icon {
  display: none;
}
.categorie__header_btns_btn.active .categorie__header_btns_btn_icon.active, .categorie__header_btns_btn:hover .categorie__header_btns_btn_icon.active {
  display: block;
}
.categorie__wrapper {
  display: grid;
}
@media (min-width: 768px) {
  .categorie__wrapper.small {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 60px 40px;
  }
  .categorie__wrapper.medium {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
  .categorie__wrapper.big {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
@media (max-width: 768px) {
  .categorie__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 4px !important;
  }
}

.productsSlider {
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .productsSlider {
    max-width: 590px;
    overflow: hidden;
    padding-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .productsSlider__title {
    display: block;
    margin-bottom: 0;
    padding-left: 26px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .productsSlider__wrapper {
    padding-top: 30px;
    margin-left: 26px;
    min-width: 590px;
  }
}
@media (max-width: 768px) {
  .productsSlider__btns {
    display: none;
  }
}

@media (min-width: 768px) {
  .product.medium, .product.big {
    display: flex;
    max-width: 100%;
  }
  .product.medium .product__pic, .product.big .product__pic {
    max-width: 260px;
    min-width: 260px;
    height: 230px;
  }
  .product.medium .product__wrapper, .product.big .product__wrapper {
    padding: 23px 15px 19px 23px;
  }
  .product.medium .product__desc, .product.big .product__desc {
    padding: 0;
    height: auto;
    margin-bottom: 23px;
  }
  .product.medium .product__desc_time, .product.big .product__desc_time {
    display: block;
    color: #8E8E8E;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 7px;
  }
  .product.big {
    background: #E9E9E9;
    border-radius: 5px;
  }
  .product.big .product__wrapper {
    width: 100%;
    padding: 8px 16px 8px 40px;
    position: relative;
  }
  .product.big .product__pic {
    width: 245px;
    min-width: 245px;
    height: 196px;
  }
  .product.big .product__desc {
    margin: 0;
  }
  .product.big .product__desc_name {
    font-size: 27px;
    max-width: 400px;
    margin: 17px 0 12px;
  }
  .product.big .product__desc_txt {
    font-size: 22px;
  }
  .product.big .product__desc_price {
    position: absolute;
    top: 40%;
    right: 15px;
  }
  .product.big .product__desc_price_new {
    font-size: 42px;
  }
  .product.big .product__desc_price_new .currency {
    font-size: 24px;
  }
  .product.big .product__desc_price_static {
    font-size: 32px;
  }
  .product.big .product__desc_price_static .currency {
    font-size: 24px;
  }
  .product.big .product__btn {
    width: 245px;
    position: absolute;
    bottom: 15px;
    right: 15px;
  }
}/*# sourceMappingURL=categories.css.map */