body {
  max-width: 1920px;
  margin: 0px auto;
  background-color: #121212;
  font-family: "Inter", sans-serif;
  color: #fff3e2;
}

.content {
  position: relative;
}

.content::before {
  content: " ";
  width: 1px;
  height: 100%;
  background: #3b3b3b;
  position: absolute;
  left: 50px;
  top: 0;
}

.content::after {
  content: " ";
  width: 1px;
  height: 100%;
  background: #3b3b3b;
  position: absolute;
  right: 50px;
  top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

.callBackVoid:hover {
  cursor: pointer;
}

:hover {
  transition-duration: 0.3s;
}

.modalMain {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  display: none;
}

.modalMain__bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}

.modalMain__inner {
  position: absolute;
  width: 530px;
  padding: 30px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 40px;
  background: #171717;
  z-index: 1005;
}

.modalMain__title {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.modalMain__row {
  margin: 8px 0;
}

.modalMain__input {
  width: 100%;
  border: 1px solid #dddddd;
  padding: 4px 8px;
}

.modalMain__button {
  text-align: center;
}

@media (max-width: 768px) {
  .modalMain__inner {
    width: 98%;
  }
}

.modalYesright {
  color: #fff;
}

.modalYesright a {
  color: #fff;
}

.recept-table tr td {
  border-bottom: 1px solid #3b3b3b;
  padding: 10px 0;
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.recept-table {
  border-top: 1px solid #3b3b3b;
  width: 100%;
}

.recept-table tr td:nth-child(2) {
  text-align: right;
}

.modalMain__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-close {
  width: 55px;
  height: 55px;
  border-radius: 80px;
  border: 1px solid #c3864c;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.modalMain__btn {
  background-color: #fc6701;
  padding: 8px;
  white-space: nowrap;
  border-radius: 5px;
  text-transform: uppercase;
  outline-style: none;
  font-weight: 600;
  color: #fff;
}

.modalMain__btn:hover {
  background-color: #be4f03;
  color: #fff;
}

.stick-menu {
  display: none;
  text-align: center;
}

.is-sticky .stick-menu {
  width: 100%;
  z-index: 1000;
  display: block;
  position: fixed;
  background-color: #fff;
  padding: 12px 0;
}

.stickMenu__list {
  display: flex;
  justify-content: space-around;
}

.line-top {
  display: none;
  z-index: 1001;
  /*position: fixed;*/
  width: 100%;
  left: 0;
  top: 0;
}

@media (max-width: 992px) {
  .line-top {
    display: block;
  }
}

.line-top__inner {
  padding: 8px 8px;
  background-color: #fcfcfc;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line-top__logo img,
.mobile-menu__logo img {
  height: 32px;
}

.line-top__phone {
  text-align: left;
}

.line-top__phone-link {
  color: #000;
  text-decoration: none;
}

.line-top__icon {
  text-decoration: none;
  color: #000;
  font-size: 1.8em;
}

.shapka__logo-img {
  width: 100px;
}

.mobile-menu {
  display: none;
  width: 970px;
  max-width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #171717;
  z-index: 12001;
  padding: 40px 50px;
}

.mobile-menu__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

.mobile-menu__line-top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__closed {
  color: #000;
  text-decoration: none;
  font-size: 1.8em;
}

.mobile-menu__menu {
  margin: 16px 0;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu__item a {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 121px */
  text-transform: uppercase;
}

.mobile-menu__item a:hover {
  color: #c3864c;
}

.mobile-menu__line-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.mobile-menu__phone a {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.mobile-menu__phone-text {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  font-size: 0.875em;
}

.mobile-menu__phone-list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}

.mobile-menu__phone-item {
  padding: 8px 0;
}

.mobile-menu__phone-link {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.category-mobile {
  margin: 8px 0;
}

.category-mobile select {
  width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 8px 16px;
}

.sticky {
  position: fixed;
}

.line-top__callback {
  background-color: #000;
  color: #ffffff;
  border: none;
  margin-top: 4px;
  text-transform: lowercase;
  padding: 4px 8px;
}

.modal-exit {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1001;
  top: 0;
  left: 0;
}

.modal-exit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-exit__inner {
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 350px;
  background-color: #ffffff;
  box-shadow: 0 0 8px #666666;
  padding: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-exit__inner {
    width: 98%;
  }
}

.modal-exit__header {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

:root {
  background: inherit;
}

.wrap {
  z-index: 1200;
  position: relative;
}

model-viewer {
  width: 565px;
  max-width: 100%;
  height: 444px;
  max-width: 1200px;
  background: inherit;
  position: relative;
  bottom: 50px;
}

.kaluga-center model-viewer {
  width: 100%;
}

.hint {
  position: fixed;
  left: 12px;
  bottom: 12px;
  color: #ddd;
  font-size: 13px;
  opacity: 0.9;
}

a.cmd {
  color: #9ecbff;
}

.model {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.shapka {
  position: relative;
  z-index: 1200;
}

.shapka::before {
  content: " ";
  width: 100%;
  top: 40px;
  left: 0;
  height: 1px;
  background: #3b3b3b;
  position: absolute;
}

.shapka-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 50px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  width: 100%;
  max-width: 1920px;
  margin: 2px auto 0;
  transition-duration: 0.3s;
}

.is-sticky .shapka-inner {
  padding: 12px 50px;
  transition-duration: 0.3s;
  background: #121212;
  top: 0;
  z-index: 900;
  margin-top: 0;
}

.shapka-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  grid-column: 1 / 3;
}

.shapka-center {
  display: flex;
  justify-content: center;
}

.shapka-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  grid-column: 4 / 6;
}

.shapka-logo {
  margin-right: 20px;
}

.lang-select {
  position: relative;
}

.lang-select__item {
  border-radius: 80px;
  border: 1px solid #6d6d6d;
  padding: 19px 20px;
  display: flex;
  color: #fff3e2;
  font-size: 16px;
  font-weight: 400;
  gap: 10px;
  background-color: #121212;
}

.lang-select__item:hover {
  border-color: #969696;
  color: #fff3e2;
}

.lang-select__item:active {
  border-color: #c3864c;
  color: #fff3e2;
}

.lang-select__item:active img {
  transform: rotate(180deg);
}

.close-lang {
  display: none;
  position: absolute;
  left: 0;
  top: 70px;
  min-width: 88px;
  text-align: center;
}

.open-lang {
  position: relative;
  user-select: none;
  cursor: pointer;
}

.open-lang:active .close-lang {
  display: block;
}

.marker {
  padding: 20px;
  color: #fff3e2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 80px;
  border: 1px solid #3b3b3b;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shapka-btn a {
  border-radius: 80px;
  border: 1px solid #6d6d6d;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 19px 20px;
  color: #fff3e2;
  font-size: 16px;
  font-weight: 400;
  width: fit-content;
}

.wa-btn span::after {
  content: "Написать в WhatsApp";
}

.shapka-btn a:hover {
  border-radius: 80px;
  border: 1px solid #6d6d6d;
  background: #3b3b3b;
}

.shapka-btn a:focus {
  border-radius: 80px;
  border: 1px solid #6d6d6d;
  background: #1f1f1f;
}

.cart {
  position: relative;
}

.cart a {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 50%;
  background: #c3864c;
}

.cart-numb {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #d24242;
}

.cart a:hover {
  background-color: #d8a676;
}

.cart a:focus {
  background-color: #af865e;
}

.burger a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border-radius: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.burger a:hover {
  border-color: #6d6d6d;
  background: #3b3b3b;
}

.burger a:active {
  border-color: #6d6d6d;
  background: #1f1f1f;
}

.slider {
  padding: 100px 40px 0;
}

.slider-title {
  color: #fff3e2;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 158px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding: 40px 0 92px;
}

.body-numb {
  border-radius: 50%;
  border: 1px solid #6d6d6d;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 400;
}

.mb30 {
  margin-bottom: 30px;
}

.slider-bot {
  border-bottom: 1px solid #3b3b3b;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  padding: 0 50px;
}

.body-title {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.slider-bot__right {
  padding: 96px 18px 20px 98px;
  background-image: url(Content/img/round.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  color: #969696;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.isskus {
  border-top: 1px solid #3b3b3b;
  padding: 0 50px;
  border-bottom: 1px solid #3b3b3b;
}

.isskus-title {
  padding: 70px 0 29px;
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  text-align: center;
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}

.isskus-title span {
  color: #c3864c;
}

.isskus-bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-image: url(Content/img/rock.png);
  background-position: center bottom;
  background-repeat: no-repeat;
}

.body-text {
  color: #969696;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  width: 310px;
  max-width: 100%;
}

.isskus-bot__left .body-text {
  margin: 10px 0;
}

.isskus-bot__left {
  margin-bottom: 47px;
}

.isskus-bot__right .body-text {
  margin: 10px 0 78px;
}

.isskus-bot__right .body-numb {
  float: right;
  margin-bottom: 10px;
}

.kaluga {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 50px;
  /* margin-top: -20px; */
}

.kaluga-center {
  grid-column: 2 / 4;
  position: relative;
  bottom: 50px;
}

.kaluga-center__inner {
  position: sticky;
  top: 0;
  bottom: 0;
  width: 100%;
  margin-top: 60px;
  background-image: url(Content/img/kaluga.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 54px;
}

.kaluga-center__inner .slider-title {
  padding-bottom: 457px;
}

.kaluga-left,
.kaluga-right {
  min-height: 1300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 398px;
}

.kaluga-left {
  border-right: 1px solid #3b3b3b;
  padding-bottom: 180px;
}

.kaluga-right {
  border-left: 1px solid #3b3b3b;
  padding-bottom: 102px;
}

.kaluga .body-text {
  min-width: 100%;
}

.kaluga-item {
  gap: 10px;
}

.body-title span {
  color: #c3864c;
}

.tovary-tabs {
  display: none;
}

.active-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tab-menu {
  text-align: center;
}

.tovary-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  border: 1px solid #3b3b3b;
  width: fit-content;
  margin: 15px auto 19px;
}

.tovary-tab__link {
  padding: 20px 23px;
  color: #969696;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}

.tovary-tab__link:hover,
.tovary-tab__link:active,
.tovary-tab__link:focus,
.active-tab__link:hover {
  color: #969696;
}

.active-tab__link {
  border-radius: 80px;
  background: #3b3b3b;
}

.tab-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  background: #c3864c;
  padding: 20px;
  color: #121212;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

.tab-btn a:hover {
  background-color: #d8a676;
}

.tab-btn a:focus {
  background-color: #af865e;
}

.tab-price {
  border-radius: 80px;
  background: #1f1f1f;
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 400;
  padding: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.osetr {
  background-color: #171717;
  border-top: 1px solid #3b3b3b;
}

.ryba-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 50px 50px 0;
  position: relative;
}

.beluga {
  border-bottom: 1px solid #3b3b3b;
}

.osetr-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.osetr-img img {
  width: 100%;
}

.osetr-inner {
  min-height: 770px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gen-title {
  color: #fff3e2;
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: "Manrope", sans-serif;
}

.ryba-block .tab-sub {
  color: #fff3e2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ryba-block .tab-menu {
  text-align: left;
}

.ryba-block .tovary-tab {
  justify-content: flex-start;
  margin: 15px 0 19px;
}

.ryba-block .active-tab {
  justify-content: flex-start;
}

.ryba-block__fltext {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.ryba-block__flitem {
  color: #969696;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.ryba-right {
  position: absolute;
  right: 50px;
  bottom: 40px;
}

.ryba-left {
  position: absolute;
  left: 50px;
  bottom: 40px;
}

.slider-block {
  padding: 70px 50px;
  border-bottom: 1px solid #3b3b3b;
}

.slider-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.slider-slider {
  grid-column: 2 / 5;
  margin-right: 2px;
}

.slider-btns {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-nav {
  background: #c3864c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  min-width: 60px;
  border-radius: 80px;
  cursor: pointer;
}

.slider-nav:hover {
  background-color: #d8a676;
}

.slider-nav:active {
  background-color: #af865e;
}

.slider-right {
  min-width: 90px;
}

.recept-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.recept-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff3e2;
  font-size: 16px;
  font-weight: 400;
  border-radius: 80px;
  border: 1px solid #6d6d6d;
  padding: 18px 20px;
}

.recept-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recept-btn a:hover {
  background-color: #3b3b3b;
}

.recept-btn a:active {
  background-color: #1f1f1f;
}

.recept-img {
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.recept-img img {
  width: 100%;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.recept-img img:hover {
  transform: translateY(10px);
}

.recept-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff3e2;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.recept-numb {
  border-radius: 50%;
  border: 1px solid #6d6d6d;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 400;
}

.spec-block .gen-title {
  text-align: right;
}

.spec-block {
  padding: 70px 50px 95px;
  background-color: #121212;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spec-grid__item {
  border-radius: 40px;
  min-height: 424px;
  position: relative;
}

.spec-grid__item .body-numb {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.spec-grid__item1 {
  padding: 50px;
  background-image: url(Content/img/spec1.jpg);
  background-position: right bottom;
  background-size: cover;
  grid-column: 1 / 3;
  border: 1px solid #3b3b3b;
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.spec-grid__item1 .body-numb {
  color: #3b3b3b;
  border-color: #3b3b3b;
}

.spec-grid__item1 span {
  color: #c3864c;
}

.spec-grid__item2 {
  background-color: #c3864c;
  padding: 50px;
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.spec-grid__item2 .body-numb {
  color: #121212;
  border-color: #121212;
}

.spec-grid__item3 {
  color: #969696;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

footer {
  padding: 60px 50px 45px;
  border-bottom: 1px solid #3b3b3b;
  border-top: 1px solid #3b3b3b;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-img {
  height: 75px;
  padding-right: 30px;
  border-right: 1px solid #3b3b3b;
}

.footer-soc__item a {
  display: flex;
  width: 59px;
  height: 59px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #3b3b3b;
  transition-duration: 0.3s;
}

.footer-soc__item a:hover {
  background-color: #3b3b3b;
}

.footer-soc__item a:hover img {
  filter: brightness(0) invert(1);
}

.footer-soc__item a:active {
  background-color: #1f1f1f;
}

.footer-soc {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-list a {
  color: #969696;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-list a:hover {
  color: #fff3e2;
}

.footer-first__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer-phone a {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.footer-kont {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kont-title {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.kont-adress {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.kont-loc {
  color: #6d6d6d;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.cont-fl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bot {
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #3b3b3b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer-bot__right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
}

.kaluga-mobl {
  display: none;
}

.recept-inner {
  padding: 30px 50px 40px;
  border-bottom: 1px solid #3d3d3d;
}

.recept-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.content-inner {
  padding-top: 135px;
}

.content-inner .gen-title {
  text-align: center;
}

.recept-center img {
  width: 100%;
  border-radius: 40px;
}

.recept-center {
  grid-column: 2 / 4;
}

.recept-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap-reverse;
}

.srok-btn {
  color: #6d6d6d;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 18px 20px;
  border-radius: 80px;
  border: 1px solid #6d6d6d;
}

.kbju-title {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.kbju {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0;
}

.kbju-item {
  text-align: center;
}

.kbju-top {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.kbju-numb {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.kbju-bot {
  color: #969696;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.instrukciya {
  padding: 70px 50px;
}

.instrukciya-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-left: 1px;
}

.instrukciya-item {
  display: flex;
  gap: 30px;
}

.instrukciya-numb {
  color: #c3864c;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  border: 1px solid #c3864c;
  border-radius: 50%;
  display: flex;
  min-width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
}

.instrukciya-text {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.forma-zakaza {
  padding: 0 50px;
}

.forma-zakaza__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.forma-zakaza-left {
  padding: 40px;
}

.kart-right {
  padding: 40px 40px 0;
}

.forma-zakaza-left {
  border-right: 1px solid #3d3d3d;
  grid-row: 1 / 3;
}

.formMain__input {
  color: #fff3e2;
  font-size: 16px;
  font-weight: 400;
  padding: 20px;
  border-radius: 80px;
  border: 1px solid #6d6d6d;
  width: 100%;
  background-color: inherit;
  outline-style: none;
}

.formMain__input::placeholder {
  color: #6d6d6d;
}

.formMain__input:hover {
  border-color: #969696;
}

.formMain__input:hover::placeholder {
  color: #969696;
}

.formMain__input:focus {
  border-color: #c3864c;
}

.forma__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formMain__row {
  display: flex;
  gap: 10px;
}

.forma-zakaza__list .body-title {
  text-align: center;
  margin-bottom: 10px;
}

.big-title {
  border-bottom: 1px solid #3d3d3d;
}

.cart-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 30px;
  max-height: 530px;
  overflow-y: auto;
}

.cart-inner::-webkit-scrollbar {
  width: 3px;
}

.cart-inner::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
  background: #1f1f1f;
}

.cart-inner::-webkit-scrollbar-thumb {
  background: #c3864c;
  -webkit-box-shadow: inset 0 0 6px rgba(200, 200, 200, 0.2);
}

.cart-inner::-webkit-scrollbar-thumb:active {
  background: #c3864c;
}

.cart-inner::-webkit-scrollbar-thumb:window-inactive {
  background: rgb(200, 200, 200);
}

.cart-item {
  display: flex;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #3b3b3b;
  padding: 20px 65px 20px 20px;
  position: relative;
}

.cart-itog {
  border-top: 1px solid #3d3d3d;
  border-bottom: 1px solid #3d3d3d;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.cart-img {
  min-width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #3b3b3b;
}

.cart-img img {
  width: 100%;
}

.cart-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-title {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.cart-ves {
  padding: 9px 19px;
  color: #6d6d6d;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 80px;
  border: 1px solid #6d6d6d;
}

.cart-text {
  color: #6d6d6d;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.cart-close {
  min-width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #3b3b3b;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

.cart-close img {
  width: 12px;
}

.promo-btn a {
  border-radius: 80px;
  border: 1px solid #c3864c;
  padding: 19px;
  color: #c3864c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  width: fit-content;
  cursor: pointer;
}

.promo {
  display: flex;
  gap: 10px;
  align-items: center;
}

.itog {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.itog-price {
  color: #fff3e2;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.itog-indirim {
  color: #c3864c;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 80px;
  border: 1px solid #3b3b3b;
  padding: 10px 15px;
}

.cart-bot {
  grid-column: 2 / 3;
  padding: 0 40px 40px;
}

.shapka-right {
  position: relative;
}

.incart-ok {
  position: absolute;
  top: 84px;
  right: 0;
  border-radius: 80px;
  border: 1px solid #c3864c;
  background: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.isskus-mobl {
  display: none;
}

.okzakaz {
  padding: 50px 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.okzakaz__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
}

.okzakaz__list .gen-title {
  text-align: left;
  margin-bottom: 0;
}

.okzakaz__list .tab-btn a {
  width: fit-content;
}

.okzakaz__img img {
  width: 100%;
}

.okzakaz__img {
  width: 640px;
}

.empty-cart {
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 740px;
}

.empty-cart::before {
  content: url(Content/img/left-img.png);
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.empty-cart::after {
  content: url(Content/img/right-img.png);
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.empty-cart__list {
  width: 824px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.empty-cart__list .gen-title {
  margin-bottom: 0;
}

.empty-cart__list .tab-btn {
  width: fit-content;
  margin: 0 auto;
}

.empty-cart__list .ryba-block__flitem {
  text-align: center;
}

@media (max-width: 1400px) {
  .mobile-menu__item a {
    font-size: 68px;
    line-height: 110%;
  }

  .slider-title {
    font-size: 112px;
  }

  .body-title {
    font-size: 36px;
  }

  .slider-bot__right {
    font-size: 14px;
  }

  .body-numb {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .isskus-title {
    font-size: 68px;
  }

  .tovary-tab__link {
    font-size: 14px;
    padding: 16px 18px;
  }

  .tab-btn a,
  .tab-price {
    padding: 15px 20px;
    font-size: 14px;
  }
  .gen-title {
    font-size: 68px;
  }

  .ryba-block__flitem,
  .ryba-block .tab-sub,
  .spec-grid__item3,
  .footer-title,
  .recept-btn a,
  .kont-adress,
  .kont-loc {
    font-size: 14px;
  }

  .spec-grid__item1,
  .spec-grid__item2 {
    font-size: 36px;
    padding: 40px;
  }

  .spec-grid__item {
    min-height: 309px;
  }

  .spec-grid__item1 {
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #1d1d1d;
  }

  .footer-list {
    gap: 45px;
  }

  .footer-phone a,
  .kont-title {
    font-size: 26px;
  }

  .osetr-inner {
    min-height: auto;
  }

  .osetr-info {
    padding-bottom: 106px;
  }

  .kbju-title {
    font-size: 34px;
  }

  .kbju-numb {
    font-size: 28px;
  }

  .instrukciya-item {
    gap: 10px;
  }

  .instrukciya-numb {
    font-size: 14px;
    min-width: 45px;
    height: 45px;
  }

  .instrukciya-text {
    font-size: 14px;
  }

  .instrukciya-list {
    gap: 20px;
  }

  .srok-btn {
    padding: 14px 19px;
    font-size: 14px;
  }

  .recept-btns {
    margin-top: 20px;
  }

  .content-inner {
    padding-top: 115px;
  }

  .forma-zakaza-left,
  .kart-right {
    padding: 20px;
  }

  .forma-zakaza__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .forma-zakaza-left {
    border-right: none;
  }

  .kart-right {
    border-bottom: 1px solid #3d3d3d;
  }

  .forma-zakaza__list .tab-btn,
  .cart-itog {
    margin-bottom: 20px;
  }

  .kart-right {
    order: 1;
  }

  .forma-zakaza-left {
    order: 2;
  }

  .cart-bot {
    order: 3;
  }

  .cart-bot {
    padding: 0 20px;
  }

  .cart-title,
  .itog-price {
    font-size: 26px;
  }

  .cart-ves,
  .cart-text,
  .formMain__input,
  .promo-btn a,
  .itog-indirim {
    font-size: 14px;
  }

  .cart-text {
    width: 400px;
    max-width: 100%;
  }

  .incart-ok {
    font-size: 14px;
  }

  .okzakaz__img {
    width: 480px;
  }

  .okzakaz {
    padding: 0px 90px;
  }

  .okzakaz__list .ryba-block__flitem br {
    display: none;
  }

  .okzakaz__list .ryba-block__flitem {
    width: 600px;
    max-width: 100%;
  }

  .empty-cart::before {
    content: url(Content/img/left-m.png);
  }
  
  .empty-cart::after {
    content: url(Content/img/right-m.png);
  }

  .empty-cart__list {
    width: 585px;
  }

  .empty-cart {
    min-height: 500px;
  }

  .empty-cart__list {
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .slider-title {
    font-size: 78px;
  }
}

@media (max-width: 992px) {
  .shapka .marker,
  .mobile-menu .marker {
    display: none;
  }

  .wa-btn span::after {
    content: "Связаться";
  }

  .mobile-menu__line-top .shapka-center {
    order: 2;
  }

  .mobile-menu__line-top .shapka-right {
    order: 3;
  }

  .shapka-inner,
  .is-sticky .shapka-inner {
    padding: 20px;
  }

  .content::before {
    left: 20px;
  }

  .content::after {
    right: 20px;
  }

  .mobile-menu__list {
    align-items: center;
  }

  .mobile-menu__item a {
    font-size: 48px;
  }

  .shapka-logo img {
    height: 50px;
  }

  .slider {
    padding: 90px 20px 0;
  }

  .shapka::before {
    top: 20px;
  }

  .shapka-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    top: 0px;
    align-items: center;
  }

  .mobile-menu {
    padding: 20px;
    height: auto;
  }

  .mobile-menu__inner {
    gap: 40px;
  }

  .burger a,
  .cart a,
  .footer-soc__item a {
    height: 50px;
    width: 50px;
  }

  .slider-bot,
  .isskus,
  .kaluga {
    padding: 0 20px;
  }

  .ryba-block {
    padding: 50px 20px 0;
  }

  .slider-block {
    padding: 50px 20px 30px;
  }

  .spec-block {
    padding: 50px 20px 50px;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-bot {
    padding: 13px 20px;
  }

  .ryba-block__flitem,
  .ryba-block .tab-sub,
  .spec-grid__item3,
  .footer-title,
  .recept-btn a,
  .kont-adress,
  .kont-loc {
    font-size: 12px;
  }

  .kaluga {
    grid-template-columns: repeat(2, 1fr);
    min-height: 1625px;
  }

  .kaluga-center {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
  }

  .kaluga-left,
  .kaluga-right {
    grid-column: 2 / 3;
    min-height: 0;
    gap: 200px;
    border-left: 1px solid #3b3b3b;
    justify-content: center;
  }

  .kaluga-left {
    padding: 0;
    padding-top: 150px;
    grid-row: 1;
    padding-bottom: 200px;
  }

  .kaluga-right {
    padding: 0;
    padding-bottom: 100px;
    grid-row: 2;
  }

  .body-title {
    font-size: 28px;
  }

  .slider-title {
    font-size: 48px;
  }

  .ryba-block {
    display: flex;
    flex-direction: column;
  }

  .osetr {
    flex-direction: column-reverse;
  }

  .osetr-inner {
    text-align: center;
  }

  .ryba-block__fltext {
    display: block;
  }

  .osetr-info {
    padding-bottom: 0;
  }

  .tab-menu {
    border-top: 1px solid #3b3b3b;
    border-bottom: 1px solid #3b3b3b;
    padding: 15px;
  }

  .ryba-block {
    position: relative;
    border-bottom: 1px solid #3b3b3b;
  }

  .ryba-block::before {
    content: " ";
    width: 1px;
    height: 100%;
    background: #3b3b3b;
    position: absolute;
    left: 20px;
    top: 0;
  }

  .ryba-block::after {
    content: " ";
    width: 1px;
    height: 100%;
    background: #3b3b3b;
    position: absolute;
    right: 20px;
    top: 0;
  }

  .slider-block {
    text-align: center;
  }

  .gen-title {
    margin-bottom: 20px;
  }

  .slider-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .slider-slider {
    position: relative;
  }

  .slider-nav {
    position: absolute;
    top: 30%;
    /* transform: translateY(-50%); */
    z-index: 300;
    width: 55px;
    height: 55px;
  }

  .slider-left {
    left: 40px;
  }

  .slider-right {
    right: 40px;
  }

  .slider-right {
    min-width: 55px;
  }

  .recept-title {
    margin-bottom: 10px;
    font-size: 28px;
    text-align: left;
  }

  .spec-block {
    text-align: center;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-grid__item {
    min-height: 199px;
  }

  .spec-grid__item1,
  .spec-grid__item2 {
    font-size: 28px;
    padding: 20px;
    text-align: left;
  }

  .spec-grid__item1 {
    grid-column: 1 / -1;
    background-size: auto 100%;
  }

  .gen-title {
    font-size: 48px;
    text-align: center;
  }

  .spec-block .gen-title {
    text-align: center;
  }

  .spec-grid__item1 .body-numb {
    top: 20px;
    right: 20px;
    bottom: auto;
  }

  .spec-grid__item2 .body-numb {
    right: 20px;
    bottom: 20px;
  }

  .spec-grid__item3 {
    text-align: left;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    position: relative;
    padding-top: 100px;
  }

  .footer-kont {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .footer-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .recept-title {
    min-height: 67px;
  }

  .footer-list {
    gap: 20px;
  }

  .footer-list a {
    font-size: 14px;
  }

  .marker,
  .lang-select,
  .footer-bot {
    font-size: 14px;
  }

  .recept-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .recept-center {
    order: 1;
  }

  .recept-left {
    order: 2;
    padding: 30px 20px;
  }

  .recept-right {
    order: 3;
    border-top: 1px solid #3d3d3d;
    padding: 20px 0;
    width: 100%;
  }

  .recept-inner {
    padding: 0 20px;
  }

  .content-inner {
    padding-top: 103px;
  }

  .recept-btns {
    justify-content: center;
  }

  .recept-right {
    text-align: center;
  }

  .kbju {
    justify-content: center;
    gap: 60px;
  }

  .instrukciya-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .instrukciya-numb,
  .instrukciya-text {
    font-size: 12px;
  }

  .instrukciya {
    padding: 30px 20px;
  }

  .cart-img {
    min-width: 90px;
    width: 90px;
    height: 90px;
  }

  .cart-title,
  .itog-price {
    font-size: 18px;
  }

  .cart-ves,
  .cart-text,
  .formMain__input,
  .promo-btn a,
  .itog-indirim {
    font-size: 12px;
  }

  .cart-close {
    min-width: 30px;
    height: 30px;
  }

  .cart-close img {
    width: 8px;
  }

  .forma__inner {
    gap: 10px;
  }

  .cart-itog {
    padding: 20px 0;
  }

  .forma-zakaza {
    padding: 0 20px;
  }

  .incart-ok {
    font-size: 12px;
    padding: 14px;
    width: fit-content;
    white-space: nowrap;
  }

  .okzakaz {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .okzakaz__img {
    text-align: center;
  }

  .okzakaz__img img {
    width: 100%;
    max-width: 340px;
  }

  .okzakaz__list,
  .okzakaz__list .gen-title {
    text-align: center;
    justify-content: center;
  }

  .okzakaz__list .tab-btn {
    margin: 0 auto;
  }

  .okzakaz__list {
    gap: 15px;
  }

  .okzakaz {
    padding: 30px 20px;
  }

  .empty-cart::before {
    content: url(Content/img/bot-img.png);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
  }

  .empty-cart {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 680px;
  }
  
  .empty-cart::after {
    content: none;
  }

  .empty-cart__list {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .shapka .lang-select,
  .shapka-right .wa-btn,
  .mobile-menu .lang-select {
    display: none;
  }

  .content::before {
    left: 10px;
  }

  .content::after {
    right: 10px;
  }

  .shapka-inner,
  .is-sticky .shapka-inner {
    padding: 20px 10px;
  }

  .slider {
    padding: 100px 10px 0;
  }

  .slider-bot,
  .isskus,
  .kaluga,
  .isskus-mobl {
    padding: 0 10px;
  }

  .isskus-mobl {
    display: block;
  }

  .ryba-block {
    padding: 50px 10px 0;
  }

  .slider-block {
    padding: 50px 10px 30px;
  }

  .spec-block {
    padding: 50px 10px 30px;
  }

  footer {
    padding: 30px 10px;
  }

  .footer-bot {
    padding: 13px 10px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    gap: 20px;
  }

  .footer-kont {
    grid-column: 1 / -1;
  }

  .footer-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .footer-item {
    text-align: center;
  }

  footer .recept-btn {
    margin: 0 auto;
  }

  .footer-kont .shapka-left,
  .kont-adress,
  .kont-loc {
    justify-content: center;
  }

  .footer-kont {
    order: 2;
  }

  .footer-item:nth-child(2) {
    order: 3;
  }

  .footer-item:nth-child(3) {
    order: 4;
  }

  .footer-bot {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .slider-title {
    font-size: 38px;
  }

  .slider-bot {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .slider-bot__right {
    padding: 25px 0;
    border-top: 1px solid #3b3b3b;
    font-size: 12px;
    background-image: none;
    width: 100%;
    text-align: center;
  }

  .slider-bot__right br {
    display: none;
  }

  .body-title {
    font-size: 28px;
  }

  .slider-bot__left {
    width: 100%;
    text-align: center;
  }

  .body-numb {
    display: none;
  }

  .isskus-title {
    font-size: 32px;
    padding: 0 0 10px;
  }

  .isskus-bot__left {
    display: none;
  }

  .isskus-bot {
    display: block;
    text-align: center;
    padding-bottom: 290px;
  }

  .isskus-bot__right {
    width: 100%;
  }

  .isskus-bot__right .body-title {
    display: none;
  }

  .body-text {
    width: 100%;
  }

  .kaluga {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .kaluga-center {
    height: auto;
    bottom: 0;
  }

  .kaluga-left,
  .kaluga-right {
    display: none;
  }

  .kaluga-mobl {
    display: block;
    margin-bottom: 30px;
  }

  .kaluga-sum {
    position: relative;
    padding: 12px 40px 12px 10px;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    border-bottom: 1px solid #3b3b3b;
    border-top: 1px solid #3b3b3b;
  }

  .tab-menu {
    border-bottom: none;
  }

  .kaluga-det__info {
    padding: 10px 0;
    color: #969696;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  summary:after {
    content: url(Content/img/open.svg);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  details[open] summary:after {
    content: url(Content/img/clos.svg);
  }

  details[open] {
    animation: slide 0.5s ease-in-out;
    animation-duration: 1s;
  }

  .kaluga-center__inner {
    margin-top: 0;
    padding-top: 45px;
  }

  .isskus-mobl .kaluga-sum {
    border: none;
  }

  .isskus-mobl details[open] .kaluga-sum {
    border-bottom: 1px solid #3b3b3b;
  }

  .isskus-mobl {
    border-bottom: 1px solid #3b3b3b;
  }

  .ryba-block::before {
    left: 10px;
  }

  .ryba-block::after {
    right: 10px;
  }

  .tab-menu {
    padding: 15px 0;
  }

  .ryba-block .tab-menu {
    text-align: center;
  }

  .ryba-block .active-tab {
    justify-content: center;
  }

  .tovary-tab a {
    white-space: nowrap;
    min-width: 52px;
    display: flex;
  }

  .tovary-tab {
    overflow: auto;
    width: 100%;
  }

  .tovary-tab__link,
  .tab-btn a,
  .tab-price,
  body {
    font-size: 12px;
  }

  .gen-title {
    font-size: 32px;
  }

  .slider-left {
    left: 30px;
  }

  .slider-right {
    right: 30px;
  }

  .recept-img {
    margin-bottom: 10px;
  }

  .spec-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .spec-grid__item .body-numb {
    display: flex;
  }

  .spec-grid__item3 {
    text-align: center;
  }

  .spec-grid__item2 {
    padding-bottom: 40px;
  }

  .spec-grid__item {
    min-height: 0;
  }

  .footer-list a {
    font-size: 12px;
  }

  .footer-phone a,
  .kont-title {
    font-size: 24px;
  }

  .marker,
  .lang-select {
    font-size: 12px;
  }

  .footer-bot__right {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .footer-bot {
    gap: 10px;
  }

  .mobile-menu {
    padding: 20px 10px;
  }

  .mobile-menu__item a {
    font-size: 32px;
  }

  .cart-text {
    display: none;
  }

  .cart-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .formMain__row,
  .cart-itog {
    flex-direction: column;
  }

  .cart-close {
    bottom: 20px;
    top: auto;
  }

  .cart-item {
    padding-right: 20px;
  }

  .cart-ves {
    padding: 4px 9px;
  }

  .forma-zakaza {
    padding: 0 10px;
  }

  .cart-item {
    gap: 10px;
  }

  .okzakaz__img {
    width: 100%;
  }

  .okzakaz__img img {
    width: 100%;
    max-width: 280px;
  }
  
  .okzakaz {
    padding: 30px 10px;
  }

  .okzakaz__list .ryba-block__flitem {
    width: 100%;
  }

  .empty-cart::before {
    content: url(Content/img/bot-xs.png);
  }

  .empty-cart img {
    width: 100%;
  }

  .empty-cart {
    min-height: 620px;
  }
}
