@charset "UTF-8";
/**
пятница 16-00 до --19-10
**/
/***** FONTS *****/
@font-face {
  font-family: "Montserrat-Bold";
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Light";
  font-display: swap;
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Regular";
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/***** GENERAL ELEMENTS *****/
:root {
  --black: #17212b;
  --dark-green: #27271c;
  --green: #7a7053;
  --brown: #92411d;
  --dark-beige: #d2c0ae;
  --beige: #efd9c9;
  --main: #f3ebe3;
  --white: #fff;
  --line-color: #313c47;
  --text-secondary-color: #7f91a4;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
@media (max-width: 1525px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 1366px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 1080px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Montserrat-Regular";
  font-style: normal;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--white);
  background-color: #17212b;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
body.no-scroll {
  position: fixed;
}

aside {
  width: 280px;
  position: fixed;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 1.25rem !important;
  background-color: #242f3d;
  padding: 20px 28px;
  border-radius: 12px;
  z-index: 1000;
}
aside .info {
  margin-top: auto;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: var(--main);
  color: #92411d;
}

main {
  width: 100%;
  position: relative;
  padding: 0 3.5rem 1.5rem 360px;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 1.5rem !important;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.25rem;
  background-color: #242f3d;
  padding: 20px 28px;
  border-radius: 12px;
}
section.section-grafik {
  width: calc(50% - 1rem);
}
section.section-diagram {
  width: calc(25% - 1rem);
}
section.section-video {
  width: calc(25% - 1rem);
}
section.section-presence {
  width: calc(75% - 1rem);
}
section .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section .buttons button,
section .buttons a {
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--text-secondary-color);
}
section .buttons button svg,
section .buttons a svg {
  width: 1.25rem;
  height: auto;
}
section .buttons button:hover,
section .buttons a:hover {
  color: var(--white);
}

.divider {
  height: 1px;
  background-color: var(--line-color);
  margin: 0;
  border: none;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 540px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.md-hidden {
  display: none;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

@media (min-width: 992px) {
  /* Работает в Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color_1) transparent;
  }
  /* Работает в Chrome, Edge и Safari */
  *::-webkit-scrollbar {
    width: 0.3125rem;
    height: 0.1875rem;
  }
  *::-webkit-scrollbar-track {
    background: transparent;
    border-left: 1px solid #d4d7e7;
  }
  *::-webkit-scrollbar-thumb {
    background-color: var(--color_1);
    border-radius: 1.25rem;
  }
  *::-webkit-scrollbar-thumb:hover {
    background-color: #434356;
  }
}
input:-montserratnal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: transparent !important;
  color: fieldtext !important;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
}

a,
a:hover,
button:hover {
  transition: 0.4s;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

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

a:active,
a:hover,
a:focus {
  outline: 0;
  color: var(--brown);
  outline: none;
  outline-offset: 0;
  text-decoration: none;
}

a[role=button] {
  text-decoration: none;
}

figure {
  margin: 0;
}

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

svg,
svg:hover,
path,
polygon {
  transition: 0.05s;
}

svg:not(:root) {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-weight: normal;
  margin: 0;
}

b,
strong {
  font-family: "Montserrat-Bold";
  font-weight: normal;
}

dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

mark {
  background: none;
  font-weight: 600;
  color: red;
  margin-left: 0.3125rem;
}

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
  border: 0;
  border-top: 1px solid #f2f2f2;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
  outline-offset: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: poMontserrat;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 0.125rem;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@media (min-width: 280px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 100%;
    width: 100%;
  }
}
/*-----buttons----*/
.button {
  min-height: 2.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6875rem 1.6875rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-family: "Montserrat-Regular";
  font-size: 1.0625rem;
  line-height: 1;
  box-sizing: border-box;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 992px) {
  .button {
    min-height: 2.857rem;
    font-size: 0.857rem;
    line-height: 1;
  }
}
.button-global {
  color: var(--white);
  background-color: var(--brown);
}
.button-global:hover, .button-global:focus {
  color: var(--white);
  background-color: #742300;
}
.button-global:active {
  color: var(--white);
  background-color: #742300;
}
.button-global:disabled {
  color: var(--white);
  background-color: var(--grey);
}
.button-border {
  color: var(--brown);
  border-color: var(--brown);
  background-color: transparent;
}
.button-border:hover, .button-border:focus {
  color: var(--white);
  border-color: var(--brown);
  background-color: var(--brown);
}
.button-border:active {
  color: var(--white);
  border-color: var(--brown);
  background-color: var(--brown);
}
.button-border:disabled {
  color: var(--grey);
  background-color: var(--grey);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  background: transparent;
  border: none;
  font-family: "Montserrat-Regular";
  font-size: 1.0625rem;
  line-height: 1;
  text-decoration: underline;
  cursor: pointer;
}
.link:hover {
  text-decoration: none;
}
.link svg,
.link img {
  width: 1.5rem;
  height: auto;
}

/*-----title-----*/
.page-title {
  font-family: "Montserrat-Bold";
  font-size: 3.625rem;
  line-height: 1.1;
}
@media (max-width: 992px) {
  .page-title {
    font-size: 3.25rem;
  }
}
@media (max-width: 540px) {
  .page-title {
    font-size: 1.875rem;
  }
}

.section-title {
  font-family: "Montserrat-Bold";
  font-size: 1rem;
  line-height: 1.1;
}
@media (max-width: 680px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.entry-title,
.subtitle {
  font-family: "Montserrat-SemiBold";
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .entry-title,
.subtitle {
    font-size: 1.285rem;
  }
}

.text-small {
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (max-width: 680px) {
  .text-small {
    font-size: 0.857rem;
    line-height: 1.3;
  }
}

.text-link {
  font-family: "Montserrat-Bold";
  line-height: 1.1;
  letter-spacing: -0.03em;
}
@media (max-width: 680px) {
  .text-link {
    font-size: 0.857rem;
    line-height: 1;
  }
}

/***** BLOCKS GLOBAL *****/
/*----header-----*/
header {
  color: var(--white);
  background-color: #17212b;
  padding: 1rem 3.5rem 1rem 360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

aside .logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
aside .logo svg {
  width: 10.5rem;
}
aside .slogan {
  font-size: 14px;
  font-family: "Montserrat-SemiBold";
  color: #7f91a4;
}

/*----------navigation-------------*/
.navigation ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.navigation ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary-color);
  font-size: 14px;
}
.navigation ul li a.active {
  color: var(--white);
}
.navigation ul li a svg {
  min-width: 1rem;
  width: 1rem;
  height: auto;
}

/*-----breadcrumbs-----*/
.breadcrumbs {
  margin-left: -1rem;
  color: var(--text-secondary-color);
  font-size: 12px;
}
@media (max-width: 991px) {
  .breadcrumbs {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}
.breadcrumbs nav {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .breadcrumbs nav {
    flex-wrap: nowrap;
    width: auto !important;
  }
  .breadcrumbs nav span,
.breadcrumbs nav a {
    flex-wrap: nowrap;
    width: auto !important;
    display: flex;
    align-items: center;
  }
}
.breadcrumbs span {
  display: inline-flex;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .breadcrumbs span {
    margin: 0;
  }
}
.breadcrumbs span span:after {
  content: "";
  width: 3px;
  height: 90%;
  background-color: var(--grey-light);
  display: flex;
}
.breadcrumbs span span.breadcrumb_last {
  margin: 0 1rem;
}
.breadcrumbs span span.breadcrumb_last:after {
  display: none;
}
.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  margin: 0 1rem;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .breadcrumbs a {
    margin: 0 0.25rem;
  }
}
.breadcrumbs a:hover {
  color: var(--brown);
  text-decoration: none;
}

.forma {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.25rem;
}
.forma .form-row-wide {
  width: 100%;
}
.forma .form-row-first,
.forma .form-row-last {
  width: calc(50% - 0.125rem);
}
@media (max-width: 540px) {
  .forma .form-row-first,
.forma .form-row-last {
    width: 100%;
  }
}
.forma input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--light-grey-tranparent-40);
  height: 2.5rem;
  padding: 0.5rem 1rem;
  color: var(--white);
}
.forma input::-webkit-input-placeholder {
  color: var(--light-grey);
}
.forma input::-moz-placeholder {
  color: var(--light-grey);
}
.forma input:-moz-placeholder {
  color: var(--light-grey);
}
.forma input:-ms-input-placeholder {
  color: var(--light-grey);
}
.forma input:focus::-webkit-input-placeholder {
  color: transparent;
}
.forma input:focus::-moz-placeholder {
  color: transparent;
}
.forma input:focus:-moz-placeholder {
  color: transparent;
}
.forma input:focus:-ms-input-placeholder {
  color: transparent;
}
.forma .form-checkbox {
  display: inline-flex;
}
.forma .form-checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.forma .form-checkbox span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  gap: 1.25rem;
  line-height: 1;
  cursor: poMontserrat;
}
.forma .form-checkbox span:before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.forma .form-checkbox input:checked + span:before {
  background-color: rgb(221, 30, 59);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  color: #fff;
}
.forma .form-checkbox input:disabled + span {
  cursor: default;
  opacity: 0.5;
}
.forma .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
  width: 8rem;
  padding: 0 1.5rem;
}
.forma .intl-tel-input .selected-flag .iti-arrow {
  position: absolute;
  top: 50%;
  margin-top: -0.125rem;
  right: 0.375rem;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #555;
}
.forma .country-list {
  color: #232636;
}

