@charset "UTF-8";
:root {
  --font-family: "PTSans-Caption", Arial, sans-serif;
  --content-width: 1296px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --blue: #2A2A70;
  --title-color: #56a0fd;
  --light-blue: rgba(42, 42, 112, 0.7);
  --accent: #ca2b1c;
  --light-accent: rgba(202, 43, 28, 0.7);
  --link-static: #6c6d74;
  --grey: #151515;
  --border: #eef4f8;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "PTSans-Caption";
  src: url("../fonts/../fonts/PTSans-Caption.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "PTSans-Caption";
  src: url("../fonts/../fonts/PTSans-CaptionBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

@media screen and (max-width: 560px) {
  .header {
    border-bottom: 1px solid var(--border);
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0 10px;
}
@media screen and (max-width: 560px) {
  .header__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0 0;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 560px) {
  .header__contacts {
    margin: 20px 0;
  }
}
@media screen and (min-width: 360px) {
  .header__links {
    display: block;
  }
}
@media screen and (min-width: 560px) {
  .header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.header__links a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.875em;
  color: var(--blue);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__links a:hover {
  color: var(--light-blue);
}
.header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 220px;
}
@media screen and (max-width: 560px) {
  .header__search {
    display: none;
    margin-bottom: 20px;
  }
}
.header .btn__large {
  padding: 8px 34px;
}
.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
}
@media screen and (max-width: 560px) {
  .header__btn {
    margin: 0 auto;
  }
}
.header .select-wrapper {
  position: relative;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.875em;
  color: var(--grey);
}
.header .select-wrapper::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 3px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../../img/arrow-down.png");
  background-position: right center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.header .select-wrapper select {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  outline: none;
  border: none;
  padding: 5px;
  padding-right: 40px;
  cursor: pointer;
}

.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb__wrapper ol {
  padding: 20px 0 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}
.breadcrumb__wrapper a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: var(--dark-grey);
}
.breadcrumb__last {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: var(--dark-grey);
}

.wrapper__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  padding: 14px 35px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
}
.btn__search {
  position: absolute;
  right: 10px;
  top: 12%;
  border: none;
  width: 20px;
  height: 20px;
  background-color: var(--light-color);
  cursor: pointer;
}
.btn__search::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-search.svg");
  background-position: 0 0;
  background-size: auto;
  background-repeat: no-repeat;
}
.btn__large {
  border-radius: 2px;
  padding: 10px 23px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn__accent {
  border: 1px solid var(--accent);
  color: var(--light-color);
  background-color: var(--accent);
}
.btn__accent:focus, .btn__accent:active, .btn__accent:hover {
  color: var(--light-color);
  background-color: var(--light-accent);
}
@media screen and (min-width: 360px) {
  .btn__service {
    float: none;
    margin-bottom: 15px;
    width: 100%;
  }
}
@media screen and (min-width: 820px) {
  .btn__service {
    float: right;
    width: auto;
  }
}

.ico-plus {
  display: inline-block;
}
.ico-plus::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("../../img/svg/ico-plus.svg");
}

input::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--grey);
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input[name=s]::-moz-placeholder {
  padding-left: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: var(--grey);
}

input[name=s]::-webkit-input-placeholder {
  padding-left: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: var(--grey);
}

input[name=s]:-ms-input-placeholder {
  padding-left: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: var(--grey);
}

input[name=s]::-ms-input-placeholder {
  padding-left: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: var(--grey);
}

input[name=s]::placeholder {
  padding-left: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: var(--grey);
}

.contact-form {
  margin-bottom: 20px;
}

.form {
  width: 100%;
}
.form__title {
  margin-bottom: 40px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: var(--light-color);
}
@media screen and (max-width: 560px) {
  .form__title {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.3;
  }
}
.form__title-popup {
  color: var(--grey);
}
.form p {
  font-weight: 400;
  font-size: 14px;
}
.form__btn {
  width: 100%;
  height: 50px;
  font-weight: 400;
  font-size: 20px;
}
.form input[type=radio] {
  margin-right: 10px;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=file],
