@charset 'UTF-8';

:root {
  --color-blue: #107BB1;
  --color-blue2: #035985;
  --color-red: #c21f13;
  --color-red2: #eb0026;
  --color-text-primary: #231F20;
  --color-text-blue: #107BB1;
  --color-text-blue2: #035985;
  --link-color: #231F20;
  --link-hover-color: #035985;
  --font-main: 'Montserrat', sans-serif;
  --transition: .2s ease-in-out;
  --bg-footer-left: #107BB1;
  --bg-footer-right: #f4f1f1;
  
}

* {
  font-family: var(--font-main);
  box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.fancybox__container * {
  color: white;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: rgba(244, 241, 241, .5);
}
#main {
  flex-grow: 1;
  max-width: 100vw;
  overflow-x: hidden;
}

[data-lazy-image] {
  opacity: 0;
}

.mobile {
  display: none;
}

.btn {
}
.btn {
  --bs-btn-padding-x: 3rem;
  --bs-btn-padding-y: .875rem;
  --bs-btn-font-size: .875rem;
  --bs-btn-line-height: 100%;
  --bs-btn-font-weight: 600;
  --bs-btn-border-radius: .5rem;

  --bs-btn-box-shadow: none !important;
  --bs-btn-focus-box-shadow: none !important;
  --bs-btn-active-shadow: none !important;

  text-transform: uppercase;
}
.btn.btn-primary {
  --bs-btn-color: white;
  --bs-btn-hover-color: white;
  --bs-btn-active-color: white;
  --bs-btn-disabled-color: white;
  --bs-btn-bg: #107BB1;
  --bs-btn-hover-bg: #035985;
  --bs-btn-active-bg: #107BB1;
  --bs-btn-disabled-bg: #107BB1;
  --bs-btn-border-color: #107BB1;
  --bs-btn-hover-border-color: #035985;
  --bs-btn-active-border-color: #107BB1;
  --bs-btn-disabled-border-color: #107BB1;
}
.btn.btn-outline {
  --bs-btn-color: #107BB1;
  --bs-btn-hover-color: white;
  --bs-btn-active-color: white;
  --bs-btn-disabled-color: white;
  --bs-btn-bg: white;
  --bs-btn-hover-bg: #035985;
  --bs-btn-active-bg: #107BB1;
  --bs-btn-disabled-bg: #107BB1;
  --bs-btn-border-color: #107BB1;
  --bs-btn-hover-border-color: #035985;
  --bs-btn-active-border-color: #107BB1;
  --bs-btn-disabled-border-color: #107BB1;
}
.btn.btn-sm {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.75rem;
  --bs-btn-font-size: 1.125rem;
}

.red {
  color: var(--color-red);
}

.breadcrumb {
  margin: 1.5rem 0;
  --bs-breadcrumb-item-padding-x: 1rem;
}
.breadcrumb .breadcrumb-item {
  font-size: .75rem;
  line-height: 120%;
  color: var(--color-text-blue);
}
.breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: var(--color-text-primary);
  transition: .2s ease-in-out;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--color-text-blue);
}
.breadcrumb-item + .breadcrumb-item:before {
  font-family: "Font Awesome 6 Free";
  --bs-breadcrumb-divider: '\f054';
  font-weight: 900;
  font-size: .5rem;
}

.form-control {
  padding: .625rem .75rem;
  border-radius: 0;
}
.form-label {
  font-size: .875rem;
  line-height: 100%;
  font-weight: 500;
}
.form-label sup {
  margin-left: .15rem;
  color: var(--color-red);
}
.form-info {
  font-size: .75rem;
  font-weight: 500;
  line-height: 110%;
}
form .user-agreement {
  font-size: .875rem;
  line-height: 120%;
}

.block {
  margin: 4rem 0;
}
.block .block-header {
  display: block;
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  line-height: 150%;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.form-check-label a {
  color: inherit;
}

.slick-track {
  display: flex;
  flex-direction: row;
}

.advantages-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
}
.advantages-item .icon {
  flex: 0 0 72px;
  height: 72px;
  margin: 0 1rem 0 0;
}
.advantages-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.advantages-item .description {
  font-size: 1rem;
  line-height: 130%;
}
.advantages-item .description a {
  color: var(--color-text-primary);
  text-decoration: none;
}
.advantages-item .description a:hover {
  text-decoration: underline;
}

