@charset "UTF-8";
:root {
  --content-container: 1340px;
  --content-padding: calc((100vw - var(--content-container)) / 2);
  --content-padding-top: 96px;
  --header-top-height: 60px;
  --header-middle-height: 80px;
  --header-height: calc(var(--header-top-height) + var(--header-middle-height));
}
@media (max-width: 767.99px) {
  :root {
    --content-padding-top: 48px;
    --header-top-height: 0;
    --header-middle-height: 48px;
  }
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Medium.woff2") format("woff2"), url("../fonts/Lato-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-ExtraBold.woff2") format("woff2"), url("../fonts/Lato-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Lato", sans-serif;
}

/* Minimal reset / normalize */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

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

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

blockquote,
figure {
  margin: 0;
}

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

:root {
  --input-text-color: #222;
  --input-placeholder-text-color: #222;
  --input-background-color: #fff;
  --input-border-color: #777;
  --input-border-focused-color: #D99728;
  --checkbox-text-color: #222;
  --checkbox-background-color: #fff;
  --checkbox-border-color: #999;
  --checkbox-icon-color: #222;
  --button-text-color: #fff;
  --button-background-color: #FC5A0A;
  --button-border-color: #FC5A0A;
  --button-hover-text-color: #fff;
  --button-hover-background-color: rgba(252, 90, 10, 0.7);
  --button-hover-border-color: rgba(252, 90, 10, 0.7);
  --button-disabled-text-color: #aaa;
  --button-disabled-background-color: #666;
  --button-disabled-border-color: #666;
  --error-color: red;
}

