@import "normalize.min.css";

@font-face {
  font-family: "TT Norms";
  src:
    url("../fonts/TTNorms-Regular.woff2") format("woff2"),
    url("../fonts/TTNorms-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Norms";
  src:
    url("../fonts/TTNorms-Medium.woff2") format("woff2"),
    url("../fonts/TTNorms-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Norms";
  src:
    url("../fonts/TTNorms-Bold.woff2") format("woff2"),
    url("../fonts/TTNorms-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Norms";
  src:
    url("../fonts/TTNorms-ExtraBold.woff2") format("woff2"),
    url("../fonts/TTNorms-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src:
    url("../fonts/Lora.woff2") format("woff2"),
    url("../fonts/Lora.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src:
    url("../fonts/Lorabold.woff2") format("woff2"),
    url("../fonts/Lorabold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-TTNorms: "TT Norms", sans-serif;
  --font-Lora: "Lora", sans-serif;
  --black-font: #211817;
  --white: #fff;
  --dark-red: #890f2f;
  --light-gray: #eef2f5;
  --beige: #ffd18f;
  --light-beige: #faf5ef;
  --mid-beige: #f9f4f1;
  --dark-beige: #c19d6d;
  --dark-brown: #211817;
  --light-pink: #f7f1ed;
}
* {
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.4;
}
[data-href] {
  cursor: pointer;
}
body {
  font-size: 16px;
  font-family: var(--font-TTNorms);
  color: var(--black-font);
  line-height: 1.4;
  background-color: var(--white);
}
body.no-scroll {
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
h1,
.h1 {
  font-family: var(--font-Lora);
  font-weight: 700;
  color: var(--dark-red);
  text-align: center;
  font-size: 36px;
  margin: 30px 0;
  line-height: 1.1em;
}
h2,
.h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2em;
  margin: 20px 0;
}
h3 {
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  h1,
  .h1 {
    font-size: 32px;
  }
  h2,
  .h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 28px;
    margin: 20px 0;
  }
  h2,
  .h2 {
    font-size: 20px;
    margin: 15px 0;
  }
}
@media screen and (max-width: 480px) {
  h1,
  .h1 {
    font-size: 24px;
  }
  h2,
  .h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
}
.container {
  width: 100%;
  max-width: 1270px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fancybox-container {
  z-index: 100;
}
.fancybox-close-small {
  color: var(--black-font);
}
.uppercase {
  text-transform: uppercase;
}
.btn {
  border: none;
  cursor: pointer;
  text-align: center;
}
.gdpr {
  position: fixed;
  top: auto;
  bottom: 0;
  height: auto;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  box-shadow: 0px 3px 38px 0px rgba(99, 99, 99, 0.38);
  padding: 15px 0;
  font-weight: 600;
  z-index: 1000;
}
.gdpr--white {
  background-color: rgba(255, 255, 255, 0.9);
  color: #090f1f;
  border-top: 3px solid #191919;
}
.gdpr .container {
  display: grid;
  grid-template-columns: 1fr 244px;
  grid-column-gap: 80px;
  align-items: center;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}
.gdpr .container:before,
.gdpr .container:after {
  display: none;
}
.gdpr p,
.gdpr small {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.3;
}
.gdpr .container > small {
  display: none;
}
.gdpr a {
  text-decoration: underline;
  color: #005dc2;
}
.gdpr a:hover {
  text-decoration: none;
}
.btn_close {
  grid-row: 1/3;
  grid-column: 2/3;
  display: block;
  margin: 0;
  padding: 20px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  border: none;
  background-color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.gdpr--white .btn_close {
  background-color: #000000;
  color: #fff;
}
.btn_close:hover {
  color: #000;
}
.gdpr--white .btn_close:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .gdpr .container {
    grid-template-columns: 1fr 200px;
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 680px) {
  .gdpr {
    padding: 20px 0 15px;
  }
  .gdpr .container {
    grid-template-columns: 1fr 175px;
    grid-column-gap: 35px;
  }
  .gdpr p {
    grid-column: 1/-1;
    margin-bottom: 10px;
    font-size: 13px;
  }
  .gdpr p small {
    display: none;
  }
  .gdpr .container > small {
    display: block;
    font-size: 12px;
    font-weight: normal;
  }
  .btn_close {
    grid-row: 2/3;
    grid-column: 2/3;
    font-size: 13px;
  }
}
@media screen and (max-width: 400px) {
  .gdpr .container {
    grid-template-columns: 1fr 145px;
    grid-column-gap: 20px;
  }
  .btn_close {
    padding: 15px 10px;
  }
}
/* .o-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-weight: 500;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  min-height: 60px;
  text-transform: uppercase;
}
.o-btn--sm {
  font-size: 16px;
  min-height: 50px;
}
@media screen and (max-width: 768px) {
  .o-btn {
    min-height: 48px;
  }
  .o-btn--sm {
    min-height: 42px;
  }
}
@media screen and (max-width: 480px) {
  .o-btn {
    font-size: 14px;
  }
} */
.contact-elem {
  position: relative;
  display: block;
  padding-left: 30px;
  min-height: 22px;
  line-height: 1.1em;
  font-weight: 700;
}
.contact-elem::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 22px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
a.contact-elem--tel,
.contact-elem--tel a {
  white-space: nowrap;
}
header .contact-elem--tel,
footer .contact-elem--tel {
  font-size: 18px;
}
header .contact-elem::before,
footer .contact-elem::before {
  filter: invert(9%) sepia(92%) saturate(3191%) hue-rotate(332deg)
    brightness(102%) contrast(97%);
}
.contact-elem--tel::before {
  background: url("/static/img/tel.svg") center center / 95% no-repeat;
}
.contact-elem--mail::before {
  background: url("/static/img/mail.svg") center center / 100% no-repeat;
}
.contact-elem--docs::before {
  background: url("/static/img/docs.svg") center center / 100% no-repeat;
}
.contact-elem--user::before {
  height: 24px;
  background: url("/static/img/user.svg") center center / 100% no-repeat;
}
.contact-elem--money::before {
  background: url("/static/img/money.svg") center center / 100% no-repeat;
}
.contact-elem .contact-elem--none {
  padding-left: 0;
}
@media screen and (max-width: 600px) {
  .contact-elem {
    padding-left: 30px;
  }
  .contact-elem::before {
    width: 20px;
    height: 22px;
  }
}
.menu-toggle {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: none;
  align-items: center;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0 auto;
  border: none;
  background: transparent;
}
.menu-toggle > span {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 4px;
  background: var(--beige);
  color: var(--beige);
}
.menu-toggle > span::before,
.menu-toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: currentColor;
  left: 0;
}
.menu-toggle > span::before {
  top: -12px;
  transition: top 0.3s;
}
.menu-toggle > span::after {
  bottom: -12px;
  transition: bottom 0.3s;
}
.menu-toggle.is-active > span {
  background: transparent !important;
}
.menu-toggle.is-active > span::before {
  top: 0;
  transform: rotate(-45deg);
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}
.menu-toggle.is-active > span::after {
  bottom: 0;
  transform: rotate(45deg);
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}
@media screen and (max-width: 400px) {
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .menu-toggle > span {
    height: 4px;
  }
  .menu-toggle > span::before {
    top: -12px;
  }
  .menu-toggle > span::after {
    bottom: -12px;
  }
}
@media screen and (max-width: 380px) {
  .menu-toggle {
    width: 30px;
    height: 30px;
  }
  .menu-toggle > span {
    height: 3px;
  }
  .menu-toggle > span::before {
    top: -10px;
  }
  .menu-toggle > span::after {
    bottom: -10px;
  }
}
.request_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: var(--dark-red);
  color: var(--white);
  font-weight: 700;
  min-height: 48px;
}
.request_btn span {
  position: relative;
  display: block;
  padding-left: 36px;
}
.request_btn span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("/static/img/conversation.svg") center center / 100% no-repeat;
  filter: invert(100%) sepia(0%) saturate(7466%) hue-rotate(144deg)
    brightness(114%) contrast(100%);
}
.phones-row {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.phones-row .messenger {
  flex-shrink: 0;
}
.phones-row img {
  display: block;
}
@media screen and (max-width: 480px) {
  .phones-row {
    column-gap: 5px;
  }
}
/* header */
header {
  background: var(--white);
}
.header_top {
  background: linear-gradient(-45deg, #ffeacc, #ffd18f 15% 85%, #ffeacc);
}
.header_content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}
.header_phones,
.header_contacts {
  display: flex;
  align-items: center;
  column-gap: 15px;
  row-gap: 10px;
  padding: 10px 0;
}
.header_mail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.header_logo {
  position: relative;
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 25px 0 20px;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}
.header_logo::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 150%;
  background: url("/static/img/logo_decor.svg") center center / 100% auto
    no-repeat;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.header_logo img {
  display: block;
}
.header_menu {
  background-color: var(--dark-red);
  color: var(--white);
  padding: 9px 0;
}
header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  font-size: 20px;
  font-weight: 500;
}
header .menu > li > a {
  display: block;
  padding: 5px 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--beige);
}
header .menu > li.active > a,
header .menu > li > a:hover {
  color: var(--white);
  border-color: var(--white);
}
@media screen and (min-width: 1361px) {
  .header_contacts {
    column-gap: 45px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 769px) {
  header .menu {
    display: flex !important;
  }
}
@media screen and (max-width: 1140px) {
  header .menu > li > a {
    padding: 5px 20px;
    font-size: 18px;
  }
  .header_phones {
    flex-direction: column;
    align-items: flex-start;
  }
  .header_contacts {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (max-width: 992px) {
  header .menu > li > a {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 768px) {
  .header_content {
    column-gap: 10px;
  }
  header .menu {
    display: none;
    padding: 15px 0;
  }
  header .menu > li > a {
    text-align: center;
    border-radius: initial;
    border: none;
    border-bottom: 1px solid transparent;
  }
}
@media screen and (max-width: 680px) {
  .header_content {
    grid-template-columns: 54% 44%;
    align-items: flex-start;
    column-gap: initial;
    row-gap: 5px;
    padding-bottom: 10px;
  }
  .header_logo {
    order: -1;
    grid-column: 1/-1;
    padding-bottom: 35px;
  }
  .header_logo::before {
    top: 40%;
    height: 120%;
  }
  .header_phones,
  .header_contacts {
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .header_content {
    grid-template-columns: 100%;
  }
  .header_phones,
  .header_contacts {
    align-items: center;
  }
}
/* end header */

/* footer */
footer {
  position: relative;
  background-color: var(--dark-brown);
  color: var(--beige);
  padding: 55px 0 0;
}
footer::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1236px;
  height: 133px;
  background: url("/static/img/footer_decor.png") center bottom / 100% auto
    no-repeat;
  z-index: 0;
}
.footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  column-gap: 80px;
  margin-bottom: 80px;
}
.footer_logo {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-transform: uppercase;
  color: var(--dark-beige);
}
.footer_logo__text {
  display: block;
  line-height: 1.2em;
  letter-spacing: 0.035em;
}
.footer_phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 10px;
  color: var(--white);
}
footer .menu {
  display: block;
  column-count: 2;
  column-gap: 20px;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
footer .menu > li > a {
  display: block;
  padding: 5px 0;
  line-height: 1.3em;
}
footer .menu > li.active > a,
footer .menu > li > a:hover {
  color: var(--white);
}
.footer_contacts {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  color: var(--white);
  padding-top: 5px;
}
.footer_copy {
  position: relative;
  color: #786142;
  padding: 15px 0;
  border-top: 1px solid #3b2e24;
  font-size: 14px;
}
.footer_copy .container {
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
}
@media screen and (max-width: 1280px) {
  footer {
    padding-top: 40px;
  }
  .footer {
    column-gap: 40px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 992px) {
  .footer {
    grid-template-columns: auto 1fr auto;
    column-gap: 20px;
    row-gap: 10px;
  }
  .footer_logo {
    grid-row: 1/3;
  }
  .footer_menu {
    grid-row: 1/3;
  }
  .footer_contacts {
    padding-top: 0;
  }
  .footer_phones {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding-top: 24px;
  }
  .footer_menu {
    display: none;
  }
  .footer {
    grid-template-columns: auto 1fr;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    grid-template-columns: 100%;
    margin-bottom: 20px;
  }
  .footer_logo {
    row-gap: initial;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  .footer_phones,
  .footer_contacts {
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
  }
}
/* end footer */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  padding: 30px 0 25px;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 20px 0;
  }
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li::after {
  content: "-";
  display: block;
  margin: 0 3px;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs li span {
  color: var(--dark-red);
}
.intro_section {
  position: relative;
  padding-bottom: 10px;
  background:
    url("/static/img/intro-section.jpg") left top / 100% no-repeat,
    var(--light-gray);
  margin-bottom: 30px;
}
@media screen and (min-width: 1921px) {
  .intro_section {
    background-size: auto;
    background-position: center;
  }
}
@media screen and (max-width: 1480px) {
  .intro_section {
    background-size: 130%;
    background-position: left 30% top 0;
  }
}
@media screen and (max-width: 768px) {
  .intro_section {
    margin-bottom: 20px;
  }
}
.delivery {
  padding-bottom: 60px;
}
.delivery_hero {
  display: grid;
  grid-template-columns: 51% 49%;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 25px;
}
.delivery_hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--light-beige);
  padding: 20px 30px 30px 50px;
  border-radius: 15px 0 0 15px;
  margin: 50px 0;
}
.delivery_hero__img img {
  display: block;
}
.delivery_hero__list {
  padding-top: 10px;
  margin-bottom: 30px;
}
.delivery_hero__list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}
.delivery_hero__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  width: 20px;
  height: 20px;
  background: url("/static/img/checkmark.svg") center center / 100% no-repeat;
  filter: invert(90%) sepia(20%) saturate(1159%) hue-rotate(321deg)
    brightness(101%) contrast(103%);
}
.delivery_elem {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--light-gray);
}
.delivery_elem ul {
  padding-left: 56px;
  margin-bottom: 20px;
}
.delivery_elem ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}
.delivery_elem ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}
.delivery_photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 18px;
  row-gap: 20px;
  padding-top: 15px;
  margin-bottom: 20px;
}
.delivery_photos__elem,
.delivery_photos__elem img {
  display: block;
}
.delivery_header {
  position: relative;
  padding-left: 56px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.delivery_header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 30px;
}
.delivery_header--railway::before {
  background: url("/static/img/delivery_railway.svg") center center / 95%
    no-repeat;
}
.delivery_header--auto::before {
  background: url("/static/img/delivery_auto.svg") center center / 100%
    no-repeat;
}
.delivery_header--person::before {
  background: url("/static/img/delivery_person.svg") center center / 95%
    no-repeat;
}
.delivery_contacts {
  background-color: var(--light-gray);
  padding: 32px 20px 40px 58px;
  margin-bottom: 40px;
}
.delivery_contacts .contact-elem::before {
  filter: invert(9%) sepia(92%) saturate(3191%) hue-rotate(332deg)
    brightness(102%) contrast(97%);
}
.delivery_contacts__name {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.delivery_contacts__post {
  display: block;
  font-size: 14px;
}
.delivery_contacts__row {
  justify-content: flex-start;
  align-items: center;
  padding-top: 12px;
  margin-bottom: 20px;
  column-gap: 34px;
  row-gap: 10px;
}
.delivery_contacts .request_btn {
  max-width: 180px;
}
@media screen and (max-width: 1140px) {
  .delivery_hero__list {
    padding-top: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 992px) {
  .delivery_hero {
    padding-top: 0;
  }
  .delivery_hero__text {
    padding: 20px 20px 20px 30px;
    margin: 20px 0;
  }
  .delivery_contacts {
    padding: 20px 20px 30px 30px;
    margin-bottom: 20px;
  }
  .delivery_header {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .delivery_hero {
    grid-template-columns: 100%;
    margin-bottom: 40px;
  }
  .delivery_hero__text {
    border-radius: 10px;
  }
  .delivery_hero__img img {
    margin: 0 auto;
  }
  .delivery_elem {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .delivery_header {
    font-size: 20px;
    line-height: 1.1em;
    margin-bottom: 15px;
  }
  .delivery_header--person {
    margin-bottom: 25px;
  }
  .delivery_photos {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0;
    row-gap: 15px;
  }
}
@media screen and (max-width: 480px) {
  .delivery {
    padding-bottom: 40px;
  }
  .delivery_header {
    font-size: 18px;
  }
  .delivery_hero__text {
    padding: 15px 10px 15px 20px;
  }
  .delivery_hero__list li {
    padding-left: 30px;
  }
  .delivery_contacts {
    padding: 20px 10px 20px 20px;
    margin-bottom: 20px;
  }
  .delivery_photos {
    column-gap: 10px;
  }
}
.mcatalog_content {
  width: 100%;
  max-width: 1920px;
  padding-top: 5px;
  padding-bottom: 40px;
  background: url("/static/img/mcatalog_decor.png") 94% 62% / auto no-repeat;
  margin: 0 auto;
}
.mcatalog_sub {
  position: relative;
  font-size: 30px;
  padding-left: 55px;
  margin-bottom: 35px;
  line-height: 1em;
}
.mcatalog_sub::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 34px;
  height: 20px;
  background: url("/static/img/pentagon-decor.png") center center / 100%
    no-repeat;
}
.mcatalog_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  justify-content: space-between;
  row-gap: 25px;
  margin-bottom: 75px;
}
.mcatalog_item {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.1s;
}
.mcatalog_item:hover {
  box-shadow: 0px 0px 19px 1px rgba(0, 0, 0, 0.2);
}
.mcatalog_link {
  display: flex;
  flex-direction: column;
}
.mcatalog_item__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 30px 20px 40px;
  margin: 0;
  background-color: var(--light-gray);
  transition: 0.1s;
}
.mcatalog_item:hover .mcatalog_item__text {
  background-color: var(--white);
}
.mcatalog_item__name {
  display: block;
  font-weight: 700;
  font-size: 26px;
  min-height: 45px;
  margin-bottom: 15px;
  line-height: 1.2em;
  transition: 0.1s;
}
.mcatalog_item:hover .mcatalog_item__name {
  color: var(--dark-red);
}
.mcatalog_item__more {
  position: relative;
  padding-right: 36px;
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-red);
  transition: 0.1s;
}
.mcatalog_item__more::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 28px;
  height: 20px;
  transition: 0.1s;
  background: url("/static/img/arr-right.svg") center center / 100% no-repeat;
  filter: invert(11%) sepia(80%) saturate(4084%) hue-rotate(333deg)
    brightness(84%) contrast(96%);
}
.mcatalog_item:hover .mcatalog_item__more {
  color: var(--black-font);
}
.mcatalog_item:hover .mcatalog_item__more::before {
  filter: none;
}
@media screen and (max-width: 1140px) {
  .mcatalog_sub {
    font-size: 28px;
  }
  .mcatalog_item__text {
    padding: 25px 20px 20px 30px;
  }
  .mcatalog_item__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 992px) {
  .mcatalog_content {
    background-size: 45% auto;
  }
  .mcatalog_sub {
    font-size: 26px;
  }
  .mcatalog_item__text {
    padding: 20px 15px 15px 20px;
  }
  .mcatalog_item__name {
    font-size: 22px;
    min-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mcatalog_sub {
    font-size: 24px;
    padding-left: 40px;
    margin-bottom: 25px;
  }
  .mcatalog_sub::before {
    left: 0px;
    top: 4px;
    width: 30px;
    height: 18px;
  }
  .mcatalog_item__name {
    font-size: 20px;
    min-height: 30px;
  }
  .mcatalog_item__more {
    font-size: 16px;
    padding-right: 32px;
  }
  .mcatalog_item__more::before {
    width: 24px;
    height: 18px;
  }
}
@media screen and (max-width: 600px) {
  .mcatalog_list {
    grid-template-columns: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .mcatalog_sub {
    font-size: 22px;
  }
  .mcatalog_list {
    row-gap: 20px;
  }
  .mcatalog_item {
    border-radius: 15px;
  }
  .mcatalog_item__name {
    font-size: 18px;
  }
}

.contacts_content {
  display: grid;
  grid-template-columns: 58% 42%;
  justify-content: space-between;
  row-gap: 35px;
  padding-top: 20px;
  margin-bottom: 28px;
}
.contacts .contact-elem {
  font-weight: normal;
  line-height: 1.45em;
  padding-left: 34px;
  margin-bottom: 20px;
}
.contacts .contact-elem b,
.contacts .contact-elem a {
  font-weight: 700;
  display: inline-block;
}
.contacts .contact-elem::before {
  top: 0;
  transform: none;
  filter: invert(9%) sepia(92%) saturate(3191%) hue-rotate(332deg)
    brightness(102%) contrast(97%);
}
.contacts_sub {
  font-size: 22px;
  margin: 0 0 20px;
}
.vk_link {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.contacts_img {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 2/3;
  grid-row: 1/3;
  padding: 420px 0 10px 30px;
}
.contacts_img img {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  max-width: 116%;
}
.contacts_delivery {
  width: 100%;
  max-width: 415px;
  margin-left: auto;
  padding: 30px 20px 25px 60px;
  background-color: var(--light-gray);
}
.contacts_delivery__sub {
  position: relative;
  font-weight: 700;
  padding-top: 48px;
  margin-bottom: 10px;
}
.contacts_delivery__sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: url("/static/img/delivery_railway.svg") center center / 100%
    no-repeat;
}
.contacts_delivery p span {
  display: block;
  margin-bottom: 2px;
}
.contacts_info {
  padding: 40px 30px 30px 45px;
  background-color: rgba(255, 209, 143, 0.3);
}
.contacts_info__reqs {
  line-height: 1.25em;
  padding: 5px 0 0;
  margin: 0 0 15px;
}
.contacts_info__reqs + .contacts_info__reqs {
  padding-top: 10px;
  border-top: 2px solid var(--beige);
}
@media screen and (max-width: 1140px) {
  .contacts_content {
    grid-template-columns: 60% 40%;
    padding-top: 0;
  }
  .contacts .contact-elem {
    margin-bottom: 15px;
  }
  .contacts_img {
    padding: 330px 0 0px 20px;
  }
  .contacts_delivery {
    padding: 25px 15px 15px 35px;
  }
}
@media screen and (max-width: 992px) {
  .contacts_content {
    grid-template-columns: 100%;
    row-gap: 25px;
  }
  .contacts_info {
    padding: 30px 30px 25px 35px;
  }
  .contacts_img {
    grid-column: initial;
    grid-row: initial;
    padding: 0;
    order: 1;
  }
  .contacts_img img {
    position: static;
    max-width: 100%;
    margin-bottom: 25px;
  }
  .contacts_delivery {
    margin: 0;
    max-width: initial;
  }
}
@media screen and (max-width: 600px) {
  .contacts_content {
    row-gap: 20px;
  }
  .contacts .contact-elem {
    padding-left: 30px;
  }
  .contacts_info {
    padding: 30px 10px 20px 20px;
    background-color: rgba(255, 209, 143, 0.3);
  }
  .contacts_delivery {
    padding: 25px 10px 20px 20px;
  }
}

.item {
  position: relative;
  padding-bottom: 10px;
  background:
    url("/static/img/item_bg.jpg") left top / 100% no-repeat,
    linear-gradient(
      to bottom,
      var(--light-gray) 0% 158px,
      var(--white) 158px 100%
    );
  padding-bottom: 55px;
}
.item_intro {
  display: grid;
  grid-template-columns: 35.5% 59.5%;
  justify-content: space-between;
  row-gap: 30px;
  padding-top: 55px;
  font-size: 18px;
  margin-bottom: 60px;
}
.item_intro__img img {
  display: block;
  border-radius: 20px;
}
.item_intro__text {
  padding-top: 20px;
}
.item_title {
  position: relative;
  color: var(--black-font);
  text-align: left;
  font-family: var(--font-TTNorms);
  font-size: 30px;
  padding-top: 24px;
  line-height: 1em;
  margin: 0 0 15px;
}
.item_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 79px;
  height: 8px;
  background-color: var(--beige);
}
.item_intro__std {
  display: block;
  margin-bottom: 15px;
}
.item_intro__contacts {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80px;
  background-color: var(--mid-beige);
  padding: 10px 20px 10px 85px;
  border-radius: 10px;
  margin: 30px 0;
}
.item_intro__contacts::before {
  content: "!";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  border-radius: 10px;
  background-color: var(--beige);
  font-size: 60px;
  line-height: 1em;
}
.item_intro__contacts p {
  margin: 0;
  max-width: 480px;
}
.item_intro__contacts .phones-row {
  display: inline-flex;
  font-weight: 700;
}
.item_supplies {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 8px;
}
.item_supply {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding-right: 48px;
}
.item_supply::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.item_supply--bags::before {
  background: url("/static/img/bags-icon.png") center center / 100% no-repeat;
}
.item_supply--bigbag::before {
  background: url("/static/img/bigbag-icon.png") center center / 100% no-repeat;
}
.item_supply--custom {
  min-height: auto;
  padding-right: 0;
}
.item_supply--custom::before {
  content: none;
}
@media screen and (min-width: 1921px) {
  .item {
    background-size: auto;
    background-position: top;
  }
}
@media screen and (max-width: 1280px) {
  .item {
    background:
      url("/static/img/item_bg.jpg") left top / 100% no-repeat,
      linear-gradient(
        to bottom,
        var(--light-gray) 0% 120px,
        var(--white) 120px 100%
      );
  }
  .item_intro {
    grid-template-columns: 37% 59%;
    padding-top: 16px;
  }
  .item_intro__contacts {
    padding-left: 75px;
    margin: 20px 0;
  }
}
@media screen and (max-width: 992px) {
  .item_title {
    font-size: 28px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .item_intro {
    grid-template-columns: 100%;
    padding-top: 0;
    margin-bottom: 40px;
  }
  .item_intro__text {
    padding-top: 0;
  }
  .item_title {
    font-size: 24px;
    padding-top: 15px;
  }
  .item_title::before {
    height: 6px;
  }
}
@media screen and (max-width: 480px) {
  .item_title {
    font-size: 22px;
  }
  .item_intro {
    font-size: 16px;
  }
  .item_intro__contacts {
    border-radius: 5px;
    padding-left: 50px;
    padding-right: 10px;
  }
  .item_intro__contacts::before {
    width: 40px;
    font-size: 40px;
    border-radius: 5px;
  }
  .item_supplies {
    flex-wrap: wrap;
  }
  .item_supplies span {
    width: 100%;
  }
}
.item_tabs {
  margin-bottom: 45px;
}
.item_tabs__btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 12px;
  margin-bottom: 40px;
  font-size: 20px;
}
.item_tabs__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 37px;
  font-weight: 700;
  min-height: 60px;
  line-height: 1em;
  background-color: var(--light-gray);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  cursor: pointer;
}
.item_tabs__btn.active,
.item_tabs__btn:hover {
  color: var(--dark-red);
  border-color: var(--dark-red);
  background-color: var(--mid-beige);
}
.item_tab {
  display: none;
}
.item_tab.active {
  display: block;
}
.item_tab p {
  margin-bottom: 15px;
}
.item_tab--specs ul li {
  border-bottom: 1px solid var(--mid-beige);
  line-height: 1.4em;
  padding: 0 0 2px 30px;
  margin-bottom: 15px;
}
.item_tab--docs p {
  font-size: 18px;
  line-height: 1.3em;
}
.item_tab--usage ul {
  margin: 15px 0 20px;
  padding: 0 0 0 40px;
}
.item_tab--usage ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.item_tab__sub {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--mid-beige);
}
.item-docs__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  padding-top: 10px;
}
.item-doc {
  display: flex;
  width: 172px;
  margin-right: 24px;
  font-weight: 500;
}
.item-doc__link {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 190px;
  line-height: 1.45em;
}
.item-doc__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 175px;
  border: 1px solid #949494;
  border-radius: 8px;
}
.item-doc--pdf .item-doc__link::before {
  background: url("/static/img/pdf-icon.svg") center center / 50px no-repeat;
}
.item-doc--doc .item-doc__link::before {
  background: url("/static/img/doc-icon.svg") center center / 50px no-repeat;
}
.item_controls {
  display: flex;
}
.item_back {
  position: relative;
  display: inline-block;
  padding: 12px 25px 12px 58px;
  background-color: var(--mid-beige);
  border-radius: 5px;
  font-weight: 500;
}
.item_back::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  width: 28px;
  height: 18px;
  background: url("/static/img/arr-right.svg") center center / 100% no-repeat;
}
@media screen and (max-width: 1280px) {
  .item_tabs__btn {
    padding: 10px 25px;
  }
}
@media screen and (max-width: 992px) {
  .item_tabs {
    margin-bottom: 35px;
  }
  .item_tabs__btns {
    margin-bottom: 30px;
  }
  .item_tabs__btn {
    font-size: 18px;
    padding: 8px 15px;
    min-height: 48px;
  }
  .item_tab--specs ul li {
    padding: 0px 0 5px 15px;
    margin-bottom: 10px;
  }
  .item_tab--docs p {
    font-size: 16px;
  }
  .item-doc {
    width: 140px;
    margin-right: 20px;
  }
  .item-doc__link::before {
    height: 140px;
  }
  .item-doc__link {
    padding-top: 150px;
  }
}
@media screen and (max-width: 480px) {
  .item_tab__sub {
    font-size: 16px;
  }
  .item_tabs__btn {
    width: 100%;
    border-radius: 5px;
  }
  .item_tab--specs ul li {
    padding-left: 0;
  }
  .item-docs__list {
    justify-content: space-between;
  }
  .item-doc {
    width: 48%;
    margin-right: 0;
  }
  .item-doc__link::before {
    height: 120px;
  }
  .item-doc__link {
    padding-top: 130px;
  }
}
.popup {
  display: none;
}
.mainslide {
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 560px;
  background: url("/static/img/mainslide.jpg") center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.mainslide_title {
  position: relative;
  margin: 0;
  color: inherit;
  font-family: var(--font-TTNorms);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  margin-bottom: 125px;
}
.mainslide_title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -10%);
  width: 100%;
  max-width: 1236px;
  height: 275px;
  top: 100%;
  background: url("/static/img/mainslide-decor.png") center top / 100% auto
    no-repeat;
}
@media screen and (max-width: 1300px) {
  .mainslide {
    min-height: 43vw;
  }
  .mainslide_title {
    font-size: 3.65vw;
    margin-bottom: 9.65vw;
  }
  .mainslide_title::before {
    height: 21.2vw;
  }
}
@media screen and (max-width: 768px) {
  .mainslide {
    min-height: 360px;
  }
  .mainslide_title {
    font-size: 32px;
    margin-bottom: 75px;
  }
  .mainslide_title::before {
    height: 150px;
  }
}
@media screen and (max-width: 480px) {
  .mainslide {
    min-height: 70vw;
  }
  .mainslide_title {
    font-size: 6.67vw;
    margin-bottom: 9.38vw;
  }
  .mainslide_title::before {
    height: 20.83vw;
  }
}
.mainpage {
  padding-bottom: 80px;
}
.mainpage_first {
  overflow: hidden;
  width: 100%;
  max-width: 1920px;
  background: url("/static/img/mcatalog_decor.png") right 20px top 17% / auto
    no-repeat;
  margin: 0 auto;
}
.mainpage_intro {
  margin-bottom: 25px;
}
.mainpage_intro__row {
  display: grid;
  grid-template-columns: 49% 49%;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 30px;
}
.mainpage_intro__text {
  position: relative;
  background-color: var(--light-pink);
  padding: 150px 15px 65px 0;
  font-size: 18px;
}
.mainpage_intro__text::before {
  content: "";
  position: absolute;
  display: block;
  right: -17%;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--light-pink);
  z-index: -1;
}
.mainpage_intro__text p {
  line-height: 1.25em;
}
.mainpage_intro__display {
  padding-top: 140px;
}
.mainpage_intro__video {
  position: relative;
  border-radius: 10px;
  z-index: 2;
  padding-bottom: 57%;
  max-width: 600px;
}
.mainpage_intro__video video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.mainpage_intro__video .video-play {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
  background:
    url("/static/img/play-btn.png") center center / 131px auto no-repeat,
    rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 1;
}
.check-list > li {
  position: relative;
  padding-left: 32px;
  line-height: 1.25em;
  margin-bottom: 20px;
}
.check-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url("/static/img/checkmark.svg") center center / 100% no-repeat;
  filter: invert(90%) sepia(20%) saturate(1159%) hue-rotate(321deg)
    brightness(101%) contrast(103%);
}
.mainpage_choice {
  padding-top: 20px;
  padding-bottom: 70px;
}
.mainpage_choice h2 {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.mainpage_choice__grid {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  row-gap: 18px;
  padding-top: 15px;
  margin-bottom: 40px;
}
.mainpage_choice__elem {
  position: relative;
  padding: 125px 20px 30px 40px;
  margin-top: 25px;
  border: 2px solid #eddfcb;
  border-radius: 15px;
}
.mainpage_choice__elem::before {
  content: "";
  position: absolute;
  left: 40px;
  top: -25px;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background-color: #eddfcb;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.mainpage_choice__elem--1::before {
  background-image: url("/static/img/mainpage_choice_01.png");
}
.mainpage_choice__elem--2::before {
  background-image: url("/static/img/mainpage_choice_02.png");
}
.mainpage_choice__elem--3::before {
  background-image: url("/static/img/mainpage_choice_03.png");
}
.mainpage_choice__elem--4::before {
  background-image: url("/static/img/mainpage_choice_04.png");
}
.mainpage_choice__elem--5::before {
  background-image: url("/static/img/mainpage_choice_05.png");
}
.mainpage_choice__elem--6::before {
  background-image: url("/static/img/mainpage_choice_06.png");
}
.mainpage_choice__elem:nth-child(even) {
  background-color: #faf5ef;
  border-color: #faf5ef;
}
.mainpage_choice__elem.mainpage_choice__elem--big {
  grid-column: 1/-1;
  padding-top: 35px;
}
.mainpage_choice__elem--semibig {
  grid-column: 1/3;
}
.mainpage_choice__sub {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05em;
  margin-bottom: 20px;
}
.mainpage_choice__elem--big .mainpage_choice__sub {
  min-height: 60px;
  margin-left: 145px;
}
.mainpage_choice__elem p {
  line-height: 1.25em;
  margin-bottom: 0;
}
.mainpage_choice__row {
  display: grid;
  grid-template-columns: repeat(3, 31%);
  justify-content: space-between;
  row-gap: 20px;
  padding-top: 15px;
}
.mainpage_choice__block {
  position: relative;
  display: flex;
  padding-top: 75px;
  font-weight: 500;
}
.mainpage_choice__block::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 70px;
  height: 50px;
}
.mainpage_choice__block--cow::before {
  background: url("/static/img/choice-cow.svg") left center / 100% no-repeat;
}
.mainpage_choice__block--chicken::before {
  background: url("/static/img/choice-chicken.svg") left center / 60% no-repeat;
}
.mainpage_choice__block--pig::before {
  background: url("/static/img/choice-pig.svg") left center / 100% no-repeat;
}
.mainpage_choice__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .mainpage_intro__text {
    padding: 90px 15px 45px 0;
  }
  .mainpage_intro__display {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1140px) {
  .mainpage_choice__elem {
    padding: 110px 15px 25px 20px;
  }
  .mainpage_choice__elem::before {
    left: 20px;
  }
  .mainpage_choice__block {
    padding-top: 65px;
  }
}
@media screen and (max-width: 992px) {
  .mainpage_first {
    background-size: 45% auto;
  }
  .mainpage_choice__list li {
    padding-left: 30px;
    margin-bottom: 15px;
  }
  .mainpage_choice__elem {
    padding-top: 90px;
  }
  .mainpage_choice__elem.mainpage_choice__elem--big {
    padding-top: 25px;
  }
  .mainpage_choice__elem::before {
    width: 100px;
    height: 100px;
  }
  .mainpage_choice__sub {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .mainpage_choice__elem--big .mainpage_choice__sub {
    min-height: 40px;
    margin-left: 115px;
  }
}
@media screen and (max-width: 768px) {
  .mainpage_first {
    background-image: none;
  }
  .mainpage_intro__row {
    grid-template-columns: 100%;
  }
  .mainpage_intro__text {
    padding: 40px 0 30px;
  }
  .mainpage_intro__text::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .mainpage_intro__display {
    padding-top: 0;
  }
  .mainpage_intro__video {
    margin: 0 auto;
  }
  .mainpage_choice {
    padding-bottom: 40px;
  }
  .mainpage_choice__grid {
    grid-template-columns: repeat(2, 48.5%);
  }
  .mainpage_choice__elem--semibig {
    grid-column: 1/-1;
  }
  .mainpage_choice__row {
    grid-template-columns: repeat(2, 48.5%);
  }
}
@media screen and (max-width: 600px) {
  .mainpage_choice__grid {
    grid-template-columns: 100%;
  }
  .mainpage_choice__row {
    grid-template-columns: 100%;
    padding-top: 0;
    row-gap: 5px;
  }
  .mainpage_choice__sub {
    font-size: 22px;
  }
  .mainpage_choice__block {
    padding-top: 56px;
  }
}
@media screen and (max-width: 480px) {
  .mainpage_intro__text {
    font-size: 16px;
  }
  .mainpage_choice__sub {
    font-size: 20px;
  }
  .mainpage_choice__elem,
  .mainpage_choice__elem.mainpage_choice__elem--big {
    padding: 80px 10px 20px 20px;
  }
  .mainpage_choice__elem::before {
    width: 86px;
    height: 86px;
  }
  .mainpage_choice__elem--big .mainpage_choice__sub {
    min-height: initial;
    margin-left: 0;
  }
}
.mainpage_fract {
  padding: 60px 0 30px;
  background: linear-gradient(to right, #ffd18f, #ffe3bb 30%, #ffd18f 40%);
  margin-bottom: 25px;
  font-size: 18px;
}
.mainpage_fract__row {
  display: grid;
  grid-template-columns: 43% 49%;
  justify-content: space-between;
  align-items: center;
}
.mainpage_fract__sub {
  text-align: end;
  font-size: 26px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 25px;
}
.mainpage_fract__list li {
  position: relative;
  padding-left: 36px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.2em;
}
.mainpage_fract__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url("/static/img/checkmark.svg") center center / 100% no-repeat;
  filter: invert(9%) sepia(54%) saturate(7469%) hue-rotate(337deg)
    brightness(86%) contrast(93%);
}

.mainpage_catalog {
  padding-top: 50px;
  padding-bottom: 35px;
}
.mainpage_catalog .mcatalog_list {
  padding-top: 20px;
  margin-bottom: 55px;
}
.mainpage_catalog .mcatalog_list + .mcatalog_list {
  padding-top: 40px;
  border-top: 2px solid var(--light-gray);
}
.load_block {
  margin-bottom: 40px;
  overflow: hidden;
}
.load_block__inner {
  position: relative;
  background-color: var(--light-pink);
  border-radius: 10px;
  padding: 20px 20px 20px 50px;
}
.load_block__inner::before {
  content: "";
  position: absolute;
  left: calc(100% - 20px);
  top: 0;
  height: 100%;
  width: 50vw;
  background-color: var(--light-pink);
  z-index: -1;
}
.load_block__list {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  justify-content: space-between;
  row-gap: 20px;
  font-size: 18px;
  font-weight: 700;
}
.load_block__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding-left: 165px;
  max-width: 530px;
}
.load_block__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 126px;
  height: 154px;
}
.load_block__item--1::before {
  background: url("/static/img/load_block_01.png") center center / 100%
    no-repeat;
}
.load_block__item--2::before {
  background: url("/static/img/load_block_02.png") center center / 100%
    no-repeat;
}
.mainpage_invitation {
  font-family: var(--font-Lora);
  color: var(--dark-red);
  line-height: 1.2em;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  margin: 65px 0 25px;
}
@media screen and (max-width: 1140px) {
  .load_block__inner {
    padding-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .mainpage_fract {
    padding: 40px 0 20px;
  }
  .mainpage_fract__row {
    grid-template-columns: repeat(2, 48.5%);
  }
  .mainpage_fract__sub {
    font-size: 24px;
  }
  .mainpage_fract__list li {
    margin-bottom: 15px;
  }
  .load_block__item::before {
    width: 108px;
    height: 134px;
  }
  .load_block__item {
    min-height: 134px;
    padding-left: 125px;
    max-width: initial;
  }
  .mainpage_invitation {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .mainpage_fract__row {
    grid-template-columns: 100%;
  }
  .mainpage_fract__sub {
    text-align: start;
  }
  .load_block__inner {
    padding: 20px 15px;
  }
  .load_block__item {
    min-height: 98px;
    padding-left: 92px;
  }
  .load_block__item::before {
    width: 80px;
    height: 98px;
  }
  .mainpage_catalog {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .mainpage_invitation {
    font-size: 22px;
    margin: 45px 0 15px;
  }
}
@media screen and (max-width: 680px) {
  .load_block__list {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 480px) {
  .mainpage_catalog {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mainpage_fract__sub {
    font-size: 22px;
  }
  .mainpage_fract__sub br {
    display: none;
  }
  .mainpage_fract__list li {
    padding-left: 32px;
    font-size: 16px;
  }
  .load_block__inner {
    padding: 20px 10px;
  }
  .load_block__list {
    font-size: 16px;
  }
  .mainpage_invitation {
    font-size: 20px;
  }
}
.news {
  padding-bottom: 100px;
}
.news_list {
  display: grid;
  grid-template-columns: repeat(4, 24%);
  justify-content: space-between;
  row-gap: 42px;
  margin-bottom: 40px;
}
.news_list li {
  display: flex;
}
.news_list__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 17px 17px 20px;
  border-radius: 8px;
  border: 1px solid #faf5ef;
  background-color: #faf5ef;
  transition: 0.1s;
}
.news_list__link:hover {
  border-color: #eddfcb;
  background-color: transparent;
}
.news_list__link img {
  display: block;
  border-radius: 8px;
  margin: 0 auto 25px;
}
.news_list__name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
  min-height: 70px;
  margin-bottom: 25px;
}
.news_list__more {
  position: relative;
  display: inline-block;
  padding-right: 34px;
  margin: auto 0 0 auto;
  font-weight: 700;
  color: var(--dark-red);
}
.news_list__more::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 16px;
  transition: 0.1s;
  background: url("/static/img/arr-right.svg") center center / 100% no-repeat;
  filter: invert(11%) sepia(80%) saturate(4084%) hue-rotate(333deg)
    brightness(84%) contrast(96%);
}
@media screen and (max-width: 1140px) {
  .news {
    padding-bottom: 80px;
  }
  .news_list__link {
    padding: 15px 15px 20px;
  }
  .news_list__name {
    font-size: 19px;
  }
}
@media screen and (max-width: 992px) {
  .news {
    padding-bottom: 60px;
  }
  .news_list {
    grid-template-columns: repeat(3, 31.5%);
    row-gap: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .news_list {
    grid-template-columns: repeat(2, 48.5%);
  }
  .news_list__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .news_list {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
}
.news-item {
  padding-bottom: 60px;
}
.news-item_content {
  font-size: 18px;
  margin-bottom: 45px;
}
.news-item_content p {
  text-align: justify;
  line-height: 1.3em;
  margin-bottom: 25px;
}
.news-item_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 35px;
}
.news-item_img {
  width: 34%;
  max-width: 400px;
}
.news-item_img img {
  display: block;
  margin: 0 auto;
}
.news-item_text {
  width: 63%;
  align-self: center;
}
.news-item_text p:last-child {
  margin-bottom: 0;
}
.news-item_block {
  margin-bottom: 35px;
}
.news-item_controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-item_back {
  position: relative;
  display: inline-block;
  padding: 12px 25px 12px 58px;
  background-color: var(--mid-beige);
  border-radius: 8px;
}
.news-item_back::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  left: 20px;
  width: 28px;
  height: 20px;
  background: url("/static/img/arr-right.svg") center center / 100% no-repeat;
}
@media screen and (max-width: 992px) {
  .news-item_block,
  .news-item_row {
    margin-bottom: 25px;
  }
  .news-item_content p {
    margin-bottom: 20px;
  }
  .news-item_img {
    width: 39%;
  }
  .news-item_text {
    width: 57%;
  }
}
@media screen and (max-width: 768px) {
  .news-item_block,
  .news-item_row {
    margin-bottom: 20px;
  }
  .news-item_img {
    width: 100%;
    max-width: initial;
  }
  .news-item_text {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .news-item_content {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.prices_content {
  padding-top: 40px;
  padding-bottom: 80px;
}
.prices_content p {
  margin-bottom: 12px;
}
.prices_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  margin-bottom: 45px;
}
.prices_table th,
.prices_table td {
  text-align: left;
}
.prices_table th {
  background-color: var(--light-gray);
  font-size: 18px;
  font-weight: 700;
  padding: 10px 10px 10px 15px;
  border-radius: 5px;
}
.prices_table td {
  font-size: 16px;
  padding: 15px 10px 15px 15px;
  border-bottom: 1px solid var(--light-gray);
}

.prices_table th span {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .prices_table th {
    width: 24%;
  }
  .prices_table th:first-child {
    width: 28%;
  }
  .prices_table th:last-child {
    width: 20%;
  }
}
@media screen and (max-width: 992px) {
  .prices_content {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .prices_table th {
    font-size: 16px;
    padding: 8px 5px 8px 10px;
  }
  .prices_table td {
    padding: 10px 5px 10px 10px;
  }
}
@media screen and (max-width: 680px) {
  .prices_table th {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .prices_table tr {
    display: grid;
  }
  .prices_table th {
    display: block;
    padding: 5px 5px 5px 10px;
    border-radius: 0px;
  }
  .prices_table th::after {
    content: "/";
    display: inline-block;
  }
  .prices_table th:first-child {
    padding-top: 15px;
  }
  .prices_table th:last-child {
    padding-bottom: 15px;
  }
  .prices_table th:last-child::after {
    display: none;
  }

  .prices_table tbody tr {
    grid-template-columns: repeat(3, 32%);
    justify-content: space-between;
  }
  .prices_table td {
    padding: 10px 5px;
  }
  .prices_table td:first-child {
    grid-column: 1/-1;
    padding-bottom: 0;
    font-weight: 500;
    border-bottom: none;
  }
}

.ui-front {
  position: relative;
  width: 100%;
  z-index: unset;
}
.ui-front .ui-selectmenu-button.ui-button {
  width: 100%;
  font-family: var(--font-TTNorms) !important;
  border: 1px solid var(--beige) !important;
  border-radius: 5px !important;
  color: #908d8b !important;
  padding: 15px 10px 15px 18px !important;
  margin: 0 !important;
  background-color: transparent !important;
}
.ui-front .ui-selectmenu-button.ui-button:hover {
  background-color: #fff6e9 !important;
}
.ui-front .ui-selectmenu-button.ui-button[aria-disabled="false"] {
  color: var(--black-font) !important;
}
.ui-front .ui-selectmenu-menu {
  top: calc(100% + 5px) !important;
  border-radius: 5px !important;
  background-color: var(--white) !important;
  z-index: 10 !important;
}
.ui-front .ui-widget.ui-widget-content {
  border-radius: 5px !important;
  border: 1px solid var(--beige) !important;
  max-height: 250px;
  overflow-y: auto;
}
.ui-front .ui-state-active,
.ui-front .ui-widget-content .ui-state-active {
  background-color: #fff6e9 !important;
  color: var(--black-font) !important;
  border: none !important;
  margin: 0 !important;
}
.ui-front .ui-menu .ui-menu-item-wrapper {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 5px 10px 5px 15px;
  line-height: 1.1em;
}
.ui-front .ui-widget-content .ui-state-disabled {
  display: none !important;
}
.ui-front .ui-button .ui-icon {
  border-right: 2px solid #908d8b;
  border-bottom: 2px solid #908d8b;
  background: none !important;
  margin: 0 !important;
  width: 12px !important;
  height: 12px !important;
  top: 0px;
  right: 15px;
  transform: rotate(45deg);
}
.ui-front .ui-button.ui-selectmenu-button-open .ui-icon {
  transform: rotate(-135deg);
  top: 6px;
}
.ui-front .ui-selectmenu-text {
  margin-right: 35px !important;
}
@media screen and (max-width: 480px) {
  .ui-front .ui-selectmenu-button.ui-button {
    padding: 12px 10px 12px 15px !important;
  }
  .ui-front .ui-button .ui-icon {
    width: 10px !important;
    height: 10px !important;
    right: 5px;
  }
  .ui-front .ui-selectmenu-text {
    margin-right: 20px !important;
  }
  .ui-front .ui-widget.ui-widget-content {
    font-size: 15px;
  }
}
::placeholder {
  color: #908d8b;
  opacity: 1;
}
::-webkit-input-placeholder {
  color: #908d8b;
}
::-moz-placeholder {
  color: #908d8b;
  opacity: 1;
}
.agreement {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 1.3;
}
.agreement input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.agreement span {
  position: relative;
  padding-left: 32px;
  display: block;
}
.agreement span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 1px solid var(--beige);
  border-radius: 3px;
}
.agreement input:checked + span::before {
  background: url("/static/img/form-check.svg") center center / 75% no-repeat;
}
.request-popup {
  background:
    url("/static/img/request-bg.jpg") right bottom / auto no-repeat,
    var(--white);
  border-radius: 20px;
  overflow: visible;
  font-family: var(--font-TTNorms);
  padding: 0 80px 60px 65px;
  width: 90vw;
  max-width: 800px;
}
.request-popup .fancybox-close-small {
  background-color: var(--beige);
  border-radius: 50%;
  top: -26px;
  right: -30px;
  width: 36px;
  height: 36px;
  padding: 0;
}
.request-popup_header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -28px;
  margin-bottom: 25px;
}
.request-popup_title {
  text-align: center;
  padding: 20px 45px;
  margin: 0;
  border-radius: 20px;
  color: var(--dark-red);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(145deg, #fae5c7, #ffd496 40%);
}
.request-popup p {
  font-weight: 500;
  line-height: 1.2em;
}
.request-form_entries {
  display: grid;
  row-gap: 18px;
  width: 100%;
  padding-top: 25px;
  margin-bottom: 20px;
}
.request-form_inputs {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  justify-content: space-between;
  row-gap: 10px;
}
.request-form_entries input,
.request-form_entries textarea {
  border: 1px solid var(--beige);
  border-radius: 5px;
  background-color: var(--white);
  width: 100%;
  padding: 16px 10px 16px 20px;
}
.request-form_entries textarea {
  min-height: 105px;
  resize: none;
}
.request-form_entries input:hover,
.request-form_entries input:focus,
.request-form_entries textarea:hover,
.request-form_entries textarea:focus {
  background-color: #fff6e9;
  outline: none;
}
.request-form_controls {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.request-form_btn {
  position: relative;
  background-color: var(--dark-red);
  color: var(--white);
  padding: 20px 70px 20px 35px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
.request-form_btn::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 22px;
  background: url("/static/img/arrow-right.svg") center center / 100% no-repeat;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(323deg) brightness(102%) contrast(101%);
}
.request-form .agreement {
  max-width: 340px;
}
@media screen and (max-width: 992px) {
  .request-popup {
    padding: 0 40px 40px 40px;
    max-width: 700px;
  }
  .request-popup_title {
    padding: 15px 35px;
    font-size: 28px;
  }
  .request-form_entries {
    padding-top: 5px;
  }
  .request-form_btn {
    padding: 15px 50px 15px 25px;
  }
  .request-form_btn::before {
    right: 12px;
    width: 28px;
    height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .request-popup {
    width: 94vw;
    border-radius: 15px;
    padding: 0 30px 30px 30px;
  }
  .request-popup .fancybox-close-small {
    top: -38px;
    right: -10px;
    width: 34px;
    height: 34px;
  }
  .request-popup_title {
    font-size: 26px;
    border-radius: 15px;
  }
  .request-popup_header {
    margin-top: -20px;
  }
}

@media screen and (max-width: 600px) {
  .request-popup p {
    margin-bottom: 15px;
  }
  .request-form .agreement {
    max-width: initial;
  }
  .request-popup_title {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .request-popup {
    padding: 0 15px 20px;
  }
  .request-popup_title {
    font-size: 20px;
  }
  .request-popup_header {
    margin-top: -15px;
    margin-bottom: 15px;
  }
  .request-form_entries {
    padding-top: 0px;
    row-gap: 10px;
    margin-bottom: 15px;
  }
  .request-form_inputs,
  .request-form_controls {
    grid-template-columns: 100%;
  }
  .request-form_entries input,
  .request-form_entries textarea {
    padding: 12px 10px 12px 15px;
  }
  .request-form_entries textarea {
    min-height: 85px;
  }
  .request-form_btn {
    width: 100%;
    max-width: 185px;
    margin: 0 auto;
  }
}