.wpcf7-radio {
  display: flex;
  gap: 1rem 1.5rem;
}
.wpcf7-radio .wpcf7-list-item {
  padding: 0;
  margin: 0;
}
.wpcf7-radio .wpcf7-list-item label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.wpcf7-radio .wpcf7-list-item label span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  color: #fff;
  font-size: 1.25rem;
}
.wpcf7-radio .wpcf7-list-item label span:before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 100%;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 68% 68%;
}
.wpcf7-radio .wpcf7-list-item label input:checked + span::before {
  border-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.wpcf7-acceptance {
  display: flex;
  margin: 1rem 0;
  gap: 1rem 1.5rem;
}
.wpcf7-acceptance .wpcf7-list-item {
  padding: 0;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.wpcf7-acceptance .wpcf7-list-item label span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  color: #fff;
  font-size: 1.25rem;
}
.wpcf7-acceptance .wpcf7-list-item label span:before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25rem;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70% 70%;
}
.wpcf7-acceptance .wpcf7-list-item label input:checked + span::before {
  border-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 0.75em;
  font-weight: normal;
  display: block;
}

.wpcf7-response-output {
  display: none !important;
}

.atributes {
  margin: 0.625rem 0;
  padding: 0;
  list-style: none;
}
.atributes li {
  padding: 0.3125rem 0;
  border-bottom: 1px solid var(--light-grey-tranparent-40);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.atributes li span:first-child {
  color: var(--grey-transparent-90);
  opacity: 0.5;
}
.atributes li:first-child {
  border-top: 1px solid var(--light-grey-tranparent-40);
}

/*------ modal ------*/
.state {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.state.active {
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(0.625rem);
}

.state-box {
  width: 31.25rem;
  min-height: 26.25rem;
  padding: 3.75rem;
  max-width: 90%;
  max-height: 90%;
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--background-grey);
}
.state-box.review-modal {
  width: 37.5rem;
  padding: 3.75rem 3.75rem;
  overflow-y: auto;
}
.state-box.review-modal .text-review {
  max-height: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.state-box.review-modal .text-review p:first-child {
  margin-top: 0;
}
.state-box.review-modal .text-review p:last-child {
  margin-bottom: 0;
}
.state-box.review-modal .text-review .author {
  color: var(--grey-transparent-90);
}
.state-box.about-modal {
  width: 62.5rem;
  padding: 3.75rem 6.25rem;
  overflow-y: auto;
}
.state-box.about-modal .text-about {
  max-height: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.state-box.about-modal .text-about .text {
  max-width: 35.625rem;
  margin: 0.9375rem auto;
  text-align: center;
}
.state-box.about-modal .text-about .section-request {
  margin: 0;
  padding: 0;
}
.state-box.about-modal .text-about .section-request .infobox {
  gap: 1rem;
}
.state-box.about-modal .text-about .section-request .section-title {
  font-family: "Montserrat-SemiBold";
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .state-box.about-modal .text-about .section-request .section-title {
    font-size: 1.285rem;
  }
}
.state-box.about-modal .text-about .section-request .block,
.state-box.about-modal .text-about .section-request .image {
  width: calc(50% - 0.75rem);
}
@media (max-width: 992px) {
  .state-box.about-modal .text-about .section-request .block,
.state-box.about-modal .text-about .section-request .image {
    width: 100%;
  }
}
.state-box.call-modal {
  width: 51.6875rem;
  padding: 3.75rem 6.25rem;
  overflow-y: auto;
  background: var(--dark-grey);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.state-box .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 1rem;
  height: 1rem;
  cursor: poMontserrat;
}
@media (max-width: 30rem) {
  .state-box .close {
    top: 1.5rem;
    right: 1rem;
  }
}
.state-box .close:before, .state-box .close:after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.125rem;
  background: #6d6d6d;
  position: absolute;
  transition: 0.6s;
  top: 0.3rem;
}
.state-box .close:before {
  transform: rotate(45deg);
}
.state-box .close:after {
  transform: rotate(-45deg);
}
.state-box .close:hover:before, .state-box .close:hover:after {
  background-color: var(--orange);
}
.state-box .button {
  width: 100%;
}

.to-state {
  cursor: poMontserrat;
}

.carousel {
  position: relative;
}
.carousel .swiper-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (max-width: 680px) {
  .carousel .swiper-nav {
    display: none;
  }
}
@media (max-width: 680px) {
  .carousel .swiper {
    overflow: visible;
  }
}
.carousel .swiper-button-prev,
.carousel .swiper-button-next {
  position: static;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: transparent;
  padding: 0;
  color: var(--white);
  transition: 0.3s;
  cursor: pointer;
}
.carousel .swiper-button-prev:after,
.carousel .swiper-button-next:after {
  display: none;
}
.carousel .swiper-button-prev:hover,
.carousel .swiper-button-next:hover {
  color: var(--brown);
  transition: 0.3s;
}
.carousel .swiper-button-prev svg,
.carousel .swiper-button-next svg {
  width: 1rem;
  height: auto;
}
.carousel .swiper-button-prev {
  transform: rotate(-90deg);
}
.carousel .swiper-button-next {
  transform: rotate(90deg);
}

footer {
  position: relative;
  color: var(--white);
  background-color: #17212b;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    margin-bottom: 0;
    gap: 2.857rem;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 480px) {
  .footer-bottom {
    align-items: flex-end;
  }
}

.widget {
  width: 11.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.widget .widget-title {
  font-family: "Montserrat-Bold";
}
.widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.widget ul li a {
  font-family: "Montserrat-Light";
  font-size: 0.9375rem;
  line-height: 1.3;
}

.contacts {
  width: 16.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-family: "Montserrat-Light";
  font-size: 0.9375rem;
  line-height: 1.3;
}
.contacts p {
  margin: 0;
}
.contacts address {
  font-style: normal;
}

.copy {
  width: 17.1875rem;
  font-family: "Montserrat-Light";
  font-size: 0.9375rem;
  line-height: 1.3;
}
.copy p {
  margin: 0;
}

.social {
  display: flex;
  gap: 2.8125rem;
}
.social a {
  width: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social a svg,
.social a img {
  width: 100%;
  height: auto;
}
.social a:hover {
  background: var(--light-grey);
}

.toggle-top {
  width: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  background: var(--brown);
  color: var(--main);
  cursor: pointer;
}
.toggle-top:hover {
  background: var(--green);
  color: var(--white);
}
.toggle-top svg {
  width: 0.75rem;
  height: auto;
}

article h1,
article h2,
article h3,
article h4,
article h5 {
  margin: 2.5rem 0 1rem;
  width: 100%;
  font-family: "Montserrat-Bold";
}
article h1:first-child,
article h2:first-child,
article h3:first-child,
article h4:first-child,
article h5:first-child {
  margin-top: 0;
}
article h1:last-child,
article h2:last-child,
article h3:last-child,
article h4:last-child,
article h5:last-child {
  margin-bottom: 0;
}
article h1 {
  margin-top: 0;
  font-size: 2.5rem;
  line-height: 1.1;
}
article h2 {
  font-size: 2rem;
  line-height: 1.4;
}
article h3 {
  font-size: 1.5rem;
}
article h4 {
  font-size: 1.25rem;
}
article p {
  margin: 1.2em 0;
  width: 100%;
}
article p:first-child {
  margin-top: 0;
}
article p:last-child {
  margin-bottom: 0;
}
article b,
article strong {
  font-family: "Montserrat-SemiBold";
}
article a {
  color: inherit;
  text-decoration: underline;
}
article a:hover {
  text-decoration: none;
}
article ul {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 4.5em;
  width: 100%;
  font-size: 0.9375rem;
}
article ul li {
  padding-left: 1.5rem;
  margin: 1.4375rem 0;
  position: relative;
}
article ul li:before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: var(--brown);
  border-radius: 0.125rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
article ol {
  list-style: decimal;
  padding: 0 2rem;
  margin: 1.5em 0 1.5em;
  width: 100%;
}
article ol li {
  margin: 0.5rem 0;
  display: list-item;
}
article blockquote {
  width: 100%;
  margin: 1.5em 0;
  padding: 1.875rem 4.375rem;
  background: #fff;
  position: relative;
  border-left: 0.25rem solid var(--brown);
}
@media (max-width: 640px) {
  article blockquote {
    padding: 1.5rem 1rem;
  }
}
article blockquote p {
  font-style: italic;
  margin: 0;
}
article blockquote cite {
  text-align: right;
  font-size: 1rem;
  color: var(--grey);
}
article .wp-block-image {
  margin: 1.5em 0;
}
article .wp-block-table {
  margin: 1.5em 0;
  padding: 1.875rem 2.8125rem;
  background: #fff;
  border-radius: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  overflow-x: auto;
}
@media (max-width: 640px) {
  article .wp-block-table {
    padding: 1.5rem 1.5rem 3rem;
  }
}
article .wp-block-table .wp-element-caption {
  order: 1;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
article .wp-block-table table {
  order: 2;
}
@media (max-width: 992px) {
  article .wp-block-table {
    overflow-x: auto;
    padding-bottom: 0.9375rem;
    display: flex;
    justify-content: flex-start;
  }
  article .wp-block-table table {
    min-width: 45rem;
    width: 45rem;
  }
  article .wp-block-table table th,
article .wp-block-table table td {
    padding: 1rem 0;
    font-size: 1rem;
  }
}
@media screen and (max-width: 900px) {
  article {
    margin-bottom: 2rem;
  }
}

table {
  width: 100%;
}
table th {
  font-weight: normal;
  text-align: left;
  padding: 0.9375rem 0;
  color: #7a798a;
  font-weight: normal;
  border-top: 1px solid rgba(206, 206, 211, 0.24);
}
@media (max-width: 480px) {
  table th {
    padding: 1rem;
    font-size: 1rem;
  }
}
table td {
  border-top: 1px solid rgba(206, 206, 211, 0.24);
  padding: 0.9375rem 0;
}
@media (max-width: 480px) {
  table td {
    padding: 1rem;
    font-size: 1rem;
  }
}
table td.woocommerce-product-attributes-item__label {
  width: 18.75rem;
}
@media (max-width: 480px) {
  table td.woocommerce-product-attributes-item__label {
    width: 10rem;
  }
}
table td p {
  margin: 0;
}

/***** Sections *****/
.table-filter {
  display: flex;
  gap: 2rem;
}
.table-filter .label {
  width: 100%;
  font-family: "Montserrat-SemiBold";
  color: #7f91a4;
}
.table-filter .block {
  min-width: 200px;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.filter-input {
  width: 100%;
  min-height: 2.5rem;
  background: rgba(49, 60, 71, 0.5);
  border: 1px solid var(--line-color);
  border-radius: 12px;
  color: var(--white);
  outline: none;
  padding: 0.5rem 1rem;
}

label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-input {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--line-color);
  border-radius: 0.25rem;
  background-color: rgba(49, 60, 71, 0.5);
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 0;
}

.checkbox-input:checked {
  background-color: rgba(49, 60, 71, 0.5);
  border-color: var(--line-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.checkbox-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkbox-input:disabled + span {
  opacity: 0.5;
  cursor: not-allowed;
}

.select2-container--default .select2-selection--single {
  background-color: rgba(49, 60, 71, 0.5);
  border: 1px solid var(--line-color);
  border-radius: 4px;
}

.select2-container {
  width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--white);
  line-height: 1;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding: 0.5rem 2rem 0.5rem 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 2.5rem;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-dropdown {
  color: var(--black);
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #7f91a4;
  color: var(--black);
}

.chart-container {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}

.labels-container {
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px;
}

.label-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.color-indicator {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 10px;
  display: inline-block;
}

.chart-wrapper {
  width: 100%;
  height: 200px;
  margin: 0 auto;
}

.tech-table {
  border: none;
}
.tech-table th, .tech-table td {
  width: 12.1951219512%;
  font-size: 14px;
  padding: 5px;
}
.tech-table th:first-child, .tech-table td:first-child {
  width: 40px !important;
}
.tech-table th {
  font-family: "Montserrat-SemiBold";
  color: #7f91a4;
}

/* Бейджи для категорий и статусов */
.category-badge, .status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.category-badge {
  background-color: #dbeafe;
  color: #1e40af;
}

.status-badge {
  background-color: #f0fdf4;
  color: #166534;
}

/* Спиннер загрузки */
.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.timeline-container {
  align-items: start;
}

.timeline-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.shift-info h4,
.time-summary h4 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #ffffff;
}

.shift-info p,
.time-summary p {
  margin: 8px 0;
  color: #cccccc;
  font-size: 14px;
}

.time-summary p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.employees-table-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.employees-table-container h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 18px;
}

.employees-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
}

.employees-table th {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.employees-table td {
  padding: 10px 15px;
  color: #cccccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.employees-table tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.employees-table tr:last-child td {
  border-bottom: none;
}

.no-data {
  text-align: center;
  padding: 40px;
  color: #888;
  font-size: 16px;
}

#myTimelineChart {
  width: 100% !important;
  height: 100% !important;
}

.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.timeline-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}

.back-button {
  background: #6c757d;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.back-button:hover {
  background: #5a6268;
}

.timeline-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.shift-info, .time-summary {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.shift-info h4, .time-summary h4 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #ffffff;
}

.shift-info p, .time-summary p {
  margin: 8px 0;
  color: #cccccc;
  font-size: 14px;
}

.time-summary p {
  display: flex;
  align-items: center;
  gap: 8px;
}

/***** Pages *****/
/* Стили для модального окна таймлайна */
.modal-overlay {
  backdrop-filter: blur(5px);
}

.modal-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.close-modal:hover {
  background: rgba(255, 255, 255, 0.1);
}

.timeline-segment:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .modal-content {
    margin: 10px;
    padding: 20px;
  }
  .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .day-stats {
    flex-direction: column;
    gap: 5px !important;
  }
  .timeline-legend {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px !important;
  }
}
/* Добавьте в ваш CSS */
.timeline-segment {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

.timeline-segment:hover {
  opacity: 0.8 !important;
  transform: scaleY(1.1) !important;
  z-index: 10 !important;
}