/* Base */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  display: flex;
  flex-direction: column;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  min-height: 100vh;
}

html.behavior-auto {
  scroll-behavior: auto;
}

html.is-loading:before,
html.is-loading:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999998;
}

html.is-loading:before {
  background: rgba(0, 0, 0, 0.2);
}

html.is-loading:after {
  width: 50px;
  height: 50px;
  margin: auto;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
  z-index: 99999999;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

body {
  font-family: var(--base-font0);
  font-size: 14px;
  line-height: 24px;
  background: var(--main-bg);
  color: var(--main-color);
  position: relative;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

html.is-noscroll body {
  position: fixed !important;
  left: 0;
  right: 0;
  margin-right: var(--scrollbarWidth);
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:active,
:focus:not(:focus-visible) {
  outline: none;
}

img {
  vertical-align: middle;
  border: none;
  max-width: 100%;
  height: auto;
}

b,
strong {
  font-weight: 600;
}

hr {
  height: 1px;
  border: none;
  margin: var(--block-space-lg) auto;
  clear: both;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    var(--line-color) 20%,
    var(--line-color) 80%,
    #ffffff 100%
  );
  max-width: 1280px;
}

@media (max-width: 1399.98px) {
  hr {
    max-width: 1120px;
  }
}

@media (max-width: 1199.98px) {
  hr {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  hr {
    max-width: 700px;
  }
}

@media (max-width: 767.98px) {
  hr {
    max-width: 520px;
  }
}

@media (max-width: 575.98px) {
  hr {
    max-width: none;
    margin-left: 15px;
    margin-right: 15px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: inherit;
  font-weight: bold;
}

a,
button {
  transition: 0.15s ease-in-out;
  transition-property: color, border-color, background-color, opacity;
}

.link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  column-gap: 12px;
  font-size: inherit;
  line-height: inherit;
  font-weight: 500;
  padding: 0;
  color: var(--accent3-color);
}

.link:hover {
  color: var(--accent-color);
}

a {
  color: inherit;
  text-decoration: none;
}

.text a:not([class]) {
  text-decoration: underline;
}

small {
  font: inherit;
  color: var(--accent-color);
}

.my-space,
.mt-space {
  margin-top: var(--block-space);
}

.my-space,
.mb-space {
  margin-bottom: var(--block-space);
}

.my-space-sm,
.mt-space-sm {
  margin-top: var(--block-space-sm);
}

.my-space-sm,
.mb-space-sm {
  margin-bottom: var(--block-space-sm);
}

.my-space-lg,
.mt-space-lg {
  margin-top: var(--block-space-lg);
}

.my-space-lg,
.mb-space-lg {
  margin-bottom: var(--block-space-lg);
}

p,
ul,
ol,
dl,
pre,
table,
figure,
address,
fieldset,
blockquote {
  margin: 0 0 20px 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.title {
  font-family: inherit;
  font-weight: 600;
  color: inherit;
  margin: 0 0 16px 0;
}

h1,
.h1,
.title {
  font-size: 40px;
  line-height: 50px;
}

@media (min-width: 768px) {
  .title {
    margin-bottom: 40px;
  }
}

h2,
.h2 {
  font-size: 30px;
  line-height: 38px;
}

h3,
.h3 {
  font-size: 20px;
  line-height: 28px;
}

h4,
.h4 {
  font-size: 18px;
  line-height: 26px;
}

h5,
.h5 {
  font-size: 16px;
  line-height: 24px;
}

h6,
.h6 {
  font-size: 14px;
  line-height: 24px;
}

blockquote,
.lead {
  font-size: 18px;
  line-height: 28px;
  margin: var(--block-space-sm) auto var(--block-space);
  padding: 45px 50px;
  border-radius: 10px;
  background: var(--light-blue-bg);
  background: linear-gradient(315deg, #ffffff 0%, var(--light-blue-bg) 40%);
}

blockquote p:last-child,
.lead p:last-child {
  margin-bottom: 0;
}

.video {
  position: relative;
}

.video:before {
  content: '';
  display: block;
  padding-top: calc(9 * 100% / 16);
}

.video video,
.video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  h1,
  .h1,
  .title {
    font-size: 30px;
    line-height: 38px;
  }

  h2,
  .h2 {
    font-size: 24px;
    line-height: 32px;
  }

  h3,
  .h3 {
    font-size: 18px;
    line-height: 24px;
  }

  h4,
  .h4 {
    font-size: 16px;
    line-height: 24px;
  }

  h5,
  .h5 {
    font-size: 14px;
    line-height: 24px;
  }

  blockquote,
  .lead {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 767.98px) {
  h1,
  .h1,
  .title {
    font-size: 24px;
    line-height: 30px;
  }

  h2,
  .h2 {
    font-size: 22px;
    line-height: 28px;
  }

  h3,
  .h3 {
    font-size: 16px;
    line-height: 24px;
  }

  h4,
  .h4 {
    font-size: 14px;
    line-height: 24px;
  }

  blockquote,
  .lead {
    font-size: 14px;
    padding: 25px;
  }
}

.text :not(:is(h1, h2, h3, h4, h5, h6)) + :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 40px;
}

.text * + ul,
.text * + ol {
  margin-top: 27px;
}

.text ul,
.text ol,
.list {
  list-style: none;
  padding: 0;
}

.text li,
.list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
}

.text ul > li:before,
.list > li:before {
  content: "";
  background: url("../images/dot.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 8px;
}

.text ol {
  counter-reset: li;
}

.text ol > li {
  counter-increment: li;
  padding-left: 2.1em;
}

.text ol > li:before {
  content: counter(li) ".";
  font-weight: 600;
  position: absolute;
  left: 0;
}

.text li > ul,
.text li > ol,
li > .list {
  margin-top: 16px;
  margin-bottom: 0;
}

.text table th,
.text table td,
.table th,
.table td {
  padding: 6px 15px;
  text-align: left;
  vertical-align: baseline;
}

.text table th,
.table th {
  font-weight: bold;
}

.text table tr:nth-child(odd) td,
.text table tr:nth-child(odd) th,
.table tr:nth-child(odd) td,
.table tr:nth-child(odd) th {
  background: var(--grey-bg);
}

@media (min-width: 992px) {
  .data-list {
    column-count: 2;
    column-gap: 20px;
  }
}

.data-list {
  font-size: 13px;
  line-height: 20px;
}

.data-list__row {
  display: flex;
  align-items: baseline;
  page-break-inside: avoid;
  break-inside: avoid;
  border-radius: 5px;
}

.data-list__row:nth-child(odd) {
  background: var(--light-grey-bg);
}

.data-list__title,
.data-list__desc {
  flex: 0 0 auto;
  padding: 8px 15px;
}

.data-list__title {
  flex: 0 0 auto;
  width: 50%;
}

.data-list__desc {
  flex: 0 0 auto;
  width: 50%;
  font-weight: 500;
}

.container,
.row {
  --bs-gutter-x: var(--gutter-x);
}

@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

.container_full-width {
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1800px;
}

@media (max-width: 1399.98px) {
  .container_full-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.svg-sprite {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}

.content {
  flex-grow: 1;
  min-height: 1px;
  padding-top: var(--content-top-space);
}

.form-check {
  text-align: left;
  font-size: 13px;
  line-height: 21px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.form-check label {
  position: relative;
  cursor: pointer;
}

.form-check input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.form-check input ~ span {
  display: block;
  position: relative;
  min-height: 20px;
  padding: 0 0 0 31px;
}

.form-check input ~ span:before,
.form-check input ~ span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.15s ease-in-out;
}

.form-check input,
.form-check input ~ span:before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 5px;
}

.form-check input[type="radio"] ~ span:before {
  border-radius: 50%;
}

.form-check input[type="checkbox"] ~ span:after {
  width: 10px;
  height: 6px;
  margin: 5px 0 0 5px;
  border-style: solid;
  border-color: var(--border-color);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.form-check input[type="radio"] ~ span:after {
  width: 6px;
  height: 6px;
  margin: 7px 0 0 7px;
  border-style: solid;
  border-color: var(--border-color);
  border-width: 3px;
  border-radius: 50%;
}

.form-check input ~ span:after {
  opacity: 0;
}

.form-check label:hover input ~ span:after,
.form-check input:checked ~ span:after,
.form-check input:focus-visible ~ span:after {
  opacity: 1;
}

.form-check input:checked ~ span:after {
  border-color: var(--main-color);
}

.form-check input.error ~ span:before,
.form-check input.error ~ span:after {
  border-color: var(--red-color);
}

.form-check input:disabled ~ span {
  opacity: 0.5;
  cursor: default;
  cursor: not-allowed;
}

.form-check a {
  color: var(--accent3-color);
}

.form-check a:hover {
  color: var(--accent-color);
}

.form-check__color {
  display: flex !important;
  column-gap: 10px;
}

.form-check__color-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  align-self: center;
}

.form-switch {
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 20px;
}

.form-switch label {
  display: block;
  position: relative;
  cursor: pointer;
}

.form-switch input {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.form-switch input ~ span {
  display: block;
  position: relative;
  padding: 0 40px 0 0;
}

.form-switch input ~ span:before,
.form-switch input ~ span:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  transition: 0.15s ease-in-out;
}

.form-switch input ~ span:before {
  width: 35px;
  height: 20px;
  border: 1px solid var(--line-color);
  border-radius: 15px;
}

.form-switch input:checked ~ span:before {
  border-color: var(--accent-color);
}

.form-switch input:focus-visible ~ span:before {
  outline: none;
  border-color: var(--accent-color);
}

.form-switch input.error ~ span:before {
  border-color: var(--red-color);
}

.form-switch input ~ span:after {
  width: 14px;
  height: 14px;
  margin: 3px 18px 0 0;
  background: var(--secondary-color);
  border-radius: 50%;
}

.form-switch input:checked ~ span:after {
  margin-right: 3px;
  background: var(--accent-color);
}

.form-switch input:disabled ~ span {
  opacity: 0.5;
  cursor: default;
  cursor: not-allowed;
}

.form-switch small {
  font-weight: normal;
}

.form-group {
  margin-bottom: 19px;
}

.form-label {
  display: block;
  text-align: left;
  font-size: 13px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 9px;
}

.form-control,
.form-select,
.select-block,
.select-block__target {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: 0.15s ease-in-out;
  width: 100%;
  height: 44px;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--white-color);
  color: var(--main-color);
  text-align: left;
}

.form-control:focus-visible,
.form-select:focus-visible,
.form-control.valid,
.form-select.valid,
.select-block.is-open .select-block__target,
.select-block:hover .select-block__target {
  outline: none;
  border-color: var(--accent3-color);
}

.form-control[disabled],
.form-select[disabled],
.select-block.is-disabled .select-block__target {
  background-color: var(--grey-bg);
  opacity: 1;
  cursor: default;
  cursor: not-allowed;
}

.form-control.error,
.form-select.error,
.select-block.error .select-block__target {
  border-color: var(--red-color) !important;
}

.form-control:-ms-input-placeholder {
  font-weight: normal;
  color: var(--secondary-color);
}

.form-control::placeholder {
  font-weight: normal;
  color: var(--secondary-color);
}

textarea.form-control {
  max-width: 100%;
  min-width: 100%;
  overflow: auto;
  height: auto;
  resize: none;
}

.form-select {
  max-width: 100%;
  margin: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' fill='%233B3B3B' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.23 4.769.11.649A.38.38 0 1 1 .648.112l4.12 4.12'/%3E%3Cpath d='M4.23 4.231 8.35.111a.38.38 0 1 1 .538.538l-4.12 4.12a.38.38 0 0 1-.537-.538Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 9px 5px;
}

.form-select::-ms-expand {
  display: none;
}

.form-control,
.form-select,
.jq-selectbox__select,
.jq-selectbox__dropdown li,
.select-block__target,
.select-block__dropdown a {
  padding: 11px 14px;
}

.form-control_sm,
.form-select_sm {
  height: 34px;
  font-size: 13px;
  line-height: 20px;
}

.form-control_sm,
.form-select_sm,
.form-select_sm .jq-selectbox__select,
.form-select_sm .jq-selectbox__dropdown li {
  padding: 6px 14px;
}

.form-select,
.form-select .jq-selectbox__select,
.select-block__target {
  padding-right: 30px;
}

.jq-selectbox {
  padding: 0 !important;
  background: none;
}

.jq-selectbox__select,
.select-block__target {
  cursor: pointer;
  position: relative;
}

.jq-selectbox__select:after,
.select-block__target:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 5px;
  right: 11px;
  top: 50%;
  margin-top: -2px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' fill='%233B3B3B' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.23 4.769.11.649A.38.38 0 1 1 .648.112l4.12 4.12'/%3E%3Cpath d='M4.23 4.231 8.35.111a.38.38 0 1 1 .538.538l-4.12 4.12a.38.38 0 0 1-.537-.538Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}

.jq-selectbox.opened .jq-selectbox__select:after,
.select-block.is-open .select-block__target:after {
  transform: rotate(180deg);
}

.jq-selectbox__select-text.placeholder,
.select-block.is--placeholder .select-block__target {
  color: var(--secondary-color);
}

.jq-selectbox__trigger {
  display: none;
}

.jq-selectbox__dropdown,
.select-block__dropdown {
  margin: 0 -1px;
  width: calc(100% + 2px);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: #fff;
}

.select-block__dropdown {
  margin: 0;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: -1px;
  z-index: 1;
  max-height: 300px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.select-block:not(.is-open) .select-block__dropdown {
  display: none;
}

.jq-selectbox__dropdown ul,
.select-block__dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jq-selectbox__dropdown li,
.select-block__dropdown li {
  white-space: normal;
  cursor: pointer;
}

.select-block {
  position: relative;
  text-align: left;
  height: auto;
  border: none;
  border-radius: 0;
  background: none;
}

.select-block__dropdown a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.jq-selectbox__dropdown li.selected,
.jq-selectbox__dropdown li:hover,
.select-block__dropdown a:hover,
.select-block__dropdown a.is-active {
  background-color: var(--light-blue-bg);
}

input[type="number"] {
  text-align: center;
  -moz-appearance: textfield;
  padding-left: 45px;
  padding-right: 45px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type="number"],
.jq-number {
  width: 143px;
  text-align: center;
  border-color: transparent !important;
  box-shadow: none !important;
}

.jq-number {
  padding: 0;
  position: relative;
  border: none;
  border-radius: 0;
  background: none;
  height: auto;
  transition: none;
}

.jq-number__spin {
  position: absolute;
  cursor: pointer;
  width: 45px;
  top: 0;
  bottom: 0;
  border: 1px solid var(--line-color);
  color: var(--main-color);
}

.jq-number__spin:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.jq-number.disabled .jq-number__spin {
  cursor: default;
  cursor: not-allowed;
}

.jq-number__spin.minus {
  left: 1px;
}

.jq-number__spin.plus {
  right: 1px;
}

.jq-number__spin:before,
.jq-number__spin:after {
  content: "";
  width: 12px;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -6px;
}

.jq-number__spin:after {
  transform: rotate(-90deg);
}

.jq-number__spin.minus:after {
  display: none;
}

@media (max-width: 767.98px) {
  input[type="number"] {
    padding: 4px 24px;
    height: 34px;
  }

  input[type="number"],
  .jq-number {
    width: 80px;
  }

  .jq-number__spin {
    width: 24px;
  }
}

label.error {
  display: block;
  text-align: left;
  color: var(--red-color);
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  min-height: 0;
  margin-bottom: -15px;
}

.form-btn-group {
  margin-top: 27px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  column-gap: 10px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 10px;
  border: none;
  background-color: var(--accent2-color);
  color: var(--white-color);
}

.btn:hover {
  background-color: var(--accent2-color-h);
  color: var(--white-color);
}

.btn:active {
  box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}

.btn_light,
.about-section__content .btn {
  background-color: var(--white-color);
  color: var(--accent-color);
}

.btn_light:hover,
.about-section__content .btn:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.55;
  cursor: default;
  cursor: not-allowed;
}

.btn-group {
  display: flex;
}

.btn-group .btn {
  padding: 11px 26px;
  font-weight: 600;
  text-transform: none;
}

.btn-group .btn:not(:last-child) {
  margin-right: -1px;
}

.btn-group .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group .btn:not(.is-active) .btn-group__count {
  color: var(--accent-color);
}

.target {
  scroll-margin-top: 80px;
}

@media (max-width: 1199.98px) {
  .target {
    scroll-margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .catalog-menu__col-inner::-webkit-scrollbar {
    width: 9px;
    height: 9px;
  }

  .catalog-menu__col-inner::-webkit-scrollbar-track {
    background-color: #f4f4f4;
    border-radius: 5px;
  }

  .catalog-menu__col-inner::-webkit-scrollbar-thumb {
    background-color: #cfd1d3;
    border-radius: 5px;
  }
}
/* ! Base */