.form textarea {
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px;
  width: 100%;
  font-family: var(--font-family);
  font-size: 1rem;
  background-color: var(--light-color);
}
.form input[type=text]:focus, .form input[type=text]:focus-visible,
.form input[type=email]:focus,
.form input[type=email]:focus-visible,
.form input[type=tel]:focus,
.form input[type=tel]:focus-visible,
.form input[type=file]:focus,
.form input[type=file]:focus-visible,
.form textarea:focus,
.form textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 8px rgba(241, 241, 255, 0.384);
  box-shadow: 0 0 8px rgba(241, 241, 255, 0.384);
}
.form label {
  display: block;
  margin-bottom: 0.45em;
  width: 100%;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--link-static);
}
.form__label {
  font-weight: 400;
  font-size: 13.5px;
  color: var(--grey);
}
.form__industrial-floor {
  display: block;
}
.form__request {
  margin: 100px auto;
}
.form__request .form-check-label {
  font-size: 1rem;
  color: var(--light-color);
}
@media screen and (max-width: 560px) {
  .form__request .form-check-label {
    font-size: 1rem;
  }
}
.form__request .form-field {
  margin-bottom: 15px;
}
.form__request .form-field-check {
  margin-bottom: 40px;
}
@media screen and (max-width: 560px) {
  .form {
    margin: 20px auto;
  }
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  padding-left: 0;
  gap: 20px;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 560px) {
  .form-field {
    gap: 0;
  }
}

.form-field-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--light-color);
}

