* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  transition: 0.5s;
}

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

.cart {
  width: 100%;
  height: 35px;
  border: 2px solid #70C05B;
  border-radius: 5px;
  color: #70C05B;
  transition: 0.2s;
}
.cart:hover {
  background-color: #FF6633;
  border-color: #FF6633;
  color: #fff;
  cursor: pointer;
}
.cart:active {
  transition: 0.1s;
  transform: scale(0.9);
}

.stat-btn {
  background-color: #E5FFDE;
  border: none;
  outline: none;
  padding: 9px 25px;
  color: #70C05B;
  border-radius: 5px;
  transition: 0.3s;
}
.stat-btn:hover {
  cursor: pointer;
  transform: scale(1.03);
  color: #fff;
  background-color: #70C05B;
}
.stat-btn:active {
  transition: 0.1s;
  transform: scale(0.9);
}

.login-btn {
  width: 100%;
  padding: 10px 5px;
  border-radius: 3px;
  border: none;
  outline: none;
  background-color: #FCD5BA;
  color: #FF6633;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.login-btn:hover {
  transform: scale(1.04);
}
.login-btn:active {
  transition: 0.1s;
  transform: scale(0.9);
}

.header {
  height: 70px;
  position: relative;
  z-index: 1;
}

.header-joylashuv {
  height: 70px;
  width: 100%;
  position: fixed;
  z-index: 2;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.header-info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-info .logo {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.header-info .logo img {
  width: 29px;
}
.header-info .logo h2 {
  color: #414141;
  text-transform: uppercase;
  font-size: 18px;
}
.header-info .qidiruv {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.header-info .qidiruv .kategor {
  background-color: #70C05B;
  border: none;
  height: 60%;
  width: 120px;
  padding: 0 10px;
  margin-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: 0.5s;
  position: relative;
}
.header-info .qidiruv .kategor i {
  font-size: 18px;
}
.header-info .qidiruv .kategor p {
  font-size: 17px;
}
.header-info .qidiruv #head-menu {
  display: none;
}
.header-info .qidiruv #head-menu:checked + .header-menu {
  display: block;
}
.header-info .qidiruv .header-menu {
  background-color: #fff;
  position: absolute;
  display: none;
  left: 0;
  top: 60px;
  width: 200px;
  padding: 5px 10px 10px 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 3px;
}
.header-info .qidiruv .header-menu > ul {
  list-style-type: none;
}
.header-info .qidiruv .header-menu > ul li {
  margin: 5px 0;
}
.header-info .qidiruv .header-menu > ul li a {
  text-decoration: none;
  color: #414141;
  font-weight: 500;
  width: 100%;
  display: inline-block;
  padding: 7px 10px;
  border-radius: 3px;
}
.header-info .qidiruv .header-menu > ul li a:hover {
  background-color: rgba(202, 202, 202, 0.529);
  color: black;
}
.header-info .qidiruv .head-search {
  border: 2px solid #70C05B;
  height: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  border-radius: 5px;
  margin-right: 10px;
}
.header-info .qidiruv .head-search input {
  border: none;
  outline: none;
  height: 100%;
  width: 100%;
}
.header-info .qidiruv .head-search i {
  color: #414141;
  cursor: pointer;
}
.header-info .qidiruv .head-search i:hover {
  color: #70C05B;
}
.header-info .head-right {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
}
.header-info .head-right .kategory {
  display: flex;
  list-style: none;
  gap: 20px;
  height: 100%;
}
.header-info .head-right .kategory li {
  height: 100%;
}
.header-info .head-right .kategory li a {
  display: inline-block;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  justify-content: center;
  text-decoration: none;
  color: #414141;
}
.header-info .head-right .kategory li a:hover {
  color: #FF6633;
}
.header-info .head-right .kategory li a:hover > i > p {
  background-color: #414141;
  color: #FF6633;
}
.header-info .head-right .kategory li a > i {
  font-size: 20px;
  position: relative;
}
.header-info .head-right .kategory li a > i > p {
  background-color: #FF6633;
  color: #fff;
  width: 15px;
  height: 15px;
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 4px;
}
.header-info .head-right .profile {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}
.header-info .head-right .profile:hover > b {
  color: #70C05B;
  transition: 0.1s;
}
.header-info .head-right .profile img {
  border-radius: 50%;
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-info .head-right .profile b {
  color: #414141;
  display: flex;
  gap: 10px;
  font-weight: 500;
}
.header-info .head-right .profile b i {
  transform: rotate(90deg);
}
.header-info .head-right #profile {
  display: none;
}
.header-info .head-right #profile:checked + .profile-menu {
  display: flex;
}
.header-info .head-right .profile-menu {
  background-color: white;
  list-style-type: none;
  position: absolute;
  top: 74px;
  right: 0px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 150px;
  height: auto;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 3px;
}
.header-info .head-right .profile-menu li {
  width: 100%;
  margin: 5px 0;
}
.header-info .head-right .profile-menu li:nth-child(1):hover a > i {
  color: #FF6633;
  transition: 0.7s;
  transform: skew(7deg, 10deg) scale(1.05);
}
.header-info .head-right .profile-menu li:nth-child(2):hover a > i {
  color: #FF6633;
  transition: 1s;
  transform: rotate(90deg);
}
.header-info .head-right .profile-menu li:nth-child(3):hover a > i {
  color: #FF6633;
  transition: 1s;
  transform: translateX(5px);
}
.header-info .head-right .profile-menu li a {
  padding: 7px;
  display: inline-block;
  width: 100%;
  border-radius: 3px;
  text-decoration: none;
  color: #414141;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-info .head-right .profile-menu li a > i {
  transition: 0.5s;
  font-size: 17px;
}
.header-info .head-right .profile-menu li a:hover {
  background-color: rgba(185, 185, 185, 0.374);
  color: black;
}