.categories-slider {}
.categories-slider .slider {
  display: flex;
}
.categories-slider .block-header {
  margin: 0;
  padding: 1.25rem 1rem 1.2rem;
  background: #E4E2E2B2;
  border-radius: .5rem .5rem 0 0;
}
.categories-slider .categories-slider__inner {
  padding: 2rem;
  background: #F4F1F1CC;
}
.categories-slider .slick-track {
  display: flex !important;
  flex-direction: row;
  align-items: stretch;
  padding: 1rem 0;
}
.categories-slider .slick-slide {
  height: auto !important;
  margin: 0 .75rem;
}
.categories-slider .text-center a {
  color: var(--link-color);
  text-decoration: none;
}
.categories-slider .text-center a:hover {
  color: var(--link-hover-color);
}
.categories-slider__inner {
  position: relative;
}
.categories-slider__inner .controls {
  position: absolute;
  top: calc(50% - 2rem);
  left: -1.25rem;
  right: -1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.categories-slider__inner .control {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  pointer-events: initial;
  cursor: pointer;
  display: block;
  padding: .15rem 0 0 0;
  background: #C21F13;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: .2s ease-in-out;
  color: white;
  border: 0;
  outline: none;
}
.categories-slider__inner .control:hover {
  background: #EA0025;
}



.quick-search {
  padding: 3rem 2rem;
  background: #F4F1F1CC;
  border-radius: .5rem .5rem 0 0;
}
.quick-search input[name="search"] {
  padding: .875rem 1.5rem;
  font-size: .875rem;
  background: white;
  border-right: 0;
  box-shadow: none !important;
  outline: none !important;
  transition: .2s ease-in-out;
}
.quick-search .input-group-text {
  background: white;
  border-top: 1px solid var(--bs-border-color) !important;
  border-right: 1px solid var(--bs-border-color) !important;
  border-bottom: 1px solid var(--bs-border-color) !important;
  border: 0;
  color: #107BB1;
  transition: .2s ease-in-out;
}
.quick-search input[name="search"]:focus {}
.quick-search input[name="search"]:focus + .input-group-text {
  border-top: 1px solid #86b7fe !important;
  border-right: 1px solid #86b7fe !important;
  border-bottom: 1px solid #86b7fe !important;
}

.catalog-original {
  padding: 3rem 2rem;
  background: #107BB1;
  border-radius: .5rem .5rem 0 0;
}
.catalog-original .block-header {
  color: white;
}
.catalog-original__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.catalog-original__inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  padding: 1rem;
  background: white;
  transition: .2s ease-in-out;
}
.catalog-original__inner .col:nth-child(odd) a {
  background: #F1F0F0;
}
.catalog-original__inner .col:nth-child(even) a {
  background: #DFE2E4;
}
.catalog-original__inner a:hover {
  background: white !important;
}
.catalog-original__inner a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.products-slider {
  padding: 3rem 0 0;
  background: #DBF5FF;
  background: linear-gradient(#DBF5FF, #FFFFFFCC);
  border-radius: .5rem .5rem 0 0;
}
.products-slider .block-header {}
.products-slider .products-slider__slider {
  display: flex;
  padding: 0 1.5rem;
  margin: 0 0 2rem;
}
.products-slider .slick-list {
  margin: 0 -.5rem;
}
.products-slider .slick-slide {
  margin: 0 .5rem;
}
.products-slider > .btn {
  border-radius: 0;
  padding: 1rem;
}

.block.about {}
.block.about h1 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 130%;
  text-transform: uppercase;
}
.block.about p {
  margin: 0 0 1rem;
  font-size: .875rem;
  line-height: 150%;
}
.block.about ul {
  margin: 0 0 1rem;
  padding: 0;
  /*list-style: none;*/
}
@media screen and (max-width: 991px) {
  .block.about ul {}
}
.block.about ul li {
  display: block;
  margin: 0 0 .5rem;
  font-size: .875rem;
  line-height: 150%;
  position: relative;
}
.block.about ul li a {
  color: var(--color-text-primary);
}
.block.about ul li:before {}

.contact-link,
.contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  color: var(--color-text-primary);
}
.contact-item {
  align-items: flex-start;
}
.contact-link .icon,
.contact-item .icon {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  margin-right: 1rem;
}
.contact-link .icon img,
.contact-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  font-size: .5rem;
}
.contact-link a {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 150%;
  font-weight: 700;
  text-decoration: none;
}
.contact-link small {
  display: block;
  font-size: .875rem;
  line-height: 100%;
  color: var(--color-text-primary);
}
.contact-item .info {}
.contact-item .info > strong {
  text-transform: uppercase;
  display: block;
  margin: .175rem 0 .875rem;
}
.contact-item .info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-item .info ul li {
  font-size: 1rem;
  line-height: 120%;
  margin: .75rem 0;
}
.contact-item .info ul li strong {
  font-weight: 500;
}
.contact-item .btn-link {
  padding: 0;
  margin: 1rem 0 0;
  font-size: .875rem;
  line-height: 120%;
  color: var(--color-text-primary);
  text-transform: initial;
}

