@font-face {
  font-family: Rene;
  font-weight: normal;
  src: url(../src/Rene_Bieder_Milliard_Bold.otf);
}
.title-h1 {
  color: var(--accent, var(--accent, #106ea0));
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
  font-family: "Inter", serif;
}

.title-h2 {
  color: var(--dark-text, #1f1e17);
  font-size: 48px;
  font-weight: 800;
  line-height: 100%;
  font-family: "Inter", serif;
}

.text-p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: 700;
}

@media (max-width: 768px) {
  .title-h1 {
    font-size: 42px;
  }
  .title-h2 {
    font-size: 42px;
  }
  .text-p {
    font-size: 16px;
  }
}
.button {
  cursor: pointer;
  padding: 20px 55px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 10px;
  background: var(--accent, #106ea0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.button_white {
  background: #fff;
  color: #d6531d;
}

.swiper-arrow-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--accent, #106ea0);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, #106ea0);
  transition: background 0.3s ease, border 0.3s ease;
}
.swiper-arrow-btn path {
  transition: stroke 0.3s ease;
}
.swiper-arrow-btn.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (hover: hover) {
  .button:hover {
    background: #0a4c6f;
  }
  .button:active {
    background: #0a4c6f;
    color: rgba(255, 255, 255, 0.7);
  }
  .button_white:hover {
    background: #c7c7c7;
  }
  .button_white:active {
    color: #d6531d;
  }
  .swiper-arrow-btn:hover {
    background: #fff;
    border-color: var(--accent, #106ea0);
  }
  .swiper-arrow-btn:hover path {
    stroke: var(--accent, #106ea0);
  }
  .swiper-arrow-btn:active {
    background: #0a4c6f;
    border-color: rgba(255, 255, 255, 0.7);
  }
  .swiper-arrow-btn:active path {
    stroke: rgba(255, 255, 255, 0.7);
  }
}
@media (hover: none) {
  .button:active {
    background: #0a4c6f;
    color: rgba(255, 255, 255, 0.7);
  }
  .button_white:active {
    background: #c7c7c7;
  }
  .swiper-arrow-btn:active {
    background: #0a4c6f;
    border: 1px solid rgba(255, 255, 255, 0.7);
  }
  .swiper-arrow-btn:active path {
    stroke: rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 768px) {
  .button {
    max-width: 100%;
    padding: 16px 44px;
    font-size: 16px;
  }
  .swiper-arrow-btn {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }
}
.container {
  width: 100%;
  max-width: 820px;
  padding-inline: 10px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
  }
}
.main {
  overflow: hidden;
}

.header {
  position: relative;
  background: var(--light, #ffffff);
}
.header__box {
  padding: 70px 16px 70px 180px;
  position: relative;
  max-width: 1032px;
  margin-inline: auto;
}
.header__logo {
  position: absolute;
  left: 0;
  top: 17px;
  height: 220px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: top left;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu li {
  position: relative;
}
.header__menu-inner {
  position: absolute;
  left: -20px;
  padding: 20px;
  top: 21px;
  background: var(--light, #ffffff);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 270px;
  z-index: 10;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.header__menu-inner:hover {
  opacity: 1;
  transform: translateX(0px);
  pointer-events: all;
}
.header__menu-link {
  color: #106ea0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  width: -moz-fit-content;
  width: fit-content;
  transition: border-bottom 0.3s ease;
}
.header__menu-link:hover {
  border-bottom: 1px solid var(--accent, #106ea0);
}
@media (min-width: 769px) {
  .header__menu-link:hover ~ ul {
    opacity: 1;
    transform: translateX(0px);
    pointer-events: all;
  }
}

.lang-switcher {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switcher__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  color: #fff;
  font-family: "Inter", serif;
}
.lang-switcher__link.active {
  background: var(--accent, #106ea0);
}

.burger {
  display: none;
}

@media (max-width: 768px) {
  .header {
    z-index: 100;
  }
  .header__box {
    padding: 30px 20px 30px 50px;
    max-width: 100%;
  }
  .header__logo {
    left: 20px;
    top: 10px;
    height: 110px;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: 50;
  }
  .header__menu {
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 100%;
    height: 100vh;
    gap: 15px;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    background: var(--light, #ffffff);
    padding-top: calc(var(--header-height) + 20px);
    padding-left: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    transition: right 0.3s ease;
  }
  .header__menu li {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .header__menu-inner {
    position: relative;
    left: unset;
    top: unset;
    opacity: 1;
    pointer-events: all;
    align-items: end;
    padding: 10px;
    background: #51b0e2;
    margin-top: 10px;
    gap: 20px;
    overflow: hidden;
    display: none;
    transform: none;
  }
  .header__menu-inner li {
    width: 100%;
  }
  .header__menu-inner li:not(:last-child) a::after {
    content: "";
    position: absolute;
    bottom: -11px;
    right: 0;
    width: 100%;
    height: 1px;
    background: #fff;
  }
  .header__menu-inner a {
    color: var(--light, #ffffff);
    width: 100%;
    justify-content: end;
  }
  .header__menu-inner.submenu_opened {
    display: flex;
  }
  .burger {
    position: relative;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .burger__line {
    display: block;
    width: 42px;
    height: 5px;
    background: var(--accent, #106ea0);
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .lang-switcher {
    order: -1;
    margin-right: -10px;
  }
  .lang-switcher__link {
    width: 34px;
    height: 34px;
  }
  .header.menu-active .header__menu {
    right: 0;
  }
  .header.menu-active .burger__line:first-child {
    transform: translate(0, 15px) rotate(45deg);
  }
  .header.menu-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header.menu-active .burger__line:last-child {
    transform: translate(0, -15px) rotate(-45deg);
  }
}
.footer {
  position: relative;
  padding: 90px 0;
  background: var(--light, #ffffff);
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url("../src/img/border-catalog.webp");
  background-size: contain;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer::before {
    height: 10px;
    background-size: cover;
  }
}

.footer-top {
  border-bottom: 2px solid rgba(16, 110, 160, 0.1);
  padding-bottom: 90px;
}
.footer-top__box {
  display: grid;
  grid-template-columns: 124px 1fr 360px;
  gap: 80px;
}
.footer-top__logo {
  display: flex;
  max-width: 124px;
  height: 140px;
}
.footer-top__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-top__title {
  margin-bottom: 10px;
  color: #1f1e17;
  font-family: "Inter", serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 100%;
}
.footer-top__nav {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.footer-top__link {
  color: var(--accent, #106ea0);
  font-weight: 700;
  transition: opacity 0.3s ease;
}
.footer-top__link:hover {
  opacity: 0.6;
}
.footer-top__desc {
  color: var(--accent, #106ea0);
}

.footer-bottom {
  padding-top: 90px;
}
.footer-bottom__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom__left {
  display: flex;
  flex-direction: column;
  color: var(--dark-gray, #878680);
  gap: 5px;
}
.footer-bottom__left a b {
  text-decoration: underline;
}
.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom__link {
  display: flex;
  transition: opacity 0.3s ease;
}
.footer-bottom__link:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .footer-top {
    padding-bottom: 30px;
  }
  .footer-top__box {
    grid-template-columns: 100%;
    justify-content: center;
    gap: 30px;
    text-align: center;
  }
  .footer-top__logo {
    max-width: 100px;
    height: 100px;
    margin-inline: auto;
  }
  .footer-top__title {
    font-size: 22px;
  }
  .footer-bottom {
    padding-top: 30px;
  }
  .footer-bottom__box {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
  .footer-bottom__left {
    gap: 3px;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(56, 56, 56, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
  overflow-y: scroll;
  cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"),
    auto;
  visibility: hidden;
}
.modal.is_active {
  display: flex;
  visibility: visible;
}
.modal.is_active .modal-inner {
  animation: scaleModal 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.modal__close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #51b0e2;
}
.modal__title {
  margin-bottom: 30px;
}

.modal-thx__box {
  position: relative;
  padding: 30px;
  max-width: 800px;
}
.modal-thx__box-inner {
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
}
.modal-thx__title {
  color: var(--light, #ffffff);
  font-weight: 700;
}
.modal-thx__desc {
  max-width: 740px;
  padding-inline: 110px;
}

.modal-inner {
  position: relative;
  display: flex;
  box-shadow: 0px 0px 12px 2px rgba(199, 57, 20, 0.3);
  background: var(--accent, #106ea0);
  border-radius: 16px;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: auto;
  margin-bottom: auto;
  cursor: auto;
  will-change: scale, opacity, transform;
}

@media (max-width: 768px) {
  .modal {
    padding-inline: 16px;
  }
  .modal__box {
    padding: 20px;
    max-width: 330px;
  }
  .modal__close {
    width: 34px;
    height: 34px;
    top: 20px;
    right: 20px;
  }
  .modal-thx__box {
    padding: 20px;
    max-width: 100%;
  }
  .modal-thx__box-inner {
    height: -moz-fit-content;
    height: fit-content;
    gap: 20px;
    padding: 75px 0px;
  }
  .modal-thx__desc {
    max-width: 100%;
    padding-inline: 10px;
  }
}
@keyframes scaleModal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.breadcrumbs {
  position: relative;
  padding: 145px 16px;
  text-align: center;
}
.breadcrumbs__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  z-index: -1;
}
.breadcrumbs__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.breadcrumbs__title {
  color: var(--light, #ffffff);
  overflow-wrap: break-word;
}
.breadcrumbs__link {
  position: relative;
  transition: opacity 0.3s ease;
}
.breadcrumbs__link:hover {
  opacity: 0.6;
}
.breadcrumbs__link:not(:last-child)::after {
  content: "/";
  margin-inline: 10px;
}
.breadcrumbs__link:last-child {
  pointer-events: none;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 100px 16px 110px;
  }
  .breadcrumbs__box {
    margin-bottom: 20px;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.pagination .swiper-arrow-btn {
  flex-shrink: 0;
}
.pagination__numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: scroll;
}
.pagination__item {
  background: transparent;
  border: 2px solid #e7e1cc;
  flex-shrink: 0;
  font-family: "Inter", serif;
  font-weight: 700;
}
.pagination__item:hover {
  color: var(--accent, #106ea0);
}
.current .pagination__item {
  background: var(--accent, #106ea0);
  border-color: var(--accent, #106ea0);
  color: var(--light, #ffffff);
  pointer-events: none;
}

.pagination__item_back {
  transform: rotate(180deg);
}

.home {
  position: relative;
  padding: 70px 0 0;
}
.home__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  -o-object-position: top;
  object-position: top;
}
.home__bg_mobile {
  display: none;
}
.home__heading {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.home__desc {
  color: var(--accent, var(--accent, #106ea0));
  margin-bottom: 390px;
}
.home__child {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 370px;
  width: 366px;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: -1;
}
.home__grandma {
  position: absolute;
  bottom: 0;
  right: -5px;
  height: 580px;
  width: 480px;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: -1;
}
.home__wrapper {
  position: relative;
}

.swiper-home {
  position: absolute;
  bottom: -162px;
  left: 0;
  z-index: 10;
  max-width: 100%;
  overflow: visible;
  padding-left: 30px;
}
.swiper-home__product {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.swiper-home__img-wrapper {
  position: relative;
  height: 370px;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
}
.swiper-home__img {
  width: -moz-fit-content;
  width: fit-content;
  height: 200px;
  width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
  filter: grayscale(1);
  transition: height 0.5s ease, width 0.5s ease, filter 0.5s ease;
}

.swiper-home__product:hover .swiper-home__img {
  filter: grayscale(0);
}

.swiper-home__platform {
  position: absolute;
  bottom: -20px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
  width: 90%;
  border-radius: 0px 0px 10px 10px;
  background: #e6dbc0;
  transition: width 0.3s ease;
}
.swiper-home__content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: center;
  margin-top: 38px;
}
.swiper-home__title {
  color: var(--dark-text, #1f1e17);
  font-size: 27px;
  font-weight: 700;
  line-height: 100%;
}
.swiper-home__desc {
  color: var(--dark-text, #1f1e17);
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.swiper-home__btn {
  position: absolute;
  left: -40px;
  bottom: 140px;
  z-index: 10;
}
.swiper-home__next {
  left: unset;
  right: -40px;
}
.swiper-home .swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.swiper-home .swiper-slide.visible {
  transition: opacity 1s ease;
  pointer-events: all;
  opacity: 1;
}
.swiper-home .swiper-slide-active .swiper-home__desc {
  opacity: 1;
  transform: translateX(0px);
  pointer-events: all;
  transition: opacity 1s ease, transform 1s ease;
}
.swiper-home .swiper-slide-active .swiper-home__img {
  height: 100%;
  width: 250px;
  filter: grayscale(0);
  transition: height 0.7s ease, width 0.7s ease, filter 1s ease;
}
.swiper-home .swiper-slide-active .swiper-home__platform {
  width: calc(100% + 20px);
  transition: width 0.5s ease;
}

@media (max-width: 768px) {
  .home {
    padding: 45px 0 0;
  }
  .home__heading {
    gap: 20px;
  }
  .home__desc {
    margin-bottom: 330px;
  }
  .home__bg {
    z-index: -3;
  }
  .home__child {
    left: -70px;
    transform: none;
    height: 260px;
    width: 260px;
    -o-object-position: bottom;
    object-position: bottom;
  }
  .home__grandma {
    right: 0;
    height: 325px;
    width: 350px;
    -o-object-position: bottom right;
    object-position: bottom right;
    z-index: -2;
  }
  .home__mobile-nav {
    position: absolute;
    top: -150px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .home__wrapper {
    position: relative;
  }
  .swiper-home {
    bottom: -40px;
    max-width: calc(100vw - 32px);
    overflow: visible;
    padding-left: 10px;
  }
  .swiper-home__img-wrapper {
    height: 200px;
  }
  .swiper-home__img {
    width: -moz-fit-content;
    width: fit-content;
    height: 150px;
    width: 75px;
  }
  .swiper-home__content {
    position: absolute;
    bottom: -110px;
    gap: 10px;
    margin-top: 0;
  }
  .swiper-home__title {
    font-size: 24px;
  }
  .swiper-home__desc {
    transform: translateY(20px);
  }
  .swiper-home__btn {
    position: relative;
    left: unset;
    bottom: unset;
    z-index: 10;
  }
  .swiper-home__next {
    left: unset;
    right: unset;
  }
  .swiper-home .swiper-slide-active .swiper-home__img {
    width: 140px;
  }
}
@media (max-width: 450px) {
  .swiper-home__content {
    bottom: -140px;
  }
}
.about {
  position: relative;
  padding-top: 270px;
  padding-bottom: 100px;
  z-index: 0;
}
.about__box-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 530px;
  margin-left: auto;
  margin-bottom: 90px;
}
.about__desc {
  color: var(--gray-dark, #878680);
}
.about__bg-top {
  position: absolute;
  top: 180px;
  left: 0;
  height: 60vh;
  width: 60vw;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
  z-index: -1;
}
.about__box-center {
  display: grid;
  grid-template-columns: repeat(2, 210px);
  gap: 75px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
.about__box-bottom {
  max-width: 530px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__bg-bottom {
  position: absolute;
  bottom: 80px;
  right: -190px;
  height: 60vh;
  width: 60vw;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right bottom;
  object-position: right bottom;
  z-index: -1;
}

.about-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 13px;
}
.about-cat__img-wrapper {
  position: relative;
  height: 150px;
  width: 100%;
  max-width: 210px;
}
.about-cat__img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-cat__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.about-cat__title {
  color: var(--accent, #106ea0);
  font-weight: 700;
}

@media (max-width: 768px) {
  .about {
    padding-top: 170px;
    padding-bottom: 50px;
  }
  .about__box-top {
    gap: 20px;
    max-width: 100%;
    margin-left: 0px;
    margin-bottom: 0px;
  }
  .about__bg-top {
    position: relative;
    top: 0;
    left: unset;
    right: -18px;
    height: 290px;
    width: 100%;
    transform: scale(-1, 1);
    margin-bottom: -80px;
  }
  .about__box-center {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-inline: 0;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .about__box-bottom {
    max-width: 100%;
    align-items: center;
    gap: 20px;
  }
  .about__bg-bottom {
    position: relative;
    bottom: unset;
    right: unset;
    left: -50px;
    height: 225px;
    width: 100%;
    transform: scale(-1, 1);
  }
  .about-cat {
    gap: 10px;
  }
  .about-cat__img-wrapper {
    position: relative;
    height: 130px;
    max-width: 100%;
  }
}
.catalog {
  position: relative;
  padding: 80px 0;
}
.catalog::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url("../src/img/border-catalog.webp");
  background-size: contain;
  z-index: 1;
}
.catalog::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url("../src/img/border-catalog.webp");
  background-size: contain;
  z-index: 1;
}
.catalog__bg-abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}
.catalog__box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.catalog__title {
  color: #fff;
}
.catalog__bg-jug {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
  -o-object-position: left bottom;
  object-position: left bottom;
  -o-object-fit: contain;
  object-fit: contain;
}

.catalog-continue {
  position: relative;
  padding-bottom: 30px;
}
.catalog-continue__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}
.catalog-continue__nav {
  display: none;
}

@media (min-width: 769px) {
  .swiper-catalog-continue .swiper-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    margin-top: -60px;
    z-index: 10;
  }
  .swiper-catalog-continue .swiper-slide {
    grid-column: span 2;
    width: -moz-fit-content;
    width: fit-content;
  }
  .swiper-catalog-continue .swiper-slide:nth-last-child(-n + 2) {
    grid-column: span 3;
    margin-left: auto;
  }
  .swiper-catalog-continue .swiper-slide:last-child {
    margin-left: 0;
    margin-right: auto;
  }
}
.main-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.main-cat__title {
  padding: 10px;
  color: #1f1e17;
  font-size: 27px;
  font-weight: 700;
  line-height: 100%;
}
.main-cat img {
  height: 270px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}

@media (max-width: 768px) {
  .catalog {
    position: relative;
    padding: 60px 0 100px;
  }
  .catalog::after,
  .catalog::before {
    background-size: cover;
  }
  .catalog__bg-abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .catalog__box {
    gap: 20px;
  }
  .catalog__bg-jug {
    display: none;
  }
  .catalog-continue {
    position: relative;
    padding-bottom: 50px;
  }
  .catalog-continue__bg {
    display: none;
  }
  .catalog-continue__nav {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .swiper-catalog-continue {
    margin-top: -60px;
  }
  .swiper-catalog-continue__pagi {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .swiper-catalog-continue__pagi .swiper-pagination-bullet {
    margin: 0 !important;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
    background: #d9d9d9;
    opacity: 1;
  }
  .swiper-catalog-continue__pagi .swiper-pagination-bullet-active {
    background: var(--accent, #106ea0);
  }
  .main-cat__title {
    font-size: 24px;
  }
  .main-cat img {
    height: 250px;
  }
}
.stock4u {
  position: relative;
  padding: 120px 0;
}
.stock4u::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 13px;
  background-image: url("../src/img/stock4u-border.webp");
  background-size: contain;
  z-index: -1;
}
.stock4u::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13px;
  background-image: url("../src/img/stock4u-border.webp");
  background-size: contain;
  z-index: -1;
}
.stock4u__box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.stock4u__title {
  color: #fff;
	width: 85%;
}
@media all and (max-width: 768px){
	.stock4u__title{
		width: 100%;
	}
}
.stock4u__title br {
  display: none;
}
.stock4u__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}

@media (max-width: 768px) {
  .stock4u {
    padding: 70px 0;
  }
  .stock4u::after,
  .stock4u::before {
    background-size: cover;
  }
  .stock4u__bg {
    -o-object-position: 60% 50%;
    object-position: 60% 50%;
  }
  .stock4u__title br {
    display: flex;
  }
}
.news {
  position: relative;
  padding: 70px 0;
}
.news__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 24px;
}
.news__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}
.news__desc {
  color: #878680;
}
.news__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-big {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.news-big__img {
  height: 312px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.news-big__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-big__date {
  color: #878680;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.news-big__title {
  color: #1f1e17;
  font-family: "Inter", serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 120%;
}
.news-big__desc {
  color: #878680;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-big__btn {
  margin-top: auto;
}

.swiper-news {
  overflow: hidden;
  border-radius: 10px;
}
.swiper-news .swiper-slide {
  height: auto;
}
.swiper-news__wrapper {
  position: relative;
}
.swiper-news__btn {
  position: absolute;
  top: 20%;
}
.swiper-news__prev {
  left: -60px;
}
.swiper-news__next {
  right: -60px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.news-card__img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.news-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.news-card__date {
  color: var(--dark-gray, #878680);
}
.news-card__title {
  font-family: "Inter", serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 120%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: var(--dark-gray, #878680);
  margin-bottom: auto;
}
.news-card__btn {
  margin-top: 30px;
}

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

@media (max-width: 768px) {
  .news {
    padding: 50px 0;
  }
  .news::before {
    background-size: cover;
  }
  .news__heading {
    gap: 20px;
    margin-bottom: 20px;
  }
  .news__bg {
    display: none;
  }
  .news__desc {
    color: #878680;
  }
  .news__box {
    gap: 20px;
  }
  .news-big {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news-big__img {
    height: 300px;
  }
  .news-big__title {
    font-size: 32px;
  }
  .news-big__desc {
    font-size: 16px;
  }
  .news-big__btn {
    margin-top: 10px;
    margin-inline: auto;
  }
  .swiper-news {
    overflow: visible;
    border-radius: 0;
  }
  .swiper-news .swiper-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .swiper-news .swiper-wrapper.show .swiper-slide {
    display: flex;
  }
  .swiper-news .swiper-slide {
    height: auto;
    display: none;
  }
  .swiper-news .swiper-slide:nth-child(-n + 2) {
    display: flex;
  }
  .swiper-news__btn {
    display: none;
  }
  .news-card {
    gap: 20px;
    width: 100%;
  }
  .news-card__title {
    font-size: 32px;
  }
  .news-card__btn {
    margin-top: 10px;
    margin-inline: auto;
  }
  .news-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--accent, #106ea0);
    font-weight: 700;
    line-height: 120%;
    margin-top: 20px;
    transition: opacity 0.3s ease;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .news-load-more:active {
    opacity: 0.5;
  }
}
.history {
  position: relative;
  min-height: 900px;
  padding: 80px 0;
}
.history__bg {
  position: absolute;
  top: 80px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left top;
  object-position: left top;
  z-index: -1;
}
.history__bg_left-desk {
  left: 0;
}
.history__bg_left-mob {
  display: none;
}
.history__bg_right {
  right: 0;
  -o-object-position: right bottom;
  object-position: right bottom;
}
.history__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 530px;
  margin-left: auto;
}
.history__desc {
  color: var(--dark-gray, #878680);
}

@media (max-width: 768px) {
  .history {
    min-height: 600px;
    padding: 50px 0;
  }
  .history__bg {
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .history__bg_left-desk {
    display: none;
  }
  .history__bg_left-mob {
    display: flex;
    -o-object-position: left bottom;
    object-position: left bottom;
    left: 0;
    bottom: 0;
  }
  .history__bg_right {
    right: 0;
    -o-object-position: right bottom;
    object-position: right bottom;
  }
  .history__heading {
    gap: 20px;
    max-width: 100%;
  }
}
.keydates {
  position: relative;
  padding: 190px 0 100px;
}
.keydates__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1120px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}
.keydates__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
.keydates__desc {
  color: var(--dark-gray, #878680);
}
.keydates__box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 200px 0;
}
.keydates__box-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 1000px;
  max-width: 1000px;
  -o-object-fit: cover;
  object-fit: cover;
}

.keydate {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.keydate__img-wrapper {
  position: relative;
}
.keydate__icon {
  position: relative;
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}
.keydate__arrow {
  position: absolute;
  z-index: -1;
  bottom: -20px;
  left: -10px;
}
.keydate__content {
  position: absolute;
  top: calc(100% + 25px);
  left: -10px;
  width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.keydate__year {
  color: var(--accent, #106ea0);
  font-family: "Afolkalips", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.keydate__desc {
  color: var(--gray-dark, #8a8a8a);
  font-weight: 700;
}
.keydate:nth-child(even) {
  flex-direction: column-reverse;
}
.keydate:nth-child(even) .keydate__content {
  flex-direction: column-reverse;
  text-align: end;
  left: unset;
  top: unset;
  bottom: calc(100% + 25px);
  right: -10px;
}
.keydate:nth-child(even) .keydate__arrow {
  transform: rotate(180deg);
  bottom: unset;
  top: -20px;
  left: unset;
  right: -10px;
}

@media (max-width: 768px) {
  .keydates {
    position: relative;
    padding: 50px 0;
  }
  .keydates__bg {
    left: 50%;
    height: 350px;
  }
  .keydates__heading {
    gap: 20px;
    margin-bottom: 0px;
  }
  .keydates__desc {
    color: var(--dark-gray, #878680);
  }
  .keydates__box {
    position: relative;
    flex-direction: column;
    gap: 60px;
    padding: 100px 0;
  }
  .keydates__box-img {
    transform: translate(-50%, -50%) rotate(90deg);
    width: 800px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .keydate {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .keydate__arrow {
    bottom: unset;
    top: -30px;
    left: -10px;
    transform: rotate(40deg);
  }
  .keydate__content {
    position: absolute;
    top: 0px;
    right: calc(100% + 20px);
    left: unset;
    width: calc(40vw - 32px);
    text-align: end;
    gap: 5px;
  }
  .keydate__year {
    font-size: 42px;
  }
  .keydate__desc {
    font-size: 14px;
    line-height: 100%;
  }
  .keydate:nth-child(even) {
    flex-direction: column-reverse;
  }
  .keydate:nth-child(even) .keydate__content {
    flex-direction: column;
    text-align: start;
    top: 0px;
    bottom: unset;
    left: calc(100% + 20px);
  }
  .keydate:nth-child(even) .keydate__arrow {
    transform: rotate(315deg) scale(-1, 1);
    top: -30px;
    right: -10px;
  }
}
.principles {
  position: relative;
  padding: 90px 0 0;
  min-height: 670px;
}
.principles__box {
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.principles__desc {
  color: var(--dark-gray, #878680);
}
.principles__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right bottom;
  object-position: right bottom;
  width: 1200px;
  height: 550px;
  z-index: -1;
}

@media (max-width: 768px) {
  .principles {
    padding: 50px 0 0;
    min-height: 630px;
  }
  .principles__box {
    max-width: 100%;
    gap: 20px;
  }
  .principles__desc {
    color: var(--dark-gray, #878680);
  }
  .principles__bg {
    width: 100%;
    height: 400px;
  }
}
.contacts {
  padding: 70px 0;
}
.contacts__title {
  margin-bottom: 30px;
}
.contacts__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.contact-card {
  border-radius: 8px;
  background: #e6dbc0;
  padding: 30px 12.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact-card__icon {
  display: flex;
}
.contact-card__box {
  text-align: center;
  color: var(--dark-text, #1f1e17);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  gap: 0px 10px;
}
.contact-card__link {
  transition: color 0.3s ease;
}
.contact-card__link:hover {
  color: var(--accent, #106ea0);
}

@media (max-width: 768px) {
  .contacts {
    padding: 50px 0;
  }
  .contacts__box {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  .contact-card {
    padding: 20px;
  }
  .contact-card__box {
    gap: 0px 6px;
  }
}
.feedback {
  position: relative;
  background: var(--accent, #106ea0);
  border-radius: 10px;
  padding: 30px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  overflow: hidden;
  z-index: 0;
}
.feedback__border {
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: url("../src/img/border-catalog.webp");
  background-size: cover;
  z-index: -2;
}
.feedback__border_top {
  top: 0;
  left: 0;
}
.feedback__border_bottom {
  bottom: 0;
  left: 0;
}
.feedback__border_left {
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-image: url("../src/img/border-feedback.webp");
  z-index: -1;
}
.feedback__border_right {
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-image: url("../src/img/border-feedback.webp");
  z-index: -1;
}
.feedback__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feedback__title {
  color: var(--light, #ffffff);
  font-family: "Inter", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}
.feedback__desc {
  line-height: 100%;
}

.form__box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form__span {
  position: relative;
  overflow: hidden;
}
.form__span .wpcf7-not-valid-tip {
  content: "Важно заполнить это поле.";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100%;
  font-size: 14px;
  color: #ff0505;
  line-height: 100%;
  font-weight: 700;
  transition: right 0.3s ease;
}
.form__span .wpcf7-not-valid-tip {
  right: 20px;
}
.form__input {
  background: var(--light, #ffffff);
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  color: var(--dark-gray, #878680);
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}
.form__submit {
  border: none;
  outline: none;
  background: #e6dbc0;
  color: #8a8a8a;
  margin-top: 15px;
}
.form__rights {
  color: #51b0e2;
  font-family: "Inter", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 768px) {
  .feedback {
    grid-template-columns: 1fr;
  }
  .feedback__left {
    gap: 20px;
  }
  .form__box {
    gap: 13px;
  }
  .form__span::after {
    font-size: 10px;
    font-weight: 600;
    top: unset;
    transform: none;
    bottom: 6px;
    right: -100%;
  }
  .form__span.error::after {
    right: 6px;
  }
}
.production {
  position: relative;
  padding: 70px 0 0;
  z-index: 0;
  min-height: 900px;
}
.production__heading {
  max-width: 530px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: auto;
}
.production__title {
  line-height: 120%;
}
.production__desc {
  color: var(--dark-gray, #878680);
}
.production__bg {
  position: absolute;
  z-index: -1;
  -o-object-fit: contain;
  object-fit: contain;
}
.production__bg-left {
  left: 0;
  top: 90px;
  height: 710px;
  width: -moz-fit-content;
  width: fit-content;
}
.production__bg-right {
  right: 0;
  bottom: 30px;
  width: 900px;
  height: 430px;
}
.production__mobile {
  display: none;
}

@media (max-width: 768px) {
  .production {
    padding: 50px 0;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .production__heading {
    max-width: 100%;
    gap: 20px;
    margin-left: 0;
  }
  .production__desc {
    color: var(--dark-gray, #878680);
  }
  .production__mobile {
    position: relative;
    display: flex;
    height: 600px;
    z-index: 0;
  }
  .production__bg-left {
    display: none;
  }
  .production__bg-right {
    display: none;
  }
  .production__bg-cow {
    z-index: -2;
    height: 420px;
    top: 30px;
  }
  .production__bg-map {
    z-index: -3;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
  }
  .production__bg-oldman {
    z-index: -1;
    height: 190px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.prod-cat {
  padding-bottom: 50px;
}
.prod-cat__box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.prod-cat .about-cat {
  flex-shrink: 0;
}
.prod-cat .about-cat__img-wrapper {
  width: 190px;
  height: 180px;
}
.prod-cat .about-cat__img-bg {
  height: 70%;
  top: 20px;
}

@media (max-width: 768px) {
  .prod-cat {
    padding-bottom: 50px;
  }
  .prod-cat__box {
    justify-content: center;
    gap: 20px;
  }
  .prod-cat .about-cat {
    flex-shrink: 0;
  }
  .prod-cat .about-cat__img-wrapper {
    width: 150px;
    height: 165px;
  }
  .prod-cat .about-cat__img-bg {
    height: 70%;
    top: 20px;
  }
}
.prod-desc {
  padding: 60px 0;
  background: #e6dbc0;
}
@media (max-width: 768px) {
  .prod-desc {
    padding: 50px 0;
  }
}
.prod-desc__desc {
  color: var(--dark-gray, #878680);
}

.newssec {
  position: relative;
  padding: 90px 0;
  z-index: 0;
}
.newssec__box {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 22px;
}
.newssec__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.newssec__pagi {
  margin-top: 10px;
}
.newssec__title {
  color: var(--dark-text, #1f1e17);
  font-weight: 800;
  font-family: "Inter", serif;
}
.newssec__right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.newssec__bg {
  position: absolute;
  height: 50vh;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
}
.newssec__bg_top {
  right: 0;
  top: 10%;
}
.newssec__bg_center {
  top: 50%;
  left: 0;
}
.newssec__bg_bottom {
  bottom: 10%;
  right: 0;
  height: 30vh;
}

.newssec-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e7e1cc;
}
.newssec-card__img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.newssec-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newssec-card__date {
  color: var(--dark-gray, #878680);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.newssec-card__title {
  color: #1f1e17;
  font-family: "Inter", serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 120%;
}
.newssec-card__desc {
  color: var(--dark-gray, #878680);
}
.newssec-card__link {
  color: var(--accent, #106ea0);
  transition: opacity 0.3s ease;
}
.newssec-card:hover .newssec-card__link {
  opacity: 0.6;
}

.newssec-card-other {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newssec-card-other__img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
}
.newssec-card-other__date {
  color: var(--dark-gray, #878680);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.newssec-card-other__title {
  font-family: "Inter", serif;
  color: var(--dark-text, #1f1e17);
  font-weight: 800;
}

.news-inner__desc {
  color: var(--dark-gray, #878680);
}
.news-inner__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-inner__img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .newssec {
    padding: 50px 0;
  }
  .newssec__bg {
    display: none;
  }
  .newssec__box {
    grid-template-columns: 1fr;
  }
  .newssec__left {
    gap: 24px;
  }
  .newssec__pagi {
    margin-top: 20px;
  }
  .newssec__right {
    display: none;
  }
  .newssec-card {
    gap: 20px;
    padding-bottom: 20px;
  }
  .newssec-card__title {
    font-size: 32px;
  }
}
.pnf {
  position: relative;
  z-index: 0;
  padding: 70px 16px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.pnf__title {
  text-align: center;
  font-weight: 700;
}
.pnf__title a {
  color: var(--accent, #106ea0);
}
.pnf__num {
  color: var(--accent, #106ea0);
  font-size: 242px;
  font-weight: 700;
  line-height: 100%;
}
.pnf__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: 510px;
  width: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

.polit {
  padding: 70px 0 90px;
}
.polit__title {
  margin-bottom: 30px;
}
.polit__desc {
  color: var(--dark-gray, #878680);
  font: 400 20px/1.5 "Ubuntu Mono", monospace;
}
.polit ul {
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .pnf {
    padding: 50px 16px;
    gap: 40px;
  }
  .pnf__num {
    font-size: 180px;
    line-height: 100%;
  }
  .pnf__img {
    display: none;
  }
  .polit {
    padding: 50px 0;
  }
  .polit__title {
    margin-bottom: 20px;
    font-size: 28px;
    overflow-wrap: break-word;
  }
  .polit__desc {
    color: var(--dark-gray, #878680);
  }
  .polit__desc ul {
    padding-left: 0.5rem;
  }
}
.stocks-banner {
  position: relative;
  padding: 90px 0;
  min-height: 500px;
  z-index: 0;
}
.stocks-banner__bg {
  position: absolute;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: -1;
}
.stocks-banner__bg_left {
  height: 500px;
  width: -moz-fit-content;
  width: fit-content;
  top: 0;
  left: 0;
  -o-object-position: top left;
  object-position: top left;
}
.stocks-banner__bg_right {
  height: 125px;
  width: -moz-fit-content;
  width: fit-content;
  top: 24px;
  right: 64px;
  -o-object-position: top right;
  object-position: top right;
}
.stocks-banner__heading {
  max-width: 525px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: auto;
}
.stocks-banner__desc {
  color: var(--dark-gray, #878680);
}

.stocks {
  padding: 90px 0;
}
.stocks__box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stock-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0e9d3;
}
.stock-card__img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.stock-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
}
.stock-card__title {
  color: var(--dark-text, #1f1e17);
  font-family: "Inter", serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 120%;
}
.stock-card__desc {
  color: var(--dark-gray, #878680);
}
.stock-card__date {
  color: var(--dark-gray, #878680);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 768px) {
  .stocks-banner {
    padding: 50px 0;
    min-height: 500px;
    z-index: 0;
  }
  .stocks-banner__bg {
    position: absolute;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: -1;
  }
  .stocks-banner__bg_left {
    height: 300px;
    top: unset;
    bottom: 0;
    -o-object-position: bottom left;
    object-position: bottom left;
  }
  .stocks-banner__bg_right {
    top: 170px;
    right: -64px;
    -o-object-position: top right;
    object-position: top right;
  }
  .stocks-banner__heading {
    max-width: 100%;
    gap: 20px;
    margin-left: 0;
  }
  .stocks {
    padding: 50px 0;
  }
  .stocks__box {
    gap: 20px;
  }
  .stock-card__title {
    font-size: 32px;
  }
  .stock-card__link {
    margin-inline: auto;
  }
}
.contacts-page {
  position: relative;
  z-index: 0;
}
.contacts-page__box {
  margin-bottom: 0;
}
.contacts-page__bg {
  position: absolute;
  z-index: -1;
  -o-object-fit: contain;
  object-fit: contain;
}
.contacts-page__bg_right {
  right: 12px;
  top: 30%;
  height: 281px;
}
.contacts-page__bg_left {
  left: 0;
  top: 120px;
  height: 320px;
  z-index: -2;
}

.map-section {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.map-section iframe {
  height: 100%;
  width: 100%;
}
.map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url("../src/img/border-catalog.webp");
  background-size: contain;
  z-index: 1;
}

@media (max-width: 768px) {
  .contacts-page__bg_right {
    right: -95px;
    top: 100px;
    height: 281px;
  }
  .contacts-page__bg_left {
    left: 0;
    top: unset;
    bottom: -100px;
  }
  .map-section::before {
    background-size: cover;
  }
}
.shop {
  position: relative;
  padding: 80px 0;
}
.shop__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(135, 134, 128, 0.2);
  margin-bottom: 30px;
}
.shop__desc {
  color: var(--dark-gray, #878680);
}
.shop__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-y: hidden;
  overflow-x: auto;
  padding-bottom: 5px;
}
.shop__anchor {
  color: var(--dark-text, #1f1e17);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  padding: 5px 18px;
  border-radius: 100px;
  border: 2px solid #e7e1cc;
  flex-shrink: 0;
  width: -moz-max-content;
  width: max-content;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.shop__anchor.active {
  background: var(--accent, #106ea0);
  color: var(--light, #ffffff);
  border: 2px solid var(--accent, #106ea0);
}
.shop__filter-box {
  display: none;
}

.shop-grid__heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.shop-grid__title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-grid__icon {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
.shop-grid__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(135, 134, 128, 0.2);
  margin-top: 24px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-card__img-wrapper {
  position: relative;
  padding-bottom: 30px;
  z-index: 0;
}
.shop-card__img-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-radius: 10px;
  background: #e6dbc0;
  width: 100%;
  height: 125px;
  z-index: -1;
}
.shop-card__img {
  height: 215px;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
  margin-inline: auto;
}
.shop-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-card__title {
  color: var(--dark-text, #1f1e17);
  font-size: 27px;
  font-weight: 700;
  line-height: 100%;
}
.shop-card__options {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.shop-card__desc {
  color: var(--dark-gray, #878680);
  font-size: 20px;
  line-height: 100%;
}

.shop-filter {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  padding: 15px 15px 0px 15px;
  border-radius: 10px 10px 0 0;
  background: #fff7df;
  z-index: 2;
  padding-bottom: 15px;
  min-width: 150px;
}
.shop-filter__heading {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.shop-filter__title {
  font-size: 20px;
  line-height: 100%;
  color: var(--dark-text, #1f1e17);
}
.shop-filter__label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 100%;
  color: var(--dark-text, #1f1e17);
  padding-top: 5px;
}
.shop-filter__label:not(:last-child) {
  border-bottom: 1px solid #e7e0cc;
  padding-bottom: 5px;
}
.shop-filter__label input {
  position: absolute;
  width: 0px;
  height: 0px;
  overflow: hidden;
}
.shop-filter__box {
  position: absolute;
  left: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  background: #fff7df;
  width: 100%;
}
.shop-filter.is_open .shop-filter__box {
  height: auto;
  padding: 0px 15px 15px 15px;
}

@media (max-width: 768px) {
  .shop {
    padding: 50px 0;
  }
  .shop__heading {
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .shop__nav {
    display: none;
  }
  .shop__anchor {
    color: var(--dark-text, #1f1e17);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    padding: 5px 18px;
    border-radius: 100px;
    border: 2px solid #e7e1cc;
    flex-shrink: 0;
    width: -moz-max-content;
    width: max-content;
  }
  .shop__anchor.active {
    background: var(--accent, #106ea0);
    color: var(--light, #ffffff);
    border: 2px solid var(--accent, #106ea0);
  }
  .shop__filter-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(135, 134, 128, 0.2);
  }
  .shop-grid__heading {
    margin-top: 40px;
  }
  .shop-grid__icon {
    height: 70px;
    width: 70px;
  }
  .shop-grid__box {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 20px;
    margin-top: 30px;
  }
  .shop-grid__title {
    font-size: 25px;
    overflow-wrap: anywhere;
  }
  .shop-card__img-wrapper::before {
    height: 56px;
  }
  .shop-card__img {
    height: 145px;
  }
  .shop-card__title {
    font-size: 16px;
  }
  .shop-card__desc {
    font-size: 16px;
  }
  .shop-filter {
    position: relative;
    right: unset;
    top: unset;
    transform: none;
    padding: 0;
    padding-inline: 10px;
    padding-bottom: 15px;
  }
  .shop-filter__title {
    font-size: 16px;
  }
  .shop-filter__label {
    font-size: 16px;
    justify-content: end;
  }
  .shop-filter__heading {
    justify-content: end;
  }
  .shop-mobile-nav {
    padding-inline: 10px;
    padding-right: 30px;
    padding-bottom: 15px;
    position: relative;
    min-width: 100px;
  }
  .shop-mobile-nav .shop-filter__heading {
    justify-content: start;
  }
  .shop-mobile-nav .shop-filter__label {
    justify-content: start;
  }
  .shop-mobile-nav.active .shop-filter__box {
    z-index: 2;
    height: auto;
    padding: 0px 10px 15px 10px;
  }
}
.single {
  position: relative;
  padding: 80px 0;
}
.single__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(135, 134, 128, 0.2);
  margin-bottom: 30px;
}
.single__title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single__icon {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
.single__desc {
  color: var(--dark-gray, #878680);
}
.single__box {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(135, 134, 128, 0.2);
}
.single__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single__name {
  color: var(--dark-text, #1f1e17);
  font-family: "Inter", serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 120%;
}
.single__desc {
  line-height: 120%;
}
.single__options {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.swiper-single {
  overflow: hidden;
  border-radius: 10px;
  background: #e6dbc0;
  height: 320px;
  padding: 10px;
}
.swiper-single__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  outline: none;
}
.swiper-single__img {
  width: 100%;
  height: 90%;
  -o-object-fit: contain;
  object-fit: contain;
}

.thumbs-single {
  height: 155px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  border-radius: 10px;
}
.thumbs-single .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px;
  background: #e6dbc0;
}
.thumbs-single__img {
  height: 90%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 768px) {
  .single {
    padding: 50px 0;
  }
  .single__heading {
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .single__icon {
    width: 70px;
    height: 70px;
  }
  .single__box {
    grid-template-columns: 100%;
    gap: 20px;
    padding-bottom: 20px;
  }
  .single__desc {
    line-height: 120%;
  }
  .single__options {
    margin-bottom: 0px;
  }
  .swiper-single {
    height: 300px;
  }
} /*# sourceMappingURL=style.css.map */
.footer-top__nav .header__menu-link {
  font-size: 20px;
  line-height: 125%;
  color: var(--accent, #106ea0);
  font-weight: 700;
  transition: opacity 0.3s ease;
}
.footer-top__nav .header__menu-link:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .footer-top__nav .header__menu-link {
    font-size: 16px;
  }
}
#filter-form {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  padding: 15px 15px 0px 15px;
  border-radius: 10px 10px 0 0;
  background: #fff7df;
  z-index: 2;
  padding-bottom: 15px;
  min-width: 150px;
}
select#gorod {
  color: var(--dark-text, #1f1e17);
  font: 400 20px / 1.5 "Ubuntu Mono", monospace;
  background: #fff7df;
  border: unset;
}
select#gorod option {
  box-shadow: unset;
  border-bottom: 1px solid red;
}

.thx__title {
  margin-bottom: 30px;
}

.thx__desc {
  max-width: 600px;
  margin-inline: auto;
}

.thx__bg {
  object-position: center;
}

.menu-item-has-children .header__menu-link {
  position: relative;
  padding-right: 12px;
}

.menu-item-has-children .header__menu-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 100%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6' fill='none'%3E%3Cpath d='M4.52259 5.36792L0.852779 1.69811C0.764728 1.61006 0.720703 1.50314 0.720703 1.37736C0.720703 1.25157 0.764728 1.14465 0.852779 1.0566L1.28674 0.632075C1.37479 0.544025 1.48014 0.5 1.60278 0.5C1.72542 0.5 1.83391 0.544025 1.92825 0.632075L4.84334 3.53774L7.75844 0.632075C7.85278 0.544025 7.96127 0.5 8.08391 0.5C8.20655 0.5 8.3119 0.544025 8.39995 0.632075L8.83391 1.0566C8.92196 1.14465 8.96599 1.25157 8.96599 1.37736C8.96599 1.50314 8.92196 1.61006 8.83391 1.69811L5.1641 5.36792C5.07605 5.45597 4.96913 5.5 4.84334 5.5C4.71756 5.5 4.61064 5.45597 4.52259 5.36792Z' fill='%23106EA0'%3E%3C/path%3E%3C/svg%3E");
}

.header__menu-inner .header__menu-link {
  padding: 0;
}

.header__menu-inner .header__menu-link::after {
  display: none;
}

@media (max-width: 768px) {
  .footer-top__wrapper .menu-item {
    display: flex;
    justify-content: center;
  }
}
figure.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figure.gallery-item .gallery-icon {
  width: 100%;
  height: 100px;
}
figure.gallery-item .gallery-icon a {
  height: 100px;
  display: flex;
}
.gallery-columns-4 {
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
@media all and (max-width: 768px) {
  .gallery-columns-4 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}
.news-gallery {
  height: 300px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.news-gallery-thumbs {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
.news-gallery-thumbs .swiper-slide img {
  height: 95px;
  width: 100%;
  object-fit: cover;
}
.news-gallery-wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-top: 20px;
}
.news-gallery .swiper-slide {
  flex-shrink: 0;
}
.news-gallery-thumbs .swiper-slide {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.news-gallery-thumbs .swiper-slide::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}
.news-gallery-thumbs .swiper-slide.swiper-slide-thumb-active::before {
  background: rgba(0, 0, 0, 0);
}
@media all and (max-width: 768px) {
  .news-gallery-wrap {
    /*display: none;*/
  }
  .news-gallery .swiper-slide {
    width: 100%;
  }
  .news-gallery-thumbs {
    width: 100%;
    max-width: 380px;
  }
  .news-gallery-thumbs .swiper-slide {
    width: 50%;
  }
}