.banner {
  height: 250px;
  background: url(../images/banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-info {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner-info img {
  align-self: flex-end;
  height: 90%;
}
.banner-info h1 {
  font-size: 47px;
  color: #414141;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.aksiya {
  background-color: #FBF8EC;
  height: 600px;
  padding: 50px 0;
}

.aksiya-info {
  height: 100%;
}
.aksiya-info .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin-bottom: 30px;
}
.aksiya-info .title h2 {
  color: #414141;
  font-size: 33px;
}
.aksiya-info .title a {
  text-decoration: none;
  color: #414141;
  font-weight: 500;
  transition: 0.4s;
}
.aksiya-info .title a:hover {
  transition: 0.1s;
  color: #FF6633;
}
.aksiya-info .cards {
  height: auto;
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(4, 1fr);
}
.aksiya-info .cards .card {
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
  overflow: hidden;
  transition: 0.3s;
  height: auto;
  display: flex;
  flex-direction: column;
}
.aksiya-info .cards .card:hover {
  transform: scale(1.05);
  box-shadow: rgba(255, 94, 0, 0.16) 0px 3px 6px, rgba(255, 60, 0, 0.23) 0px 3px 6px;
}
.aksiya-info .cards .card .card-top {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 7px 0;
  position: relative;
}
.aksiya-info .cards .card .card-top img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.aksiya-info .cards .card .card-top .fa-heart {
  color: rgb(175, 175, 175);
  font-size: 23px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.aksiya-info .cards .card .card-top .fa-heart:hover {
  color: #FF6633;
  cursor: pointer;
}
.aksiya-info .cards .card .card-top > span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background-color: #FF6633;
  color: #fff;
  padding: 5px 7px;
  border-radius: 4px;
}
.aksiya-info .cards .card .card-top > span > p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.aksiya-info .cards .card .card-bottom {
  flex: 1;
  padding: 10px;
}
.aksiya-info .cards .card .card-bottom .narx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 7px 0;
}
.aksiya-info .cards .card .card-bottom .narx .narx-chap p {
  color: rgb(153, 153, 153);
  font-size: 15px;
}
.aksiya-info .cards .card .card-bottom .narx .narx-ung b {
  font-size: 15px;
  color: rgb(120, 120, 120);
  font-weight: 500;
}
.aksiya-info .cards .card .card-bottom .narx .narx-ung p {
  color: rgb(153, 153, 153);
}
.aksiya-info .cards .card .card-bottom .product-rating {
  margin: 7px 0;
}
.aksiya-info .cards .card .card-bottom .product-rating > i {
  color: rgb(182, 182, 182);
}

.novinki {
  background-color: #FBF8EC;
  height: 500px;
}

.novinki-info {
  height: 100%;
}
.novinki-info .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin-bottom: 30px;
}
.novinki-info .title h2 {
  color: #414141;
  font-size: 33px;
}
.novinki-info .title a {
  text-decoration: none;
  color: #414141;
  font-weight: 500;
  transition: 0.4s;
}
.novinki-info .title a:hover {
  transition: 0.1s;
  color: #FF6633;
}
.novinki-info .cards {
  height: auto;
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(4, 1fr);
}
.novinki-info .cards .card {
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
  overflow: hidden;
  transition: 0.3s;
  height: auto;
  display: flex;
  flex-direction: column;
}
.novinki-info .cards .card:hover {
  transform: scale(1.05);
  box-shadow: rgba(255, 94, 0, 0.16) 0px 3px 6px, rgba(255, 60, 0, 0.23) 0px 3px 6px;
}
.novinki-info .cards .card .card-top {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 7px 0;
  position: relative;
}
.novinki-info .cards .card .card-top img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.novinki-info .cards .card .card-top > .fa-heart {
  color: rgb(175, 175, 175);
  font-size: 23px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.novinki-info .cards .card .card-top > .fa-heart:hover {
  color: #FF6633;
  cursor: pointer;
}
.novinki-info .cards .card .card-bottom {
  flex: 1;
  padding: 10px;
}
.novinki-info .cards .card .card-bottom .narx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 7px 0;
}
.novinki-info .cards .card .card-bottom .narx .narx-chap p {
  color: rgb(153, 153, 153);
  font-size: 15px;
}
.novinki-info .cards .card .card-bottom .narx .narx-ung b {
  font-size: 15px;
  color: rgb(120, 120, 120);
  font-weight: 500;
}
.novinki-info .cards .card .card-bottom .narx .narx-ung p {
  color: rgb(153, 153, 153);
}
.novinki-info .cards .card .card-bottom .product-rating {
  margin: 7px 0;
}
.novinki-info .cards .card .card-bottom .product-rating > i {
  color: rgb(182, 182, 182);
}
.novinki-info .cards .card .card-bottom .product-rating > i:nth-child(1) {
  color: #FF6633;
}
.novinki-info .cards .card .card-bottom .product-rating > i:nth-child(2) {
  color: #FF6633;
}
.novinki-info .cards .card .card-bottom .product-rating > i:nth-child(3) {
  color: #FF6633;
}
.novinki-info .cards .card .card-bottom .product-rating > i:nth-child(4) {
  color: #FF6633;
}