.wpcf7 {
  display: block;
  position: relative;
}
.wpcf7 * {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-text {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  color: var(--input-text-color);
  font-size: 14px;
  font-weight: 400;
  background: var(--input-background-color);
  border-radius: 8px;
  border: 1px solid var(--input-border-color);
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-text:focus {
  border-color: var(--input-border-focused-color);
  outline: none;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-text::placeholder {
  color: var(--input-placeholder-text-color);
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea {
  display: block;
  width: 100%;
  height: 120px;
  padding: 8px 16px;
  color: var(--input-text-color);
  font-size: 14px;
  font-weight: 400;
  background: var(--input-background-color);
  border-radius: 8px;
  border: 1px solid var(--input-border-color);
  resize: none;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea:focus {
  border-color: var(--input-border-focused-color);
  outline: none;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea::placeholder {
  color: var(--input-placeholder-text-color);
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance {
  display: block;
  padding-top: 8px;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance > .wpcf7-list-item {
  margin: 0;
  padding: 0;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label > .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 52px;
  min-height: 24px;
  color: var(--checkbox-text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label > .wpcf7-list-item-label a {
  color: inherit;
  text-decoration: underline;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label > .wpcf7-list-item-label a:hover {
  text-decoration: none;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label > .wpcf7-list-item-label:before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--checkbox-background-color);
  border: 1px solid var(--checkbox-border-color);
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label > .wpcf7-list-item-label:after {
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: var(--checkbox-icon-color);
  opacity: 0;
  mask: url("../img/checkbox.svg") no-repeat center/100% auto;
  -webkit-mask: url("../img/checkbox.svg") no-repeat center/100% auto;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  margin: 6px 0 0 0;
  padding: 0;
  color: var(--error-color);
  font-size: 12px;
  line-height: 140%;
}
.wpcf7 .wpcf7-form .wpcf7-spinner {
  display: none !important;
}
.wpcf7 .wpcf7-form .wpcf7-submit {
  display: block;
  box-sizing: border-box;
  padding: 0 40px;
  width: 100%;
  height: 48px;
  color: var(--button-text-color);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 115%;
  text-transform: uppercase;
  border-radius: 8px;
  background: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.wpcf7 .wpcf7-form .wpcf7-submit:hover {
  color: var(--button-hover-text-color);
  background: var(--button-hover-background-color);
  border: 1px solid var(--button-hover-border-color);
}
.wpcf7 .wpcf7-form .wpcf7-submit:disabled {
  color: var(--button-disabled-text-color);
  background: var(--button-disabled-background-color);
  border: 1px solid var(--button-disabled-border-color);
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 8px 0 0;
  font-size: 12px;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid;
  z-index: 5;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}
@media (max-width: 767.99px) {
  .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-text {
    height: 12.2222222222vw;
    padding: 0 3.8888888889vw;
    font-size: 3.8888888889vw;
    border-radius: 1.6666666667vw;
  }
  .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea {
    height: 27.7777777778vw;
    padding: 2.2222222222vw 3.8888888889vw;
    font-size: 3.8888888889vw;
    border-radius: 1.6666666667vw;
  }
  .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label {
    gap: 4.4444444444vw;
  }
  .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label > .wpcf7-list-item-label {
    padding-left: 10vw;
    font-size: 3.6111111111vw;
  }
  .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label > .wpcf7-list-item-label:before, .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance label > .wpcf7-list-item-label:after {
    width: 6.1111111111vw;
    height: 6.1111111111vw;
  }
  .wpcf7 .wpcf7-form .wpcf7-submit {
    height: 12.2222222222vw;
    padding: 0 6.6666666667vw;
    font-size: 3.6111111111vw;
    border-radius: 1.6666666667vw;
  }
}

.tp {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.tp > *:first-child {
  margin-top: 0 !important;
}
.tp > *:last-child {
  margin-bottom: 0 !important;
}
.tp h1, .tp h2, .tp h3, .tp h4, .tp h5, .tp h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}
.tp h1 {
  font-size: 36px;
  margin: 40px 0 20px;
}
.tp h2 {
  font-size: 30px;
  margin: 36px 0 18px;
}
.tp h3 {
  font-size: 24px;
  margin: 32px 0 16px;
}
.tp h4 {
  font-size: 20px;
  margin: 28px 0 14px;
}
.tp h5 {
  font-size: 18px;
  margin: 24px 0 12px;
}
.tp h6 {
  font-size: 16px;
  margin: 20px 0 10px;
}
.tp p {
  margin: 0 0 16px;
}
.tp a {
  color: #0066cc;
  text-decoration: underline;
  transition: color 0.2s;
}
.tp a:hover {
  color: #004999;
}
.tp strong, .tp b {
  font-weight: 700;
}
.tp em, .tp i {
  font-style: italic;
}
.tp u {
  text-decoration: underline;
}
.tp s, .tp strike, .tp del {
  text-decoration: line-through;
}
.tp mark {
  background-color: #fff3a8;
  padding: 1px 4px;
}
.tp sup {
  font-size: 12px;
  vertical-align: super;
}
.tp sub {
  font-size: 12px;
  vertical-align: sub;
}
.tp abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}
.tp ul, .tp ol {
  margin: 0 0 20px;
  padding-left: 30px;
}
.tp ul {
  list-style: disc;
}
.tp ul ul {
  list-style: circle;
}
.tp ul ul ul {
  list-style: square;
}
.tp ol {
  list-style: decimal;
}
.tp ol ol {
  list-style: lower-alpha;
}
.tp ol ol ol {
  list-style: lower-roman;
}
.tp li {
  margin-bottom: 6px;
}
.tp li:last-child {
  margin-bottom: 0;
}
.tp li > ul,
.tp li > ol {
  margin-top: 6px;
  margin-bottom: 0;
}
.tp dl {
  margin: 0 0 20px;
}
.tp dt {
  font-weight: 700;
  margin-bottom: 4px;
}
.tp dd {
  margin: 0 0 12px 20px;
}
.tp blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid #0066cc;
  background: #f7f9fc;
  font-style: italic;
  color: #555;
}
.tp blockquote p:last-child {
  margin-bottom: 0;
}
.tp blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-style: normal;
  color: #888;
}
.tp blockquote cite::before {
  content: "— ";
}
.tp hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 32px 0;
}
.tp img {
  max-width: 100%;
  height: auto;
  display: block;
}
.tp p > img {
  margin: 0;
}
.tp .alignleft {
  float: left;
  margin: 6px 28px 12px 0;
}
.tp .alignright {
  float: right;
  margin: 6px 0 12px 28px;
}
.tp .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.tp .alignnone {
  display: block;
  margin-bottom: 20px;
}
.tp .alignwide {
  margin-left: -40px;
  margin-right: -40px;
  max-width: calc(100% + 80px);
}
.tp .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}
.tp .wp-caption {
  max-width: 100%;
  margin-bottom: 20px;
}
.tp .wp-caption img {
  display: block;
  width: 100%;
}
.tp .wp-caption.alignleft {
  margin: 6px 24px 12px 0;
}
.tp .wp-caption.alignright {
  margin: 6px 0 12px 24px;
}
.tp .wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.tp .wp-caption-text,
.tp figcaption {
  font-size: 13px;
  line-height: 1.4;
  color: #777;
  padding-top: 8px;
  text-align: center;
}
.tp figure {
  margin: 0 0 20px;
}
.tp figure img {
  display: block;
  width: 100%;
}
.tp .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
.tp .gallery .gallery-item {
  flex: 1 1 auto;
  text-align: center;
}
.tp .gallery img {
  display: block;
  width: 100%;
}
.tp .gallery .gallery-caption {
  font-size: 13px;
  color: #777;
  padding-top: 6px;
}
.tp table {
  width: 100%;
  margin: 0 0 24px;
  border: 1px solid #ddd;
  font-size: 15px;
}
.tp th, .tp td {
  padding: 10px 14px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.tp th {
  font-weight: 700;
  background: #f5f5f5;
  color: #1a1a1a;
}
.tp thead th {
  border-bottom-width: 2px;
}
.tp tbody tr:nth-child(even) {
  background: #fafafa;
}
.tp code, .tp kbd, .tp samp {
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
}
.tp pre {
  margin: 0 0 24px;
  padding: 18px 20px;
  background: #2d2d2d;
  color: #f8f8f2;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: auto;
  border-radius: 4px;
}
.tp pre code {
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
.tp address {
  margin: 0 0 20px;
  font-style: italic;
}
.tp::after {
  content: "";
  display: table;
  clear: both;
}
.tp iframe {
  max-width: 100%;
  margin-bottom: 20px;
}
.tp .wp-block-embed,
.tp .wp-block-video {
  margin: 0 0 24px;
}
.tp .wp-block-embed iframe,
.tp .wp-block-embed video,
.tp .wp-block-video iframe,
.tp .wp-block-video video {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 767.99px) {
  .tp {
    font-size: 15px;
  }
  .tp h1 {
    font-size: 26px;
    margin: 28px 0 14px;
  }
  .tp h2 {
    font-size: 22px;
    margin: 24px 0 12px;
  }
  .tp h3 {
    font-size: 20px;
    margin: 20px 0 10px;
  }
  .tp h4 {
    font-size: 18px;
    margin: 18px 0 10px;
  }
  .tp h5, .tp h6 {
    font-size: 16px;
    margin: 16px 0 8px;
  }
  .tp .alignleft,
.tp .alignright {
    float: none;
    display: block;
    margin: 0 auto 16px;
  }
  .tp .wp-caption.alignleft,
.tp .wp-caption.alignright {
    float: none;
    margin: 0 auto 16px;
  }
  .tp .alignwide {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .tp table {
    font-size: 14px;
  }
  .tp th, .tp td {
    padding: 8px 10px;
  }
  .tp blockquote {
    padding: 12px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  .tp h1 {
    font-size: 32px;
  }
  .tp h2 {
    font-size: 26px;
  }
}

html,
body {
  min-height: 100%;
}

body {
  padding-top: var(--header-height);
  background: #F4F4F6 url("../img/background.svg") no-repeat center top/100% auto;
}

@media (min-width: 1200px) {
  .desktop-hide {
    display: none !important;
  }
}

@media (max-width: 767.99px) {
  .mobile-hide {
    display: none !important;
  }
}

.section-with-paddings {
  padding-top: var(--content-padding-top);
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

.section-title {
  color: #222;
  font-size: 36px;
  font-weight: 800;
  line-height: 115%;
}

.section-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  color: #777;
  font-size: 15px;
  font-weight: 500;
  line-height: 115%;
  border-radius: 8px;
  border: 1px solid #777;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.section-button:hover {
  color: #fff;
  border-color: #fff;
  background: #FC5A0A;
}

.page-hero-section {
  padding-top: 64px;
}
.page-hero-section + .section-with-paddings {
  padding-top: 40px;
}

.site-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}
.site-header__top-line {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  height: var(--header-top-height);
  padding: 0 var(--content-padding);
  background: #555557;
}
.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.site-header__nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
}
.site-header__nav > ul > li {
  display: block;
  position: relative;
  padding: 8px 0;
}
.site-header__nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 115%;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s all ease-in-out;
}
.site-header__nav > ul > li:hover > a {
  border-bottom: 1px solid #fff;
}
.site-header__nav > ul > li:hover > a:after {
  transform: rotate(180deg);
}
.site-header__nav > ul > li:hover > ul {
  display: flex;
}
.site-header__nav > ul > li.current-menu-item > a {
  border-bottom: 1px solid #fff;
}
.site-header__nav > ul > li.menu-item-has-children > a:after {
  content: "";
  display: block;
  width: 11px;
  height: 7px;
  background-color: #fff;
  mask: url("../img/carret-down.svg") no-repeat center/100% auto;
  -webkit-mask: url("../img/carret-down.svg") no-repeat center/100% auto;
  transition: 0.3s all ease-in-out;
}
.site-header__nav > ul > li > ul {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  gap: 16px;
  min-width: 200px;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #777;
  z-index: 20;
}
.site-header__nav > ul > li > ul > li {
  display: block;
}
.site-header__nav > ul > li > ul > li > a {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.site-header__nav > ul > li > ul > li:hover > a {
  opacity: 0.7;
}
.site-header__nav > ul > li > ul > li.current-menu-item > a {
  border-bottom: 1px solid #222;
}
.site-header__nav > ul > li > ul > li > ul {
  display: none;
}
.site-header__contacts {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-left: auto;
  border-right: 1px solid #FFF;
}
.site-header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #FFF;
  padding: 0 28px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.site-header__contact svg, .site-header__contact img {
  display: block;
  width: 32px;
  height: auto;
}
.site-header__contact:hover {
  opacity: 0.7;
}
.site-header__lang {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 28px;
  gap: 16px;
}
.site-header__lang li {
  display: block;
  position: relative;
}
.site-header__lang li:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(100% + 8px);
  width: 1px;
  height: 16px;
  background: #fff;
}
.site-header__lang li:last-child:after {
  display: none;
}
.site-header__lang li a {
  display: inline-flex;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
  transition: 0.3s all ease-in-out;
}
.site-header__lang li a:hover {
  opacity: 0.7;
}
.site-header__lang li.current-lang a {
  border-color: transparent;
}
.site-header__lang li.current-lang a:hover {
  opacity: 1;
}
.site-header__main-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  height: var(--header-middle-height);
  padding: 0 var(--content-padding);
  border-bottom: 1px solid #555557;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), rgba(17, 41, 134, 0.8);
  backdrop-filter: blur(10px);
}
.site-header__logo {
  display: block;
  padding-right: 10px;
  text-decoration: none;
}
.site-header__logo svg, .site-header__logo img {
  display: block;
  margin-top: -8px;
  height: 64px;
  width: auto;
}
.site-header__catalog-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 115%;
  text-transform: uppercase;
  border-radius: 8px;
  white-space: nowrap;
  background: linear-gradient(0deg, #503F8F 0%, #503F8F 100%), #006AB5;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.site-header__catalog-button:hover {
  background: #FC5A0A;
}
.site-header__search-form {
  display: block;
  position: relative;
  width: 100%;
}
.site-header__search-form-field {
  display: block;
  box-sizing: border-box;
  padding: 0 64px 0 16px;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #777;
  color: #222;
  font-size: 14px;
  font-weight: 400;
}
.site-header__search-form-field:focus {
  outline: none;
  border: 1px solid #FC5A0A;
}
.site-header__search-form-field::placeholder {
  color: #999;
}
.site-header__search-form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  color: #777777;
  background: none;
  border: none;
  z-index: 3;
  transition: 0.3s all ease-in-out;
}
.site-header__search-form-button:hover {
  color: #FC5A0A;
}
.site-header__search-form-button svg, .site-header__search-form-button img {
  display: block;
  width: 32px;
  height: 32px;
}
.site-header__lead-button {
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 115%;
  text-transform: uppercase;
  background: #FC5A0A;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: 0.3s all ease-in-out;
}
.site-header__lead-button:hover {
  opacity: 0.7;
}

#wpadminbar + .site-header {
  top: 32px;
}

.section-breadcrumbs {
  color: #555557;
  font-size: 14px;
  font-weight: 500;
  line-height: 115%;
  text-transform: uppercase;
}
.section-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #555557;
  transition: 0.3s all ease-in-out;
}
.section-breadcrumbs a:hover {
  border-color: transparent;
}
.section-breadcrumbs .sep {
  padding: 0 10px;
}
.section-breadcrumbs + * {
  margin-top: 40px;
}

.section-h1 {
  color: #222;
  font-size: 40px;
  font-weight: 800;
  line-height: 115%;
}

.page-with-sidebar-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
}
.page-with-sidebar-section .aside-section {
  flex: 0 0 320px;
  width: 320px;
}
.page-with-sidebar-section .content-section {
  width: 100%;
}

.site-header__burger {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 767.99px) {
  .site-header__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.3888888889vw;
    width: 11.1111111111vw;
    height: 11.1111111111vw;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .site-header__burger span {
    display: block;
    width: 6.6666666667vw;
    height: 2px;
    background: #222;
    border-radius: 2px;
    transition: 0.3s all ease-in-out;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 85vw;
    max-width: 320px;
    height: 100%;
    max-height: 100dvh;
    background: #fff;
    z-index: 100;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu.active {
    transform: translateX(0);
  }
  .mobile-menu__header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 3.3333333333vw 4.4444444444vw;
  }
  .mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11.1111111111vw;
    height: 11.1111111111vw;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
  }
  .mobile-menu__close svg {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
  .mobile-menu__header + .mobile-menu__contacts {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3.3333333333vw;
    padding: 4.4444444444vw;
    border-bottom: 1px solid #eee;
  }
  .mobile-menu__logo {
    display: block;
    align-self: flex-start;
    text-decoration: none;
    width: 80%;
    margin: -19.4444444444vw auto 0;
  }
  .mobile-menu__logo svg,
.mobile-menu__logo img {
    display: block;
    width: 100%;
    height: auto;
  }
  .mobile-menu__tel, .mobile-menu__mail {
    display: flex;
    align-items: center;
    gap: 2.7777777778vw;
    padding: 3.3333333333vw 3.8888888889vw;
    border-radius: 8px;
    background: #f4f4f6;
    color: #222;
    font-size: 3.8888888889vw;
    font-weight: 700;
    line-height: 115%;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    word-break: break-word;
  }
  .mobile-menu__tel:hover, .mobile-menu__mail:hover {
    background: #ececf0;
    color: #222;
  }
  .mobile-menu__contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10vw;
    height: 10vw;
    border-radius: 8px;
    background: #503f8f;
    color: #fff;
  }
  .mobile-menu__contact-icon svg {
    display: block;
    width: 5vw;
    height: 5vw;
  }
  .mobile-menu__nav {
    flex: 1 1 auto;
    min-height: 0;
    padding: 4.4444444444vw;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu__nav + .mobile-menu__contacts {
    flex-shrink: 0;
    padding: 4.4444444444vw;
    padding-top: 3.3333333333vw;
    border-top: 1px solid #eee;
    background: #fff;
  }
  .mobile-menu__lead-button {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 3.8888888889vw 5.5555555556vw;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: none;
    color: #fff;
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 115%;
    text-transform: uppercase;
    background: #fc5a0a;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
  }
  .mobile-menu__lead-button:hover {
    opacity: 0.85;
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu__list > li {
    display: block;
    border-bottom: 1px solid #eee;
  }
  .mobile-menu__list > li > a {
    display: block;
    padding: 3.8888888889vw 0;
    color: #222;
    font-size: 4.1666666667vw;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: none;
  }
  .mobile-menu__list > li.menu-item-has-children > a {
    position: relative;
    padding-right: 11.1111111111vw;
  }
  .mobile-menu__list > li.menu-item-has-children > a::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 2.7777777778vw;
    height: 1.6666666667vw;
    transform: translateY(-50%);
    background: #555;
    mask: url("../img/carret-down.svg") no-repeat center/100% auto;
    -webkit-mask: url("../img/carret-down.svg") no-repeat center/100% auto;
    transition: 0.3s transform ease-in-out;
  }
  .mobile-menu__list > li.menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .mobile-menu__list > li > ul {
    display: none;
    flex-direction: column;
    padding: 0 0 2.2222222222vw 4.4444444444vw;
  }
  .mobile-menu__list > li > ul > li {
    display: block;
  }
  .mobile-menu__list > li > ul > li > a {
    display: block;
    padding: 2.7777777778vw 0;
    color: #555;
    font-size: 3.8888888889vw;
    font-weight: 500;
    line-height: 130%;
    text-decoration: none;
  }
  .mobile-menu__list > li > ul > li.menu-item-has-children > a {
    position: relative;
    padding-right: 11.1111111111vw;
  }
  .mobile-menu__list > li > ul > li.menu-item-has-children > a::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 2.7777777778vw;
    height: 1.6666666667vw;
    transform: translateY(-50%);
    background: #555;
    mask: url("../img/carret-down.svg") no-repeat center/100% auto;
    -webkit-mask: url("../img/carret-down.svg") no-repeat center/100% auto;
    transition: 0.3s transform ease-in-out;
  }
  .mobile-menu__list > li > ul > li.menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .mobile-menu__list > li > ul > li > ul {
    display: none;
    flex-direction: column;
    padding: 0 0 1.6666666667vw 4.4444444444vw;
  }
  .mobile-menu__list > li > ul > li > ul > li > a {
    display: block;
    padding: 2.2222222222vw 0;
    color: #777;
    font-size: 3.6111111111vw;
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
  }
  .mobile-menu__list > li > ul > li.open > ul {
    display: flex;
  }
  .mobile-menu__list > li.open > ul {
    display: flex;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
  .mobile-menu-overlay.active {
    display: block;
  }
}
.popup {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767.99px) {
  :root {
    --content-padding: 4.4444444444vw;
    --content-padding-top: 11.1111111111vw;
    --header-top-height: 0px;
    --header-middle-height: 15.5555555556vw;
  }

  .section-with-paddings {
    padding-top: 11.1111111111vw;
    padding-left: 4.4444444444vw;
    padding-right: 4.4444444444vw;
  }

  .section-title {
    font-size: 6.1111111111vw;
  }

  .section-button {
    padding: 3.3333333333vw 6.6666666667vw;
    font-size: 3.6111111111vw;
  }

  .page-hero-section {
    padding-top: 17.7777777778vw;
  }
  .page-hero-section + .section-with-paddings {
    padding-top: 6.6666666667vw;
  }

  .section-breadcrumbs {
    font-size: 3.3333333333vw;
  }
  .section-breadcrumbs .sep {
    padding: 0 1.6666666667vw;
  }

  .section-breadcrumbs + * {
    margin-top: 5.5555555556vw;
  }

  .section-h1 {
    font-size: 7.2222222222vw;
  }

  .site-header__top-line {
    display: none;
  }
  .site-header__main-line {
    gap: 2.7777777778vw;
    height: 15.5555555556vw;
    padding: 0 4.4444444444vw;
  }
  .site-header__logo {
    padding-right: 0;
  }
  .site-header__logo svg, .site-header__logo img {
    height: 11.1111111111vw;
    margin-top: -2.7777777778vw;
  }
  .site-header__catalog-button {
    margin-left: 2.7777777778vw;
    padding: 2.7777777778vw 4.4444444444vw;
    font-size: 3.3333333333vw;
  }
  .site-header__search-form {
    display: none;
  }
  .site-header__lead-button {
    display: none;
  }

  .page-with-sidebar-section {
    flex-direction: column;
  }
  .page-with-sidebar-section .aside-section {
    flex: 0 0 auto;
    width: 100%;
  }
}

/*# sourceMappingURL=global-critical.css.map */
