* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Albert Sans", serif !important;
  text-decoration: none;
  scroll-behavior: smooth;
}

body {
  background: #FAFAFA;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}

.p-lr {
  padding-left: 108px;
  padding-right: 108px;
}

header {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 26px;
}
header .header-logo {
  width: 200px;
}
header .header-logo img {
  width: 100%;
  height: 100%;
}
header .header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
header .header-right .workHours {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
header .header-right .workHours p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #393939;
}
header .header-right .workHours span {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #393939;
}
header .header-right .header-lang {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .header-right .header-lang .lang-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #393939;
}
header .header-right .header-lang span {
  display: block;
  width: 1px;
  height: 12px;
  background: #000;
}
header .header-right .hamburger {
  display: none;
}
header .header-right .hamburger i {
  font-size: 22px;
  color: #000;
}

nav {
  background: #232323;
  width: 100%;
  padding: 20px 0;
}
nav .navbar-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
nav .navbar-container .navbar-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #F3F3F3;
  transition: 0.45s ease-in-out;
  position: relative;
}
nav .navbar-container .navbar-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #F3F3F3;
  transition: 0.45s ease-in-out;
}
nav .navbar-container .navbar-link:hover::after {
  width: 100%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100%;
  z-index: 15;
  background: #f5f5f5;
  padding: 40px 28px;
  transition: 0.4s ease-in-out;
  display: none;
}
.mobile-menu .mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mobile-menu .mobile-menu-head .mobile-logo {
  width: 150px;
}
.mobile-menu .mobile-menu-head .mobile-logo img {
  width: 100%;
  height: 100%;
}
.mobile-menu .mobile-menu-head .closeHamburger i {
  font-size: 18px;
  color: #000;
}
.mobile-menu .mobile-menu-head .closeHamburger i::before {
  font-weight: 800 !important;
}
.mobile-menu .menu-links {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.mobile-menu .menu-links .menu-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #393939;
}
.mobile-menu .workHours {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
.mobile-menu .workHours p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #393939;
}
.mobile-menu .workHours span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #CB0606;
}
.mobile-menu .menu-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 7px;
}
.mobile-menu .menu-contact p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #393939;
}
.mobile-menu .menu-contact .menu-contact-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
.mobile-menu .menu-contact .menu-contact-links .contact-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #CB0606;
}
.mobile-menu .menu-socails {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 7px;
  margin-top: 16px;
}
.mobile-menu .menu-socails p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #393939;
}
.mobile-menu .menu-socails .menu-socails-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu .menu-socails .menu-socails-links .socail-link {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CB0606;
}
.mobile-menu .menu-socails .menu-socails-links .socail-link img {
  width: 20px;
  height: 20px;
}