@media screen and (max-width: 560px) {
  .wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.form-check .form-check-input {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.2em;
  flex: 0 0 1.2em;
  margin-right: 10px;
  margin-left: 0;
  width: 1.2em;
  height: 1.2em;
}
.form-check .form-check-input:checked {
  border-color: 1px solid var(--grey);
  background-color: var(--grey);
}
.form-check .form-check-input:focus {
  outline: 0;
  border-color: var(--grey);
  -webkit-box-shadow: 0 0 8px rgba(241, 241, 255, 0.384);
  box-shadow: 0 0 8px rgba(241, 241, 255, 0.384);
}

label.form-check-input[type=checkbox] {
  margin-right: 10px;
  margin-bottom: 0;
  border-radius: 0;
  width: 25px;
}

.form-check-label {
  font-weight: 400;
  font-size: 14px;
}
.form-check-label a {
  text-decoration: underline;
  color: var(--grey);
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  backdrop-filter: blur(20px);
}
.popup__body {
  padding: 30px 10px;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.popup__content {
  position: relative;
  border-radius: 10px;
  padding: 30px;
  max-width: 360px;
  color: var(--grey);
  background-color: var(--light-color);
  opacity: 0;
  -webkit-transform: perspective(600px) translate(0, -100%) rotateX(45deg);
  transform: perspective(600px) translate(0, -100%) rotateX(45deg);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
.popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512.001 512.001' style='enable-background:new 0 0 512.001 512.001;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M284.286,256.002L506.143,34.144c7.811-7.811,7.811-20.475,0-28.285c-7.811-7.81-20.475-7.811-28.285,0L256,227.717 L34.143,5.859c-7.811-7.811-20.475-7.811-28.285,0c-7.81,7.811-7.811,20.475,0,28.285l221.857,221.857L5.858,477.859 c-7.811,7.811-7.811,20.475,0,28.285c3.905,3.905,9.024,5.857,14.143,5.857c5.119,0,10.237-1.952,14.143-5.857L256,284.287 l221.857,221.857c3.905,3.905,9.024,5.857,14.143,5.857s10.237-1.952,14.143-5.857c7.811-7.811,7.811-20.475,0-28.285 L284.286,256.002z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-color: transparent;
  cursor: pointer;
}
.popup .form-check {
  margin-top: 0;
  margin-bottom: 0;
  gap: 0;
}

.popup.open {
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content {
  border: 1px solid var(--grey);
  opacity: 1;
  -webkit-transform: perspective(600px) translate(0, 0%) rotateX(0deg);
  transform: perspective(600px) translate(0, 0%) rotateX(0deg);
}

.radio-wrap {
  margin: 15px 0 20px;
}

.form-search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--grey);
  border-radius: 2px;
  width: 100%;
  height: 28px;
}

.search-field {
  outline: none;
  border: none;
  padding-left: 10px;
  width: 100%;
}

.search__form {
  width: 100%;
}

.nav {
  left: 0;
  top: -100px;
  z-index: 90;
  width: 100%;
  background-color: var(--light-color);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (min-width: 360px) {
  .nav__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 16px auto;
  }
}
@media screen and (min-width: 820px) {
  .nav__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 820px) {
  .nav._active {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
  }
  .nav._active .nav__item {
    padding: 1rem;
  }
  .nav._active .nav__list {
    display: block;
    margin: 0 auto;
    padding: 2rem 0;
  }
  .nav._active .nav__link {
    font-size: 1.25em;
  }
  .nav._active a svg {
    fill: var(--light-color);
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  width: 70%;
  height: auto;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .nav__list {
    display: none;
  }
}
.nav__item {
  position: relative;
}
.nav__link {
  padding: 23px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.867em;
  line-height: 1.33em;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav__icon {
  display: none;
}
@media screen and (max-width: 920px) {
  .nav__icon {
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 9999;
    display: block;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .nav__icon span, .nav__icon::before, .nav__icon::after {
    position: absolute;
    left: 15px;
    width: 100%;
    height: 10%;
    background-color: var(--blue);
  }
  .nav__icon::before, .nav__icon::after {
    content: "";
  }
  .nav__icon::before {
    top: 0;
  }
  .nav__icon::after {
    bottom: 0;
  }
  .nav__icon span {
    top: 50%;
    -webkit-transform: scale(1) translate(0, -50%);
    -ms-transform: scale(1) translate(0, -50%);
    transform: scale(1) translate(0, -50%);
  }
  .nav__icon._active::before {
    top: 50%;
    background-color: var(--light-color);
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    -ms-transform: rotate(-45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%);
  }
  .nav__icon._active::after {
    bottom: 50%;
    background-color: var(--light-color);
    -webkit-transform: rotate(45deg) translate(0, 50%);
    -ms-transform: rotate(45deg) translate(0, 50%);
    transform: rotate(45deg) translate(0, 50%);
  }
  .nav__icon._active span {
    -webkit-transform: scale(0) translate(0, -50%);
    -ms-transform: scale(0) translate(0, -50%);
    transform: scale(0) translate(0, -50%);
  }
}
.nav__sub-list {
  left: 5px;
  top: 100%;
  z-index: 9999;
  border: 1px solid var(--light-blue);
  max-width: 320px;
  background: var(--deep-blue);
}
.nav__sub-list li {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.nav__sub-list li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.71;
  text-align: left;
  text-transform: uppercase;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  cursor: pointer;
  letter-spacing: 0.1em;
}
.nav__sub-list li a span {
  text-indent: 1em;
}
.nav__sub-sub-list {
  display: none;
}
.nav__sub-sub-list:hover {
  position: absolute;
  right: 0;
  z-index: 15;
  display: block;
  margin-right: -100px;
  margin-left: 0;
  border: none;
  text-align: left;
}
.nav__sub-link {
  color: var(--light-color);
}
.nav__arrow {
  display: none;
}

._pc nav.fixed {
  position: fixed;
  -webkit-box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
  background-color: var(--light-color);
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}

._pc .header nav .nav__link {
  color: var(--blue);
}

._touch .header nav .nav__link {
  color: var(--light-color);
}

._pc .footer nav .nav__link {
  color: var(--light-color);
}

.submenu {
  position: absolute;
  min-width: 300px;
  background: var(--blue);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

body._pc .nav__list > li:hover .nav__sub-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  pointer-events: all;
}

.submenu li {
  position: relative;
}
.submenu li::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1px;
  background-color: var(--grey);
}

.submenu li:hover,
.submenu li:focus {
  color: var(--light-color);
  background: var(--blue);
}
.submenu li:hover::before,
.submenu li:focus::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1px;
}

.submenu li a {
  padding: 8px 15px;
}
.submenu li a:hover {
  color: var(--light-color);
}

/* --------------------------- */
body._lock {
  overflow: hidden;
}
body._touch .nav__arrow {
  position: relative;
  right: 0;
  top: 0;
  display: inline-block;
  margin: 0 0 0 5px;
  border-top: 10px solid var(--border);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  width: 0;
  height: 0;
}
body._touch .nav__item._active .submenu {
  position: relative;
  min-width: 300px;
  background: var(--blue);
  opacity: 1;
  visibility: visible;
}
body._touch .nav__item._active .nav__arrow {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
body._touch .submenu li {
  position: relative;
}
body._touch .submenu li::before {
  content: "";
  display: none;
}

.swiper {
  width: 100%;
  max-height: 496px;
}
@media screen and (max-width: 560px) {
  .swiper {
    max-height: 24rem;
  }
}

.mainTopSlider {
  background-color: var(--light-color);
}
.mainTopSlider .swiper-slide {
  width: 100%;
  height: 496px;
}
@media screen and (max-width: 560px) {
  .mainTopSlider .swiper-slide {
    text-align: center;
  }
}

.slide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 560px) {
  .slide__inner {
    display: block;
  }
}
.slide__content {
  padding-top: 4rem;
  font-family: var(--font-family);
}
.slide__title {
  font-weight: 700;
  color: var(--blue);
}
@media screen and (min-width: 360px) {
  .slide__title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
@media screen and (min-width: 720px) {
  .slide__title {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
.slide__text {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.1em;
  line-height: 1em;
  color: var(--blue);
}
.slide__text ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 360px) {
  .slide__text ul li {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 720px) {
  .slide__text ul li {
    margin-bottom: 20px;
  }
}
.slide__text ul li::before {
  content: "";
  display: block;
  margin-right: 6px;
  height: 16px;
  background-image: url("../../img/svg/ico-pencil.svg");
  background-position: 0 0;
  background-size: auto;
  background-repeat: no-repeat;
}
@media screen and (min-width: 360px) {
  .slide__text ul li::before {
    margin-right: 0;
    width: 40px;
    height: 30px;
  }
}
@media screen and (min-width: 720px) {
  .slide__text ul li::before {
    margin-right: 6px;
    width: 30px;
    height: 16px;
  }
}
.slide__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 2rem;
}
@media screen and (max-width: 560px) {
  .slide__image {
    display: none;
  }
}

.swiper-pagination {
  margin-bottom: 10px;
}

.swiper-button-prev {
  left: 4%;
}

.swiper-button-next {
  right: 4%;
}

.advantages {
  padding: 60px 0 30px;
  background-color: var(--blue);
}
.advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.advantages__item {
  padding: 10px 30px;
  max-width: 33.3333333333%;
}
@media screen and (max-width: 560px) {
  .advantages__item {
    max-width: 100%;
  }
}
.advantages__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 15px auto;
}
.advantages h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  color: var(--light-color);
}
.advantages__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: var(--light-color);
}

.page-catalog {
  margin: 60px 0;
}

.catalog {
  background-color: var(--light-color);
}
.catalog__wrapper {
  margin: 60px 0;
}
.catalog h2 {
  margin: auto;
  margin-bottom: 38px;
  max-width: 730px;
}
.catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
}
.catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  width: calc(25% - 2rem);
}
@media screen and (max-width: 560px) {
  .catalog__item {
    width: 100%;
  }
}

