/*!***************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./assets/src/sass/app.scss ***!
  \***************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0; }
  *::after, *::before {
    box-sizing: border-box; }

:focus,
:active {
  outline: none; }

a {
  color: inherit;
  text-decoration: none; }
  a:visited {
    text-decoration: none; }
  a:focus, a:active {
    outline: none; }
  a:hover {
    text-decoration: none; }

nav,
footer,
header,
aside {
  display: block; }

html,
body {
  width: 100%;
  text-rendering: optimizeSpeed;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1; }

input,
button,
textarea {
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background-color: initial;
  border: none;
  text-transform: inherit; }
  input::-moz-focus-inner,
  button::-moz-focus-inner,
  textarea::-moz-focus-inner {
    padding: 0;
    border: 0; }

button {
  cursor: pointer;
  color: inherit;
  background-color: initial; }

ul,
ol {
  padding: 0; }

ul,
ol {
  list-style: none; }

img {
  max-width: 100%;
  display: block; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield; }

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

:root {
  --text-light-bg-prm: #2b2828;
  --text-light-bg-scnd: #6e7191;
  --dark-bg-primary: #27273e;
  --dark-bg-scnd: #202036;
  --text-dark-bg-prm: #fff;
  --text-dark-bg-scnd: rgba(224, 224, 255, 0.6);
  --primary-dark: #2e363e;
  --light-bg-send: #f4f6fc;
  --light-bg-tertr: rgba(69, 121, 245, 0.03);
  --light-gray: #f4f4f4; }

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0; }

* {
  box-sizing: border-box; }

body {
  font-weight: 400;
  font-family: Inter, sans-serif;
  font-style: normal;
  background: #fff;
  color: var(--text-light-bg-prm);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
  display: block;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100dvw; }

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

section,
aside,
main,
article {
  display: block;
  margin: 0;
  padding: 0; }

button,
input,
textarea,
span,
div {
  outline: none !important; }
  button:hover,
  input:hover,
  textarea:hover,
  span:hover,
  div:hover {
    outline: none !important; }
  button:focus,
  input:focus,
  textarea:focus,
  span:focus,
  div:focus {
    outline: none !important; }
  button:active,
  input:active,
  textarea:active,
  span:active,
  div:active {
    outline: none !important; }

/* margin-bottoms */
.mb-1 {
  margin-bottom: 1rem; }

.mb-1-5 {
  margin-bottom: 1.5rem; }

.mbt-3 {
  margin-bottom: 3rem; }

.text-center {
  text-align: center; }

.fa {
  display: flex; }