.home-hero {
  margin: 50px auto 0;
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 24px;
}
.home-hero .home-hero-slide {
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding-bottom: 28px;
}
.home-hero .home-hero-slide .hero-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 512px;
  width: 100%;
  border-radius: 12px;
}
.home-hero .home-hero-slide .hero-item img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero .home-hero-slide .swiper-pagination {
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.home-hero .home-hero-slide .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #DADADA;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  margin: 0;
}
.home-hero .home-hero-slide .swiper-pagination .swiper-pagination-bullet-active {
  background: #B90505;
}
.home-hero .home-hero-form {
  max-width: 600px;
  width: 100%;
  height: 512px;
  display: flex;
  flex-direction: column;
  align-items: start;
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  box-shadow: 0px 0px 5.5px 0px rgba(166, 166, 166, 0.25);
  border-radius: 16px;
  padding: 32px 24px;
}
.home-hero .home-hero-form .form-category {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: #F3F3F3;
  border-radius: 16px;
}
.home-hero .home-hero-form .form-category .form_category_item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 4px;
  position: relative;
  border-radius: 12px;
}
.home-hero .home-hero-form .form-category .form_category_item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
  text-align: center;
}
.home-hero .home-hero-form .form-category .form_category_item svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
}
.home-hero .home-hero-form .form-category .form_category_item input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.home-hero .home-hero-form .form-category .active {
  background: #CB0606;
}
.home-hero .home-hero-form .form-category .active p {
  color: #fff;
}
.home-hero .home-hero-form .form-category .active svg path {
  stroke: #fff;
}
.home-hero .home-hero-form .form-type {
  margin-top: 24px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: #F3F3F3;
  border-radius: 16px;
}
.home-hero .home-hero-form .form-type .form_type_item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 4px;
  position: relative;
  border-radius: 12px;
}
.home-hero .home-hero-form .form-type .form_type_item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
  text-align: center;
}
.home-hero .home-hero-form .form-type .form_type_item input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.home-hero .home-hero-form .form-type .active {
  background: #CB0606;
}
.home-hero .home-hero-form .form-type .active p {
  color: #fff;
}
.home-hero .home-hero-form .form-selects-list {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.home-hero .home-hero-form .form-selects-list .form-selects {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-hero .home-hero-form .form-selects-list .form-selects .form-select-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.home-hero .home-hero-form .form-selects-list .form-selects .form-select-item label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #550303;
}
.home-hero .home-hero-form .form-selects-list .form-selects .form-select-item select {
  width: 100%;
  outline: none;
  padding: 12px 6px;
  line-height: normal;
  height: auto;
  min-height: 0;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
}
.home-hero .home-hero-form .form-selects-list .select_different {
  display: none;
}
.home-hero .home-hero-form .heroFromSubmit {
  width: 100%;
  margin-top: auto;
  padding: 16px;
  border-radius: 12px;
  color: #fff;
  background: #CB0606;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: 0.4s ease-in-out;
}
.home-hero .home-hero-form .heroFromSubmit:hover {
  background: #900404;
}

footer {
  width: 100%;
  position: relative;
  margin-top: 100px;
  padding-top: 40px;
}
footer .footerBg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(22%);
}
footer .fixed-wp {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CB0606;
  z-index: 10;
  bottom: 24px;
  right: 24px;
}
footer .fixed-wp img {
  width: 24px;
  height: 24px;
}
footer .footer-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  gap: 100px;
}
footer .footer-main .footer-logo {
  display: block;
  width: 195px;
  min-width: 195px;
}
footer .footer-main .footer-logo img {
  width: 100%;
  height: 100%;
}
footer .footer-main .footer-right {
  max-width: 880px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
}
footer .footer-main .footer-right .footer-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
footer .footer-main .footer-right .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 7px;
}
footer .footer-main .footer-right .footer-contact p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
footer .footer-main .footer-right .footer-contact .footer-contact-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
footer .footer-main .footer-right .footer-contact .footer-contact-links .contact-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
footer .footer-main .footer-right .footer-socails {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 7px;
}
footer .footer-main .footer-right .footer-socails p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
footer .footer-main .footer-right .footer-socails .footer-socails-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-main .footer-right .footer-socails .footer-socails-links .socail-link {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-main .footer-right .footer-socails .footer-socails-links .socail-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-bottom {
  margin-top: 50px;
  width: 100%;
  border-top: 1px solid #fff;
}
footer .footer-bottom p {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #E0E0E0;
}

.home-brands {
  margin: 80px auto 0;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.home-brands .sec-title {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
  color: #393939;
}
.home-brands .brands-slide {
  width: 100%;
}
.home-brands .brands-slide .brand-item {
  width: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 10px;
  background: #FFFFFF;
}
.home-brands .brands-slide .brand-item img {
  width: 100%;
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-categories {
  margin: 100px auto 0;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
.home-categories .sec-title {
  text-align: start;
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
  color: #393939;
}
.home-categories .category-boxes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 24px;
}
.home-categories .category-boxes .category-box {
  background: #FFFFFF;
  border-radius: 12px;
  position: relative;
  padding: 36px;
  height: 166px;
}
.home-categories .category-boxes .category-box p {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #393939;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.home-categories .category-boxes .category-box .icon {
  position: absolute;
  left: 10px;
  bottom: -40px;
  width: 204px;
  transition: 0.5s ease-in-out;
}
.home-categories .category-boxes .category-box .icon img {
  width: 100%;
  height: 100%;
}
.home-categories .category-boxes .category-box:hover .icon {
  transform: translateX(40px);
}

.home-about-container {
  width: 100%;
  margin-top: 100px;
  background: #fff;
  padding: 60px 0;
}
.home-about-container .home-about {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 24px;
  margin: 0 auto;
}
.home-about-container .home-about .home-about-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
.home-about-container .home-about .home-about-content .sec-title {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
  color: #393939;
}
.home-about-container .home-about .home-about-content .home-about-img {
  width: 100%;
}
.home-about-container .home-about .home-about-content .home-about-img p, .home-about-container .home-about .home-about-content .home-about-img span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.home-about-container .home-about .home-about-img {
  width: 500px;
  min-width: 500px;
  border-radius: 12px;
  height: 410px;
}
.home-about-container .home-about .home-about-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-services {
  margin: 100px auto 0;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  position: relative;
}
.home-services .sec-title {
  text-align: start;
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
  color: #393939;
}
.home-services .home-service-slide {
  width: 100%;
  padding-bottom: 5px;
  position: initial;
}
.home-services .home-service-slide .servide-item {
  width: 600px;
  box-shadow: 0px 4px 4px 0px rgba(199, 199, 199, 0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  background: #fff;
  height: auto;
}
.home-services .home-service-slide .servide-item .cart-img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  height: 312px;
}
.home-services .home-service-slide .servide-item .cart-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.home-services .home-service-slide .servide-item .cart-body {
  padding: 28px;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.home-services .home-service-slide .servide-item .cart-body .service-name {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  color: #393939;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.home-services .home-service-slide .servide-item .cart-body .short-desc {
  margin-top: 8px;
}
.home-services .home-service-slide .servide-item .cart-body .short-desc p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #4A4A4A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.home-services .home-service-slide .swiper-button-next, .home-services .home-service-slide .swiper-button-prev {
  width: 44px;
  height: 44px;
  min-width: 44px;
}
.home-services .home-service-slide .swiper-button-next svg, .home-services .home-service-slide .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.home-services .home-service-slide .swiper-button-next::after, .home-services .home-service-slide .swiper-button-prev::after {
  display: none;
}
.home-services .home-service-slide .swiper-button-next {
  right: 32px;
}
.home-services .home-service-slide .swiper-button-prev {
  left: 32px;
}

.home-contact {
  margin-top: 100px;
  padding: 36px 0;
  background: #ECECEC;
}
.home-contact .home-contact-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
}
.home-contact .home-contact-container .home-contact-left {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.home-contact .home-contact-container .home-contact-left .sec-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  color: #000;
}
.home-contact .home-contact-container .home-contact-left .short-desc p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
.home-contact .home-contact-container .home-contact-form {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.home-contact .home-contact-container .home-contact-form input, .home-contact .home-contact-container .home-contact-form textarea {
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
  border-radius: 12px;
  padding: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
  width: 100%;
  outline: none;
}
.home-contact .home-contact-container .home-contact-form textarea {
  resize: none;
  height: 150px;
}
.home-contact .home-contact-container .home-contact-form .form-line {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.home-contact .home-contact-container .home-contact-form .sendHomeContact {
  padding: 16px;
  color: #fff;
  background: #CB0606;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  transition: 0.4s ease-in-out;
}
.home-contact .home-contact-container .home-contact-form .sendHomeContact:hover {
  background: #900404;
}

.breadCrumb-container {
  max-width: 1440px;
  width: 100%;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadCrumb-container .breadCrumb-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #393939;
  white-space: nowrap;
  text-wrap: nowrap;
}
.breadCrumb-container span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.breadCrumb-container .current {
  color: #CB0606;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 6px;
}
.pagination .pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  border-radius: 8px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #393939;
  transition: 0.4s ease-in-out;
}
.pagination .active {
  border-color: #CB0606;
  background: #CB0606;
  color: #fff;
}
.pagination .prev, .pagination .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  border-radius: 8px;
}
.pagination .prev svg, .pagination .next svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.news-container {
  margin: 50px auto 0;
  max-width: 1440px;
  width: 100%;
}
.news-container .all-news {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-container .all-news .news-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  border-radius: 12px;
  background: #fff;
}
.news-container .all-news .news-box .cart-img {
  width: 100%;
  height: 284px;
  border-radius: 12px 12px 0 0;
}
.news-container .all-news .news-box .cart-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-container .all-news .news-box .cart-body {
  width: 100%;
  padding: 28px 16px;
  border-radius: 0 0 12px 12px;
}
.news-container .all-news .news-box .cart-body .news-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: #393939;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-container .all-news .news-box .cart-body .short-desc {
  margin-top: 18px;
}
.news-container .all-news .news-box .cart-body .short-desc p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #7B7B7B;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
}
.news-container .all-news .news-box .cart-body .more {
  width: 100%;
  margin-top: 36px;
  width: 100%;
  border: 1px solid #CB0606;
  color: #CB0606;
  padding: 12px;
  display: block;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  transition: 0.4s ease-in-out;
  text-align: center;
}
.news-container .all-news .news-box .cart-body .more:hover {
  background: #CB0606;
  color: #fff;
}

.news-detail-container {
  margin: 50px auto 0;
  max-width: 1440px;
  width: 100%;
}
.news-detail-container .news-detail-img {
  width: 100%;
  border-radius: 12px;
}
.news-detail-container .news-detail-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.news-detail-container .news-time {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #393939;
}
.news-detail-container .news-title {
  margin-top: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #393939;
}
.news-detail-container .news-txt {
  margin-top: 60px;
  width: 100%;
}
.news-detail-container .news-txt p, .news-detail-container .news-txt span {
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: #393939;
}
.news-detail-container .news-txt ul {
  padding-left: 20px;
}