.item__img {
  padding: 15px 0 20px;
}
.item__title {
  margin-bottom: 20px;
  padding: 0 15px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  text-align: center;
}
.item__title a {
  color: #000;
}
.item__caption {
  margin: 40px 0;
}

.doing {
  display: block;
  background-color: var(--blue);
}
.doing__wrapper {
  padding: 60px 0;
  color: var(--light-color);
}

.carouserl .swiper-wrapper {
  margin: 60px 0;
}
.carouserl .swiper-slide img {
  width: 162px;
  height: 113px;
}
.carouserl .swiper-button-prev,
.carouserl .swiper-rtl .swiper-button-next {
  left: 0%;
  right: auto;
  top: 50%;
  z-index: 999;
}
.carouserl .swiper-button-next,
.carouserl .swiper-rtl .swiper-button-next {
  right: 10px;
  top: 50%;
  bottom: 0;
  z-index: 999;
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  content: "";
  z-index: 999;
  width: 20px;
  height: 28px;
  background-image: url("../../img/svg/arrow-left.svg");
  background-repeat: no-repeat;
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  content: "";
  z-index: 999;
  width: 20px;
  height: 28px;
  background-image: url("../../img/svg/arrow-right.svg");
  background-repeat: no-repeat;
}

.main-news .title__wrapper {
  margin-bottom: 40px;
  padding: 15px 0;
  background-color: var(--blue);
}
.main-news .title {
  color: var(--light-color);
}