.socials-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.socials-item {
  display: block;
  margin: 0 .5rem;
}
.socials-item figure {
  width: 28px;
  height: 28px;
  margin: 0;
}
.socials-item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer-inner {
  background: var(--bg-footer-left);
  background: -moz-linear-gradient(to right, var(--bg-footer-left) 50%, var(--bg-footer-right) 50%);
  background: -webkit-linear-gradient(to right, var(--bg-footer-left) 50%, var(--bg-footer-right) 50%);
  background: linear-gradient(to right, var(--bg-footer-left) 50%, var(--bg-footer-right) 50%);
}
.footer-inner h4,
.footer-inner h5 {
  display: block;
  margin: 0 0 .5rem;
  font-size: .875rem;
  font-weight: 700;
  line-height: 150%;
  color: white;
}
.footer-inner h4 {
  text-transform: uppercase;
}
.footer-inner h5 {}
.footer-inner .footer-left {
  padding: 3rem 0;
  padding-right: 2rem;
  background: var(--bg-footer-left);
}
.footer-inner .footer-left .nav {
  display: block;
  margin: .5rem 0;
  padding: 0;
}
.footer-inner .footer-left .nav li {
  display: block;
}
.footer-inner .footer-left .nav a {
  display: block;
  font-size: .875rem;
  line-height: 200%;
  color: white;
  text-decoration: none;
}
.footer-inner .footer-left .nav a:hover {
  text-decoration: underline;
}
.footer-inner .footer-right {
  padding: 3rem 0;
  padding-left: 2rem;
  background: var(--bg-footer-right);
}
.footer-inner .socials-items {
  margin-top: .5rem;
  margin-left: calc(30px + 1rem);
}
.footer-inner .contact-link {
  justify-content: flex-end;
  font-size: .5rem;
  color: white;
  text-align: right;
}
.footer-inner .contact-link a {
  color: white;
  font-size: .875rem;
}
.footer-inner .contact-link small {
  font-size: .75rem;
  color: white;
}
.footer-inner .contact-link .icon {
  margin-top: 4px;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.footer-inner .qr {
  margin-top: 4rem;
  height: 88px;
  text-align: right;
}
.footer-inner .privacy {
  display: block;
  margin: 1.65rem 0 0;
  text-align: right;
  font-size: .675rem;
  line-height: 150%;
  color: white;
}
.footer-inner .privacy a {
  color: inherit;
  text-decoration: none;
}

.footer-inner .info {
  margin-top: 2rem;
}
.footer-inner .info p {
  margin: 0;
  font-size: .625rem;
  line-height: 150%;
  color: white;
}
.footer-inner .info p a {
  color: white;
}
.footer-inner .footer-right .contact-link {
  text-align: left;
}
.footer-inner .footer-right .contact-link.onmap {
  align-items: start;
}
.footer-inner .footer-right .contact-link a {
  display: block;
  margin-top: 2px;
  color: var(--color-text-blue);
  text-decoration: none;
}
.footer-inner .footer-right .contact-link small {
  color: var(--color-text-primary);
  font-weight: 400;
}
.footer-inner .footer-right .contact-link strong {
  font-weight: 500;
}
.footer-inner .footer-right .contact-link .icon {
  margin-top: 4px;
}
.footer-inner .footer-right .logo {
  margin-top: 2.5rem;
}
.footer-inner .footer-right .logo figure {
  width: 121px;
  height: 85px;
  margin: 0;
}
.footer-inner .footer-right .logo figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer-inner .footer-right .logo span {
  display: block;
  font-size: .875rem;
  font-weight: 500;
}
.footer-inner .agreement {
  display: block;
  margin: .5rem 0 0;
  font-size: .675rem;
  line-height: 150%;
}
.footer-inner .agreement a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.item-page {}
.item-page .page-header {
  margin: 1.5rem 0
}
.item-page .page-header h1,
.item-page .page-header h2 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 130%;
  font-weight: 600;
}
.item-page p {
  font-size: 1rem;
  line-height: 140%;
}
.item-page ul,
.item-page ol {
  margin: 1.5rem 0;
  padding: 0 0 0 1.25rem;
}
.item-page ul li,
.item-page ol li {
  margin: 1rem 0;
  line-height: 150%;
}
.item-page a {
  color: var(--color-text-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: .2s ease-in-out;
}
.item-page a:hover {
  border-bottom: 1px solid var(--color-text-blue);
}


#address-with-map {}
#address-with-map #address {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 0 0 1rem;
}
#address-with-map #address .icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin: 0 .75rem 0 0;
}
#address-with-map #address .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#address-with-map #address .inner {}
#address-with-map #address .inner strong {
  display: block;
  margin: .175rem 0 .275rem;
  font-size: 1rem;
  font-weight: 500;
}
#address-with-map #address .inner a {
  display: block;
  font-size: .875rem;
  line-height: 120%;
  border: 0;
  color: var(--color-text-blue);
  text-decoration: none;
}
#address-with-map #map {
  height: 300px;
}

#feedback-form {
  padding: 3rem;
  background: rgba(244,241,241,.8);
}
#feedback-form .form-header {
  display: block;
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 120%;
  font-weight: 600;
  text-transform: uppercase;
}
#feedback-form .form-subheader {
  display: block;
  width: 100%;
  max-width: 594px;
  margin: 0 0 1rem;
  font-size: .875rem;
  line-height: 120%;
}
#feedback-form textarea {
  resize: none;
  height: 163px;
}
.contacts-items .socials-items {
  margin: .5rem 0 0 2.25rem;
}

#modal131 .socials-items {
  margin-left: 2.15rem;
}