.store-container {
  margin: 50px auto 0;
  max-width: 1440px;
  width: 100%;
}
.store-container .title {
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
  color: #000;
}
.store-container .short-title {
  margin-top: 16px;
  max-width: 500px;
}
.store-container .short-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}
.store-container .store-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  margin-top: 50px;
}
.store-container .store-items .store-item {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #D9D9D9;
}
.store-container .store-items .store-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.store-container .store-items .store-item .store-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.store-container .store-items .store-item .store-info .store-name {
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
  color: #000;
}
.store-container .store-items .store-item .store-info .store-contacts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 22px;
}
.store-container .store-items .store-item .store-info .store-contacts .store-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 300px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #171717;
}
.store-container .store-items .store-item .store-info .store-contacts .store-contact-item img {
  width: 22px;
  height: 22px;
  min-width: 22px;
}
.store-container .store-items .store-item .map {
  max-width: 600px;
  width: 100%;
  height: 260px;
  border-radius: 12px;
}
.store-container .store-items .store-item .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.product-cart {
  box-shadow: 0px 4px 4px 0px rgba(143, 143, 143, 0.16);
  border-radius: 12px;
  background: #fff;
  display: block;
}
.product-cart .cart-image {
  width: 100%;
  border-radius: 12px 12px 0 0;
  /*background: #F3F3F3;*/
  position: relative;
  height: 146px;
  overflow: hidden;
  display: flex;
  align-items: start;
  justify-content: end;
}
.product-cart .cart-image .img {
  display: flex;
  align-items: start;
  justify-content: end;
}
.product-cart .cart-image .img img {
  width: 100%;
  height: 100%;
}
.product-cart .cart-image .cart-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.product-cart .cart-image .cart-tags .cart-brand {
  width: 100px;
}
.product-cart .cart-image .cart-tags .cart-brand img {
  width: 100%;
  height: 100%;
}
.product-cart .cart-image .cart-tags .cart-discount {
  padding: 2px 12px;
  border-radius: 100px;
  background: #CB0606;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}
.product-cart .cart-body {
  width: 100%;
  border-radius: 0 0 12px 12px;
  padding: 20px 16px;
}
.product-cart .cart-body .cart-body-main {
  display: flex;
  align-items: start;
  width: 100%;
  gap: 10px;
  justify-content: space-between;
}
.product-cart .cart-body .cart-body-main .cart-body-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
.product-cart .cart-body .cart-body-main .cart-body-left .pro-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #550303;
  height: 48px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-cart .cart-body .cart-body-main .cart-body-left .pro-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.product-cart .cart-body .cart-body-main .cart-body-left .pro-info p, .product-cart .cart-body .cart-body-main .cart-body-left .pro-info span {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: #393939;
  text-wrap: nowrap;
}
.product-cart .cart-body .cart-body-main .seasons {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.product-cart .cart-body .cart-body-main .seasons .season-item {
  min-width: 31px;
  width: 31px;
  height: 31px;
  display: none;
}
.product-cart .cart-body .cart-body-main .seasons .season-item img {
  width: 100%;
  height: 100%;
}
.product-cart .cart-body .cart-body-main .seasons .active {
  display: block;
}
.product-cart .cart-body .cart-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.product-cart .cart-body .cart-price .prev-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-cart .cart-body .cart-price .prev-price p {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #7B7B7B;
  text-wrap: nowrap;
  text-decoration: line-through;
}
.product-cart .cart-body .cart-price .prev-price span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #550303;
  text-wrap: nowrap;
}
.product-cart .cart-body .cart-price .current-price {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #550303;
  text-wrap: nowrap;
}
.product-cart .cart-body .more {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  padding: 8px;
  color: #fff;
  background: #CB0606;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  border-radius: 8px;
  transition: 0.4s ease-in-out;
}
.product-cart .cart-body .more:hover {
  background: #900404;
}

.filter-item select, .filter-item input {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  outline: none;
}

.products-container {
  margin: 50px auto 0;
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 24px;
}
.products-container .filterShow {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #CB0606;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  border-radius: 12px;
}
.products-container .filterShow img {
  min-width: 20px;
  height: 20px;
  width: 20px;
}
.products-container .filter {
  min-width: 288px;
  width: 288px;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 20px 16px 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.products-container .filter .filter-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-bottom: 28px;
}
.products-container .filter .filter-head h2 {
  font-size: 28px;
  line-height: 30px;
  color: #000;
  font-weight: 500;
}
.products-container .filter .filter-head .closeFilter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-container .filter .filter-head .closeFilter i {
  font-size: 18px;
  color: #000;
}
.products-container .filter .filter-items {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 24px;
}
.products-container .filter .filter-items .filter-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #DADADA;
}
.products-container .filter .filter-items .filter-item label {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #393939;
}
.products-container .filter .filter-items .filter-item select {
  width: 100%;
  padding: 16px;
  line-height: normal;
  height: auto;
  min-height: 0;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
}
.products-container .filter .filter-items .filter-item .filter-selects {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.products-container .filter .filter-items .filter-item .filter-price {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.products-container .filter .filter-items .filter-item .filter-price input {
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
  width: 100%;
  border-radius: 12px;
}
.products-container .filter .filter-items .filter-discount {
  display: flex;
  align-items: center;
  gap: 10px;
}
.products-container .filter .filter-items .filter-discount input[type=checkbox] {
  accent-color: #CB0606;
  width: 15px;
  height: 15px;
}
.products-container .filter .filter-items .filter-discount label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #7B7B7B;
}
.products-container .filter .filter-items .searchFilter {
  width: 100%;
  padding: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  background: #CB0606;
  border-radius: 8px;
  transition: 0.4s ease-in-out;
}
.products-container .filter .filter-items .searchFilter:hover {
  background: #900404;
}
.products-container .products {
  width: calc(100% - 312px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-container .products .all-products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.products-container .products .all-products .product-cart {
  width: 100%;
}
.products-container .products .all-products .product-cart .cart-image .img {
  margin-right: -38px;
  width: 222px;
}

.product-detail-container {
  margin: 50px auto 0;
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 60px;
}
.product-detail-container .product-detail-images {
  min-width: 500px;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.product-detail-container .product-detail-images .main-img-slide {
  width: 100%;
  height: 500px;
}
.product-detail-container .product-detail-images .main-img-slide .main-img-item {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a8a8a8;
  overflow: hidden;
  position: relative;
}
.product-detail-container .product-detail-images .main-img-slide .main-img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  transition: transform 0.3s ease-out, transform-origin 0.3s ease-out;
}
.product-detail-container .product-detail-images .other-img-slide {
  width: 100%;
}
.product-detail-container .product-detail-images .other-img-slide .other-img-item {
  border: 1px solid #a8a8a8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
}
.product-detail-container .product-detail-images .other-img-slide .other-img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-container .product-detail-images .other-img-slide .swiper-slide-thumb-active {
  border-color: #CB0606;
}
.product-detail-container .product-detail {
  width: calc(100% - 560px);
  display: flex;
  flex-direction: column;
  align-items: start;
}
.product-detail-container .product-detail .productName {
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  color: #550303;
}
.product-detail-container .product-detail .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.product-detail-container .product-detail .product-price .prev-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-detail-container .product-detail .product-price .prev-price p {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  color: #7B7B7B;
  text-wrap: nowrap;
  text-decoration: line-through;
}
.product-detail-container .product-detail .product-price .prev-price span {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: #550303;
  text-wrap: nowrap;
}
.product-detail-container .product-detail .product-price .current-price {
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #550303;
  text-wrap: nowrap;
}
.product-detail-container .product-detail .product-characteristics {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
  width: 100%;
}
.product-detail-container .product-detail .product-characteristics .box-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #393939;
}
.product-detail-container .product-detail .product-characteristics .characteristics-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.product-detail-container .product-detail .product-characteristics .characteristics-list .list-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-detail-container .product-detail .product-characteristics .characteristics-list .list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.product-detail-container .product-detail .product-characteristics .characteristics-list .list-item .characteristics-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #393939;
  text-align: start;
}
.product-detail-container .product-detail .product-characteristics .characteristics-list .list-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #393939;
  text-align: right;
}