.news__wrapper {
  margin-bottom: 65px;
}
.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 45px;
  gap: 2rem;
}
@media screen and (max-width: 560px) {
  .news__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.news__item {
  position: relative;
  border: 1px solid var(--border);
}
.news__img {
  margin-bottom: 20px;
}
.news__img a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.news__text {
  margin-bottom: 38px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #000;
}
.news__readmore, .news__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.archive-news h1 {
  padding: 10px 15px 0 0;
}

.page-news {
  margin: 60px 0;
}
.page-news img {
  margin-bottom: 20px;
}

.serv-item {
  margin: 0 0 -1px;
  border: 1px solid var(--border);
  border-color: var(--border);
}
@media screen and (min-width: 360px) {
  .serv-item {
    padding: 20px;
  }
}
@media screen and (min-width: 820px) {
  .serv-item {
    padding: 40px;
  }
}
.serv-item:hover {
  border-color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition: -webkit-transform ease 0.2s, -webkit-box-shadow ease 0.2s;
  transition: -webkit-transform ease 0.2s, -webkit-box-shadow ease 0.2s;
  transition: transform ease 0.2s, box-shadow ease 0.2s;
  transition: transform ease 0.2s, box-shadow ease 0.2s, -webkit-transform ease 0.2s, -webkit-box-shadow ease 0.2s;
}
@media screen and (min-width: 360px) {
  .serv-item__inner {
    display: block;
  }
}
@media screen and (min-width: 820px) {
  .serv-item__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 360px) {
  .serv-item__image {
    margin-bottom: 15px;
    width: 100%;
  }
}
@media screen and (min-width: 820px) {
  .serv-item__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    margin-right: 70px;
  }
}
@media screen and (min-width: 360px) {
  .serv-item__image img {
    width: 100%;
  }
}
.serv-item__title {
  font-weight: 500;
  font-size: 1.2em;
  text-decoration: none;
  color: var(--blue);
}
@media screen and (min-width: 360px) {
  .serv-item__title {
    margin-bottom: 15px;
    width: 100%;
  }
}
.serv-item__previewtext {
  font-size: 1em;
}
.serv-item__prices {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.133em;
  line-height: 1.454em;
}

hr.service-line {
  margin-top: 80px;
}