.pokupali {
  background-color: #FBF8EC;
  height: 500px;
}

.pokupali-info {
  height: 100%;
}
.pokupali-info .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin-bottom: 30px;
}
.pokupali-info .title h2 {
  color: #414141;
  font-size: 33px;
}
.pokupali-info .title a {
  text-decoration: none;
  color: #414141;
  font-weight: 500;
  transition: 0.4s;
}
.pokupali-info .title a:hover {
  transition: 0.1s;
  color: #FF6633;
}
.pokupali-info .cards {
  height: auto;
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(4, 1fr);
}
.pokupali-info .cards .card {
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
  overflow: hidden;
  transition: 0.3s;
  height: auto;
  height: auto;
  display: flex;
  flex-direction: column;
}
.pokupali-info .cards .card:hover {
  transform: scale(1.05);
  box-shadow: rgba(255, 94, 0, 0.16) 0px 3px 6px, rgba(255, 60, 0, 0.23) 0px 3px 6px;
}
.pokupali-info .cards .card .card-top {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 7px 0;
  position: relative;
}
.pokupali-info .cards .card .card-top img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 150px;
}
.pokupali-info .cards .card .card-top > .fa-heart {
  color: rgb(175, 175, 175);
  font-size: 23px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.pokupali-info .cards .card .card-top > .fa-heart:hover {
  color: #FF6633;
  cursor: pointer;
}
.pokupali-info .cards .card .card-bottom {
  flex: 1;
  padding: 10px;
}
.pokupali-info .cards .card .card-bottom .narx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 7px 0;
}
.pokupali-info .cards .card .card-bottom .narx .narx-chap p {
  color: rgb(153, 153, 153);
  font-size: 15px;
}
.pokupali-info .cards .card .card-bottom .narx .narx-ung b {
  font-size: 15px;
  color: rgb(120, 120, 120);
  font-weight: 500;
}
.pokupali-info .cards .card .card-bottom .narx .narx-ung p {
  color: rgb(153, 153, 153);
}
.pokupali-info .cards .card .card-bottom .product-rating {
  margin: 7px 0;
}
.pokupali-info .cards .card .card-bottom .product-rating > i {
  color: rgb(182, 182, 182);
}
.pokupali-info .cards .card .card-bottom .product-rating > i:nth-child(1) {
  color: #FF6633;
}
.pokupali-info .cards .card .card-bottom .product-rating > i:nth-child(2) {
  color: #FF6633;
}