.credit-carts-container {
  margin: 100px auto 0;
  max-width: 1440px;
  width: 100%;
}
.credit-carts-container .sectionTitle {
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: #000000;
}
.credit-carts-container .short-desc {
  margin-top: 16px;
}
.credit-carts-container .short-desc p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #606060;
}
.credit-carts-container .credit-carts {
  margin-top: 24px;
  max-width: 400px;
  width: 100%;
  border: 1px solid #F3F3F3;
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 36px;
}
.credit-carts-container .credit-carts .credit-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.credit-carts-container .credit-carts .credit-cart h3 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #333333;
}
.credit-carts-container .credit-carts .credit-cart .credit-cart-img {
  width: 40px;
  min-width: 40px;
  height: 40px;
}
.credit-carts-container .credit-carts .credit-cart .credit-cart-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.creditCalculator-container {
  margin: 100px auto 0;
  max-width: 1440px;
  width: 100%;
}
.creditCalculator-container .sectionTitle {
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: #000000;
}
.creditCalculator-container .creditCalculator {
  margin-top: 24px;
  /*max-width: 666px;*/
  width: 100%;
  border: 1px solid #F3F3F3;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px;
  gap: 24px;
}
.creditCalculator-container .creditCalculator .creditCalculator-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #F3F3F3;
}
.creditCalculator-container .creditCalculator .creditCalculator-head p {
  min-width: 100px;
  width: 100px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.creditCalculator-container .creditCalculator .creditCalculator-head p:first-child {
  text-align: start;
}
.creditCalculator-container .creditCalculator .creditCalculator-head p:last-child {
  text-align: end;
}
.creditCalculator-container .creditCalculator .creditCalculator-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #F3F3F3;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item p {
  min-width: 100px;
  width: 100px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item p:first-child {
  text-align: start;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item p:last-child {
  text-align: end;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select {
  min-width: 100px;
  max-width: 100px;
  padding: 8px 36px 8px 24px;
  line-height: normal;
  height: auto;
  min-height: 0;
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  border-radius: 0;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .current {
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select::after {
  width: 6px;
  height: 6px;
  right: 28px;
  margin-top: -6px;
  border-color: #606060;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .list {
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .list::-webkit-scrollbar {
  width: 2px;
  border-radius: 5px;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .list::-webkit-scrollbar-thumb {
  background: #CB0606;
  border-radius: 5px;
}
.creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .list .option {
  text-wrap: wrap;
  padding: 12px 20px;
  min-height: 0;
  height: auto;
  font-size: 16px;
  line-height: 24px;
}

.other-products {
  margin: 100px auto 0;
  max-width: 1440px;
  width: 100%;
  position: relative;
}
.other-products .sectionTitle {
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: #000000;
}
.other-products .other-products-slide {
  margin-top: 50px;
  width: 100%;
  position: initial;
  padding-bottom: 6px;
}
.other-products .other-products-slide .product-cart {
  width: 288px;
}
.other-products .other-products-slide .product-cart .cart-image .img {
  margin-right: -38px;
  width: 222px;
}
.other-products .other-products-slide .swiper-button-next, .other-products .other-products-slide .swiper-button-prev {
  width: 44px;
  height: 44px;
  min-width: 44px;
}
.other-products .other-products-slide .swiper-button-next svg, .other-products .other-products-slide .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.other-products .other-products-slide .swiper-button-next::after, .other-products .other-products-slide .swiper-button-prev::after {
  display: none;
}
.other-products .other-products-slide .swiper-button-next {
  right: 32px;
}
.other-products .other-products-slide .swiper-button-prev {
  left: 32px;
}

@media only screen and (max-width: 1350px) {
  .home-hero .home-hero-form .form-category .form_category_item p {
    font-size: 14px;
    line-height: 20px;
  }
  .home-hero .home-hero-form .form-type .form_type_item p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 60px;
    padding-right: 60px;
  }
  header {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  header .header-logo {
    width: 170px;
  }
  header .header-right {
    gap: 24px;
  }
  header .header-right .header-lang .lang-item {
    font-size: 16px;
  }
  header .header-right .header-lang span {
    height: 10px;
  }
  nav {
    padding: 16px 0;
  }
  nav .navbar-container {
    gap: 12px;
  }
  nav .navbar-container .navbar-link {
    font-size: 16px;
  }
  .home-hero {
    margin: 40px auto 0;
    gap: 20px;
  }
  .home-hero .home-hero-slide {
    max-width: 600px;
    padding-bottom: 24px;
  }
  .home-hero .home-hero-slide .hero-item {
    height: 452px;
  }
  .home-hero .home-hero-form {
    max-width: 600px;
    height: 452px;
    padding: 28px 20px;
  }
  .home-hero .home-hero-form .form-category .form_category_item {
    gap: 6px;
    padding: 14px 4px;
  }
  .home-hero .home-hero-form .form-category .form_category_item p {
    font-size: 13px;
    line-height: 18px;
  }
  .home-hero .home-hero-form .form-category .form_category_item svg {
    min-width: 18px;
    width: 18px;
    height: 18px;
  }
  .home-hero .home-hero-form .form-type {
    margin-top: 20px;
  }
  .home-hero .home-hero-form .form-type .form_type_item {
    gap: 6px;
    padding: 14px 4px;
  }
  .home-hero .home-hero-form .form-type .form_type_item p {
    font-size: 13px;
    line-height: 18px;
  }
  .home-hero .home-hero-form .form-selects-list {
    margin-top: 20px;
    gap: 16px;
  }
  .home-hero .home-hero-form .form-selects-list .form-selects {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-hero .home-hero-form .form-selects-list .form-selects .form-select-item label {
    font-size: 14px;
    line-height: 20px;
  }
  .home-hero .home-hero-form .form-selects-list .form-selects .form-select-item select {
    width: 100%;
    outline: none;
    padding: 10px 4px;
    height: 42.4px;
  }
  .home-hero .home-hero-form .heroFromSubmit {
    padding: 14px;
    font-size: 14px;
    line-height: 20px;
  }
  .home-brands {
    margin: 60px auto 0;
    gap: 30px;
  }
  .home-brands .sec-title {
    font-size: 28px;
    line-height: 32px;
  }
  .home-brands .brands-slide .brand-item {
    width: 194px;
  }
  .home-categories {
    margin: 70px auto 0;
    gap: 30px;
  }
  .home-categories .sec-title {
    font-size: 28px;
    line-height: 32px;
  }
  .home-categories .category-boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 20px;
  }
  .home-categories .category-boxes .category-box {
    padding: 28px;
    height: 146px;
  }
  .home-categories .category-boxes .category-box p {
    font-size: 18px;
    line-height: 28px;
  }
  .home-categories .category-boxes .category-box .icon {
    left: 10px;
    bottom: -40px;
    width: 184px;
  }
  .home-categories .category-boxes .category-box:hover .icon {
    transform: translateX(40px);
  }
  .home-about-container {
    margin-top: 70px;
    padding: 45px 0;
  }
  .home-about-container .home-about {
    gap: 20px;
  }
  .home-about-container .home-about .home-about-content {
    gap: 30px;
  }
  .home-about-container .home-about .home-about-content .sec-title {
    font-size: 28px;
    line-height: 32px;
  }
  .home-about-container .home-about .home-about-content .home-about-img p, .home-about-container .home-about .home-about-content .home-about-img span {
    font-size: 14px;
    line-height: 20px;
  }
  .home-about-container .home-about .home-about-img {
    width: 450px;
    min-width: 450px;
    height: 360px;
  }
  .home-services {
    margin: 70px auto 0;
    gap: 30px;
  }
  .home-services .sec-title {
    font-size: 28px;
    line-height: 32px;
  }
  .home-services .home-service-slide {
    padding-bottom: 5px;
  }
  .home-services .home-service-slide .servide-item {
    width: 550px;
  }
  .home-services .home-service-slide .servide-item .cart-img {
    height: 312px;
  }
  .home-services .home-service-slide .servide-item .cart-body {
    padding: 24px;
  }
  .home-services .home-service-slide .servide-item .cart-body .service-name {
    font-size: 20px;
    line-height: 22px;
  }
  .home-services .home-service-slide .servide-item .cart-body .short-desc {
    margin-top: 6px;
  }
  .home-services .home-service-slide .servide-item .cart-body .short-desc p {
    font-size: 16px;
    line-height: 20px;
  }
  .home-services .home-service-slide .swiper-button-next, .home-services .home-service-slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .home-services .home-service-slide .swiper-button-next {
    right: 14px;
  }
  .home-services .home-service-slide .swiper-button-prev {
    left: 14px;
  }
  .home-contact {
    margin-top: 70px;
    padding: 30px 0;
  }
  .home-contact .home-contact-container {
    gap: 30px;
  }
  .home-contact .home-contact-container .home-contact-left {
    max-width: 300px;
    gap: 18px;
  }
  .home-contact .home-contact-container .home-contact-left .sec-title {
    font-size: 24px;
    line-height: 28px;
  }
  .home-contact .home-contact-container .home-contact-left .short-desc p {
    font-size: 16px;
    line-height: 24px;
  }
  .home-contact .home-contact-container .home-contact-form {
    max-width: 600px;
    gap: 16px;
  }
  .home-contact .home-contact-container .home-contact-form input, .home-contact .home-contact-container .home-contact-form textarea {
    padding: 14px;
  }
  .home-contact .home-contact-container .home-contact-form textarea {
    height: 120px;
  }
  .home-contact .home-contact-container .home-contact-form .form-line {
    gap: 16px;
  }
  .home-contact .home-contact-container .home-contact-form .sendHomeContact {
    padding: 14px;
    font-size: 14px;
    line-height: 20px;
  }
  footer {
    margin-top: 70px;
    padding-top: 30px;
  }
  footer .fixed-wp {
    width: 50px;
    height: 50px;
  }
  footer .fixed-wp img {
    width: 20px;
    height: 20px;
  }
  footer .footer-main {
    gap: 50px;
  }
  footer .footer-main .footer-logo {
    width: 175px;
    min-width: 175px;
  }
  footer .footer-main .footer-right {
    max-width: 700px;
    gap: 30px;
  }
  footer .footer-main .footer-right .footer-link {
    font-size: 14px;
    line-height: 20px;
  }
  footer .footer-main .footer-right .footer-contact {
    gap: 5px;
  }
  footer .footer-main .footer-right .footer-contact p {
    font-size: 14px;
    line-height: 20px;
  }
  footer .footer-main .footer-right .footer-contact .footer-contact-links .contact-link {
    font-size: 14px;
    line-height: 20px;
  }
  footer .footer-main .footer-right .footer-socails {
    font-size: 14px;
    line-height: 20px;
    gap: 5px;
  }
  footer .footer-main .footer-right .footer-socails p {
    font-size: 14px;
    line-height: 20px;
  }
  footer .footer-main .footer-right .footer-socails .footer-socails-links {
    gap: 6px;
  }
  footer .footer-main .footer-right .footer-socails .footer-socails-links .socail-link {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  footer .footer-bottom {
    margin-top: 40px;
  }
  footer .footer-bottom p {
    padding-top: 20px;
    padding-bottom: 30px;
    font-size: 14px;
    line-height: 20px;
  }
  .breadCrumb-container {
    margin: 24px auto 0;
    gap: 6px;
  }
  .pagination {
    margin-top: 30px;
  }
  .news-detail-container {
    margin: 40px auto 0;
  }
  .news-detail-container .news-time {
    margin-top: 10px;
  }
  .news-detail-container .news-title {
    margin-top: 40px;
    font-size: 36px;
    line-height: 44px;
  }
  .news-detail-container .news-txt {
    margin-top: 45px;
  }
  .news-detail-container .news-txt p, .news-detail-container .news-txt span {
    font-size: 18px;
    line-height: 28px;
  }
  .news-container {
    margin: 40px auto 0;
  }
  .news-container .all-news .news-box .cart-img {
    height: 244px;
  }
  .news-container .all-news .news-box .cart-body {
    padding: 24px 14px;
  }
  .news-container .all-news .news-box .cart-body .news-name {
    font-size: 18px;
    line-height: 28px;
  }
  .news-container .all-news .news-box .cart-body .short-desc {
    margin-top: 14px;
  }
  .news-container .all-news .news-box .cart-body .short-desc p {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
  }
  .news-container .all-news .news-box .cart-body .more {
    margin-top: 28px;
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .store-container {
    margin: 40px auto 0;
  }
  .store-container .title {
    font-size: 32px;
    line-height: 34px;
  }
  .store-container .short-title {
    margin-top: 12px;
    max-width: 450px;
  }
  .store-container .short-title p {
    font-size: 14px;
    line-height: 20px;
  }
  .store-container .store-items {
    gap: 30px;
    margin-top: 40px;
  }
  .store-container .store-items .store-item {
    gap: 40px;
    padding-bottom: 30px;
  }
  .store-container .store-items .store-item:last-child {
    padding-bottom: 0;
  }
  .store-container .store-items .store-item .store-info {
    gap: 20px;
  }
  .store-container .store-items .store-item .store-info .store-name {
    font-size: 32px;
    line-height: 34px;
  }
  .store-container .store-items .store-item .store-info .store-contacts {
    gap: 18px;
  }
  .store-container .store-items .store-item .store-info .store-contacts .store-contact-item {
    gap: 16px;
    max-width: 300px;
    font-size: 15px;
    line-height: 22px;
  }
  .store-container .store-items .store-item .store-info .store-contacts .store-contact-item img {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .store-container .store-items .store-item .map {
    max-width: 500px;
    height: 220px;
  }
  .product-cart .cart-image {
    height: 126px;
  }
  .product-cart .cart-image .cart-tags {
    position: absolute;
    top: 14px;
    left: 14px;
    gap: 12px;
  }
  .product-cart .cart-image .cart-tags .cart-brand {
    width: 90px;
  }
  .product-cart .cart-image .cart-tags .cart-discount {
    padding: 2px 10px;
    font-size: 11px;
    line-height: 13px;
  }
  .product-cart .cart-body {
    padding: 16px 12px;
  }
  .product-cart .cart-body .cart-body-main {
    gap: 5px;
  }
  .product-cart .cart-body .cart-body-main .seasons {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .product-cart .cart-body .cart-body-main .seasons .season-item {
    min-width: 26px;
    width: 26px;
    height: 26px;
  }
  .product-cart .cart-body .cart-price {
    gap: 6px;
    margin-top: 6px;
  }
  .product-cart .cart-body .cart-price .prev-price {
    gap: 6px;
  }
  .product-cart .cart-body .cart-price .prev-price p {
    font-size: 13px;
    line-height: 15px;
  }
  .product-cart .cart-body .cart-price .prev-price span {
    font-size: 15px;
    line-height: 22px;
  }
  .product-cart .cart-body .cart-price .current-price {
    font-size: 15px;
    line-height: 22px;
  }
  .product-cart .cart-body .more {
    margin-top: 16px;
    padding: 7px;
  }
  .products-container {
    margin: 40px auto 0;
    gap: 20px;
  }
  .products-container .filter {
    min-width: 268px;
    width: 268px;
  }
  .products-container .filter .filter-items {
    gap: 20px;
  }
  .products-container .filter .filter-items .filter-item {
    gap: 16px;
    padding-bottom: 20px;
  }
  .products-container .filter .filter-items .filter-item label {
    font-size: 16px;
    line-height: 20px;
  }
  .products-container .filter .filter-items .filter-item .filter-selects {
    gap: 20px;
  }
  .products-container .filter .filter-items .filter-item .filter-selects select {
    padding: 12px;
    height: 46.4px;
  }
  .products-container .filter .filter-items .filter-item .filter-price {
    gap: 12px;
  }
  .products-container .filter .filter-items .filter-item .filter-price input {
    padding: 14px;
  }
  .products-container .products {
    width: calc(100% - 288px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .products-container .products .all-products {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .products-container .products .all-products .product-cart .cart-image .img {
    margin-right: -33px;
    width: 190px;
  }
  .product-detail-container {
    margin: 40px auto 0;
    gap: 40px;
  }
  .product-detail-container .product-detail-images {
    min-width: 500px;
    width: 500px;
    gap: 20px;
  }
  .product-detail-container .product-detail-images .main-img-slide {
    height: 500px;
  }
  .product-detail-container .product-detail-images .other-img-slide .other-img-item {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }
  .product-detail-container .product-detail {
    width: calc(100% - 540px);
  }
  .product-detail-container .product-detail .productName {
    font-size: 32px;
    line-height: 36px;
  }
  .product-detail-container .product-detail .product-price {
    gap: 6px;
    margin-top: 16px;
  }
  .product-detail-container .product-detail .product-price .prev-price {
    gap: 6px;
  }
  .product-detail-container .product-detail .product-price .prev-price p {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
  }
  .product-detail-container .product-detail .product-price .prev-price span {
    font-size: 20px;
    line-height: 24px;
  }
  .product-detail-container .product-detail .product-price .current-price {
    font-size: 24px;
    line-height: 30px;
  }
  .product-detail-container .product-detail .product-characteristics {
    margin-top: 24px;
    gap: 24px;
  }
  .product-detail-container .product-detail .product-characteristics .box-title {
    font-size: 18px;
    line-height: 24px;
  }
  .product-detail-container .product-detail .product-characteristics .characteristics-list {
    gap: 14px;
  }
  .product-detail-container .product-detail .product-characteristics .characteristics-list .list-item {
    padding-bottom: 14px;
  }
  .product-detail-container .product-detail .product-characteristics .characteristics-list .list-item:last-child {
    padding-bottom: 0;
  }
  .product-detail-container .product-detail .product-characteristics .characteristics-list .list-item .characteristics-title {
    font-size: 16px;
    line-height: 20px;
  }
  .product-detail-container .product-detail .product-characteristics .characteristics-list .list-item p {
    font-size: 16px;
    line-height: 20px;
  }
  .credit-carts-container {
    margin: 70px auto 0;
  }
  .credit-carts-container .sectionTitle {
    font-size: 28px;
    line-height: 30px;
  }
  .credit-carts-container .short-desc {
    margin-top: 12px;
  }
  .credit-carts-container .short-desc p {
    font-size: 15px;
    line-height: 22px;
  }
  .credit-carts-container .credit-carts {
    margin-top: 20px;
    max-width: 400px;
    padding: 18px;
    gap: 26px;
  }
  .creditCalculator-container {
    margin: 70px auto 0;
  }
  .creditCalculator-container .sectionTitle {
    font-size: 28px;
    line-height: 30px;
  }
  .creditCalculator-container .creditCalculator {
    margin-top: 20px;
    max-width: 550px;
    padding: 16px;
    gap: 20px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-head {
    padding-bottom: 12px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-head p {
    min-width: 90px;
    width: 90px;
    font-size: 14px;
    line-height: 20px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list {
    gap: 20px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item {
    padding-bottom: 12px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item:last-child {
    padding-bottom: 0;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item p {
    min-width: 90px;
    width: 90px;
    font-size: 14px;
    line-height: 20px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select {
    min-width: 90px;
    max-width: 90px;
    padding: 6px 30px 6px 20px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .current {
    font-size: 14px;
    line-height: 20px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select::after {
    right: 16px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .list {
    max-height: 250px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .list .option {
    text-wrap: wrap;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
  }
  .other-products {
    margin: 70px auto 0;
  }
  .other-products .sectionTitle {
    font-size: 28px;
    line-height: 30px;
  }
  .other-products .other-products-slide {
    margin-top: 40px;
  }
  .other-products .other-products-slide .product-cart {
    width: 258px;
  }
  .other-products .other-products-slide .product-cart .cart-image .img {
    margin-right: -32px;
    width: 190px;
  }
  .other-products .other-products-slide .swiper-button-next, .other-products .other-products-slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .other-products .other-products-slide .swiper-button-next {
    right: 14px;
  }
  .other-products .other-products-slide .swiper-button-prev {
    left: 14px;
  }
}
@media only screen and (max-width: 1100px) {
  .products-container .filter {
    min-width: 308px;
    width: 308px;
  }
  .products-container .products {
    width: calc(100% - 328px);
  }
  .products-container .products .all-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-hero {
    gap: 40px;
    flex-direction: column;
  }
  .home-hero .home-hero-slide {
    max-width: 100%;
  }
  .home-hero .home-hero-slide .hero-item {
    height: 512px;
  }
  .home-hero .home-hero-form {
    max-width: 100%;
    height: auto;
  }
  .home-hero .home-hero-form .heroFromSubmit {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 992px) {
  footer .footer-main {
    gap: 20px;
    flex-direction: column;
  }
  footer .footer-main .footer-right {
    max-width: 100%;
  }
  .news-container .all-news .news-box .cart-img {
    height: 184px;
  }
  .store-container .store-items .store-item .map {
    max-width: 400px;
    height: 200px;
  }
  .products-container {
    flex-direction: column;
  }
  .products-container .filterShow {
    display: flex;
  }
  .products-container .filter {
    min-width: 308px;
    width: 308px;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    z-index: 10;
    box-shadow: 0 0 11px 0 rgba(143, 143, 143, 0.16);
    border-radius: 0;
    height: 100%;
    transition: 0.4s ease-in-out;
  }
  .products-container .filter .filter-head {
    display: flex;
  }
  .products-container .filter .filter-items {
    height: calc(100svh - 110px);
    overflow-y: auto;
    padding-right: 10px;
  }
  .products-container .products {
    width: 100%;
  }
  .products-container .products .all-products {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-detail-container .product-detail-images {
    min-width: 350px;
    width: 350px;
  }
  .product-detail-container .product-detail-images .main-img-slide {
    height: 350px;
  }
  .product-detail-container .product-detail {
    width: calc(100% - 390px);
  }
  .home-about-container .home-about {
    gap: 36px;
    flex-direction: column;
  }
  .home-about-container .home-about .home-about-img {
    width: 100%;
    min-width: 0;
    height: 460px;
  }
  .home-categories .category-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-services {
    margin: 70px auto 0;
    gap: 30px;
  }
  .home-services .sec-title {
    font-size: 28px;
    line-height: 32px;
  }
  .home-services .home-service-slide {
    padding-bottom: 5px;
  }
  .home-services .home-service-slide .servide-item {
    width: 500px;
  }
  .home-services .home-service-slide .servide-item .cart-img {
    height: 260px;
  }
  .home-services .home-service-slide .servide-item .cart-body {
    padding: 24px;
  }
  .home-services .home-service-slide .servide-item .cart-body .service-name {
    font-size: 20px;
    line-height: 22px;
  }
  .home-services .home-service-slide .servide-item .cart-body .short-desc {
    margin-top: 6px;
  }
  .home-services .home-service-slide .servide-item .cart-body .short-desc p {
    font-size: 16px;
    line-height: 20px;
  }
  .home-services .home-service-slide .swiper-button-next, .home-services .home-service-slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .home-services .home-service-slide .swiper-button-next {
    right: 14px;
  }
  .home-services .home-service-slide .swiper-button-prev {
    left: 14px;
  }
  .home-contact .home-contact-container .home-contact-left {
    max-width: 250px;
  }
  .home-contact .home-contact-container .home-contact-form {
    max-width: 550px;
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  header {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  header .header-logo {
    width: 140px;
  }
  header .header-right {
    gap: 20px;
  }
  header .header-right .workHours {
    display: none;
  }
  header .header-right .header-lang .lang-item {
    font-size: 16px;
  }
  header .header-right .header-lang span {
    height: 10px;
  }
  header .header-right .hamburger {
    display: block;
  }
  nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .home-hero {
    margin: 30px auto 0;
  }
  .home-hero .home-hero-slide {
    padding-bottom: 20px;
  }
  .home-hero .home-hero-slide .hero-item {
    height: 462px;
  }
  .home-hero .home-hero-form {
    padding: 20px 12px;
  }
  .home-hero .home-hero-form .form-category .form_category_item {
    padding: 12px 4px;
  }
  .home-hero .home-hero-form .form-category .form_category_item p {
    font-size: 12px;
    line-height: 16px;
  }
  .home-hero .home-hero-form .form-category .form_category_item svg {
    min-width: 17px;
    width: 17px;
    height: 17px;
  }
  .home-hero .home-hero-form .form-type {
    margin-top: 16px;
  }
  .home-hero .home-hero-form .form-type .form_type_item {
    padding: 12px 4px;
  }
  .home-hero .home-hero-form .form-type .form_type_item p {
    font-size: 12px;
    line-height: 16px;
  }
  .home-hero .home-hero-form .heroFromSubmit {
    padding: 12px;
    margin-top: 40px;
  }
  .home-brands {
    margin: 40px auto 0;
    gap: 20px;
  }
  .home-brands .sec-title {
    font-size: 24px;
    line-height: 28px;
  }
  .home-brands .brands-slide .brand-item {
    width: 174px;
    height: 70px;
  }
  .home-categories {
    margin: 40px auto 0;
    gap: 20px;
  }
  .home-categories .sec-title {
    font-size: 24px;
    line-height: 28px;
  }
  .home-categories .category-boxes {
    gap: 40px 20px;
  }
  .home-categories .category-boxes .category-box {
    padding: 16px;
    height: 126px;
  }
  .home-categories .category-boxes .category-box p {
    font-size: 16px;
    line-height: 24px;
  }
  .home-categories .category-boxes .category-box .icon {
    bottom: -30px;
    width: 164px;
  }
  .home-categories .category-boxes .category-box:hover .icon {
    transform: translateX(30px);
  }
  .home-about-container {
    margin-top: 40px;
    padding: 30px 0;
  }
  .home-about-container .home-about {
    gap: 36px;
    flex-direction: column;
  }
  .home-about-container .home-about .home-about-content {
    gap: 20px;
  }
  .home-about-container .home-about .home-about-content .sec-title {
    font-size: 24px;
    line-height: 28px;
  }
  .home-about-container .home-about .home-about-img {
    height: 420px;
  }
  .home-services {
    margin: 40px auto 0;
    gap: 20px;
  }
  .home-services .sec-title {
    font-size: 24px;
    line-height: 28px;
  }
  .home-services .home-service-slide .servide-item {
    width: 400px;
  }
  .home-services .home-service-slide .servide-item .cart-img {
    height: 210px;
  }
  .home-services .home-service-slide .servide-item .cart-body {
    padding: 20px;
  }
  .home-services .home-service-slide .swiper-button-next, .home-services .home-service-slide .swiper-button-prev {
    display: none;
  }
  .home-contact {
    margin-top: 40px;
  }
  .home-contact .home-contact-container {
    gap: 30px;
    flex-direction: column;
  }
  .home-contact .home-contact-container .home-contact-left {
    max-width: 400px;
    gap: 12px;
  }
  .home-contact .home-contact-container .home-contact-form {
    max-width: 100%;
    gap: 12px;
  }
  .home-contact .home-contact-container .home-contact-form input, .home-contact .home-contact-container .home-contact-form textarea {
    padding: 10px;
  }
  .home-contact .home-contact-container .home-contact-form textarea {
    height: 100px;
  }
  .home-contact .home-contact-container .home-contact-form .form-line {
    gap: 12px;
  }
  footer {
    margin-top: 40px;
    padding-top: 20px;
  }
  footer .footer-main {
    gap: 20px;
  }
  footer .footer-main .footer-logo {
    width: 155px;
    min-width: 155px;
  }
  footer .footer-main .footer-right {
    gap: 20px;
  }
  footer .footer-bottom {
    margin-top: 30px;
  }
  footer .footer-bottom p {
    padding-top: 16px;
    padding-bottom: 20px;
  }
  .breadCrumb-container {
    margin: 20px auto 0;
  }
  .pagination {
    margin-top: 24px;
  }
  .news-detail-container {
    margin: 30px auto 0;
  }
  .news-detail-container .news-title {
    margin-top: 30px;
    font-size: 32px;
    line-height: 40px;
  }
  .news-detail-container .news-txt {
    margin-top: 35px;
  }
  .news-detail-container .news-txt p, .news-detail-container .news-txt span {
    font-size: 16px;
    line-height: 24px;
  }
  .news-container {
    margin: 30px auto 0;
  }
  .news-container .all-news {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-container .all-news .news-box .cart-img {
    height: 184px;
  }
  .news-container .all-news .news-box .cart-body {
    padding: 20px 12px;
  }
  .news-container .all-news .news-box .cart-body .short-desc {
    margin-top: 10px;
  }
  .news-container .all-news .news-box .cart-body .more {
    margin-top: 20px;
  }
  .store-container {
    margin: 30px auto 0;
  }
  .store-container .title {
    font-size: 28px;
    line-height: 30px;
  }
  .store-container .short-title {
    margin-top: 10px;
    max-width: 400px;
  }
  .store-container .store-items {
    gap: 20px;
    margin-top: 30px;
  }
  .store-container .store-items .store-item {
    gap: 24px;
    padding-bottom: 20px;
    flex-direction: column;
  }
  .store-container .store-items .store-item:last-child {
    padding-bottom: 0;
  }
  .store-container .store-items .store-item .store-info {
    gap: 16px;
  }
  .store-container .store-items .store-item .store-info .store-name {
    font-size: 28px;
    line-height: 30px;
  }
  .store-container .store-items .store-item .store-info .store-contacts {
    gap: 14px;
  }
  .store-container .store-items .store-item .store-info .store-contacts .store-contact-item {
    gap: 12px;
  }
  .store-container .store-items .store-item .map {
    max-width: 100%;
  }
  .products-container {
    margin: 30px auto 0;
  }
  .products-container .products .all-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-container {
    margin: 30px auto 0;
    gap: 20px;
  }
  .product-detail-container .product-detail-images {
    min-width: 280px;
    width: 280px;
    gap: 20px;
  }
  .product-detail-container .product-detail-images .main-img-slide {
    height: 280px;
  }
  .product-detail-container .product-detail-images .other-img-slide .other-img-item {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .product-detail-container .product-detail {
    width: calc(100% - 300px);
  }
  .product-detail-container .product-detail .productName {
    font-size: 28px;
    line-height: 32px;
  }
  .product-detail-container .product-detail .product-price {
    margin-top: 12px;
  }
  .product-detail-container .product-detail .product-price .prev-price p {
    font-size: 16px;
    line-height: 24px;
  }
  .product-detail-container .product-detail .product-price .prev-price span {
    font-size: 18px;
    line-height: 20px;
  }
  .product-detail-container .product-detail .product-price .current-price {
    font-size: 20px;
    line-height: 28px;
  }
  .product-detail-container .product-detail .product-characteristics {
    margin-top: 20px;
    gap: 20px;
  }
  .product-detail-container .product-detail .product-characteristics .box-title {
    font-size: 16px;
    line-height: 24px;
  }
  .product-detail-container .product-detail .product-characteristics .characteristics-list {
    gap: 12px;
  }
  .product-detail-container .product-detail .product-characteristics .characteristics-list .list-item {
    padding-bottom: 1px;
  }
  .product-detail-container .product-detail .product-characteristics .characteristics-list .list-item:last-child {
    padding-bottom: 0;
  }
  .credit-carts-container {
    margin: 40px auto 0;
  }
  .credit-carts-container .sectionTitle {
    font-size: 24px;
    line-height: 28px;
  }
  .credit-carts-container .short-desc {
    margin-top: 10px;
  }
  .credit-carts-container .credit-carts {
    margin-top: 20px;
    max-width: 100%;
  }
  .creditCalculator-container {
    margin: 40px auto 0;
  }
  .creditCalculator-container .sectionTitle {
    font-size: 24px;
    line-height: 28px;
  }
  .creditCalculator-container .creditCalculator {
    max-width: 550px;
    padding: 12px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-head p {
    min-width: 0;
    width: 100%;
    font-size: 12px;
    line-height: 16px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item p {
    min-width: 0;
    width: 100%;
    font-size: 12px;
    line-height: 16px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select {
    min-width: 50px;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 50px;
    padding: 6px 18px 6px 6px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .current {
    font-size: 12px;
    line-height: 16px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select::after {
    right: 7px;
    width: 4px;
    height: 4px;
    margin-top: -5px;
  }
  .creditCalculator-container .creditCalculator .creditCalculator-list .list-item .nice-select .list .option {
    padding: 6px 14px;
    font-size: 12px;
    line-height: 16px;
  }
  .other-products {
    margin: 40px auto 0;
  }
  .other-products .sectionTitle {
    font-size: 24px;
    line-height: 28px;
  }
  .other-products .other-products-slide {
    margin-top: 30px;
  }
  .other-products .other-products-slide .product-cart {
    width: 258px;
  }
  .other-products .other-products-slide .product-cart .cart-image .img {
    margin-right: -32px;
    width: 190px;
  }
  .other-products .other-products-slide .swiper-button-next, .other-products .other-products-slide .swiper-button-prev {
    display: none;
  }
}
@media only screen and (max-width: 675px) {
  .product-detail-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .product-detail-container .product-detail-images {
    min-width: 350px;
    width: 350px;
  }
  .product-detail-container .product-detail-images .main-img-slide {
    height: 350px;
  }
  .product-detail-container .product-detail {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .mobile-menu {
    width: 100%;
  }
  .home-hero .home-hero-slide .hero-item {
    height: 362px;
  }
  .home-hero .home-hero-form .form-category .form_category_item {
    flex-direction: column-reverse;
    padding: 8px 4px;
  }
  .home-hero .home-hero-form .form-category .form_category_item svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
  .home-hero .home-hero-form .form-selects-list .form-selects {
    gap: 14px;
  }
  .home-hero .home-hero-form .heroFromSubmit {
    margin-top: 30px;
  }
  .home-about-container .home-about .home-about-img {
    height: auto;
  }
  .home-categories .category-boxes {
    gap: 30px 16px;
  }
  .home-categories .category-boxes .category-box {
    padding: 12px;
    height: 85px;
  }
  .home-categories .category-boxes .category-box p {
    font-size: 12px;
    line-height: 16px;
    -webkit-line-clamp: 3;
  }
  .home-categories .category-boxes .category-box .icon {
    bottom: -30px;
    width: 94px;
  }
  footer .footer-main .footer-right {
    gap: 14px;
    flex-direction: column;
  }
  .home-contact .home-contact-container .home-contact-form .form-line {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-container .all-news {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-container .all-news .news-box .cart-img {
    height: auto;
  }
  .products-container .products .all-products {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-container .products .all-products .product-cart .cart-image {
    height: 166px;
  }
  .products-container .products .all-products .product-cart .cart-image .img {
    margin-right: -42px;
    width: 250px;
  }
  .product-detail-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .product-detail-container .product-detail-images {
    min-width: 0;
    width: 100%;
  }
  .product-detail-container .product-detail-images .main-img-slide {
    height: 300px;
  }
  .product-detail-container .product-detail-images .main-img-slide .main-img-item img {
    width: 300px;
  }
  .home-services .home-service-slide .servide-item {
    width: 280px;
  }
  .home-services .home-service-slide .servide-item .cart-img {
    height: 145px;
  }
  .home-services .home-service-slide .servide-item .cart-body {
    padding: 16px;
  }
  .product-cart .cart-body .cart-body-main .cart-body-left .pro-name {
    height: auto;
    display: inline-block;
  }
}
@media only screen and (max-width: 475px) {
  .home-hero .home-hero-slide .hero-item {
    height: 312px;
  }
}/*# sourceMappingURL=style.css.map */