.category__item .item__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
}
@media screen and (min-width: 360px) {
  .category__item .item__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 720px) {
  .category__item .item__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
}
.category__item .item__img a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.category__item .item__img a img {
  margin: 0 auto;
  width: auto;
  height: 100%;
  max-width: 200px;
  max-height: 200px;
}
.category__item .item__title {
  padding: 0;
  min-height: 70px;
  font-weight: 600;
  text-align: inherit;
}
.category__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  border: 2px solid var(--border);
  padding: 15px;
  -webkit-box-shadow: 0 3px 15px rgba(61, 65, 84, 0.15);
  box-shadow: 0 3px 15px rgba(61, 65, 84, 0.15);
}
@media screen and (min-width: 360px) {
  .category__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 720px) {
  .category__inner {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.сhar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
  padding: 5px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--text);
}
.сhar:last-child {
  border-bottom: none;
}
.сhar .k {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
}

.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.products__inner {
  margin: 10px 0;
  border: 2px solid var(--border);
  padding: 15px;
  -webkit-box-shadow: 0 3px 15px rgba(61, 65, 84, 0.15);
  box-shadow: 0 3px 15px rgba(61, 65, 84, 0.15);
}

@media screen and (min-width: 360px) {
  .product__inner {
    display: block;
  }
}
@media screen and (min-width: 720px) {
  .product__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product__inner h4 {
  font-size: 1.2em;
  text-align: center;
}
.product__slider span {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
/* carousel */
#mainCarousel {
  --f-arrow-pos: 10px;
  --f-arrow-bg: rgba(255, 255, 255, 0.75);
  --f-arrow-hover-bg: rgba(255, 255, 255, 1);
  --f-arrow-color: #333;
  --f-arrow-width: 40px;
  --f-arrow-height: 40px;
  --f-arrow-svg-width: 20px;
  --f-arrow-svg-height: 20px;
  --f-arrow-svg-stroke-width: 2px;
  --f-arrow-border-radius: 50%;
  height: 400px;
}

#mainCarousel .f-carousel__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#mainCarousel img {
  height: auto;
  max-width: 100%;
}

.f-thumbs.is-modern.is-syncing {
  margin-bottom: 2rem;
}

.footer {
  padding: 40px 0;
  background-color: var(--blue);
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 560px) {
  .footer__wrapper {
    display: block;
  }
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
  gap: 20px;
}
@media screen and (max-width: 560px) {
  .footer__logo {
    margin-right: 0;
    text-align: center;
  }
}
@media screen and (max-width: 820px) {
  .footer__logo {
    margin-right: 8px;
  }
}
.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--light-color);
  gap: 10px;
}
.footer__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.85em;
  line-height: 162%;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.85em;
  color: var(--light-color);
}
@media screen and (max-width: 560px) {
  .footer__copy {
    margin: 15px auto;
  }
}
.footer__copy a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.85em;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__copy a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__email::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-mail-white.svg");
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__phone::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-phone-white.svg");
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.footer .nav__list {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
@media screen and (max-width: 560px) {
  .footer .nav__list {
    display: block;
    margin: 20px auto;
    height: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .footer .nav__item {
    padding: 10px 0;
  }
}
.footer .nav__link {
  color: var(--light-color);
}
@media screen and (max-width: 560px) {
  .footer .nav__link {
    display: block;
    padding: 5px;
    width: 100%;
  }
}

body {
  min-width: 360px;
  font-family: var(--font-family);
}

body._lock {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
}
@media screen and (max-width: 820px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 1.5em;
  }
}

a {
  color: var(--blue);
}

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

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 2em;
}
@media screen and (max-width: 820px) {
  .title {
    font-size: 1.5em;
  }
}

.about-text .box-right {
  text-align: right;
}
@media screen and (max-width: 560px) {
  .about-text .box-right {
    text-align: left;
  }
}
.about-text .box-right ul li {
  list-style-position: inside;
}
.about-text .box-right ul li::marker {
  font-size: 1em;
  color: var(--blue);
}
.about-text .box-left ul li {
  list-style-position: outside;
}
.about-text .box-left ul li::marker {
  font-size: 1em;
  color: var(--blue);
}

.main {
  margin: 40px 0 60px;
}