.spetsialniye {
  background-color: #FBF8EC;
  height: 300px;
}

.spetsialniye-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.spetsialniye-info > h2 {
  color: #414141;
  font-size: 33px;
  margin-bottom: 15px;
}
.spetsialniye-info .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}
.spetsialniye-info .cards .card {
  display: flex;
  height: 170px;
  gap: 20px;
  padding: 15px;
  border-radius: 7px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.3s;
}
.spetsialniye-info .cards .card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: scale(1.05);
  cursor: pointer;
}
.spetsialniye-info .cards .card:nth-child(1) {
  background-color: #FCD5BA;
}
.spetsialniye-info .cards .card:nth-child(1) .card-image img {
  transform: rotate(20deg);
  width: 155px;
  border-radius: 7px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.spetsialniye-info .cards .card:nth-child(2) {
  background-color: #E5FFDE;
}
.spetsialniye-info .cards .card .card-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.spetsialniye-info .cards .card .card-info p {
  color: #414141;
}
.spetsialniye-info .cards .card .card-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spetsialniye-info .cards .card .card-image img {
  width: 60%;
}

.nash {
  background-color: #FBF8EC;
}

.nash-info > h2 {
  color: #414141;
  font-size: 33px;
  padding-bottom: 15px 0;
}
.nash-info .nash-buttons {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 15px;
  margin: 20px 0 10px 0;
}
.nash-info .nash-buttons li a {
  background-color: #F3F2F1;
  text-decoration: none;
  color: #414141;
  padding: 7px 12px;
  border-radius: 4px;
  transition: 0.3s;
  display: inline-block;
}
.nash-info .nash-buttons li a:hover {
  background-color: #70C05B;
  color: #fff;
  transform: scale(1.05);
  cursor: pointer;
}
.nash-info .nash-buttons li a:active {
  transition: 0.1s;
  transform: scale(0.9);
}
.nash-info .location {
  width: 100%;
}
.nash-info .location > img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.stat {
  background-color: #FBF8EC;
  padding: 20px 0 50px 0;
}

.stat-info > h2 {
  font-size: 33px;
  color: #414141;
  padding-bottom: 25px;
}
.stat-info .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 430px;
  gap: 30px;
}
.stat-info .cards .card {
  height: auto;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  transition: 0.3s;
}
.stat-info .cards .card:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  transform: scale(1.03);
  cursor: pointer;
}
.stat-info .cards .card .card-top {
  height: 40%;
}
.stat-info .cards .card .card-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stat-info .cards .card .card-bottom {
  height: 60%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.stat-info .cards .card .card-bottom > data {
  margin-bottom: -10px;
}
.stat-info .cards .card .card-bottom b {
  display: inline-block;
  margin-bottom: 12px;
}
.stat-info .cards .card .card-bottom p {
  color: #414141;
  margin-bottom: 10px;
}

.footer {
  background-color: #f5eed6;
  height: 150px;
}

.footer-bg {
  height: 100%;
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px 0;
}

.footer-info {
  display: flex;
  height: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-info > ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  height: 100%;
  align-items: flex-start;
}
.footer-info > ul li a {
  text-decoration: none;
  color: #414141;
  font-weight: 500;
  font-size: 14px;
}
.footer-info > ul li a:hover {
  color: #FF6633;
}
.footer-info .footer-right {
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 30px;
}
.footer-info .footer-right .footer-logos {
  height: 100%;
  display: flex;
  gap: 15px;
}
.footer-info .footer-right .footer-logos > a:nth-child(1) {
  color: rgb(255, 0, 174);
}
.footer-info .footer-right .footer-logos > a:nth-child(2) {
  color: rgb(0, 132, 255);
}
.footer-info .footer-right .footer-logos > a:nth-child(3) {
  color: rgb(8, 0, 255);
}
.footer-info .footer-right .footer-logos > a:nth-child(4) {
  color: rgb(255, 157, 0);
}
.footer-info .footer-right .footer-logos a i {
  font-size: 20px;
}
.footer-info .footer-right > ul {
  list-style-type: none;
}
.footer-info .footer-right > ul li {
  color: #414141;
  margin-bottom: 10px;
}
.footer-info .footer-right > ul li a {
  text-decoration: none;
  color: #414141;
}
.footer-info .footer-right > ul li a:hover {
  color: #70C05B;
}

#kirish {
  display: none;
}