.button {
  display: inline-flex;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  gap: 0 20px;
  justify-content: center;
  align-items: center;
  padding: 25px 28px;
  color: #fbfafa;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5rem; }
  @media (max-width: 576px) {
    .button {
      padding: 25px 28px; } }
  .button-primary {
    background-color: #e31e24;
    border: 0px solid transparent;
    transition: 0.3s background-color;
    text-transform: uppercase; }
    .button-primary:hover {
      border: 0px solid transparent;
      background-color: #2b2828; }
  .button-secondary {
    color: var(--text-dark-bg-prm);
    border: 1px solid #139e54;
    transition: 0.3s background-color, border-color, color, box-shadow, opacity;
    color: #139e54; }
    .button-secondary:hover {
      color: #fff;
      background-color: #139e54; }
      .button-secondary:hover .fa {
        transform: translateX(10px); }
    .button-secondary .fa {
      transition: transform 0.6s; }
  .button-medium {
    padding: 25px 28px; }
  .button-icon {
    gap: 0 0.75rem; }

.lazy {
  opacity: 0;
  transition: 0.4s opacity; }
  .lazy.loaded {
    opacity: 1; }

.totop {
  position: fixed;
  right: 51px;
  bottom: 33px;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer; }
  .totop__item {
    width: 51px;
    height: 51px;
    background: #e31e24;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s background-color; }
    .totop__item svg,
    .totop__item svg path {
      fill: #ffffff;
      transition: 0.3s fill; }
  .totop:hover .totop__item {
    background: #2b2828; }
    .totop:hover .totop__item svg,
    .totop:hover .totop__item svg path {
      fill: #fff; }

.title {
  font-family: "Zekton", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 58px;
  color: #2b2828;
  margin: 0 0 40px; }
  @media (max-width: 576px) {
    .title {
      font-size: 26px;
      line-height: 1.3em;
      margin: 0 0 30px; } }

.slider__nav {
  display: flex;
  justify-content: flex-start;
  gap: 0 20px;
  align-items: center; }

.slider__btn {
  display: flex;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: 0.3s color; }

.slider__prev {
  transform: rotate(-180deg); }

.s__header {
  position: relative; }

.nav {
  display: flex;
  justify-content: flex-end; }
  .nav .menu {
    display: flex;
    justify-content: flex-end;
    gap: 0 40px; }

.relative {
  position: relative; }

.jq-checkbox,
.jq-radio {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.jq-checkbox input,
.jq-radio input {
  position: absolute;
  z-index: -1;
  margin: 0;
  padding: 0;
  opacity: 0;
  display: none; }

.jq-file {
  position: relative;
  display: inline-block;
  overflow: hidden; }
  .jq-file input {
    position: absolute;
    top: 0;
    right: 0;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    font-size: 100px;
    line-height: 1em; }

.jq-file__name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.jq-selectbox,
.jq-select-multiple {
  position: relative;
  display: inline-block; }

.jq-selectbox select,
.jq-select-multiple select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0; }

.jq-selectbox li,
.jq-select-multiple li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.jq-selectbox {
  z-index: 10; }

.jq-selectbox__select {
  position: relative; }

.jq-selectbox__select-text {
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis; }

.jq-selectbox__dropdown {
  position: absolute; }

.jq-selectbox__search input {
  -webkit-appearance: textfield; }
  .jq-selectbox__search input::-webkit-search-cancel-button, .jq-selectbox__search input::-webkit-search-decoration {
    -webkit-appearance: none; }

.jq-selectbox__dropdown ul {
  position: relative;
  overflow: auto;
  overflow-x: hidden;
  list-style: none;
  -webkit-overflow-scrolling: touch; }

.jq-select-multiple ul {
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; }

.jq-number {
  display: inline-block; }

.jq-number__field input {
  -moz-appearance: textfield;
  text-align: left; }
  .jq-number__field input::-webkit-inner-spin-button, .jq-number__field input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none; }

.jq-checkbox,
.jq-radio {
  position: relative;
  overflow: hidden;
  -webkit-transform: scale(1);
  transform: scale(1);
  vertical-align: middle;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-right: 8px;
  outline: none !important;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #2b2828;
  border-radius: 0px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.jq-checkbox.disabled,
.jq-radio.disabled {
  opacity: 0.55; }

.jq-checkbox.checked {
  background-color: #e31e24;
  border: 1px solid #e31e24;
  border-radius: 2px; }
  .jq-checkbox.checked .jq-checkbox__div {
    position: absolute;
    top: calc(50% - 0.5rem);
    left: calc(50% - 0.5rem);
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    -webkit-animation: wave 0.4s ease;
    animation: wave 0.4s ease;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij48Zz48Zz4KCTxnPgoJCTxwYXRoIGQ9Ik01MDQuNTAyLDc1LjQ5NmMtOS45OTctOS45OTgtMjYuMjA1LTkuOTk4LTM2LjIwNCwwTDE2MS41OTQsMzgyLjIwM0w0My43MDIsMjY0LjMxMWMtOS45OTctOS45OTgtMjYuMjA1LTkuOTk3LTM2LjIwNCwwICAgIGMtOS45OTgsOS45OTctOS45OTgsMjYuMjA1LDAsMzYuMjAzbDEzNS45OTQsMTM1Ljk5MmM5Ljk5NCw5Ljk5NywyNi4yMTQsOS45OSwzNi4yMDQsMEw1MDQuNTAyLDExMS43ICAgIEM1MTQuNSwxMDEuNzAzLDUxNC40OTksODUuNDk0LDUwNC41MDIsNzUuNDk2eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgo8L2c+PC9nPiA8L3N2Zz4K); }

.jq-radio {
  border-radius: 50%; }
  .jq-radio.checked .jq-radio__div {
    width: 10px;
    height: 10px;
    margin: 3px 0 0 3px;
    border-radius: 50%;
    background: #777;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7); }

.jq-file {
  width: 270px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
  .jq-file input {
    cursor: pointer; }

.jq-file__name {
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 0 80px 0 10px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  background: #fff;
  box-shadow: inset 1px 1px #f1f1f1;
  font: 14px/32px Arial, sans-serif;
  color: #333; }

.jq-file__browse {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  border-left: 1px solid #ccc;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(#fff, #e6e6e6);
  box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #fff; }

.jq-file:hover .jq-file__browse {
  background: linear-gradient(#f6f6f6, #e6e6e6); }

.jq-file:active .jq-file__browse {
  background: #f5f5f5;
  box-shadow: inset 1px 1px 3px #ddd; }

.jq-file.focused .jq-file__name {
  border: 1px solid #5794bf; }

.jq-file.disabled {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888; }
  .jq-file.disabled .jq-file__name,
  .jq-file.disabled .jq-file__browse {
    border-color: #ccc;
    background: #f5f5f5;
    box-shadow: none;
    color: #888; }

.jq-selectbox.focused {
  background-color: rgba(20, 16, 41, 0.04); }

.jq-selectbox.disabled .jq-selectbox__select {
  box-shadow: none; }

.jq-selectbox__select-text {
  display: block;
  width: 100%; }

.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%; }
  .jq-selectbox__trigger-arrow {
    position: absolute;
    top: calc(50% - 2px);
    right: 18px;
    width: 12px;
    height: 9px;
    background-color: #ffffff; }
  .jq-selectbox__trigger__dropdown {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0 0 4px 4px;
    color: #ffffff;
    background-color: #27273e;
    box-shadow: 0 16px 16px -4px rgba(20, 16, 41, 0.24), 0 4px 8px -1px rgba(20, 16, 41, 0.24), 0 0 1px 0 rgba(20, 16, 41, 0.4); }
  .jq-selectbox__trigger__search {
    margin: 5px; }
  .jq-selectbox__trigger input {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 5px 27px 6px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
    box-shadow: inset 1px 1px #f1f1f1;
    color: #333; }

.jq-selectbox.opened {
  background-color: #27273e; }

.input,
.textarea {
  display: block;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #17171b;
  padding: 10px;
  color: #1a2df3;
  background-color: transparent;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #17171b; }
  .input:hover,
  .textarea:hover {
    border-bottom: 1px solid #17171b; }
  .input:focus,
  .textarea:focus {
    border-bottom: 1px solid #17171b; }
  .input.wpcf7-not-valid,
  .textarea.wpcf7-not-valid {
    border-bottom: 1px solid #e31e24; }
  .input ::-webkit-input-placeholder,
  .textarea ::-webkit-input-placeholder {
    color: #b3b2bc; }
  .input ::-moz-placeholder,
  .textarea ::-moz-placeholder {
    color: #b3b2bc; }
  .input :-ms-input-placeholder,
  .textarea :-ms-input-placeholder {
    color: #b3b2bc; }
  .input :-moz-placeholder,
  .textarea :-moz-placeholder {
    color: #b3b2bc; }
  .input-parent,
  .textarea-parent {
    position: relative;
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .input-parent,
      .textarea-parent {
        margin-bottom: 24px; } }
    .input-parent label,
    .textarea-parent label {
      position: absolute;
      top: -12px;
      left: 20px;
      font-size: 14px;
      line-height: 24px;
      color: #ffffff;
      z-index: 10;
      display: inline-block;
      padding: 0 5px;
      background: #302a56; }

.textarea {
  height: 100px;
  resize: none; }

.wpcf7 {
  overflow: hidden; }
  .wpcf7 .hidden {
    display: none; }
  .wpcf7 .mb-32 {
    margin-bottom: 32px; }
  .wpcf7 .mb-46 {
    margin-bottom: 46px; }
  .wpcf7 .mb-20 {
    margin-bottom: 20px; }
  .wpcf7 .wpcf7-submit {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 25px 25px;
    background: #e31e24;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    transition: 0.3s background-color;
    font-size: 16px;
    line-height: 1.3em; }
    .wpcf7 .wpcf7-submit:hover {
      background-color: #2b2828;
      color: #ffffff; }
    .wpcf7 .wpcf7-submit[disabled] {
      opacity: 0.7; }
  .wpcf7 .wpcf7-spinner {
    position: absolute;
    top: calc(50% - 12px);
    right: 12px; }
  .wpcf7 .wpcf7-response-output {
    position: absolute;
    left: -9999px; }
  .wpcf7 .wpcf7-not-valid-tip {
    position: absolute;
    width: 24px;
    height: 24px;
    overflow: hidden;
    display: block;
    right: 0;
    top: calc(50% - 12px);
    text-indent: -1000px;
    background-size: cover;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAADY0lEQVR4nO2azU4UQRDH25igRsG74gus4kW2arKJW70r6F4EPOwb6BUvxpOBhAMH4wceCIrEA9H4COoT6NEgutM9GhJRL8gZSdasqVk/YNnFSHfPzJr+JZVsZjY9Xf/pj+qqEcLj8Xg8Ho/H40mEFaKDtWIwoCgYiiSMsvHv9zR4iu+J/w1dqRxQxfwlTXhfE4aK8LuW2Ghn8T3+j8S5kGBsuZrrEd1KdHbwhJJ4VxOsd3L4r0awriTe0QT9olv4MHTmqCa4pwk39+z4DiFwMxaiAn0iy0Qyf0FL/GLN8Z0j4rMu4rDIGg0h9ikJU7vNb1vWfAZM8jNFFmhUq/uVhEeuHW8jxAI/O/03T7iQtPO/RZC4mOpIUBKm0nL+j8FEKs6HJSgrgnraAsRrQgnOJ+q8rkCf09X+X43gU61Q6E1MAEUwY2HoLimJ4z/tjQURbicW4WnjIAeWtsb9/NtUBEXwTZWD413x9pXE8dZ2tcSrmR8Fy9Vcjyb8atrRiKDa2jZfsyDAOh++nAmg+FRnPPcdCsBtl3DEmQCa8EHWBVAEsy4FCLMugJbwzonzH4PgkK3DjuMRUHeSWaoVgwE7b8j1COB1IH/SSeirLXUwpOBya/uK8Io1AYpQsi5AJGHUVgeVhGdtBHhhbwQ42AmiEo7Y6mBTBFxU5QCURFQEj2227USAUObP2eykS4sIZaYXQe1aABeL4AofWGzm/DjBKeFp0+wdreMchatwWFsKhHjOvx4+ffhXu8tERxThEztt41vhCiVxzriDEnS7QCUOtCREmQ6FQ4IxCx2c6dR+XFAxHQXF4KLj4zDsvdTVtOmOAkicNmx7zXk9UXG9z2gK4Mt2qWy+pgleGQlAcEu4RhP0c/rJcBpc29GuhOtmwsJGbahwTCSB4kKl8VqAzzk1xqkwS2HwTZFoWpx4HzfutBVTEld5KxVJEhWhlJnCSFoVYy1hMgMC3BBp0eCVW8LD9ASA+dSc31YeT6VCDPOpl8dbRsJEMh9IQD3VYb8b/LkbFyqdOS9xlVNzIsvUCoVejshMg6XtjsMG7/OJb3UmcKGSa3WGpbQ1FjOxCM8FfDjhHB0fU7losVvs0LwX/2eWT3Vd/aFkJzhbo8uQ47nMwrDFKfcy5JwWNj0ej8fj8Xg8HrGVH9IKqkYeZC/QAAAAAElFTkSuQmCC);
    content: " "; }
  .wpcf7 .wpcf7-form-control-wrap {
    display: block; }
  .wpcf7 .wpcf7-acceptance {
    display: block;
    padding-right: 0px; }
    .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
      margin: 0;
      font-weight: 400;
      font-size: 12px;
      line-height: 1.33em;
      color: #2b2828; }
      .wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
        display: flex;
        align-items: center;
        gap: 0 12px; }
      .wpcf7 .wpcf7-acceptance .wpcf7-list-item input {
        min-width: 20px;
        width: 20px;
        height: 20px;
        color: #e31e24;
        accent-color: #e31e24; }
      .wpcf7 .wpcf7-acceptance .wpcf7-list-item a {
        color: #2b2828;
        text-decoration: underline; }

.mobilemenu {
  position: absolute;
  z-index: 300;
  top: -30px;
  right: 0;
  width: 260px;
  transition: opacity, transform .3s ease-out;
  transform: translateY(-100%);
  background: #fbfafa;
  padding: 86px 20px 20px;
  box-shadow: -8px 4px 6px rgba(0, 0, 0, 0.08);
  display: block;
  opacity: 0; }
  @media (min-width: 992px) {
    .mobilemenu {
      display: none !important; } }
  .mobilemenu.active {
    transform: translateY(0%);
    opacity: 1; }
  .mobilemenu .nav {
    justify-content: flex-start;
    border-bottom: 1px solid #2b2828;
    padding-bottom: 30px; }
    .mobilemenu .nav .menu {
      flex-direction: column;
      gap: 30px; }
  .mobilemenu .footer__items {
    margin: 45px 0 0 !important;
    width: 100% !important; }
  .mobilemenu .footer__item {
    background: #ffffff;
    padding: 20px; }
  .mobilemenu .footer__itemgo {
    font-size: 20px;
    position: relative;
    z-index: 100; }
  .mobilemenu .footer__item-first:before {
    background: #ffffff; }

.navbar-toggle {
  display: block;
  border: 1px solid #e31e24;
  width: 52px;
  height: 45px;
  position: absolute;
  right: 15px;
  top: calc(50% - 20px);
  z-index: 500; }
  @media (min-width: 992px) {
    .navbar-toggle {
      display: none; } }
  .navbar-toggle .icon-bar {
    display: flex;
    background: #2b2828;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    position: absolute; }
    .navbar-toggle .icon-bar:nth-child(1) {
      transform: translate(7px, -10px); }
    .navbar-toggle .icon-bar:nth-child(2) {
      transform: translate(7px, 0px); }
    .navbar-toggle .icon-bar:nth-child(3) {
      transform: translate(7px, 10px); }
  .navbar-toggle.collapse .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, -5px); }
  .navbar-toggle.collapse .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, 4px); }
  .navbar-toggle.collapse .icon-bar:nth-child(2) {
    display: none; }

.popup-wrapper {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 21, 21, 0.78);
  z-index: 1001;
  overflow-y: auto;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -o-transition: color 0 ease-in !important;
  transition: none !important; }

.popup-body {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px; }

.popup-inner {
  position: relative;
  border: 1px solid #2b2828;
  width: 420px;
  background: #fbfafa;
  padding: 36px 52px;
  box-sizing: border-box; }
  .popup-inner .close {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.3s ease-out;
    border: 1px solid #e31e24;
    width: 50px;
    height: 44px;
    background: #ffffff; }
    .popup-inner .close:hover {
      background-color: #fbfafa; }

.popup__title {
  margin-bottom: 18px;
  font-family: Zekton, sans-serif;
  font-size: 26px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .popup__title-success {
    color: #e31e24;
    text-align: center;
    font-size: 40px;
    margin: 0 0 10px; }

.popup__desc {
  margin-bottom: 47px;
  font-size: 20px;
  line-height: 1.3em;
  color: #757381; }
  .popup__desc-success {
    text-align: center;
    color: #2b2828;
    font-size: 26px;
    margin: 0; }

.popup__img {
  margin: -36px -52px 36px;
  display: flex; }
  .popup__img > img {
    width: 100%;
    height: auto; }

.header {
  width: 100%;
  z-index: 555;
  padding: 30px 0;
  position: relative;
  max-width: 100dvw; }
  @media (max-width: 992px) {
    .header {
      padding: 15px 0; } }
  .header:after {
    position: absolute;
    z-index: -1;
    content: ' ';
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease-in-out; }
  .header.scroll {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 8px #ccc; }
    .header.scroll .logo {
      height: 40px;
      width: auto;
      display: flex; }
  .header__contacts {
    display: flex;
    padding: 0 25px 0 25px;
    gap: 0 16px; }
    @media (max-width: 992px) {
      .header__contacts {
        padding-right: 70px; } }
  .header .ml-auto {
    margin-left: auto; }

.logo {
  width: auto;
  display: flex;
  height: auto; }
  .logo img {
    max-width: 100%;
    height: auto;
    width: auto; }
  @media (max-width: 1200px) {
    .logo {
      width: 280px; } }
  @media (max-width: 576px) {
    .logo {
      width: 130px; } }

.phone {
  display: inline-block;
  color: #2b2828;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  line-height: 32px; }
  .phone:hover {
    color: #e31e24; }

.wa {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out; }
  .wa:hover {
    opacity: .8; }

.nav {
  display: flex;
  justify-content: flex-end; }
  .nav .menu {
    display: flex;
    justify-content: flex-end; }
  .nav a {
    color: #2b2828;
    font-size: 20px;
    font-family: Inter, sans-serif;
    transition: color 0.3s ease-out; }
    .nav a:hover {
      color: #e31e24; }

.navbat {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin: 0;
  cursor: pointer;
  color: #2b2828;
  transition: color 0.3s ease-out; }
  .navbat:hover {
    color: #e31e24; }
  .navbat.swiper-button-disabled {
    color: #bebebe; }
  .navbat__prev {
    transform: rotate(-180deg); }

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  .pagination a,
  .pagination span {
    width: 36px;
    height: 36px;
    text-align: center;
    border: 1px solid #2b2828;
    float: left;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 6px;
    transition: background-color, color 0.3s ease-out; }
  .pagination a.previouspostslink, .pagination a.nextpostslink {
    text-indent: -9999px;
    overflow: hidden;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-out; }
  .pagination a.previouspostslink:before, .pagination a.nextpostslink:before {
    content: " ";
    display: block;
    position: absolute;
    width: 20px;
    height: 14px;
    top: calc(50% - 7px);
    left: calc(50% - 10px);
    color: rgba(255, 255, 255, 0.8);
    background-size: contain;
    background-position: 50% 50%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAzMCAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI5LjQxMjUgMTMuNjYyNkwxOC4xNjI1IDI0LjkxMjZDMTcuOTg0OCAyNS4wNzgyIDE3Ljc0OTcgMjUuMTY4MyAxNy41MDY4IDI1LjE2NEMxNy4yNjQgMjUuMTU5NyAxNy4wMzIyIDI1LjA2MTMgMTYuODYwNSAyNC44ODk2QzE2LjY4ODcgMjQuNzE3OCAxNi41OTAzIDI0LjQ4NjEgMTYuNTg2IDI0LjI0MzJDMTYuNTgxNyAyNC4wMDAzIDE2LjY3MTkgMjMuNzY1MyAxNi44Mzc1IDIzLjU4NzZMMjYuNDg1OSAxMy45Mzc2SDEuMjVDMS4wMDEzNiAxMy45Mzc2IDAuNzYyOTAzIDEzLjgzODggMC41ODcwODcgMTMuNjYzQzAuNDExMjcyIDEzLjQ4NzIgMC4zMTI1IDEzLjI0ODcgMC4zMTI1IDEzLjAwMDFDMC4zMTI1IDEyLjc1MTQgMC40MTEyNzIgMTIuNTEzIDAuNTg3MDg3IDEyLjMzNzFDMC43NjI5MDMgMTIuMTYxMyAxLjAwMTM2IDEyLjA2MjYgMS4yNSAxMi4wNjI2SDI2LjQ4NTlMMTYuODM3NSAyLjQxMjU1QzE2LjY3MTkgMi4yMzQ4MyAxNi41ODE3IDEuOTk5NzggMTYuNTg2IDEuNzU2OUMxNi41OTAzIDEuNTE0MDIgMTYuNjg4NyAxLjI4MjI5IDE2Ljg2MDUgMS4xMTA1MkMxNy4wMzIyIDAuOTM4NzU5IDE3LjI2NCAwLjg0MDM2OSAxNy41MDY4IDAuODM2MDg0QzE3Ljc0OTcgMC44MzE3OTggMTcuOTg0OCAwLjkyMTk1MiAxOC4xNjI1IDEuMDg3NTVMMjkuNDEyNSAxMi4zMzc2QzI5LjU4ODEgMTIuNTEzMyAyOS42ODY3IDEyLjc1MTYgMjkuNjg2NyAxMy4wMDAxQzI5LjY4NjcgMTMuMjQ4NSAyOS41ODgxIDEzLjQ4NjggMjkuNDEyNSAxMy42NjI2WiIgZmlsbD0iIzJCMjgyOCIvPgo8L3N2Zz4K);
    background-repeat: no-repeat; }
  .pagination a.previouspostslink:before {
    transform: rotate(-90deg); }
  .pagination a:hover {
    background-color: #e31e24; }
  .pagination .current {
    background-color: #2b2828;
    color: #ffffff; }

.footer {
  background: #2b2828;
  padding: 48px 0;
  color: #fff;
  font-size: 20px;
  line-height: 24px; }
  .footer__form {
    border: 1px solid #2b2828;
    background: #fbfafa;
    box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.1);
    height: 585px;
    padding: 56px;
    margin-top: calc(532px - 585px); }
    @media (max-width: 767px) {
      .footer__form {
        padding: 30px 10px;
        height: auto;
        margin-top: -30px; } }
    .footer__formtitle {
      color: var(--black, #2b2828);
      font-family: Zekton;
      font-size: 26px;
      line-height: 1.3em;
      text-transform: uppercase;
      margin-bottom: 18px; }
      @media (max-width: 576px) {
        .footer__formtitle {
          font-size: 26px; } }
    .footer__formdesc {
      color: #757381;
      font-family: Inter;
      font-size: 20px;
      line-height: 1.3em;
      margin-bottom: 46px; }
      @media (max-width: 576px) {
        .footer__formdesc {
          font-size: 16px; } }
  .footer__img {
    position: absolute;
    left: calc(50% - 280px);
    width: 532px;
    height: 100%;
    object-fit: cover;
    z-index: 1; }
    @media (max-width: 992px) {
      .footer__img {
        overflow: hidden;
        max-width: 100dvw; } }
    @media (max-width: 767px) {
      .footer__img {
        left: 0;
        right: 0; } }
    .footer__img img {
      height: 100%;
      width: auto;
      max-width: unset; }
  .footer__items {
    position: relative;
    display: flex;
    gap: 10px 0;
    width: 100%;
    flex-direction: column;
    margin-bottom: 56px; }
    @media (max-width: 992px) {
      .footer__items {
        margin: 72px 0 0;
        max-width: 440px; } }
    @media (max-width: 767px) {
      .footer__items {
        margin: 198px 0 0 30px;
        width: calc(100% - 30px); } }
  .footer__item {
    display: inline-flex;
    padding: 20px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    background: #fbfafa; }
    .footer__item-first {
      position: relative; }
      .footer__item-first:before {
        width: 42px;
        height: 42px;
        content: " ";
        display: block;
        position: absolute;
        top: -10px;
        left: 36px;
        transform: rotate(45deg);
        z-index: 1;
        background: #fbfafa; }
  .footer__itemlabel {
    color: #2b2828;
    font-size: 16px;
    line-height: 1.3em;
    position: relative;
    z-index: 5; }
  .footer__itemgo {
    color: #2b2828;
    font-family: Zekton;
    font-size: 24px;
    line-height: 1.3em; }
  .footer__company {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3em; }
    @media (max-width: 992px) {
      .footer__company {
        text-align: left; } }
    @media (max-width: 576px) {
      .footer__company {
        font-size: 16px; } }
  .footer__copy {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3em;
    display: block;
    text-align: center; }
    @media (max-width: 992px) {
      .footer__copy {
        text-align: left;
        margin-top: 30px; } }
    @media (max-width: 576px) {
      .footer__copy {
        font-size: 16px;
        text-align: left; } }

.s__base-footer {
  background: #2b2828;
  height: 532px;
  position: relative; }
  @media (max-width: 992px) {
    .s__base-footer {
      height: auto;
      margin-top: 60px;
      padding-bottom: 60px; } }
  .s__base-footer .relative {
    position: relative;
    z-index: 10; }

.our-cookie {
  position: fixed;
  bottom: 24px;
  right: 32px;
  z-index: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 24px;
  display: none;
  max-width: calc(100% - 64px);
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  -webkit-box-shadow: 0 10px 50px rgba(59, 90, 150, 0.08);
  box-shadow: 0px 0px 25px 0px rgba(0, 5, 102, 0.15);
  border-radius: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none; }

.our-cookie__text {
  line-height: 18px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  color: #4f4f4f;
  padding-right: 24px; }

.our-cookie__text a {
  color: #00a99f;
  text-decoration: underline; }

.our-cookie__text a:hover {
  text-decoration: none; }

.our-cookie__close {
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block; }

.our-cookie__close:hover {
  opacity: 0.7; }

.main-content {
  padding: 0 0 96px 0; }

.main-view {
  padding: 172px 0 0; }

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-bottom: 24px;
  margin-top: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 33px;
  text-transform: uppercase;
  color: #2b2828; }

.content p,
.content ul,
.content ol {
  margin-bottom: 16px;
  font-weight: 300; }
  @media (max-width: 767px) {
    .content p,
    .content ul,
    .content ol {
      margin-bottom: 16px; } }

.content strong,
.content b {
  font-weight: bold; }

.content ol {
  list-style-type: decimal;
  margin-left: 20px;
  counter-reset: myCounter;
  margin: 0 0 24px; }
  @media (max-width: 992px) {
    .content ol {
      margin: 0 0 24px; } }
  .content ol li {
    list-style: none;
    padding-left: 26px;
    position: relative;
    margin: 0 0 8px 0; }
    .content ol li:not(:last-child) {
      margin: 0 0 8px; }
    .content ol li:before {
      counter-increment: myCounter;
      content: counter(myCounter) ".";
      color: #ffffff;
      display: inline-block;
      height: auto;
      display: block;
      top: 0px;
      left: 0;
      width: 26px;
      position: absolute;
      font-weight: bold;
      font-size: 16px;
      line-height: 24px;
      color: #e31e24; }

.content ul {
  margin: 0 0 24px; }
  .content ul li {
    padding-left: 26px;
    position: relative;
    margin: 0; }
    .content ul li:before {
      content: " ";
      display: block;
      top: 7px;
      left: 0;
      width: 10px;
      height: 10px;
      background: #e31e24;
      position: absolute; }
    .content ul li:not(:last-child) {
      margin: 0 0 8px; }

.content figure {
  margin-bottom: 40px; }
  @media (max-width: 992px) {
    .content figure {
      margin: 0 0 24px; } }
  .content figure img {
    max-width: 100%;
    height: auto; }
  .content figure figcaption {
    margin-top: 8px;
    display: block;
    width: 100%;
    text-align: center; }

.content blockquote {
  padding: 78px 50px;
  margin-bottom: 16px;
  position: relative;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.35em;
  color: #2b2828;
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.15);
  border-radius: 10px; }

.content table {
  table-layout: auto;
  width: 100%;
  margin-bottom: 32px; }
  .content table tr th {
    text-align: left;
    font-weight: bold; }
  .content table tr false td {
    background: #f9f9f9; }
  .content table tr:first-child td {
    background: rgba(224, 224, 224, 0.5);
    padding: 12px 0;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #151515;
    vertical-align: middle; }
  .content table tr td {
    padding: 12px 0;
    box-sizing: border-box;
    vertical-align: middle; }
    @media (max-width: 992px) {
      .content table tr td {
        width: 100px;
        min-width: 100px; } }
    .content table tr td:first-child {
      padding: 16px;
      max-width: 15%;
      max-width: 200px; }

.about__container {
  padding: 100px 0 150px; }

.archive__container-bottom {
  padding-bottom: 150px; }

.s__base-catalog {
  background: #fbfafa;
  padding: 100px 0; }
  @media (max-width: 1200px) {
    .s__base-catalog {
      padding: 70px 0; } }
  .s__base-catalog .title {
    margin: 0 0 50px;
    text-align: center; }
    @media (max-width: 767px) {
      .s__base-catalog .title {
        margin: 0 0 30px; } }

.s__base-order {
  padding: 100px 0;
  background: #fff; }
  @media (max-width: 992px) {
    .s__base-order {
      padding: 70px 0; } }
  @media (max-width: 767px) {
    .s__base-order {
      padding: 50px 0; } }
  .s__base-order .title {
    margin: 0 0 80px;
    text-align: center; }
    @media (max-width: 992px) {
      .s__base-order .title {
        margin: 0 0 47px; } }
    @media (max-width: 767px) {
      .s__base-order .title {
        margin: 0 0 31px; } }

.s__base-dop {
  padding: 100px 0;
  background: #e1e1e1; }
  @media (max-width: 767px) {
    .s__base-dop {
      padding: 50px 0; } }
  .s__base-dop .title {
    margin: 0;
    text-align: center; }

.s__base-which {
  padding: 100px 0;
  background: #fff; }
  .s__base-which .title {
    text-transform: uppercase;
    margin: 0; }
  @media (max-width: 992px) {
    .s__base-which {
      padding: 70px 0; } }
  @media (max-width: 767px) {
    .s__base-which {
      padding: 50px 0; } }

.s__base-reviews {
  padding: 100px 0;
  background: #fbfafa;
  position: relative; }
  @media (max-width: 992px) {
    .s__base-reviews {
      padding: 70px 0; } }
  @media (max-width: 767px) {
    .s__base-reviews {
      padding: 50px 0; } }

.s__base-faq {
  padding: 0 0 100px 0; }
  .s__base-faq .title {
    max-width: 400px;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2em;
    line-height: normal;
    text-transform: uppercase; }
    @media (max-width: 1200px) {
      .s__base-faq .title {
        font-size: 40px; } }
    @media (max-width: 992px) {
      .s__base-faq .title {
        max-width: unset;
        text-align: center;
        margin: 0 0 25px; } }
    @media (max-width: 576px) {
      .s__base-faq .title {
        font-size: 22px;
        margin: 0 0 20px; } }

.s__base-npk {
  height: 573px;
  position: relative;
  padding-top: 60px;
  background: url(../../dest/img/bg.png) no-repeat 50% 0; }
  @media (max-width: 992px) {
    .s__base-npk {
      height: 400px; } }
  @media (max-width: 576px) {
    .s__base-npk {
      height: auto;
      padding: 24px 0 50px; } }
  .s__base-npk .relative {
    z-index: 100;
    position: relative; }
  .s__base-npk .title {
    color: #fff;
    -webkit-text-stroke-width: 0.049748681485652924;
    -webkit-text-stroke-color: #fff;
    font-size: 146px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; }
    @media (max-width: 1300px) {
      .s__base-npk .title {
        font-size: 110px; } }
    @media (max-width: 992px) {
      .s__base-npk .title {
        font-size: 72px; } }
    @media (max-width: 767px) {
      .s__base-npk .title {
        font-size: 60px; } }
    @media (max-width: 576px) {
      .s__base-npk .title {
        font-size: 42px; } }

.s__base-yearswork {
  padding: 100px 0; }
  @media (max-width: 1200px) {
    .s__base-yearswork {
      padding: 70px 0; } }
  @media (max-width: 992px) {
    .s__base-yearswork {
      padding: 40px 0 60px; } }
  .s__base-yearswork .title {
    color: #2b2828;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3em;
    text-transform: uppercase;
    margin-bottom: 42px; }

.s__base-info {
  position: relative;
  background: url(../../dest/img/info.png) no-repeat 50% 0;
  height: 598px;
  padding-top: 54px; }
  @media (max-width: 992px) {
    .s__base-info {
      height: auto;
      background: none;
      padding: 0 0 50px; } }

.s__prod {
  position: relative;
  background: #fff;
  overflow-x: hidden; }

.info {
  padding: 68px 52px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #5e5e5e; }
  @media (max-width: 767px) {
    .info {
      background: none;
      padding: 0;
      color: var(--text-light-bg-prm); } }
  .info__item {
    color: #fff; }
    @media (max-width: 767px) {
      .info__item {
        color: var(--text-light-bg-prm); } }
    @media (max-width: 767px) {
      .info__item-last, .info__item-img {
        margin-left: 70px; } }
    @media (max-width: 576px) {
      .info__item-last, .info__item-img {
        margin: 0; } }
    .info__item-img {
      display: none; }
      @media (max-width: 767px) {
        .info__item-img {
          display: block; } }
  .info__title {
    font-family: Zekton;
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.3em; }
    @media (max-width: 767px) {
      .info__title {
        font-size: 20px;
        margin: 0 0 10px; } }
  .info__desc {
    font-size: 18px;
    line-height: 1.3em;
    font-weight: bold; }
    @media (max-width: 767px) {
      .info__desc {
        font-weight: 400;
        font-size: 16px; } }

.front__b01 {
  display: flex;
  justify-content: center;
  padding-top: 10px; }

.hto {
  display: flex;
  align-items: center;
  gap: 0; }
  @media (max-width: 992px) {
    .hto {
      flex-direction: column; } }
  .hto__item {
    display: flex;
    flex-direction: column;
    border-left: 1px dashed #e31e24;
    padding: 18px 24px 0 24px;
    width: 100%;
    height: 358px;
    position: relative; }
    .hto__item:first-child {
      background: #fbfafa; }
    @media (max-width: 992px) {
      .hto__item {
        height: 220px;
        border-left: 0px dashed #e31e24;
        border-top: 1px dashed #e31e24;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0 25px;
        padding: 0 119px 0 123px; } }
    @media (max-width: 576px) {
      .hto__item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 208px;
        padding: 31px 32px 0 89px; } }
  .hto__title {
    color: #2b2828;
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-top: 42px; }
    @media (max-width: 992px) {
      .hto__title {
        margin-top: 0px; } }
    @media (max-width: 576px) {
      .hto__title {
        margin-top: 15px; } }
  .hto__pos {
    margin-top: auto;
    color: #f18e91;
    font-family: Zekton;
    font-size: 36px;
    font-weight: 400;
    line-height: 142.4%;
    text-align: center; }
    @media (max-width: 992px) {
      .hto__pos {
        align-items: center;
        justify-content: flex-end; } }
  @media (max-width: 992px) {
    .hto__img {
      width: 60px;
      height: 60px; } }
  .hto__bottom {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 992px) {
      .hto__bottom {
        right: unset;
        top: 0;
        flex-direction: column;
        width: 45px; } }
    .hto__bottom div {
      border-left: 1px solid #bebebe; }
      @media (max-width: 992px) {
        .hto__bottom div {
          border-left: unset;
          border-top: 1px solid #bebebe; } }
    .hto__bottom > div,
    .hto__bottom > span {
      width: calc(100% / 3);
      height: 43px; }
      @media (max-width: 992px) {
        .hto__bottom > div,
        .hto__bottom > span {
          height: unset;
          width: 100%;
          height: calc(100% / 3);
          display: flex; } }

.faq__relative {
  position: relative; }

.faq__border {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  border-right: 1px solid #e31e24; }
  @media (max-width: 992px) {
    .faq__border {
      border-bottom: 1px solid #e31e24;
      border-right: 0px solid #e31e24;
      position: relative;
      width: 100%;
      top: unset;
      bottom: unset;
      left: unset;
      right: unset;
      margin: 0 0 30px; } }
  @media (max-width: 576px) {
    .faq__border {
      margin: 0 0 25px; } }
  .faq__border:before {
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    border-left: 1px solid #e31e24;
    border-top: 1px solid #e31e24;
    transform: rotate(-45deg);
    content: " ";
    position: absolute;
    top: 35px;
    left: -15px;
    transition: opacity 0.3s ease-out; }
    @media (max-width: 992px) {
      .faq__border:before {
        top: -9px;
        left: 75px;
        width: 20px;
        height: 20px;
        transform: rotate(-135deg); } }

.faq__item {
  border-bottom: 1px solid #2b2828; }
  .faq__item.active {
    background: #fbfafa; }

.faq__header {
  padding: 20px 28px 20px 50px;
  color: #2b2828;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 100%; }
  .faq__header.active {
    color: #e31e24; }
  @media (max-width: 992px) {
    .faq__header {
      padding: 20px; } }
  @media (max-width: 576px) {
    .faq__header {
      padding: 20px 10px;
      font-size: 16px; } }

.faq__desc {
  color: #2b2828;
  font-size: 16px;
  line-height: 1.2em;
  padding: 10px 28px 20px 50px; }
  @media (max-width: 992px) {
    .faq__desc {
      padding: 0 20px 20px; } }
  @media (max-width: 576px) {
    .faq__desc {
      padding: 0 10px 20px;
      font-size: 14px; } }

.faq.active {
  background: #fbfafa; }

.faq__cursor {
  min-width: 32px;
  width: 32px;
  height: 32px;
  display: flex;
  border-radius: 50%;
  border: 2px solid #2b2828;
  align-items: center;
  justify-content: center; }
  .faq__cursor span {
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: #2b2828;
    transition: transform 0.3s ease-out; }
    .faq__cursor span:nth-child(2) {
      transform: rotate(90deg);
      position: absolute; }
  .faq__cursor.active span:nth-child(2) {
    transform: rotate(0deg); }

.npk__intro {
  border-radius: 45px;
  background: rgba(0, 0, 0, 0.4);
  max-width: 772px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
  margin-bottom: 20px;
  padding: 15px 35px;
  box-sizing: border-box; }
  @media (max-width: 992px) {
    .npk__intro {
      font-size: 16px;
      margin-bottom: 42px; } }
  @media (max-width: 576px) {
    .npk__intro {
      padding: 15px 25px;
      font-size: 14px; } }

.npk__outro {
  margin-top: 30px;
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3em;
  max-width: 696px; }
  @media (max-width: 992px) {
    .npk__outro {
      max-width: unset;
      font-size: 20px; } }
  @media (max-width: 576px) {
    .npk__outro {
      max-width: unset;
      font-size: 20px; } }

.whichborder > div:nth-child(2n) {
  border-left: 1px solid #2b2828; }

.whichborder > div:nth-child(3),
.whichborder > div:nth-child(4) {
  border-top: 1px solid #2b2828;
  border-bottom: 1px solid #2b2828; }

@media (max-width: 767px) {
  .whichborder > div {
    border-top: 0px solid #2b2828 !important;
    border-right: 0px solid #2b2828 !important;
    border-left: 0px solid #2b2828 !important;
    border-bottom: 1px solid #2b2828 !important; } }

.scard {
  position: relative;
  color: #2b2828;
  transition: color 0.3s ease-out;
  display: flex;
  height: 100%;
  overflow: hidden;
  height: 264px; }
  @media (max-width: 576px) {
    .scard {
      height: 189px; } }
  .scard__first {
    display: flex;
    background: radial-gradient(circle at center, #414040 0, #545454 100%);
    padding: 24px 30px;
    height: 100%; }
    .scard__first .title {
      color: #ffffff; }
    @media (max-width: 576px) {
      .scard__first {
        padding: 24px 10px;
        height: 189px; } }
  .scard__img {
    opacity: 0;
    transition: opacity 0.3s ease-out; }
    @media (max-width: 1200px) {
      .scard__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        align-items: center;
        justify-content: center; } }
    @media (max-width: 767px) {
      .scard__img {
        display: none !important; } }
    .scard__img img {
      width: auto;
      height: 100%;
      max-width: unset; }
      @media (max-width: 576px) {
        .scard__img img {
          min-width: 100%;
          min-height: 100%; } }
      @media (max-width: 500px) {
        .scard__img img {
          min-width: unset;
          min-height: unset; } }
  .scard__inner {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    flex-direction: column;
    padding: 24px 30px; }
    @media (max-width: 576px) {
      .scard__inner {
        padding: 24px 10px; } }
  .scard__bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .scard__title {
    font-size: 32px;
    line-height: 40px;
    min-width: 496px; }
    @media (max-width: 1200px) {
      .scard__title {
        min-width: unset;
        width: 100%; } }
    @media (max-width: 992px) {
      .scard__title {
        font-size: 26px;
        line-height: 1.3em; } }
    @media (max-width: 576px) {
      .scard__title {
        font-size: 22px;
        line-height: 1.3em; } }
  .scard__pos {
    font-family: Zekton;
    line-height: 40px;
    font-size: 32px; }
  .scard__arr {
    color: #e31e24;
    transition: color 0.3s ease-out; }
  .scard:hover {
    color: #fff; }
    @media (max-width: 767px) {
      .scard:hover {
        color: #2b2828 !important; } }
    .scard:hover .scard__img {
      opacity: 1; }
    .scard:hover .scard__arr {
      color: #fff; }
      @media (max-width: 767px) {
        .scard:hover .scard__arr {
          color: #2b2828 !important; } }

.cprod {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; }
  @media (max-width: 576px) {
    .cprod {
      gap: 20px; } }
  .cprod__btn {
    display: flex;
    justify-content: center;
    margin-top: 40px; }
    @media (max-width: 576px) {
      .cprod__btn {
        margin-top: 30px;
        padding: 0 15px; } }
    @media (max-width: 576px) {
      .cprod__btn .button {
        width: 100%; } }
  .cprod__item {
    position: relative;
    padding: 40px 30px 30px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: calc(100% / 3 - 20px); }
    @media (max-width: 1200px) {
      .cprod__item {
        width: calc(100% / 2 - 20px); } }
    @media (max-width: 767px) {
      .cprod__item {
        width: 100%; } }
    .cprod__item-gray {
      background-color: #ccc; }
    .cprod__item:hover .cprod__icon {
      transform: rotate(45deg); }
  .cprod__icon {
    transition: transform 0.3s ease-out;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; }
  .cprod__title {
    font-size: 24px;
    font-family: Zekton;
    line-height: 1.3em; }
    @media (max-width: 992px) {
      .cprod__title {
        font-size: 20px; } }
    @media (max-width: 576px) {
      .cprod__title {
        font-size: 16px; } }
  .cprod__header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start; }
  .cprod__img {
    width: 288px;
    height: 270px;
    margin-bottom: 20px; }
    @media (max-width: 992px) {
      .cprod__img {
        width: 100%;
        height: 200px;
        background: #fff; } }
    .cprod__img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
      @media (max-width: 992px) {
        .cprod__img img {
          object-fit: contain; } }
      @media (max-width: 767px) {
        .cprod__img img {
          object-fit: cover; } }

.ctabs__content {
  border-top: 1px solid #e31e24;
  padding-top: 30px;
  position: relative; }

.ctabs__header {
  display: flex;
  gap: 0 30px;
  padding-bottom: 30px; }
  @media (max-width: 576px) {
    .ctabs__header {
      gap: 0 8px; } }

.ctabs__btn {
  padding: 20px;
  border: 1px solid #2b2828;
  font-size: 20px;
  line-height: 1.3em;
  cursor: pointer;
  position: relative;
  z-index: 10; }
  @media (max-width: 576px) {
    .ctabs__btn {
      padding: 15px 12px;
      font-size: 13px;
      width: calc(50% - 10px);
      text-align: center; } }
  .ctabs__btn:before {
    display: block;
    width: 30px;
    height: 30px;
    background: #fbfafa;
    border-left: 1px solid #e31e24;
    border-top: 1px solid #e31e24;
    transform: rotate(45deg);
    content: " ";
    position: absolute;
    left: calc(50% - 25px);
    top: calc(100% + 16px);
    transition: opacity 0.3s ease-out;
    opacity: 0; }
  .ctabs__btn.active {
    border-color: #e31e24; }
    .ctabs__btn.active:before {
      opacity: 1; }

@media (max-width: 1400px) {
  .main {
    padding-bottom: 70px; } }

@media (max-width: 767px) {
  .main {
    padding-bottom: 50px; } }

@media (max-width: 1400px) {
  .main__b {
    display: flex;
    justify-content: space-between;
    align-items: center; } }

@media (max-width: 767px) {
  .main__b {
    flex-wrap: wrap; } }

@media (max-width: 1400px) {
  .main .button {
    min-width: 300px; } }

@media (max-width: 767px) {
  .main .button {
    width: 100%; } }

.main__img {
  display: flex;
  position: relative; }
  @media (max-width: 1400px) {
    .main__img {
      margin: 0 0 30px; } }
  @media (max-width: 767px) {
    .main__img {
      margin: 0 0 20px; } }
  .main__img .main__logo {
    display: none; }
    @media (max-width: 1400px) {
      .main__img .main__logo {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px; } }
  .main__img img {
    width: 100%;
    height: auto; }

.main__logo {
  display: flex;
  justify-content: flex-end; }
  @media (max-width: 1400px) {
    .main__logo {
      display: none; } }

.main__title {
  font-size: 54px;
  line-height: 1.2em;
  font-family: Zekton;
  color: #2b2828;
  text-transform: uppercase; }
  @media (max-width: 1200px) {
    .main__title {
      font-size: 36px; } }
  @media (max-width: 767px) {
    .main__title {
      font-size: 26px; } }

.main__watermark {
  color: rgba(254, 254, 254, 0.67);
  font-size: 47px;
  position: absolute;
  display: inline-block;
  line-height: 1.3em;
  font-family: Zekton;
  right: 30px;
  bottom: 20px;
  z-index: 5;
  text-transform: uppercase; }
  @media (max-width: 576px) {
    .main__watermark {
      display: none !important; } }

.main__header {
  margin-bottom: 30px;
  margin-top: 40px; }
  @media (max-width: 1200px) {
    .main__header {
      margin: 40px 0 20px; } }

.main .fbadges {
  margin-bottom: 40px;
  padding-right: 24px; }
  @media (max-width: 1400px) {
    .main .fbadges {
      margin: 0; } }
  @media (max-width: 767px) {
    .main .fbadges {
      margin: 0 0 30px; } }
  .main .fbadges .fbadge {
    font-size: 24px;
    padding-left: 22px;
    position: relative;
    font-weight: 500;
    line-height: 1.3em; }
    @media (max-width: 767px) {
      .main .fbadges .fbadge {
        font-size: 18px; } }
    .main .fbadges .fbadge:before {
      content: " ";
      display: block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #e31e24;
      position: absolute;
      left: 0;
      top: 8px; }
      @media (max-width: 767px) {
        .main .fbadges .fbadge:before {
          top: 6px; } }
    .main .fbadges .fbadge:not(:last-child) {
      border-bottom: 1px solid #2b2828;
      padding-bottom: 15px;
      margin-bottom: 15px; }
      @media (max-width: 1400px) {
        .main .fbadges .fbadge:not(:last-child) {
          padding-bottom: 30px;
          margin-bottom: 30px; } }
      @media (max-width: 767px) {
        .main .fbadges .fbadge:not(:last-child) {
          padding-bottom: 10px;
          margin-bottom: 10px; } }

.dopps {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap; }

.dopp {
  width: 50%; }
  .dopp:first-child .dopp__box {
    background: #fff;
    max-width: 560px; }
    @media (max-width: 992px) {
      .dopp:first-child .dopp__box {
        background: transparent; } }
  .dopp-2, .dopp-4 {
    padding-left: 50px;
    border-left: 1px solid #bebebe; }
    @media (max-width: 992px) {
      .dopp-2, .dopp-4 {
        padding-left: 0;
        border: none;
        display: flex;
        justify-content: flex-end;
        padding-right: 16px; } }
    @media (max-width: 767px) {
      .dopp-2, .dopp-4 {
        padding-right: 0; } }
    @media (max-width: 767px) {
      .dopp-2 .dopp__img, .dopp-4 .dopp__img {
        transform: translateX(16px); } }
  @media (max-width: 992px) {
    .dopp-1, .dopp-3 {
      padding-left: 16px; } }
  @media (max-width: 767px) {
    .dopp-1, .dopp-3 {
      padding-left: 0; } }
  @media (max-width: 767px) {
    .dopp-1 .dopp__img, .dopp-3 .dopp__img {
      transform: translateX(-16px); } }
  @media (max-width: 992px) {
    .dopp-3 .dopp__img, .dopp-4 .dopp__img {
      order: 1; }
    .dopp-3 .dopp__title, .dopp-4 .dopp__title {
      order: 2; } }
  .dopp__center {
    width: 100%;
    gap: 0 50px;
    align-items: center;
    display: flex;
    margin: 20px 0; }
  .dopp__ctitle {
    text-align: center;
    font-family: Zekton;
    font-size: 48px;
    line-height: 1.2em;
    width: 421px;
    height: 174px; }
    @media (max-width: 992px) {
      .dopp__ctitle {
        font-size: 38px;
        width: 100%;
        height: auto; } }
    @media (max-width: 767px) {
      .dopp__ctitle {
        font-size: 26px;
        width: 100%;
        height: auto; } }
  .dopp__cline {
    width: 100%;
    height: 1px;
    background: #bebebe; }
    @media (max-width: 992px) {
      .dopp__cline {
        display: none; } }
  .dopp__box {
    height: 180px;
    padding: 46px 50px;
    box-sizing: border-box;
    display: flex;
    gap: 0 20px; }
    @media (max-width: 992px) {
      .dopp__box {
        width: 256px;
        height: unset;
        padding: 0;
        flex-direction: column; } }
    @media (max-width: 767px) {
      .dopp__box {
        width: calc(100% - 24px); } }
  .dopp__title {
    font-size: 24px;
    line-height: 1.3em; }
    @media (max-width: 992px) {
      .dopp__title {
        order: 1;
        font-size: 18px; } }
    @media (max-width: 767px) {
      .dopp__title {
        font-size: 14px; } }
  .dopp__img img {
    min-width: 50px;
    min-height: 50px; }
  @media (max-width: 992px) {
    .dopp__img {
      order: 2;
      margin: 10px auto; } }
  .dopp__imgin {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center; }
    @media (min-width: 992px) {
      .dopp__imgin {
        display: none; } }
    @media (max-width: 767px) {
      .dopp__imgin img {
        width: 260px; } }
    @media (max-width: 576px) {
      .dopp__imgin {
        width: 100%;
        height: auto; } }
    .dopp__imgin-2 {
      transform: rotate(180deg); }
    .dopp__imgin img {
      height: auto; }

@media (max-width: 992px) {
  .s__base-dop .container-xxl {
    max-width: 700px; } }

@media (max-width: 767px) {
  .s__base-dop .container-xxl {
    max-width: 380px; } }

.yearswork {
  display: flex;
  width: 100%;
  gap: 0 35px;
  position: relative; }
  @media (max-width: 992px) {
    .yearswork {
      flex-direction: column;
      align-items: flex-start; } }
  .yearswork-prod {
    flex-wrap: wrap;
    gap: 70px 35px; }
    .yearswork-prod .yearswork__box {
      width: calc(100% / 3 - 70px / 3); }
      @media (max-width: 992px) {
        .yearswork-prod .yearswork__box {
          width: 70%; } }
      @media (max-width: 767px) {
        .yearswork-prod .yearswork__box {
          width: calc(100% - 40px); } }
    @media (max-width: 767px) {
      .yearswork-prod .yearswork__desc {
        font-size: 14px; } }
  .yearswork__baloon {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    border: 2px solid #e31e24;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 20px;
    background: #fff;
    z-index: 10; }
    @media (max-width: 992px) {
      .yearswork__baloon {
        left: -40px; } }
    .yearswork__baloon span {
      width: 16px;
      height: 2px;
      border-radius: 2px;
      background: #2b2828;
      transition: transform 0.3s ease-out; }
      .yearswork__baloon span:nth-child(2) {
        transform: rotate(90deg);
        position: absolute; }
  .yearswork__timeline {
    position: absolute;
    top: 20px;
    left: 30px;
    right: 0;
    border-top: 1px solid #e31e24; }
    @media (max-width: 992px) {
      .yearswork__timeline {
        top: 0;
        bottom: 0;
        right: unset;
        left: 20px;
        border-top: 0px solid transparent;
        border-left: 1px solid #e31e24; } }
  .yearswork__box {
    position: relative;
    padding-top: 74px;
    width: calc(100% / 3); }
    @media (max-width: 992px) {
      .yearswork__box {
        width: 70%;
        margin-left: 40px;
        padding-top: 50px;
        padding-bottom: 20px; } }
    @media (max-width: 576px) {
      .yearswork__box {
        width: calc(100% - 40px); } }
    @media (max-width: 992px) {
      .yearswork__box:last-child {
        padding-bottom: 0; } }
  .yearswork__item {
    padding: 20px 40px;
    background: #fbfafa;
    color: #2b2828;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; }
    .yearswork__item:after {
      content: "";
      position: absolute;
      left: 20px;
      top: -39px;
      border: 20px solid transparent;
      border-bottom: 20px solid #fbfafa; }
  .yearswork__title {
    font-family: Zekton;
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.3em; }
  .yearswork__desc {
    font-size: 24px;
    line-height: 1.3em; }

.reviews__header {
  position: relative;
  margin: 0 0 40px; }
  @media (max-width: 576px) {
    .reviews__header {
      margin: 0 0 24px; } }
  .reviews__header .title {
    text-transform: uppercase;
    text-align: center;
    margin: 0; }
    @media (max-width: 576px) {
      .reviews__header .title {
        text-align: left;
        margin: 0; } }

.reviews__nav {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  display: inline-flex;
  gap: 0 20px;
  align-items: center; }

@media (max-width: 576px) {
  #slider_works {
    margin: 0 -10px; } }

.review {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 26px 40px;
  background: #ffffff; }
  @media (max-width: 992px) {
    .review {
      padding: 30px 10px; } }
  .review__header {
    border-bottom: 1px solid #2b2828;
    display: flex;
    align-items: center;
    width: 100%; }
  .review__head {
    min-width: 50%;
    flex-grow: 1; }
    @media (max-width: 576px) {
      .review__head {
        flex-grow: 1;
        padding-left: 10px; } }
  .review__title {
    font-family: Zekton;
    font-size: 24px;
    line-height: 1.3em;
    margin: 0 0 11px; }
    @media (max-width: 992px) {
      .review__title {
        font-size: 20px;
        margin: 0 0 3px; } }
  .review__desc {
    font-family: 20px;
    line-height: 1.3em; }
    @media (max-width: 576px) {
      .review__desc {
        font-size: 16px; } }
  .review__content {
    padding: 30px 0 0;
    font-size: 16px; }
    @media (max-width: 576px) {
      .review__content {
        padding: 20px 10px; } }
    .review__content p {
      margin: 0;
      padding: 0; }
  .review__img {
    height: 197px;
    border-top: 1px solid #2b2828;
    border-left: 1px solid #2b2828;
    border-right: 1px solid #2b2828;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; }
    @media (max-width: 992px) {
      .review__img {
        width: 90px;
        max-width: 90px;
        height: 65px;
        object-fit: contain;
        padding: 0; } }
    .review__img img {
      max-width: 100%;
      max-height: 100%; }

#slider_works .swiper-slide {
  padding: 12px; }

.prodsoft {
  margin: 0 0 12px; }
  .prodsoft a {
    display: inline-flex;
    gap: 0 10px;
    line-height: 24px;
    color: #e31e24;
    text-decoration: underline; }
    .prodsoft a:hover {
      text-decoration: none; }
    .prodsoft a:before {
      display: inline-flex;
      width: 24px;
      height: 24px;
      content: " "; }
  .prodsoft .icon-pdf:before {
    background: url(../../dest/img/icon-pdf.svg) no-repeat 50% 50%/contain; }
  .prodsoft .icon-zip:before {
    background: url(../../dest/img/icon-zip.svg) no-repeat 50 50%/contain; }
  .prodsoft .icon-msword:before {
    background: url(../../dest/img/icon-doc.svg) no-repeat 50 50%/contain; }
  .prodsoft .icon-vnd-ms-excel:before {
    background: url(../../dest/img/icon-xls.svg) no-repeat 50 50%/contain; }

.archive__container h2.title {
  margin: 40px 0; }

@media (max-width: 992px) {
  .title__container {
    padding: 0 0 40px;
    overflow: hidden; } }

.title__container .title {
  margin: 30px 0; }
  @media (max-width: 992px) {
    .title__container .title {
      font-size: 32px; } }
  @media (max-width: 767px) {
    .title__container .title {
      font-size: 20px; } }

@media (max-width: 576px) {
  .title__container .button {
    width: 100%; } }

.punkts {
  display: flex;
  flex-wrap: wrap;
  display: flex;
  gap: 50px 35px; }

.punkt {
  width: calc(100% / 3 - 70px / 3);
  background: #fbfafa;
  padding: 20px 40px;
  color: #2b2828;
  font-size: 20px;
  line-height: 24px; }

.teh {
  margin-top: 100px;
  margin-bottom: 50px; }
  @media (max-width: 992px) {
    .teh {
      margin-top: 50px; } }
  .teh__head {
    display: flex;
    flex-direction: column;
    gap: 60px; }
    @media (max-width: 992px) {
      .teh__head {
        gap: 30px 0; } }
    @media (min-width: 992px) {
      .teh__head .teh__view {
        display: none !important; } }
    .teh__head .har table {
      width: 100% !important; }
      @media (max-width: 992px) {
        .teh__head .har table {
          margin: 0; } }
  .teh__icon {
    color: #e31e24;
    position: absolute;
    top: 0;
    left: -40px;
    transition: transform 0.3s ease-out; }
    @media (max-width: 992px) {
      .teh__icon {
        left: 0px;
        position: relative;
        width: 36px;
        height: 36px;
        color: #2b2828;
        transform: rotate(90deg); } }
  .teh__label {
    transition: transform 0.3s ease-out;
    font-size: 40px;
    line-height: 48px;
    font-family: Zekton;
    text-transform: uppercase; }
    @media (max-width: 992px) {
      .teh__label {
        font-size: 24px;
        line-height: 1.3em; } }
    @media (max-width: 992px) {
      .teh__label br {
        display: none; } }
  .teh__item {
    color: #2b2828;
    transition: transform 0.3s ease-out;
    cursor: pointer;
    overflow: hidden;
    position: relative; }
    @media (max-width: 992px) {
      .teh__item {
        border: 1px solid #e31e24;
        padding: 4px;
        display: flex;
        gap: 0 10px;
        align-items: center; } }
    .teh__item.active {
      color: #e31e24; }
      .teh__item.active .teh__label {
        transform: translateX(60px); }
        @media (max-width: 992px) {
          .teh__item.active .teh__label {
            transform: translateX(0px); } }
      .teh__item.active .teh__icon {
        transform: translateX(40px); }
        @media (max-width: 992px) {
          .teh__item.active .teh__icon {
            transform: translateX(0px) rotate(0deg); } }
  @media (max-width: 992px) {
    .teh__views {
      display: none !important; } }

.mline__item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #bebebe;
  gap: 0 52px;
  padding: 20px 0; }

.mline__name {
  font-size: 16px;
  line-height: 19px;
  color: #2b2828;
  font-weight: bold;
  min-width: 200px; }

.mline__desc {
  font-size: 16px;
  line-height: 19px; }

.compl h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 30px; }

.compl ul {
  padding: 0;
  margin: 0 0 36px; }
  .compl ul li {
    font-size: 16px;
    line-height: 19px;
    padding-left: 28px;
    position: relative; }
    .compl ul li:not(:last-child) {
      margin-bottom: 15px; }
    .compl ul li:before {
      content: " ";
      width: 18px;
      height: 18px;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACSSURBVHgB3Y+xDYNADEVN0iRdiovSpkEylxReIZNkhGQEVmAi2ID2Oq6GKxgAYbgCBAcIOiS+5MKyn/wMcLyctyy9guD/EOKSG6Ntf1oD3oghM/8qAD0ZSt+nOUAiZoj4BFePiG41c3oX4loYk3RADfBt66OU0kPI6y9JSR5z3KpE1nkJGEEOWC4Bs7H+7g/7pQGpzjgaHWdl5wAAAABJRU5ErkJggg==) no-repeat 70% 50%;
      border: 1px solid #e31e24;
      border-radius: 50%; }

.har table {
  width: 66% !important;
  border-collapse: collapse;
  margin-bottom: 50px; }
  @media (max-width: 992px) {
    .har table {
      width: 100% !important; } }
  .har table tr td {
    font-size: 16px;
    line-height: 19px;
    border-bottom: 1px solid #bebebe;
    padding-top: 15px;
    padding-bottom: 4px; }
    .har table tr td:last-child {
      font-weight: bold;
      text-align: right; }

.s__prod .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center; }

.s__prod .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.s__prod .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto; }

.s__prod .swiper-slide {
  background-size: cover;
  background-position: center; }

.s__prod .mySwiper2 {
  height: 80%;
  width: 100%; }

.s__prod .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0; }

.s__prod .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer; }

.s__prod .mySwiper .swiper-slide-thumb-active {
  opacity: 1; }

.s__prod .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.back {
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
  padding: 8px 0;
  margin-bottom: 30px; }
  .back__item {
    display: inline-flex;
    gap: 0 12px;
    align-items: center;
    cursor: pointer; }

.card {
  margin-bottom: 1.5rem;
  display: flex;
  min-height: 15.75rem;
  position: relative; }
  .card__slide {
    width: 31.2rem; }
  .card__item {
    overflow: hidden;
    display: flex;
    width: 100%;
    position: relative; }
  .card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background-color: var(--light-gray); }
  .card__title {
    color: var(--text-light-bg-prm);
    font-size: 1rem;
    font-weight: 700;
    line-height: 150%;
    font-family: 'EB Garamond'; }
  .card__desc {
    color: var(--text-light-bg-prm);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 150%;
    display: none; }
  .card-classic {
    background: var(--text-dark-bg-prm);
    min-height: unset; }
    .card-classic .card__item {
      flex-direction: column; }
    .card-classic .card__box {
      position: relative;
      padding: 1.5rem; }
    .card-classic .card__desc {
      display: block; }