.tabs__wrapper {
  margin-bottom: 1rem;
}
.tabs__wrapper .nav {
  background-color: var(--light-color);
}
.tabs__wrapper .nav-link {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--link-static);
}
.tabs__wrapper .nav-link.active {
  color: var(--title-color);
}
.tabs__wrapper .tab-content {
  padding: 10px;
}

.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .half {
    display: block;
    height: 100%;
  }
}

.center {
  text-align: center;
}

.blue {
  color: var(--blue);
}
.blue__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}
.blue__email::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-mail.svg");
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.blue__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}
.blue__tel::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-phone.svg");
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
}
.blue__schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}
.blue__schedule::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-schedule-blue.svg");
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
}
.blue__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.85em;
  color: var(--blue);
}
.blue__address::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-location.svg");
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
}
.blue__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}
.blue__contact::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-contact-blue.svg");
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
}
.blue__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}
.blue__form::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-form-blue.svg");
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
}

.blue-box {
  width: 100%;
  height: 100%;
  color: var(--light-color);
  background-color: var(--blue);
}
.blue-box__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 15px;
  height: 60px;
}
@media screen and (max-width: 560px) {
  .blue-box__wrapper {
    display: block;
    padding: 20px 0;
    height: 100%;
  }
}
.blue-box__inner {
  padding: 20px;
  height: 100%;
}
.blue-box a {
  color: var(--light-color);
}

.box-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 560px) {
  .box-contacts {
    display: block;
  }
}

.link-contact p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-contact p::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-contact-white.svg");
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.link-form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-form p::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-form-white.svg");
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.link-phone p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-phone p::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-phone-white.svg");
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.link-email p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-email p::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-mail-white.svg");
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.85em;
}
.schedule::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-schedule-white.svg");
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.tm-mask-default {
  -webkit-mask-image: url("../../img/svg/mask-default-image.svg");
  mask-image: url("../../img/svg/mask-default-image.svg");
  -webkit-mask-repeat: round;
  mask-repeat: round;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  margin: 40px 0;
}
.tm-mask-default img {
  width: 100%;
}

.card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 560px) {
  .card__wrapper {
    display: block;
  }
}
.card__box {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 560px) {
  .card__box {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.card__box ul li::marker {
  font-size: 1em;
  color: var(--blue);
}

.box__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 560px) {
  .box__group {
    display: block;
  }
}
.box__img {
  margin-bottom: 20px;
  border-radius: 500px;
}
.box__title {
  font-weight: 400;
  text-transform: uppercase;
}

.answer {
  margin: 40px 0;
}

.btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  width: 100%;
  height: 28px;
}

.table-goods {
  font-size: 12px;
}

.shop__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.shop__icons a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 920px) {
  .shop__icons a {
    position: absolute;
    right: 80px;
    top: 40px;
  }
}
.shop__icons a svg {
  width: 24px;
  height: 24px;
  fill: var(--light-color);
}
@media screen and (max-width: 560px) {
  .shop__icons a svg {
    fill: var(--blue);
  }
}

.basket-quantity {
  position: absolute;
  left: 10px;
  top: -9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
}

.count {
  position: absolute;
  left: 0;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  font-size: 10px;
  line-height: 0;
  text-align: center;
  text-overflow: ellipsis;
  color: var(--light-color);
}

.contacts__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contacts__address::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/svg/ico-location.svg");
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
}

.icons-pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.icons-pay__item {
  text-align: center;
}
.icons-pay img {
  margin-bottom: 10px;
  max-height: 35px;
}

.posted-on {
  position: absolute;
}
.posted-on time {
  padding: 6px;
  font-size: 0.8em;
  background-color: var(--border);
}

.page-o-kompanii {
  margin: 40px 0 30px;
}

.top-btn {
  position: fixed;
  right: 28px;
  bottom: 80px;
  border: 1px solid var(--deep-blue);
  border-radius: 4px;
  width: 50px;
  height: 50px;
  background-color: var(--orange);
  opacity: 0;
  cursor: pointer;
}

.show-btn__hide {
  opacity: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}/*# sourceMappingURL=main.css.map */