#kirish:checked + .kirish {
  display: flex;
}

.kirish {
  background-color: rgba(250, 114, 69, 0.2901960784);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.kirish form {
  width: 330px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  padding: 30px 40px 50px 40px;
  margin: 15px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.kirish form > a {
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgb(206, 206, 206);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-bottom-left-radius: 5px;
}
.kirish form > a:hover {
  background-color: rgb(170, 170, 170);
}
.kirish form > a:hover > i {
  color: black;
}
.kirish form > a i {
  font-size: 20px;
  color: rgb(74, 74, 74);
}
.kirish form > h3 {
  text-align: center;
  color: #414141;
  margin-bottom: 20px;
}
.kirish form > input {
  width: 100%;
  padding: 8px 5px;
  margin: 3px 0 15px 0;
  border-radius: 3px;
  border: 2px solid #70C05B;
  outline: none;
}
.kirish form > span {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.kirish form > span > a {
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  padding: 6px 12px;
  font-size: 15px;
  color: #414141;
}
.kirish form > span > a:nth-child(1) {
  color: #70C05B;
  border: 1px solid #70C05B;
  border-radius: 5px;
  transition: 0.3s;
}
.kirish form > span > a:nth-child(1):hover {
  background-color: #70C05B;
  color: #fff;
}
.kirish form > span > a:nth-child(1):active {
  transition: 0.1s;
  transform: scale(0.9);
}

.vakansiya {
  background-color: #FBF8EC;
  padding: 20px 0 40px 0;
}

.vakansiya-info .navigatsiya {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #414141;
  cursor: context-menu;
}
.vakansiya-info .navigatsiya > a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
.vakansiya-info .navigatsiya > a i {
  margin-left: 5px;
}
.vakansiya-info > h2 {
  margin-bottom: 20px;
  font-size: 43px;
  font-weight: 900;
  color: #414141;
  letter-spacing: 0.5px;
}
.vakansiya-info .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 37px;
}
.vakansiya-info .cards .card {
  background-color: #fff;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  cursor: context-menu;
  transition: 0.4s;
}
.vakansiya-info .cards .card:hover {
  transform: scale(1.04);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.vakansiya-info .cards .card > h4 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}
.vakansiya-info .cards .card > p {
  margin-bottom: 12px;
  color: #414141;
}
.vakansiya-info .cards .card > p > span {
  margin-bottom: 6px;
  display: inline-block;
}
.vakansiya-info .cards .card p:nth-child(5) {
  color: black;
  margin-bottom: 8px;
  font-weight: 500;
}
.vakansiya-info .cards .card > a {
  text-decoration: none;
  color: #414141;
  display: flex;
  gap: 5px;
}

.kontakt {
  background-color: #FBF8EC;
  padding: 20px 0 40px 0;
}

.kontakt-info .navigatsiya {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #414141;
  cursor: context-menu;
}
.kontakt-info .navigatsiya > a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
.kontakt-info .navigatsiya > a i {
  margin-left: 5px;
}
.kontakt-info > h2 {
  margin-bottom: 20px;
  font-size: 43px;
  font-weight: 900;
  color: #414141;
  letter-spacing: 0.5px;
}
.kontakt-info .sklad {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.kontakt-info .sklad ul {
  list-style-type: none;
}
.kontakt-info .sklad ul li:first-child {
  color: #414141;
}
.kontakt-info .sklad ul li b {
  font-weight: 500;
  text-decoration: underline;
  margin-top: 5px;
  display: inline-block;
  margin-left: 15px;
}
.kontakt-info .sklad ul li i {
  margin-right: 5px;
}
.kontakt-info .empty-space {
  height: 100px;
}
.kontakt-info > h3 {
  font-size: 27px;
  color: #414141;
  margin-bottom: 10px;
}
.kontakt-info .location-btns {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.kontakt-info .location-btns > button {
  transition: 0.4s;
  border: none;
  outline: none;
  padding: 7px 15px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  cursor: pointer;
}
.kontakt-info .location-btns > button:hover {
  transform: scale(1.04);
  background-color: #70C05B;
  color: #fff;
}
.kontakt-info .location-btns > button:active {
  transition: 0.1s;
  transform: scale(0.9);
}
.kontakt-info .filial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 10px 0;
}
.kontakt-info .filial ul {
  list-style-type: none;
}
.kontakt-info .filial ul li {
  color: #414141;
  margin-bottom: 5px;
}
.kontakt-info .filial ul li i {
  margin-right: 5px;
}
.kontakt-info .filial ul li a {
  color: #414141;
}
.kontakt-info .location-img {
  background-color: gray;
  width: 100%;
  height: 350px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-top: 25px;
}
.kontakt-info .location-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.o-nas {
  padding: 20px 0;
}

.o-nas-info .navigatsiya {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #414141;
  cursor: context-menu;
}
.o-nas-info .navigatsiya > a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
.o-nas-info .navigatsiya > a i {
  margin-left: 5px;
}
.o-nas-info .kompani {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.o-nas-info .kompani .kompani-left {
  max-width: 40%;
}
.o-nas-info .kompani .kompani-left > h2 {
  font-size: 47px;
  color: #414141;
  margin-bottom: 15px;
}
.o-nas-info .kompani .kompani-left > p {
  color: rgb(236, 67, 0);
  font-weight: 900;
  line-height: 23px;
}
.o-nas-info .kompani .kompani-right {
  background: url(../images/o-nas-back.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 60%;
}
.o-nas-info .kompani .kompani-right img {
  width: 100%;
}

.vse {
  background-color: #FBF8EC;
  height: auto;
  padding: 20px 0;
}

.vse-info {
  height: 100%;
}
.vse-info .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin-bottom: 30px;
}
.vse-info .title h2 {
  color: #414141;
  font-size: 33px;
}
.vse-info .title a {
  text-decoration: none;
  color: #414141;
  font-weight: 500;
  transition: 0.4s;
}
.vse-info .title a:hover {
  transition: 0.1s;
  color: #FF6633;
}
.vse-info .cards {
  height: auto;
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(4, 1fr);
}
.vse-info .cards .card {
  border-radius: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
  overflow: hidden;
  transition: 0.3s;
}
.vse-info .cards .card:hover {
  transform: scale(1.05);
  box-shadow: rgba(255, 94, 0, 0.16) 0px 3px 6px, rgba(255, 60, 0, 0.23) 0px 3px 6px;
}
.vse-info .cards .card .card-top {
  height: 45%;
  display: flex;
  justify-content: center;
  padding: 7px 0;
  position: relative;
}
.vse-info .cards .card .card-top img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.vse-info .cards .card .card-top .fa-heart {
  color: rgb(175, 175, 175);
  font-size: 23px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.vse-info .cards .card .card-top .fa-heart:hover {
  color: #FF6633;
  cursor: pointer;
}
.vse-info .cards .card .card-top > span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background-color: #FF6633;
  color: #fff;
  padding: 5px 7px;
  border-radius: 4px;
}
.vse-info .cards .card .card-top > span > p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.vse-info .cards .card .card-bottom {
  height: 55%;
  padding: 0 10px;
}
.vse-info .cards .card .card-bottom .narx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 7px 0;
}
.vse-info .cards .card .card-bottom .narx .narx-chap p {
  color: rgb(153, 153, 153);
  font-size: 15px;
}
.vse-info .cards .card .card-bottom .narx .narx-ung b {
  font-size: 15px;
  color: rgb(120, 120, 120);
  font-weight: 500;
}
.vse-info .cards .card .card-bottom .narx .narx-ung p {
  color: rgb(153, 153, 153);
}
.vse-info .cards .card .card-bottom .product-rating {
  margin: 7px 0;
}
.vse-info .cards .card .card-bottom .product-rating > i {
  color: rgb(182, 182, 182);
}
.vse-info .cards .card .card-bottom .product-rating > i:nth-child(1) {
  color: #FF6633;
}
.vse-info .cards .card .card-bottom .product-rating > i:nth-child(2) {
  color: #FF6633;
}
.vse-info .cards .card .card-bottom .product-rating > i:nth-child(3) {
  color: #FF6633;
}

.vse-nav {
  background-color: #FBF8EC;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vse-nav > ul {
  list-style-type: none;
  display: flex;
  gap: 35px;
}
.vse-nav > ul li:nth-child(3) a {
  color: #FF6633;
  font-weight: 700;
}
.vse-nav > ul li a {
  text-decoration: none;
  color: #414141;
  font-size: 18px;
  font-weight: 500;
}
.vse-nav > ul li a:hover {
  color: #FF6633;
}

.karzina {
  background-color: #FBF8EC;
  padding: 20px 0 40px 0;
}

.karzina-info .navigatsiya {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #414141;
  cursor: context-menu;
}
.karzina-info .navigatsiya > a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
.karzina-info .navigatsiya > a i {
  margin-left: 5px;
}
.karzina-info > h2 {
  margin-bottom: 20px;
  font-size: 43px;
  font-weight: 900;
  color: #414141;
  letter-spacing: 0.5px;
}

@media (max-width: 950px) {
  .header-info .qidiruv {
    margin: 0 10px;
    flex: 1;
  }
  .header-info .qidiruv .kategor {
    width: auto;
    padding: 0 15px;
  }
  .header-info .qidiruv .kategor > p {
    display: none;
  }
  .header-info .qidiruv .head-search {
    flex: 1;
  }
  .header-info .head-right .profile > img {
    width: 45px;
  }
  .header-info .head-right .profile > b {
    display: none;
  }
  .banner {
    height: 200px;
  }
  .banner-info h1 {
    font-size: 35px;
  }
  .aksiya-info .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .aksiya-info .cards .card:nth-child(4) {
    display: none;
  }
  .novinki-info .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .novinki-info .cards .card:nth-child(4) {
    display: none;
  }
  .pokupali {
    height: 450px;
  }
  .pokupali-info .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .pokupali-info .cards .card:nth-child(4) {
    display: none;
  }
  .stat-info .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .header-info .qidiruv {
    margin: 0 20px;
    flex: 1;
  }
  .header-info .qidiruv .head-search {
    flex: 1;
  }
  .header-info .head-right .kategory {
    transition: 0s;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    justify-content: space-evenly;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  }
  .banner {
    height: 170px;
  }
  .banner-info h1 {
    font-size: 27px;
  }
  .aksiya {
    height: auto;
    padding: 15px 0;
  }
  .aksiya-info .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .aksiya-info .cards .card:nth-child(4) {
    display: block;
  }
  .novinki {
    height: auto;
    padding: 15px 0;
  }
  .novinki-info .cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .novinki-info .cards .card:nth-child(4) {
    display: block;
  }
  .pokupali {
    height: auto;
    padding: 15px 0;
  }
  .pokupali-info .cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .pokupali-info .cards .card:nth-child(4) {
    display: block;
  }
  .spetsialniye {
    height: auto;
    padding: 20px 0;
  }
  .spetsialniye-info .cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 0;
  }
  .stat-info .cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .stat-info .cards .card .card-top {
    height: 50%;
  }
  .stat-info .cards .card .card-bottom {
    height: 50%;
  }
  .footer {
    margin-bottom: 70px;
    height: 130px;
  }
  .footer-info .footer-right .footer-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .header-info .logo > h2 {
    display: none;
  }
  .banner {
    height: 150px;
  }
  .banner-info h1 {
    font-size: 20px;
  }
  .aksiya {
    height: auto;
  }
  .aksiya-info .cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .aksiya-info .cards .card:nth-child(4) {
    display: none;
  }
  .novinki {
    height: auto;
    margin-top: -30px;
  }
  .novinki-info .cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .novinki-info .cards .card:nth-child(4) {
    display: none;
  }
  .pokupali {
    height: auto;
  }
  .pokupali-info .cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .pokupali-info .cards .card:nth-child(4) {
    display: none;
  }
  .stat-info .cards .card .card-top {
    height: 40%;
  }
  .stat-info .cards .card .card-bottom {
    height: 60%;
  }
}
@media (max-width: 670px) {
  .footer-info > ul {
    display: none;
  }
}
@media (max-width: 768px) {
  .vakansiya-info .cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 460px) {
  .vakansiya-info .cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
@media (max-width: 768px) {
  .kontakt-info .empty-space {
    height: 50px;
  }
  .kontakt-info .filial {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .kontakt-info .filial ul li {
    font-size: 14px;
  }
  .kontakt-info .filial ul li img {
    width: 60%;
  }
  .kontakt-info .filial ul li i {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .vse-info .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .vse-info .cards .card:nth-child(4) {
    display: none;
  }
}
@media (max-width: 768px) {
  .vse {
    height: auto;
    padding: 15px 0;
  }
  .vse-info .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .vse-info .cards .card:nth-child(3) {
    display: none;
  }
  .vse-nav > ul li:nth-child(7), .vse-nav > ul li:nth-child(8), .vse-nav > ul li:nth-child(9), .vse-nav > ul li:nth-child(10) {
    display: none;
  }
}
@media (max-width: 460px) {
  .vse-info .cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .vse-info .cards .card:nth-child(4) {
    display: none;
  }
  .vse-nav ul {
    gap: 25px;
  }
  .vse-nav ul li a {
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */