@font-face {
  font-family: "Handelson-ThreeCYR";
  font-display: swap;
  src: url("../fonts/Handelson-ThreeCYR.woff") format("woff"), url("../fonts/Handelson-ThreeCYR.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  font-display: swap;
  src: url("../fonts/Lato-Regular.woff") format("woff"), url("../fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Averta Cyrillic";
  font-display: swap;
  src: url("../fonts/Averta_Cyrillic_Black.woff") format("woff"), url("../fonts/Averta_Cyrillic_Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Averta Cyrillic";
  font-display: swap;
  src: url("../fonts/Averta_Cyrillic_ExtraBold.woff") format("woff"), url("../fonts/Averta_Cyrillic_ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Averta Cyrillic";
  font-display: swap;
  src: url("../fonts/Averta_Cyrillic_SemiBold.woff") format("woff"), url("../fonts/Averta_Cyrillic_SemiBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Averta Cyrillic";
  font-display: swap;
  src: url("../fonts/Averta_Cyrillic_Bold.woff") format("woff"), url("../fonts/Averta_Cyrillic_Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Averta Cyrillic";
  font-display: swap;
  src: url("../fonts/Averta_Cyrillic_Regular.woff") format("woff"), url("../fonts/Averta_Cyrillic_Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Averta Cyrillic";
  font-display: swap;
  src: url("../fonts/Averta_Cyrillic_Light.woff") format("woff"), url("../fonts/Averta_Cyrillic_Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
/*--------------------------------

Nucleo Web Font
Generated using nucleoapp.com

-------------------------------- */
@font-face {
  font-family: 'Nucleo';
  src: url('../fonts/Nucleo.eot');
  src: url('../fonts/Nucleo.eot') format('embedded-opentype'), url('../fonts/Nucleo.woff2') format('woff2'), url('../fonts/Nucleo.woff') format('woff'), url('../fonts/Nucleo.ttf') format('truetype'), url('../fonts/Nucleo.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*------------------------
	base class definition
-------------------------*/
.icon {
  display: inline-block;
  font: normal normal normal 1em/1 'Nucleo';
  speak: none;
  text-transform: none;
  /* Better Font Rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*------------------------
  change icon size
-------------------------*/
/* relative units */
.icon-sm {
  font-size: 0.8em;
}
.icon-lg {
  font-size: 1.2em;
}
/* absolute units */
.icon-16 {
  font-size: 16px;
}
.icon-32 {
  font-size: 32px;
}
/*----------------------------------
  add a square/circle background
-----------------------------------*/
.icon-bg-square,
.icon-bg-circle {
  padding: 0.35em;
  background-color: #eee;
}
.icon-bg-circle {
  border-radius: 50%;
}
/*------------------------------------
  use icons as list item markers
-------------------------------------*/
.icon-ul {
  padding-left: 0;
  list-style-type: none;
}
.icon-ul > li {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}
.icon-ul > li > .icon {
  margin-right: 0.4em;
  line-height: inherit;
}
/*------------------------
  spinning icons
-------------------------*/
.icon-is-spinning {
  -webkit-animation: icon-spin 2s infinite linear;
  -moz-animation: icon-spin 2s infinite linear;
  animation: icon-spin 2s infinite linear;
}
@-webkit-keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes icon-spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*------------------------
  rotated/flipped icons
-------------------------*/
.icon-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.icon-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.icon-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.icon-flip-y {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.icon-flip-x {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
/*------------------------
	icons
-------------------------*/

.icon-sanding::before {
  content: "\ea02";
}

.icon-sharpen::before {
  content: "\ea03";
}

.icon-equipment::before {
  content: "\ea04";
}

.icon-nut::before {
  content: "\ea05";
}

.icon-heart::before {
  content: "\ea06";
}

.icon-down-filled-triangular-arrow::before {
  content: "\ea07";
}

.icon-oil::before {
  content: "\ea08";
}

.icon-vk::before {
  content: "\ea09";
}

.icon-twitter::before {
  content: "\ea0a";
}

.icon-instagram::before {
  content: "\ea0b";
}

.icon-down-arrow::before {
  content: "\ea0c";
}

.icon-filter::before {
  content: "\ea0d";
}

.icon-app-store::before {
  content: "\ea0e";
}

.icon-delivery-truck::before {
  content: "\ea0f";
}

.icon-shopping-cart-2::before {
  content: "\ea10";
}

.icon-heart-active::before {
  content: "\ea11";
}

.icon-google-play::before {
  content: "\ea12";
}

.icon-left::before {
  content: "\ea13";
}

.icon-phone-call::before {
  content: "\ea14";
}

.icon-right::before {
  content: "\ea15";
}

.icon-search::before {
  content: "\ea16";
}

.icon-shopping-cart::before {
  content: "\ea17";
}

.icon-star::before {
  content: "\ea18";
}

.icon-star-fill::before {
  content: "\ea19";
}

.icon-star-half::before {
  content: "\ea1a";
}

.icon-user::before {
  content: "\ea1b";
}

.icon-envelope::before {
  content: "\ea1c";
}

.icon-leaf::before {
  content: "\ea1d";
}

.icon-dots-menu::before {
  content: "\ea1e";
}

.icon-youtube::before {
  content: "\ea1f";
}

.icon-facebook::before {
  content: "\ea20";
}

.icon-trash::before {
  content: "\ea21";
}

.icon-arrow-chevron-up::before {
  content: "\ea22";
}




html,
body {
  font-family: "Averta Cyrillic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  color: #3e3e3e;
  line-height: 1.5;
}

body.bg-food {
  background-image: url(../img/bg.png);
  background-repeat: repeat-y;
  background-attachment: scroll;
  background-size: contain;
}

.overlay,
.overlay-filter {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3e3e;
  opacity: 0.6;
  z-index: 999;
  display: none;
}

.overlay.show,
.overlay-filter.show {
  display: block;
}

.section {
  padding: 80px 0 0 0;
}

.section.last {
  padding: 50px 0 50px 0;
}

.lorem p {
  font-family: 'Lato', sans-serif;
}

.top-nav {
  background-color: #fcca00;
  font-weight: 600;
}

.top-nav .logo-text {
  /*margin-left: 100px;*/
  font-size: 0.75rem;
  text-transform: uppercase;
}

.top-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
}

.top-nav .container .top-left-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-nav .container .top-left-nav .mail,
.top-nav .container .top-left-nav .phone {
  color: #3e3e3e;
  margin-right: 20px;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-nav .container .top-left-nav .mail i,
.top-nav .container .top-left-nav .phone i {
  margin-right: 5px;
  color: #f98d05;
}

.top-nav .container .top-left-nav .langs {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-nav .container .top-left-nav .langs .lang {
  margin: 0;
  border-radius: 6px;
  padding: 8px 10px;
  font-weight: 600;
  color: #3e3e3e;
  font-size: 0.75rem;
}

.top-nav .container .top-left-nav .langs .lang:hover {
  text-decoration: none;
}

.top-nav .container .top-left-nav .langs .lang.active {
  background-color: #f9b505;
}

.navbar {
  padding: 22px 16px;
}

.navbar .mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .navbar-brand img {
  width: 200px;
  height: auto;
}

.navbar .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
}

.navbar .mobile-menu .menu-icons .menu-icon{
  position: relative;
}
.navbar .mobile-menu .menu-icons .menu-icon:hover span:not(.badge){
  color: #fcca00;
}

.navbar .mobile-menu .menu-icons .menu-icon i{
  position: relative;
  z-index: 2;
}

.navbar .mobile-menu .menu-icons .menu-icon .icon-shopping-cart-2{
  font-size: 1.3rem;
}

.navbar .mobile-menu .menu-icons .menu-icon .badge{
  padding: 5px 15px 5px 12px;
  border-radius: 50px;
  background-color: #fef4cc;
  color: #6d6d6d;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 45px;
  z-index: 1;
}

.navbar .navbar-nav .nav-link {
  background-color: transparent;
  padding: 8px 15px !important;
  color: #3e3e3e;
  margin-right: 10px;
  border-radius: 10px;
  font-weight: 600;
  -webkit-transition: 0.15s all ease;
  -o-transition: 0.15s all ease;
  transition: 0.15s all ease;
}

.navbar .navbar-nav .dropdown .dropdown-toggle{
  background-color: transparent;
  padding: 8px 15px !important;
  color: #3e3e3e;
  margin-right: 10px;
  border-radius: 10px;
  font-weight: 600;
  -webkit-transition: 0.15s all ease;
  -o-transition: 0.15s all ease;
  transition: 0.15s all ease;
  border: none;
  text-transform: uppercase;
  position: relative;
  z-index: 222;
}

.navbar .navbar-nav .dropdown .dropdown-toggle.catalog{
  background-color: #f6f6f6;
}

.navbar .navbar-nav .dropdown.show .dropdown-toggle{
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 0 0;
  background-color: #f6f6f6;
}

.navbar .navbar-nav .dropdown .dropdown-toggle .icon-down-filled-triangular-arrow{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  height: auto;
  color: #dadada;
}

.navbar .navbar-nav .dropdown .dropdown-toggle::after {
  content: none;
}

.navbar .navbar-nav .dropdown-menu.show{
  padding: 15px 0;
  margin-top: -1px;
  z-index: 223;
  border: none;
  background-color: #f6f6f6;
  box-shadow: 5px 5px 3px -3px rgba(0, 0, 0, 0.21);
}

.navbar .navbar-nav .dropdown-menu .dropdown-item{
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item i {
  font-size: 20px;
  margin-right: 20px;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:active{
  background-color: #e2e5e8;
  color: #333;
}

.navbar .navbar-nav .dropdown .dropdown-toggle .icon-dots-menu{
  color: #393939;
  font-size: 1rem;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
  background-color: #f6f6f6;
  color: #393939;
}

.navbar .navbar-nav .nav-link i {
  color: #393939;
  font-size: 1rem;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.navbar .menu-icons {
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}

.navbar .menu-icons .menu-icon {
  text-align: center;
  padding: 0 20px;
  color: #3e3e3e;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar .menu-icons .menu-icon:hover {
  text-decoration: none;
}

.navbar .menu-icons .menu-icon i {
  color: #fcca00;
  font-size: 1.25rem;
}

.navbar .menu-icons .menu-icon span {
  display: block;
  color: #6d6d6d;
}

.main .main-carousel .item {
  width: 1160px;
  margin: 0 4vw;
}

.main .main-carousel .item .box {
  background-position: center;
  background-size: cover;
  padding: 30px 60px;
  border-radius: 10px;
  height: 530px;
}

.main .main-carousel .item .box .row{
  height: 470px;
}

.main .main-carousel .owl-item {
  -webkit-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  transition: 0.4s all ease;
  opacity: 1;
}

.main .main-carousel .owl-item:not(.center) {
  opacity: 0.3;
}

.main .main-carousel .card {
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  position: relative;
}

.main .main-carousel .card .card-image {
  max-height: 150px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.main .main-carousel .card .card-body{
  padding: 10px 20px;
  position: relative;
}

.main .main-carousel .card .card-body .title-card {
  margin: 0;
  font-weight: 600;
  display: block;
  color: #3e3e3e;
  text-decoration: none;
}

.main .main-carousel .card .card-body span {
  color: #999;
}

.main .main-carousel .card .discount {
  position: absolute;
  top: 10px;
  left: -2px;
  background-color: #e56053;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 20px 5px 10px;
  border-radius: 0 20px 20px 0;
}

.main .main-carousel .card  .card-body .price {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.main .main-carousel .global-btn-rounded{
  margin-top: 45px;
}

.main-title{
  font-weight: 600;
  font-size: 70px;
  margin: 0;
  color: #fff;
  line-height: 1;
}

.main-subtitle{
  font-size: 30px;
  font-weight: 400;
  margin: 10px 0 0 0;
  color: #fff;
  line-height: 1;
}

.main-desc{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin: 40px 0 0 0;
  color: #fff;
}

.main-discount{
  color: #fcca00;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 100px;
  line-height: 1;
  margin-top: 60px;
}

.main .main-carousel .card .card-body .price .new-price{
  display: block;
  padding: 3px 10px;
  border-radius: 6px;
  background-color: #fcca00;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-right: -30px;
}

.main .main-carousel .card .card-body .price .old-price {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}

.main .main-carousel .card.horizontal{
  display: flex;
  flex-direction: row;
}
.main .main-carousel .card.horizontal .card-image{
  width: 70%;
  max-height: 220px;
}

.main .main-carousel .card.horizontal .card-body{
  width: 30%;
}


.main .main-carousel .discount-left {
  font-size: 1.125rem;
  color: #9675a3;
  font-weight: 600;
}

.main .main-carousel .date {
  font-weight: 800;
  font-size: 3.25rem;
  color: #fcca00;
}

.main .main-carousel .title {
  font-family: 'Handelson-ThreeCYR', sans-serif;
  font-size: 12.5rem;
  color: #fff;
  margin-top: -120px;
  margin-bottom: -40px;
  text-shadow: 4px 4px 1px rgba(58, 2, 89, 0.75);
}

.main .main-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main .main-carousel .owl-nav .owl-prev i {
  font-size: 5rem;
  color: #999;
}

.main .main-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main .main-carousel .owl-nav .owl-next i {
  font-size: 5rem;
  color: #999;
}


.special-carousel .owl-nav {
  position: absolute;
  top: -95px;
  right: 0;
}

.special-carousel .owl-nav .owl-prev i {
  font-size: 1.5625rem;
  color: #d6d6d6;
}

.special-carousel .owl-nav .owl-next {
  margin-left: 20px;
}

.special-carousel .owl-nav .owl-next i {
  font-size: 1.5625rem;
  color: #d6d6d6;
}

.btn-custom {
  font-size: 1rem;
  padding: 8px 30px;
  border-radius: 50px;
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  font-weight: 600;
  white-space: nowrap;
}

.btn-custom.orange {
  border-color: #fdb306;
  color: #fdb306;
}

.btn-custom.orange:hover {
  background-color: #f9b505;
  color: #fff;
}

.btn-custom.green {
  border-color: #9dc550;
  color: #9dc550;
}

.btn-custom.green:hover {
  background-color: #9dc550;
  color: #fff;
}

.btn-custom.purple {
  border-color: #875798;
  color: #875798;
}

.btn-custom.purple:hover {
  background-color: #875798;
  color: #fff;
}

.btn-basket {
  padding: 0 20px;
  height: 45px;
  border-radius: 6px;
  background-color: #fcb200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

.btn-basket .icon-shopping-cart{
  margin-right: 10px;
  font-size: 18px;
}

.btn-basket:hover {
  color: #fff;
  background-color: #e3a000;
}

.btn-basket.icon-only{
  padding: 0 15px;
  height: 30px;
}

.btn-basket.icon-only .icon-shopping-cart{
  margin-right: 0;
}

.stock{
  padding: 60px 0 30px 0;
}

.stock .img-card{
 border-radius: 10px;
  overflow: hidden;
  display: block;
}
.stock .img-card img{
  width: auto;
  height: auto;
}

.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 60px;
}

.section-head .title {
  font-size: 2.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #3e3e3e;
  margin: 0;
  line-height: 1;
}

.section-head a,
.section-head span {
  font-size: 0.875rem;
  color: #fcb200;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 20px;
}

.section-head span {
  font-size: 1.125rem;
}

.big-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #3e3e3e;
  line-height: 1.2;
}

.card {
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog .card{
  transition: 0.15s all ease;
}

.catalog .card:hover{
  border: 2px solid rgba(252,178,0,0.5);
}

.card.custom-card .title-card {
  margin: 0;
  display: block;
  color: #3e3e3e;
  text-decoration: none;
  font-weight: 600;
}

.card.custom-card .card-image {
  max-height: 170px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.card.custom-card .card-image img {
  width: 100%;
  height: auto;
}

.pochemu .card-pochemu{
  padding: 50px;
  border-radius: 10px;
  background-color: #f6f6f6;
}
.pochemu .card-pochemu h2{
  text-align: center;
  font-size: 44px;
  color: #3e3e3e;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 55px 0;
}
.pochemu .card-pochemu h2 span{
  font-weight: 800;
}

.block-icon-text{
  display: flex;
  align-items: flex-start;
}
.block-icon-text img{
  width: auto;
  height: auto;
  margin-right: 30px;
}
.block-icon-text .title{
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.block-icon-text .subtitle{
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.under-banner{
  margin: 80px 0 0 0;
}

.under-banner .block-icon-text:before{
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  width: 180px;
  height: 80px;
  border-radius: 4px;
  background-color: #fcca00;
  opacity: 0.08;
  z-index: 1;
}

.tabs-section .nav-pills {
  display: inline-flex;
  justify-content: center;
  background-color: #f6f6f6;
  border-radius: 50px;
}
.tabs-section .nav-pills .nav-link{
  background-color: transparent;
  color: #393939;
  border-radius: 50px;
  padding: 0 25px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}
.tabs-section .nav-pills .nav-link.active{
  background-color: #fcca00;
}

.tabs-section-content{
  padding-top: 45px;
  color: #393939;
  text-align: center;
}

.tabs-section-content .title{
  font-weight: 600;
  font-size: 44px;
  margin: 0;
  text-transform: uppercase;
}

.tabs-section-content .subtitle{
  font-weight: 600;
  font-size: 22px;
  margin: 25px 0 25px 0;
  text-transform: uppercase;
}

.tabs-section-content .desc{
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  opacity: 0.8;
}

.tabs-section-content img{
  width: auto;
  height: auto;
}

.tabs-section-content .global-btn{
  padding: 0 30px;
}

.global-btn{
  margin: 50px 0 25px 0;
  background-color: #fa5b3c;
  color: #fff;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 6px;
  font-weight: 600;
}

.global-btn-rounded{
  background-color: #fa5b3c;
  color: #fff;
  height: 40px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 600;
}

.global-btn:hover, .global-btn-rounded:hover{
  background-color: #ea5538;
  color: #fff;
}

.global-btn:active,
.global-btn:focus,
.global-btn-rounded:active,
.global-btn-rounded:focus {
  box-shadow: none!important;
  outline: none!important;
}

.card.custom-card .card-body .rating-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card.custom-card .card-body .rating-favorite .stars i {
  color: #fcca00;
}

.card.custom-card .card-body .rating-favorite .stars .new {
  margin-left: 5px;
  color: #fa5b3c;
  font-size: 0.9375rem;
  font-weight: 600;
}

.card.custom-card .card-body .rating-favorite .like i {
  color: #e0e0e0;
}

.card.custom-card .card-body .rating-favorite .like:hover i{
  color: #fcca00;
}

.card.custom-card .card-body .rating-favorite .like.active i {
  color: #fcca00;
}

.card.custom-card .card-body .title {
  margin: 0;
  font-weight: 600;
  font-size: 0.875rem;
}

.card.custom-card .card-body .weight {
  font-size: 0.8125rem;
  color: #a6a6a6;
  font-weight: 400;
}

.card.custom-card .card-body .price-block {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card.custom-card .card-body .price-block .price {
  color: #3e3e3e;
  font-size: 1.5rem;
  font-weight: 800;
}

.card.custom-card .card-body .price-block .price .old-price {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 10px;
  text-decoration: line-through;
}

.card.custom-card .discount {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #e56053;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 20px 5px 10px;
  border-radius: 0 20px 20px 0;
}

.card.custom-card .eco {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50px;
  background-color: #9dc550;
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9375rem;
  color: #fff;
}

.card.news-card {
  border-radius: 10px;
  position: relative;
  border: none;
  background-color: #f5f5f5;
}

.card.news-card .card-image {
  max-height: 250px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.card.news-card .card-image img {
  width: 100%;
  height: auto;
}

.card.news-card .card-body {
  min-height: 220px;
  max-height: 250px;
}

.card.news-card .card-body .title-card {
  font-size: 1.6875rem;
  font-weight: 600;
  color: #3e3e3e;
  text-decoration: none;
  line-height: 1.1;
  margin-bottom: 20px;
  display: block;
}

.card.news-card .card-body .desc {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  display: block;
  line-height: 1.5;
  max-width: 100%;
  max-height: 100px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card.news-card .card-body .desc:before {
  content: '...';
  position: absolute;
  right: 0;
  bottom: 0;
}

.card.news-card .card-body .desc:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  background: white;
}

.card.news-card .card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px 20px 20px;
}

.card.news-card .card-actions .btn-more {
  background-color: #eaeaea;
}

.card.news-card .card-actions small {
  color: #a6a6a6;
  font-size: 1rem;
}

.bordered-image {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.bordered-image.orange {
  border-bottom: 10px solid #f9b505;
}

.bordered-image.green {
  border-bottom: 10px solid #9dc550;
}

p {
  margin: 0;
}

p.handelson-title {
  font-family: 'Handelson-ThreeCYR', sans-serif;
  font-size: 6.25rem;
  line-height: 1;
  margin-bottom: 10px;
}

p.handelson-title.orange {
  color: #f9b505;
}

p.handelson-title.green {
  color: #9dc550;
}

.card.banner {
  color: #fff;
}

.card.banner h4 {
  font-size: 2.75rem;
  font-weight: 900;
}

.footer {
  margin-top: 80px;
  padding: 50px 0;
  background-color: #f6f6f6;
}

.footer .btn-app {
  text-decoration: none;
  color: #3e3e3e;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
}

.footer .btn-app i {
  font-size: 1rem;
  color: #875798;
  margin-right: 6px;
}

.footer .logo-footer {
  width: 230px;
  height: auto;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.footer .logo-title {
  font-size: 0.8125rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
  color: #3e3e3e;
}

.breadcrumbs{
  opacity: .7;
  font-size: .875rem;
  padding: 0;
  background-color: transparent;
  margin-bottom: 20px;
}

.breadcrumbs a{
  margin-right: 5px;
  text-decoration: none;
  color: #3e3e3e;
}

.breadcrumbs span{
  margin-left: 5px;
}

.footer .phone {
  font-size: 2rem;
  font-weight: 900;
  color: #3e3e3e;
  display: inline-flex;
  align-items: center;
}

.footer .phone i {
  margin-right: 10px;
}

.footer .subphone {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer .links a {
  text-transform: uppercase;
  color: #a7a7a7;
  margin-right: 20px;
  font-size: 0.75rem;
  margin-bottom: 30px;
  line-height: 2.5;
}

.footer .desc-title {
  font-size: 0.9375rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer .desc-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #a7a7a7;
}


.social p {
  font-size: 0.75rem;
  color: #fff;
}

.social a {
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #575757;
  border-radius: 50px;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  margin-left: 10px;
}

.social a i {
  font-size: 1.15rem;
  color: #fff;
}

.social a:hover {
  background-color: #828282;
  text-decoration: none;
}

.copyright{
  background-color: #3e3e3e;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright p{
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.menu-bar {
  display: none;
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contacts-m {
  display: none;
}

.checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
  width: 100%;
}


.checkboxes .checkbox-group{
  margin-right: 20px;
}

.checkboxes .checkbox-group select {
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  padding: 12px 15px;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: 0.15s all ease;
  -o-transition: 0.15s all ease;
  transition: 0.15s all ease;
  color: #4b4b4b;
}
.checkboxes .checkbox-group select:focus-visible{
  outline: none!important;
}

.checkboxes .checkbox-group select:focus{
  background-color: #fafafa;
  border: 1px solid #dedede;
  outline: none!important;
}

.breadcrumb {
  opacity: 0.5;
  font-size: 0.875rem;
  padding: 0;
  background-color: transparent;
}

.filters-block .filter .filter-title {
  padding: 15px 25px;
  color: #fcb200;
  font-weight: 600;
  font-size: 1.25rem;
  background-color: #f3f3f3;
  border-radius: 10px;
}

.filters-block .filter .filter-action {
  padding: 15px 25px;
  color: #3e3e3e;
  font-weight: 600;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: 0.15s all ease;
  -o-transition: 0.15s all ease;
  transition: 0.15s all ease;
}

.filters-block .filter .filter-action:hover {
  background-color: #f2f2f2;
}

.filters-block .filter .filter-action i {
  font-size: 0.75rem;
  color: #9a9a9a;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.filters-block .filter .filter-action.active i {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.filters-block .filter .filter-list {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  padding: 20px 0;
}

.filters-block .filter .filter-list li a {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 15px 25px 15px 25px;
  color: #3e3e3e;
  font-weight: 600;
  font-size: 1rem;
  background-color: transparent;
  border-radius: 10px;
}

.filters-block .filter .filter-list li a i {
  font-size: 1.25rem;
  margin-right: 10px;
  opacity: 0.5;
  margin-left: -15px;
}

.filters-block .filter .filter-list li a:hover {
  background-color: #f8f5fa;
  color: #fcb200;
}

.filters-block .filter .collapse-filter {
  margin: 20px 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.filters-block .filter .collapse-filter.open {
  max-height: 400px;
}

.filters-block .filter .collapse-filter .filter-check {
  padding: 5px 25px 5px 10px;
  color: #3e3e3e;
  font-size: 1rem;
}

.filters-block .filter .collapse-filter .filter-check input {
  position: absolute;
  opacity: 0;
}

.filters-block .filter .collapse-filter .filter-check input + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.filters-block .filter .collapse-filter .filter-check input + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #ececec;
  border-radius: 3px;
}

.filters-block .filter .collapse-filter .filter-check input:hover + label:before {
  background: #fcb200;
}

.filters-block .filter .collapse-filter .filter-check input:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.filters-block .filter .collapse-filter .filter-check input:checked + label:before {
  background: #fcb200;
}

.filters-block .filter .collapse-filter .filter-check input:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.filters-block .filter .collapse-filter .filter-check input:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}

.filters-block .filter .collapse-filter .filter-check input:checked + label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
          box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.filters-block .filter .collapse-filter .checkboxes-scroll {
  max-height: 400px;
  overflow: auto;
}

.filters-block .filter .collapse-filter .checkboxes-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #F5F5F5;
}

.filters-block .filter .collapse-filter .checkboxes-scroll::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

.filters-block .filter .collapse-filter .checkboxes-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #d4d4d4;
}

.filter-mobile {
  background-color: #734185;
  color: #fff;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.8125rem;
  margin-bottom: 20px;
  display: none;
  position: fixed;
  bottom: 0;
  right: 10px;
  z-index: 1000;
}

.cart-table th, .cart-table td{
  vertical-align: middle;
}

.cart-table img{
  width: 100px;
  height: auto;
}

.cart-table input[type=checkbox]{
  position: relative;
  margin: 0;
}

.cart-table input[type=number]{
  width: 100px;
}

.cart-table .count{
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-table .minus, .cart-table .plus{
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #343434;
  border: 1px solid #343434;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: 0.15s all ease;
  cursor: pointer;
}

.card-overflow{
  overflow: auto;
}

.title-form{
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-table .minus{
  margin-right: 10px;
  padding-bottom: 4px;
}

.cart-table .plus{
  padding-bottom: 5px;
  margin-left: 10px;
}

.cart-table .minus:hover, .cart-table .plus:hover{
  background-color: transparent;
  color: #343434;
}

.cart-table .remove{
  text-decoration: none;
  color: #C0504C;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.15s all ease;
}

.cart-table .remove:hover{
  background-color: rgba(192, 76,80, 0.2);
}

.pagination {
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #3e3e3e;
}

.pagination .more {
  text-transform: uppercase;
  padding: 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

.pagination ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 10px;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  font-size: 1.125rem;
  font-weight: 600;
  -webkit-transition: 0.15s all ease;
  -o-transition: 0.15s all ease;
  transition: 0.15s all ease;
  cursor: pointer;
}

.pagination ul li.dots {
  border: 1px solid transparent;
  cursor: default;
}

.pagination ul li.dots:hover {
  border: 1px solid transparent;
}

.pagination ul li.active {
  background-color: #fcb200;
  border: 1px solid #fcb200;
  cursor: default;
  color: #fff;
}

.pagination ul li:hover {
  border: 1px solid #875798;
}

.news-sidebar a {
  display: block;
  text-decoration: none;
  color: #3e3e3e;
  padding: 10px 0;
  border-top: 2px solid #f2f2f2;
  position: relative;
}

.news-sidebar a:last-child {
  border-bottom: 2px solid #f2f2f2;
}

.news-sidebar a span {
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  max-width: 80%;
  max-height: 60px;
  position: relative;
  overflow: hidden;
}

.news-sidebar a span:before {
  content: '...';
  position: absolute;
  right: 0;
  bottom: 0;
}

.news-sidebar a span:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  background: white;
}

.news-sidebar a small {
  display: block;
  color: #a6a6a6;
  font-size: 0.875rem;
  margin-top: 5px;
}

.news-sidebar a i {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #f5f5f5;
  color: #ababab;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  -webkit-transition: 0.15s all ease;
  -o-transition: 0.15s all ease;
  transition: 0.15s all ease;
}

.news-sidebar a:hover i {
  right: 0;
  opacity: 1;
}

.new-content .image {
  border-radius: 10px;
  max-height: 300px;
  overflow: hidden;
}

.new-content .image img {
  width: 100%;
  height: auto;
}

.new-content span {
  font-size: 1rem;
  color: #a6a6a6;
}

.new-content .title {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.new-content .lorem {
  margin-bottom: 40px;
}

.new-content .lorem p {
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: 'Lato', sans-serif;
}

.toch-item-carousel .carousel-item{
  width: 100%;
  height: 440px;
}

.toch-item-carousel .carousel-item img{
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.toch-item-carousel .toch-carousel-control-prev{
  position: absolute;
  width: 40px;
  height: 60px;
  border-radius: 10px;
  left: -10px;
  bottom: 10px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(68,68,68,0.8);
  transition: 0.15s all ease;
}

.toch-item-carousel .toch-carousel-control-prev:hover{
  text-decoration: none;
  background-color: rgba(255,238,169,0.8);
  color: #fcca00;
}

.toch-item-carousel .toch-carousel-control-prev i{
transform: rotate(-90deg);
}

.toch-item-carousel .toch-carousel-control-next{
  position: absolute;
  width: 40px;
  height: 60px;
  border-radius: 10px;
  right: -10px;
  bottom: 10px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(68,68,68,0.8);
  transition: 0.15s all ease;
}

.toch-item-carousel .toch-carousel-control-next:hover{
  text-decoration: none;
  background-color: rgba(255,238,169,0.8);
  color: #fcca00;
}

.toch-item-carousel .toch-carousel-control-next i{
  transform: rotate(90deg);
}

.touch-carousel-indicators{
  margin-top: 20px;
}

.touch-carousel-indicators span{
  width: 75px;
  height: 75px;
  display: inline-block;
  overflow: hidden;
  margin-left: 15px;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.15s all ease;
}

.touch-carousel-indicators span:first-child{
  margin-left: 0;
}

.touch-carousel-indicators span:hover{
  border: 1px solid #fcb200;
}

.touch-carousel-indicators span img{
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.special-class1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.item .item-card {
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}

.item .item-card .title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 40px;
}

.item .item-card .title i {
  margin-left: 10px;
  border-radius: 50px;
  background-color: #9dc550;
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9375rem;
  color: #fff;
  position: relative;
  bottom: 4px;
}

.item .item-card .stars i {
  color: #fcca00;
  font-size: 1rem;
}

.item .item-card .stars span {
  margin-left: 10px;
  color: #a5a5a5;
}

.item .item-card .item-desc {
  font-size: 20px;
  color: #a6a6a6;
  font-weight: 400;
}

.item .item-card .item-desc-anons {
  font-size: 15px;
  color: #a6a6a6;
  font-weight: 400;
}

.item .item-card .price {
  font-size: 2.5rem;
  font-weight: 900;
}

.item .owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.item .owl-nav button.owl-prev {
  left: 0;
}
.item .owl-nav button.owl-next {
  right: 0;
}

.item .owl-dots {
  text-align: center;
  padding-top: 15px;
}
.item .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.item .owl-dots button.owl-dot.active {
  background-color: #000;
}
.item .owl-dots button.owl-dot:focus {
  outline: none;
}
.item .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.38) !important;
}
.item .owl-nav span {
  font-size: 70px;
  position: relative;
  top: -5px;
}
.item .owl-nav button:focus {
  outline: none;
}

.item .item-card .price .old-price {
  font-size: 1.375rem;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.6;
  margin-left: 15px;
}

.item .item-card .fovorit {
  color: #c9c9c9;
  margin-left: 20px;
  height: 45px;
  width: 60px;
  border-radius: 6px;
  border: 1px solid #dedede;
  text-decoration: none;
  position: relative;
  top: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.item .item-card .fovorit:hover{
  border: 1px solid #fcb200;
}

.item .item-card .fovorit i{
  transition: 0.15s all ease;
}

.item .item-card .fovorit:hover i{
  color: #fcb200;
}

.item .item-card .fovorit i {
  font-size: 1.2rem;
}

a{
  color: #fcb200;
}

a:hover{
  color: #fcb200;
}

.item .nav-tabs .nav-link {
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  color: #3e3e3e;
  border: none;
  padding: 0.5rem 0;
  margin-right: 60px;
  transition: 0.15s color ease;
}

.item .nav-tabs .nav-link:hover{
  color: #fcb200;
}

.item .nav-tabs .nav-link:last-child{
  margin-right: 0;
}

.item .tab-content ul{
  list-style: none;
  padding-inline-start: 0;
  font-family: "Averta Cyrillic", sans-serif;
  color: #a6a6a6!important;
  line-height: 1.7;
  font-weight: 400;
}

.item .tab-content ol{
  padding-inline-start: 15px;
  font-family: "Lato", sans-serif;
  color: #a5a5a5;
  line-height: 1.6;
}

.nav-tabs-block{
  width: 100%;
  margin-top: 40px!important;
}

.item .nav-tabs .nav-link.active {
  border-bottom: 4px solid #ffbeb1;
}

.item .nav-tabs .nav-link.active:hover {
  border-bottom: 4px solid #ffbeb1;
}

.item .item-lorem {
  padding: 20px 0;
}

.item .item-lorem p {
  font-family: "Averta Cyrillic", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
}

.item .item-carousel .item {
  position: relative;
}

.item .item-carousel .item img {
  border-radius: 10px;
}

.item .item-carousel .item .discount {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #e56053;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 5px 20px 5px 10px;
  border-radius: 0 20px 20px 0;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1200px) {
  .top-nav .logo-text {
    margin-left: 75px;
  }

  .navbar .navbar-brand img {
    width: 160px;
  }

  .navbar .navbar-nav {
    font-size: 0.8125rem;
  }

  .tabs-section-content img{
    width: 100%;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 6px;
    padding: 8px 12px !important;
  }

  .main .main-carousel .item {
    width: 930px;
  }

  .main .main-carousel .card .card-body .price{
    bottom: 3px;
  }

  .main .main-carousel .card .card-body .price .old-price{
    display: none;
  }

  .main-title{
    font-size: 55px;
  }

  .main-subtitle{
    font-size: 24px;
  }

  .main-discount{
    font-size: 70px;
  }

  .stock .img-card img{
    width: 100%;
  }

  .main .main-carousel .card .card-body {
    padding: 10px;
  }

  .main .main-carousel .title {
    font-size: 10rem;
    margin-top: -80px;
    margin-bottom: -20px;
  }

  .stock .card .card-body {
    padding: 15px 30px;
  }

  .stock .card .card-body .discount {
    font-size: 1rem;
  }

  .stock .card .card-body .date {
    margin-top: 10px;
  }

  .stock .card .card-body .title {
    font-size: 5rem;
    margin-top: -20px;
    margin-bottom: 0;
  }

  .section-head .title {
    font-size: 2.25rem;
  }

  .big-title {
    font-size: 1.875rem;
  }

  p.handelson-title {
    font-size: 4.6875rem;
  }

  .footer .phone {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 992px) {
  .top-nav .container .top-left-nav .mail,
  .top-nav .container .top-left-nav .phone {
    display: none;
  }

  .main {
    display: none;
  }

  .stock {
    padding: 0;
  }

  .stock .card .card-body .discount {
    line-height: 1;
  }

  .stock .card .card-body .date {
    font-size: 1.4375rem;
  }

  .stock .card .card-body .title {
    font-size: 3.75rem;
  }

  .big-title {
    color: #fff;
    margin-bottom: 20px;
  }

  .menu-bar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 61px;
    width: 61px;
    margin-left: 10px;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    padding: 10px;
    background-color: transparent;
    -webkit-transition: 0.15s all ease;
    -o-transition: 0.15s all ease;
    transition: 0.15s all ease;
  }

  .menu-bar:hover {
    background-color: #eee1f2;
    color: #fff;
  }

  .menu-list .navbar-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9990;
    width: 350px;
    height: 100%;
    background-color: #fff;
    padding: 20px 0;
    -webkit-box-shadow: 0 0 5px #999;
            box-shadow: 0 0 5px #999;
    -webkit-transform: translateX(102%);
        -ms-transform: translateX(102%);
            transform: translateX(102%);
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }

  .menu-list .navbar-nav .nav-link {
    margin-bottom: 20px;
  }

  .menu-list .navbar-nav .contacts-m {
    display: block;
    text-align: center;
    position: absolute;
    bottom: 20px;
  }

  .menu-list .navbar-nav .contacts-m p {
    margin-right: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .menu-list .navbar-nav .contacts-m p i {
    margin-right: 5px;
    color: #f98d05;
  }

  .menu-list.open .navbar-nav {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .more-news-block {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .special-carousel .owl-nav {
    display: none;
  }


  .logo-banner {
    width: 200px;
  }

  p.handelson-title {
    font-size: 3.4375rem;
  }
}

@media screen and (max-width: 640px) {
  .top-nav .logo-text {
    visibility: hidden;
  }

  .toch-item-carousel .carousel-item{
    height: 270px;
  }

  .special-class1{
    flex-direction: column-reverse;
  }

  .touch-carousel-indicators{
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .touch-carousel-indicators span{
    width: 45px;
    height: 45px;
  }


  .touch-carousel-indicators span img{
    height: 50px;
  }

  .toch-item-carousel .carousel-item img{
    height: 270px;
  }

  .navbar .mobile-menu {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }

  .navbar .navbar-brand {
    position: absolute;
    top: -10px;
    left: 10px;
    margin: 0;
  }
  
  .footer{
    text-align: center;
  }

  .social{
    text-align: center!important;
  }
  .navbar .navbar-brand img {
    width: 90px;
    margin-top: -80px;
  }

  .pochemu .card-pochemu h2{
    font-size: 24px;
  }

  .pochemu .card-pochemu{
    padding: 20px;
  }

  .section-head {
    display: block;
  }

  .section-head .title {
    font-size: 1.25rem;
  }

  .section-head a,
  .section-head span {
    margin-left: 0;
  }

  .big-title {
    font-size: 1.25rem;
    text-align: center;
  }

  .card.news-card .card-body .title-card {
    font-size: 1.375rem;
  }

  p.handelson-title {
    font-size: 2.25rem;
  }

  .card.banner {
    text-align: center;
  }

  .menu-list {
    width: 100%;
  }

  .navbar-nav {
    width: 80% !important;
  }

  .checkboxes {
    display: block;
  }

  .checkboxes select{
    width: 100%;
    margin-bottom: 5px;
  }

  .checkboxes .checkbox-group {
    width: 100%;
  }

  .checkboxes .checkbox-group label {
    font-size: 0.625rem;
    width: 100%;
  }

  .checkboxes .checkbox-group label i {
    display: none;
  }

  .filters-block {
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow: auto;
    width: 80%;
    z-index: 1001;
    background-color: #fff;
    -webkit-transform: translateX(-101%);
        -ms-transform: translateX(-101%);
            transform: translateX(-101%);
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }

  .filters-block.open {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .filters-block .filter .collapse-filter .checkboxes-scroll {
    overflow: visible;
    max-height: 100%;
  }

  .filter-mobile {
    display: inline-block;
  }

  .pagination {
    display: block;
    margin: 0;
  }

  .pagination .more {
    width: 100%;
    margin-bottom: 20px;
  }

  .item .item-card .title {
    font-size: 1.625rem;
  }

  .item .item-card .price {
    font-size: 1.875rem;
  }

  .item .item-card .price .old-price {
    font-size: 1.125rem;
  }

  .item .item-card .fovorit {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 320px) {
  .menu-list {
    zoom: 0.85;
  }
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: #fff;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fa5b3c;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #333333;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f98d05;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0%   {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0%   {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.range-slider{
  padding: 20px 0;
}

.range-slider .price-input{
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}
.range-slider .price-input .field{
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}
.range-slider .field input{
  width: 100%;
  height: 100%;
  outline: none!important;
  box-shadow: none!important;
  -moz-appearance: textfield;
}
.range-slider input[type="number"]::-webkit-outer-spin-button,
.range-slider input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.range-slider .price-input .separator{
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.range-slider .slider{
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.range-slider .slider .progress{
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: #e3a000;
}
.range-slider .range-input{
  position: relative;
}
.range-slider .range-input input{
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #e3a000;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}
.range-slider input[type="range"]::-moz-range-thumb{
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #17A2B8;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.accordeon-features__line {
  margin-bottom: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
.accordeon-features__line-title {
  color: #292C31;
  font-size: 14px;
  font-weight: 500;
  padding-right: 10px;
}
.accordeon-features__line-info {
  font-weight: 700;
  color: #292C31;
  font-size: 14px;
  padding-left: 10px;
  order: 1;
}
.accordeon-features__line::after {
  content: "";
  height: 1px;
  background-color: #CDCDCD;
  flex-grow: 1;
  border-bottom: 1px dotted #292C31;
  margin-top: 8px;
}


.load_more {
  display: block;
  font-size: 0px;
  padding: 0px;
  width: 100%;
  text-align: center;
}

.load_more span {
  vertical-align: middle;
  border-radius: 100%;

  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 6px 3px;
  -webkit-animation: loader1 0.8s linear infinite alternate;
  animation: loader1 0.8s linear infinite alternate;
}

.load_more span:nth-child(1) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  background: rgba(252, 178, 0, 0.6);
}

.load_more span:nth-child(2) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  background: rgba(252, 178, 0, 0.8);
}

.load_more span:nth-child(3) {
  -webkit-animation-delay: -0.26666s;
  animation-delay: -0.26666s;
  background: rgba(252, 178, 0, 1);
}

.load_more span:nth-child(4) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  background: rgba(252, 178, 0, 0.8);

}

.load_more span:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  background: rgba(252, 178, 0, 0.4);
}

@keyframes loader1 {
  from {
    transform: scale(0, 0);
  }
  to {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes loader1 {
  from {
    -webkit-transform: scale(0, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
  }
}