@charset "UTF-8";
/*
 * Критически важные стили
 * для загрузки в первую очередь
 */
.accent {
  color: #ff0800;
}

:root {
  --color-primary: #004fa3;
  --color-primary-light: #0068d6;
  --color-primary-dark: #003670;
  --color-secondary: #ff0800;
  --color-secondar-lighty: #ff3933;
  --color-secondary-dark: #cc0600;
}

/*
Какие точки использовать?
Ответ на этот вопрос даёт сам блок. Один. Каждый.
desktop: 1441px <
laptop: 960 - 1220 px;
tablet: 768 - 959 px
mobile: < 768 px
*/
/* кода сброса стилей браузера */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  line-height: 1.2;
}

ol {
  padding-left: 1.4em;
  list-style: decimal;
}

ul {
  padding-left: 1.4em;
  list-style: square;
}

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

img {
  max-width: 100%;
}

/* конец кода сброса стилей браузера */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.section {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section_bottom {
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  .section_bottom {
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .section_bottom {
    padding-bottom: 50px;
  }
}

.section_top {
  padding-top: 25px;
}
@media (min-width: 992px) {
  .section_top {
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .section_top {
    padding-top: 50px;
  }
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.container-700 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.grid-2 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.vc_pageable-slide-wrapper,
.grid-3 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .vc_pageable-slide-wrapper,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .vc_pageable-slide-wrapper,
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 35px;
  }
}

.grid-4 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 35px;
  }
}
.grid-4 .vc_column_container {
  max-width: 300px;
  margin: 0 auto;
}
.grid-4 .wpb_column {
  margin-bottom: 25px;
}

.grid-5 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .grid-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .grid-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 35px;
  }
}

.grid-6 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .grid-6 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .grid-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .grid-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 35px;
  }
}

@media (min-width: 600px) {
  .advantages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .advantages__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 600px) {
  .step__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}
@media (min-width: 1000px) {
  .step__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 600px) {
  .why-we__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}
@media (min-width: 1200px) {
  .why-we__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}

.faq__grid {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#services .vc_pageable-slide-wrapper {
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  #services .vc_pageable-slide-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media (min-width: 1200px) {
  #services .vc_pageable-slide-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
}

#services .vc_grid-item {
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

.no-sidebar .site {
  display: block;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #1d1d1b;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

button {
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: bold;
  clear: both;
}

h1 {
  margin: 0;
  font-weight: 600;
  line-height: 1.23;
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

body {
  margin: 0;
  padding: 0;
  background: #fbfffe;
}

.vc_btn3,
.btn,
.button,
.added_to_cart,
.wc-block-product-search__button,
input[type=button],
input[type=reset],
input[type=submit] {
  display: inline-block;
  padding: 0.8em 1.4em;
  min-width: 186px;
  font-size: 0.9em;
  border: 1px solid;
  border-radius: 0px;
  border-color: #ff0800;
  background: #ff0800;
  color: rgb(255, 255, 255);
  line-height: 1;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
}
@media (min-width: 992px) {
  .vc_btn3,
  .btn,
  .button,
  .added_to_cart,
  .wc-block-product-search__button,
  input[type=button],
  input[type=reset],
  input[type=submit] {
    font-size: 1em;
    padding: 0.8em 1.6em;
  }
}
.vc_btn3:visited,
.btn:visited,
.button:visited,
.added_to_cart:visited,
.wc-block-product-search__button:visited,
input[type=button]:visited,
input[type=reset]:visited,
input[type=submit]:visited {
  color: rgb(255, 255, 255);
  border-color: #ff0800;
  background: #ff0800;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
}
.vc_btn3:focus,
.btn:focus,
.button:focus,
.added_to_cart:focus,
.wc-block-product-search__button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  color: rgb(255, 255, 255);
  border-color: #ff3933;
  background: #ff3933;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
}
.vc_btn3:active, .vc_btn3:hover,
.btn:active,
.btn:hover,
.button:active,
.button:hover,
.added_to_cart:active,
.added_to_cart:hover,
.wc-block-product-search__button:active,
.wc-block-product-search__button:hover,
input[type=button]:active,
input[type=button]:hover,
input[type=reset]:active,
input[type=reset]:hover,
input[type=submit]:active,
input[type=submit]:hover {
  border-color: #ff3933;
  color: #fff;
  background: #ff3933;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
}

.btn_size_sm {
  padding: 0.6em 1.2em;
  min-width: unset;
}

.added_to_cart {
  width: 100%;
  margin-top: 0.5em;
}

.wc-block-product-search__button {
  min-width: unset;
}

.btn_blik {
  position: relative;
  overflow: hidden;
}
.btn_blik:after {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
  height: calc(100% + 16px);
  width: 50px;
  position: absolute;
  z-index: 1;
  top: -8px;
  transform: skewX(-45deg);
  animation: btn-anim 4.5s ease infinite;
}

@keyframes btn-anim {
  0%, 55% {
    left: -100%;
  }
  to {
    left: 130%;
  }
}
.btn_icon-arrow {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 0.65em 1.6em;
}
.btn_icon-arrow::after {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_49_641)'%3E%3Cpath d='M12 19L19 12L12 5M19 12L5 12' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_49_641'%3E%3Crect width='24' height='24' fill='white'%3E%3C/rect%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  width: 24px;
  height: 25px;
}

input[type=text],
input[type=tel],
textarea {
  width: 100%;
  color: #666;
  border: 1px solid #ccc;
  padding: 10px;
}
input[type=text]:focus,
input[type=tel]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
  border-radius: 3px;
}

textarea {
  width: 100%;
}

/*
 * Красивый чекбокс
 */
/*
input[type="checkbox"]:checked,
input[type="checkbox"]:not(:checked),
input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

input[type="checkbox"]:checked + label,
input[type="checkbox"]:not(:checked) + label,
input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    cursor: pointer;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 18px;
    height: 18px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before {
    border-radius: 2px;
}

input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {
    border-radius: 100%;
}

input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after {
    content: "";
    position: absolute;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after {
    left: 4px;
    top: 4px;
    width: 10px;
    height: 8px;
    border-radius: 1px;
    border-left: 4px solid $color__secondary;
    border-bottom: 4px solid $color__secondary;
    transform: rotate(-45deg);
}

input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after {
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: $color__secondary;
}

input[type="checkbox"]:not(:checked) + label:after,
input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
}

input[type="checkbox"]:checked + label:after,
input[type="radio"]:checked + label:after {
    opacity: 1;
}
*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

a {
  color: #1d1d1b;
  text-decoration: none;
}

.link {
  color: #1d1d1b;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(204, 6, 0, 0.2);
}
.link:visited, .link:hover, .link:focus, .link:active {
  color: #1d1d1b;
  border-bottom: 1px solid rgba(204, 6, 0, 0.5);
  outline: 0;
}

a.post-thumbnail {
  border-bottom: none;
}

figure a {
  border-bottom: unset !important;
}

.site-footer a {
  color: #fff;
  border-bottom: 1px solid rgba(29, 29, 27, 0.2);
  transition: all 0.3s;
}
.site-footer a:hover, .site-footer a:focus, .site-footer a:active {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

ul,
ol {
  margin: 0 0 1.5em 0;
}

@media (min-width: 1200px) {
  ul,
  ol {
    margin: 0 0 1.5em 0.5em;
    padding-left: 1.5em;
  }
}
ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

.wpb_text_column p,
.wpb_text_column ul {
  margin-top: 1em;
  margin-bottom: 1em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

.f-list {
  list-style: none;
  margin: 0;
  padding-left: 25px;
}
.f-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: 20px;
  margin-bottom: 0.7em;
}
.f-list li:before {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 0.9em;
  color: #aeaabb;
  top: 2px;
  left: 0px;
  content: "\f005";
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  margin: 0 0 1.5em;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
table th {
  font-weight: 700;
}
table td,
table th {
  padding: 0.5em;
  color: #1d1d1b;
  border: 1px solid #0068d6;
}
table thead {
  background-color: #004fa3;
}
table thead th,
table thead td {
  color: #fff;
  font-weight: normal;
  border: 1px solid #0068d6;
}
table p {
  margin: 0;
}

.ip-table tbody tr:nth-of-type(even),
.ip-table tfoot tr:nth-of-type(even) {
  background-color: rgba(0, 79, 163, 0.05);
}
.ip-table tbody tr:hover,
.ip-table tfoot tr:hover {
  background-color: rgba(0, 104, 214, 0.2);
}
.ip-table tbody tr:first-of-type:hover,
.ip-table tfoot tr:first-of-type:hover {
  background-color: unset;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: bold;
  clear: both;
}

h1 {
  margin: 0;
  font-weight: 600;
  line-height: 1.23;
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.site-main .pagination {
  margin: 0 0 1.5em;
}
.pagination .nav-links {
  display: flex;
}
.pagination .nav-previous {
  flex: 1 0 50%;
}
.pagination .nav-next {
  text-align: end;
  flex: 1 0 50%;
}
.pagination .page-numbers {
  padding: 0.2em 0.7em;
  margin: 0.2em;
  border: 1px solid rgba(232, 232, 232, 0.5);
}
.pagination .page-numbers:hover {
  background: #fff6f6;
}
.pagination .current {
  background: #fff6f6;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post {
  margin: 0 0 2.5em;
}

.entry-header {
  margin-top: 25px;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.edit-link .post-edit-link {
  margin-left: 1em;
}

#vc_load-inline-editor {
  margin-left: 1em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget-area .widget {
  margin: 0 0 1.5em;
  border: 1px solid rgba(0, 79, 163, 0.2);
  border: 1px solid #110000;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 1.5em;
}
.widget-area .widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-area .widget .chosen a {
  color: red;
  position: relative;
}
.widget-area .widget .chosen a:before {
  position: absolute;
  left: -11px;
  top: 1px;
  content: "\f00d";
  font-size: 0.8em;
  font-family: "Font Awesome 6 Pro";
}
.widget-area .widget select {
  max-width: 100%;
}

.wp-block-pages-list__item {
  margin-bottom: 0.5em;
}

.widgettitle,
.widget-title,
.sidebar-block__title {
  position: relative;
  top: -10px;
  background-color: #ffffff;
  max-width: 105px;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 16px;
  color: #000000;
  text-align: center;
  font-weight: 700;
  font-style: normal;
}

/*
 * Sidebar menu
 */
.widget-area #menu-two {
  list-style: none;
  padding: 0;
}
.widget-area #menu-two li {
  padding-left: 1.875em;
  padding-bottom: 0.5em;
  margin-top: 0.7em;
  border-bottom: 1px solid #e8e8e8;
  background-image: url(images/icon_list.png);
  background-repeat: no-repeat;
  background-position: 0 1px;
}
.widget-area #menu-two li:last-of-type {
  border-bottom: none;
}
.widget-area #menu-two a {
  display: inline-block;
  padding-left: 0.3em;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 300;
  border-bottom: none;
}

/*
 * Виджет с категориями товаров
 */
.widget-area .wc-block-product-categories-list a {
  font-size: 15px;
}
.widget-area .wc-block-product-categories-list .wc-block-product-categories-list--depth-1 {
  padding-left: 10px;
  font-size: 0.9em;
}

.filters__btn-wrap {
  margin-bottom: 2em;
}
@media (min-width: 1100px) {
  .filters__btn-wrap {
    display: none;
  }
}

.wc-block-product-search__field {
  font-size: 13px;
}

/*
 * Home Menu
 */
.home-menu .menu {
  max-width: 300px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-menu .menu li a:link {
  color: #fff;
  text-decoration: none;
}
.home-menu .menu li a:visited {
  color: #fff;
  text-decoration: none;
}
.home-menu .menu li a:hover {
  color: #fff;
  text-decoration: none;
}
.home-menu .menu li a:active {
  color: #fff;
  text-decoration: none;
}
.home-menu .menu a {
  background: #004fa3;
  color: #fff;
  padding: 10px 10px;
  display: block;
  border-bottom: 1px solid #0068d6;
  transition: 0.5s all;
}
.home-menu .menu a:hover {
  background: #0068d6;
  padding: 10px 0 10px 15px;
}

/*
 * Виджет widget_nav_menu
 */
.widget_nav_menu .menu-item {
  margin-bottom: 0.5em;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Alignments
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* Обязательные блоки
--------------------------------------------- */
.logo__link {
  display: flex;
  align-items: center;
  line-height: 1;
  border: none;
}

.logo__img-wrap {
  line-height: 0;
}

.logo__img-wrap img {
  height: 45px;
}

.logo__separator {
  display: inline-flex;
  width: 1px;
  height: 39px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: transparent;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo__title {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  border: none;
}
@media (min-width: 600px) {
  .logo__title {
    font-size: 20px;
  }
}

.logo__desc {
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
}
@media (min-width: 600px) {
  .logo__desc {
    font-size: 12px;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  background-color: #0068d6;
  border: none;
  border-radius: 0px;
  padding: 0.4em 1.2em;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle:before {
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23ffffff'%3E%3Cpath d='M8 104H440C444.406 104 448 100.406 448 96S444.406 88 440 88H8C3.594 88 0 91.594 0 96S3.594 104 8 104ZM440 248H8C3.594 248 0 251.594 0 256S3.594 264 8 264H440C444.406 264 448 260.406 448 256S444.406 248 440 248ZM440 408H8C3.594 408 0 411.594 0 416S3.594 424 8 424H440C444.406 424 448 420.406 448 416S444.406 408 440 408Z'/%3E%3C/svg%3E");
  display: block;
  width: 25px;
  height: 25px;
  color: #fff;
}

.menu-toggle.active:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 320 512'%3E%3Cpath d='M317.656 402.344C320.781 405.469 320.781 410.531 317.656 413.656C314.529 416.783 309.471 416.783 306.344 413.656L160 267.312L13.656 413.656C10.529 416.783 5.471 416.783 2.344 413.656C-0.781 410.531 -0.781 405.469 2.344 402.344L148.687 256L2.344 109.656C-0.781 106.531 -0.781 101.469 2.344 98.344S10.531 95.219 13.656 98.344L160 244.688L306.344 98.344C309.469 95.219 314.531 95.219 317.656 98.344S320.781 106.531 317.656 109.656L171.312 256L317.656 402.344Z'/%3E%3C/svg%3E");
}

.menu-toggle__text {
  display: inline-block;
  margin-left: 10px;
  line-height: 1;
}

.ip-buttons {
  display: none;
}
@media (min-width: 768px) {
  .ip-buttons {
    display: block;
  }
}

.phone-button {
  position: fixed;
  right: 20px;
  bottom: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background-color: #ff0800;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.phone-button:before,
.phone-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #ff0800;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: border-animate 1.5s linear infinite;
  opacity: 0;
}

.viber-button:after {
  animation-delay: 0.5s;
}

.telegram-button {
  position: fixed;
  right: 20px;
  bottom: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background-color: #2CA5E0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23FFF' d='M23.91 3.79L20.3 20.84c-.25 1.21-.98 1.5-2 .94l-5.5-4.07-2.66 2.57c-.3.3-.55.56-1.1.56-.72 0-.6-.27-.84-.95L6.3 13.7l-5.45-1.7c-1.18-.35-1.19-1.16.26-1.75l21.26-8.2c.97-.43 1.9.24 1.53 1.73z'/%3e%3c/svg%3e");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.telegram-button:before,
.telegram-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #2CA5E0;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: border-animate 1.5s linear infinite;
  opacity: 0;
}

.telegram-button:after {
  animation-delay: 0.5s;
}

.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background-color: #25D366;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23FFF' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3e%3c/svg%3e");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.whatsapp-button:before,
.whatsapp-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #25D366;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: border-animate 1.5s linear infinite;
  opacity: 0;
}

.whatsapp-button:after {
  animation-delay: 0.5s;
}

@keyframes border-animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/* Magnific Popup */
.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 400px;
  margin: 20px auto;
}
.white-popup .form {
  max-width: 400px;
}

/* Popup Form */
.form {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.8);
}
.form .glyphicon {
  font-size: 24px;
}

.form__title {
  margin: 0;
  font-size: 1.7rem;
  text-align: center;
}

.form__item {
  margin-top: 1rem;
}
.form__item input[type=text],
.form__item input[type=tel],
.form__item textarea,
.form__item button {
  width: 100%;
  padding: 8px 0 8px 15px;
}

.message {
  margin-top: 1rem;
  text-align: center;
}

input.error {
  border: 1px solid red;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.menu-g__wrap {
  background: #004fa3;
}

.menu-g__nav {
  display: block;
  width: 100%;
  /*
  .menu-item-39 {
    background: $color__secondary;
    &:hover > a,
    &.focus > a {
      background-color: $color__secondary_light;
    }
  }
  */
}
.menu-g__nav .menu-g {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
  background: #004fa3;
  /* Mega menu
  @media(min-width: 1200px) {
    .menu-item-27 {
      .sub-menu {
        padding-top: 0.5em;
        width: 450px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        a {
          width: 210px;
        }
      }
    }
  }
   */
}
.menu-g__nav .menu-g .sub-menu {
  position: absolute;
  top: 100%;
  left: -999em;
  margin: 0;
  padding: 0;
  flex-direction: column;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  list-style: none;
  background-color: #004fa3;
  z-index: 99999;
}
.menu-g__nav .menu-g .sub-menu .sub-menu {
  left: -999em;
  top: 0;
}
.menu-g__nav .menu-g .sub-menu .menu-item:hover > .sub-menu, .menu-g__nav .menu-g .sub-menu .menu-item.focus > .sub-menu {
  display: block;
  left: 100px;
}
@media (min-width: 1200px) {
  .menu-g__nav .menu-g .sub-menu .menu-item:hover > .sub-menu, .menu-g__nav .menu-g .sub-menu .menu-item.focus > .sub-menu {
    left: 300px;
  }
}
.menu-g__nav .menu-g .sub-menu .menu-item a {
  padding-left: 1em;
}
.menu-g__nav .menu-g .sub-menu a {
  width: 300px;
  font-size: 0.9em;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-g__nav .menu-g .sub-menu li:hover > a .sub-menu,
.menu-g__nav .menu-g .sub-menu li.focus > a .sub-menu {
  left: auto;
}
.menu-g__nav .menu-g .menu-item:hover > .sub-menu,
.menu-g__nav .menu-g .menu-item.focus > .sub-menu {
  left: auto;
}
.menu-g__nav .menu-item {
  position: relative;
  flex: auto;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.menu-g__nav .menu-item:hover > a, .menu-g__nav .menu-item.focus > a {
  background-color: #0068d6;
}
.menu-g__nav a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 0.7em 1em;
  transition: background-color 0.3s;
}
.menu-g__nav.toggled ul {
  display: block;
}

@media screen and (min-width: 992px) {
  .menu-g__nav .menu-g {
    display: flex;
    justify-content: space-between;
  }
  .menu-g__nav .menu-g li {
    border-bottom: none;
  }
}
.menu-g .menu-item-has-children {
  position: relative;
}

.menu-g .menu-item-has-children:after {
  position: absolute;
  display: inline-block;
  content: "";
  font-size: 13px;
  right: 25px;
  top: 46%;
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  opacity: 0.8;
  transition: all 0.3s;
}

.menu-g .menu-item-has-children:hover:after {
  transform: rotate(180deg);
}

.menu-m__container {
  position: fixed;
  top: 0;
  height: 100%;
  min-height: 100%;
  width: 100%;
  max-width: 500px;
  padding: 30px 30px 0;
  background-color: #fff;
  transition: transform 0.5s ease;
  transform: translate3d(-100%, 0, 0);
  z-index: 99;
}
.menu-m__container.active {
  transform: translate3d(0, 0, 0);
}

.admin-bar .menu-m__container {
  top: 47px;
}

.menu-m {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-m li {
  padding: 10px 5px;
}
.menu-m .menu-item-has-children {
  position: relative;
  overflow: hidden;
}
.menu-m .sub-menu {
  transform: translateY(-150%);
  margin-top: 15px;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  display: none;
  animation: menum 0.5s forwards;
}
.menu-m .sub-menu.active {
  display: block;
  animation: menum 0.5s forwards;
}

@keyframes menum {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}
.sub-menu__button {
  position: absolute;
  right: 0;
  top: 6px;
  width: 30px;
  height: 30px;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M267.3 395.3c-6.2 6.2-16.4 6.2-22.6 0l-192-192c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L256 361.4 436.7 180.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-192 192z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.sub-menu__button.active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M380.2 58.3c5.7-6.7 4.9-16.8-1.9-22.5s-16.8-4.9-22.6 1.9L192 231.2 28.2 37.7c-5.7-6.7-15.8-7.6-22.5-1.9s-7.6 15.8-1.9 22.5L171 256 3.8 453.7c-5.7 6.7-4.9 16.8 1.9 22.6s16.8 4.9 22.5-1.9L192 280.8 355.8 474.3c5.7 6.7 15.8 7.6 22.6 1.9s7.6-15.8 1.9-22.6L213 256 380.2 58.3z'/%3E%3C/svg%3E");
  background-size: 8px;
}

.menu-m__close {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0;
  margin: 0;
  border: none;
  line-height: 1;
  cursor: pointer;
  background-color: transparent;
}
.menu-m__close svg {
  height: 30px;
  width: 30px;
}

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

.menu-m__button {
  margin-top: 35px;
  text-align: center;
}

.menu-m__messangers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}

.menu-m__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__whatsapp-link svg {
  height: 30px;
  width: 30px;
  fill: #25D366;
}

.menu-m__telegram {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__telegram-link svg {
  height: 30px;
  width: 30px;
  fill: #1990CB;
}

.menu-m__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__linkedin-link svg {
  height: 30px;
  width: 30px;
  fill: #0A66C2;
}

.menu-m__twitter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__twitter-link svg {
  height: 30px;
  width: 30px;
  fill: #1D9BF0;
}

.menu-m__facebook {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__facebook-link svg {
  height: 30px;
  width: 30px;
  fill: #3b5998;
}

.menu-m__vk {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__vk-link svg {
  height: 35px;
  width: 35px;
  fill: #0077FF;
}

.menu-m__email {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 15px;
  gap: 7px;
}
.menu-m__email svg {
  height: 20px;
  max-width: 30px;
}

.menu-m__phone {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.menu-m__phone svg {
  height: 20px;
  max-width: 30px;
}

.menu-m__work-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 15px;
}
.menu-m__work-time svg {
  height: 20px;
  max-width: 30px;
}

.menu-m__gtranslate {
  margin-top: 35px;
  text-align: center;
}

.menu-m__gtranslate .gtranslate_wrapper a {
  display: inline-block;
}

.menu-m__gtranslate .gtranslate_wrapper a + a {
  margin-left: 14px;
}

/* Blocks
--------------------------------------------- */
.top {
  background-image: url(blocks/top/images/header.webp);
}

.home .top {
  background-image: url(blocks/top/images/header-home.webp);
}

@media (max-width: 1200px) {
  .top {
    display: none;
  }
}
.top__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.top__email {
  display: flex;
  align-items: center;
}

.top__email-link {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.top__email-link:hover {
  color: #fff;
}

.top__phone {
  display: flex;
  align-items: center;
}

.top__phone-link {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.top__phone-link:hover {
  color: #fff;
}

.top__work-time {
  display: flex;
  align-items: center;
}

.top__work-time-link {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.top__work-time-link:hover {
  color: #fff;
}

.top__button {
  margin-left: 30px;
  margin-right: 30px;
}

.top__button-link {
  padding: 14px 30px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 500;
  line-height: 104%;
  letter-spacing: -0.16px;
  transition: background-color 0.3s;
}

.top__button-link:hover {
  color: inherit;
  background-color: #fff;
}

.top__gtranslate .gtranslate_wrapper > a:first-of-type {
  display: inline-block;
  margin-right: 14px;
}

.top__gtranslate .gtranslate_wrapper > a:nth-of-type(2) {
  display: inline-block;
  margin-right: 14px;
}

.person__img {
  margin-top: 1em;
  text-align: center;
}

.person__name {
  font-size: 18px;
  color: #004fa3;
  text-align: center;
  font-weight: 700;
  font-style: normal;
}

.person__line {
  width: 50px;
  height: 3px;
  background-color: #004fa3;
  margin: 20px auto;
}

.person__text {
  font-size: 0.9em;
  font-weight: 300;
  text-align: center;
}

.person__link-wrap {
  margin-top: 1em;
  text-align: center;
}

.person__link {
  font-size: 0.9em;
  font-weight: 300;
  display: inline-block;
  padding-bottom: 0.1em;
  color: #004fa3;
  border-bottom: 1px solid rgba(0, 79, 163, 0.2);
  transition: all 0.3s;
}
.person__link:hover {
  border-bottom: 1px solid rgba(0, 79, 163, 0.5);
}

/* Базовые */
@media (min-width: 992px) {
  .about__section {
    background: #fff url(blocks/about/images/about_bg.webp) center bottom no-repeat;
  }
}

.about {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .about__grid {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}

.about__col {
  line-height: 0;
}

.about__col_b {
  padding: 20px;
  background-color: #004fa3;
}
@media (min-width: 992px) {
  .about__col_b {
    padding: 30px 40px;
  }
}

.about__img {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 480px) {
  .about__img_xs {
    display: none;
  }
}

.about__img_md {
  display: none;
}
@media (min-width: 480px) and (max-width: 1200px) {
  .about__img_md {
    display: block;
  }
}

.about__img_lg {
  display: none;
}
@media (min-width: 1200px) {
  .about__img_lg {
    display: block;
  }
}

.about__title {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .about__title {
    font-size: 28px;
  }
}

.about__content {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  text-align: justify;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about__content {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .about__content {
    font-size: 18px;
    line-height: 1.4;
  }
}

.about__advantages {
  margin-top: 15px;
  padding-left: 15px;
  border-left: 2px solid #ff0800;
}

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

.ip-banner__full {
  display: none;
}
@media (min-width: 768px) {
  .ip-banner__full {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .ip-banner__mob {
    display: none;
  }
}

.begin__section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #004fa3;
  background-image: url(/wp-content/themes/ip/blocks/begin/images/begin_sm.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .begin__section .form {
    margin-top: 2em;
  }
}

@media (min-width: 600px) {
  .begin__section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(/wp-content/themes/ip/blocks/begin/images/begin_lg.webp);
  }
}
.begin__row {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.begin__title {
  font-size: 30px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: normal;
}

/*
@media(min-width: $query__xs) {
  .begin__title {
    font-size: 38px;
  }
}
@media(min-width: $query__sm) {
  .begin__title {
    font-size: 44px;
  }
}
@media(min-width: $query__lg) {
  .begin__title {
    font-size: 48px;
  }
}
*/
.begin__title-a {
  display: inline-block;
  padding: 0 15px;
  background-color: rgb(255, 255, 255);
}

.begin__title-b {
  display: inline-block;
  padding: 0 15px;
  margin-top: 10px;
  background-color: rgb(255, 255, 255);
}

.begin__title-c {
  display: inline-block;
  padding: 0 15px;
  margin-top: 10px;
  color: #ff0800;
  background-color: rgb(255, 255, 255);
}

.begin__title-d {
  display: inline-block;
  padding: 0 15px;
  margin-top: 10px;
  color: #ff0800;
  background-color: rgb(255, 255, 255);
}

.begin__subtitle {
  display: inline-block;
  margin-top: 7px;
  padding: 0px 15px;
  color: #fff;
  background-color: #ff0800;
  font-size: 19px;
  font-weight: normal;
  line-height: 1.7;
}

@media (min-width: 600px) {
  .begin__subtitle {
    font-size: 28px;
  }
}
.begin__list {
  margin-top: 15px;
}

.b-item {
  max-width: 597px;
  margin-bottom: 15px;
  padding: 0.3em 0;
  display: grid;
  grid-template-columns: 70px auto;
  align-items: center;
  background: rgb(255, 255, 255);
}
.b-item:last-of-type {
  margin-bottom: 0;
}

.b-item__icon {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.b-item__icon svg {
  height: 28px;
  width: 28px;
  fill: #ff0800;
}

.b-item__text {
  font-size: 16px;
}

@media (min-width: 600px) {
  .b-item__text {
    font-size: 18px;
  }
}
.begin__form {
  padding: 45px;
}
@media (min-width: 1200px) {
  .begin__form {
    margin-top: 50px;
  }
}

.begin__video-wrap {
  margin-top: 84px;
}

.faq .vc_toggle {
  margin-bottom: 0;
}
.faq .vc_toggle_title {
  position: relative;
  padding: 0.625em 2.5em 0.625em 0.625em;
  border-radius: 0;
}
.faq .vc_toggle_title h4 {
  font-size: 1em;
  color: #fff;
}
.faq .vc_toggle_icon {
  position: absolute;
  top: 38%;
  right: 10px;
  border-color: #1d1d1b !important;
}
.faq .vc_toggle_icon:before, .faq .vc_toggle_icon:after {
  background-color: #1d1d1b !important;
}
.faq .vc_toggle_content {
  font-size: 14px;
}
.faq .vc_toggle_content p {
  margin: 0;
}
.faq .vc_toggle:last-of-type {
  margin-bottom: 0;
}

.site-footer {
  background-color: #292929;
  background-size: cover;
  background-position: top center;
  color: #fff;
  text-align: center;
}

.footer-top {
  padding: 10px 0;
  border-bottom: 1px solid rgba(118, 118, 118, 0.25);
}

.menu-a {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-a .menu-item {
  display: inline-block;
  padding: 0.7em 1em;
}
.menu-a .menu-item a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s;
}

.menu-b {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.menu-b .menu-item {
  display: block;
  margin-bottom: 0.4em;
}
.menu-b .menu-item a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s;
}

.menu-c {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.menu-c .menu-item {
  display: block;
  margin-bottom: 0.4em;
}
.menu-c .menu-item a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s;
}

@media (min-width: 992px) {
  .footer-middle__grid {
    display: grid;
    grid-template-columns: 40% 60%;
  }
}

.f-logo {
  text-align: left;
  color: #fff;
}
.f-logo img {
  display: block;
  margin-right: auto;
  height: 50px;
  width: auto;
}
.f-logo a {
  border-bottom: none;
}
.f-logo a:hover, .f-logo a:focus, .f-logo a:active {
  border-bottom: none;
}
.f-logo .logo__text {
  margin-top: 6px;
}

.f-contact {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 3px;
}
.f-contact svg {
  width: 24px;
  height: 16px;
  fill: #fff;
}

.f-inner {
  padding: 2em 0;
}

.site-info {
  font-size: 0.9em;
  color: #fff;
  line-height: 1.7;
}

.footer-middle {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1E1E1E;
  text-align: center;
  color: #4a4a4a;
  font-size: 12px;
}

@media (min-width: 768px) {
  .bc-menu__grid {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}

.footer__title {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #3a3a3a;
  text-align: left;
}

.f-contact {
  margin-bottom: 10px;
}

.f-contact_1 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.f-contact_2 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.f-phone__link {
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  border: none;
}
.f-phone__link:active, .f-phone__link:focus {
  border: none;
}
.f-phone__link:hover {
  color: #004fa3;
  border-bottom-style: dashed;
}

.f-ok,
.f-vk,
.f-address,
.f-time,
.f-email,
.f-instagram,
.f-youtube,
.f-whatsapp,
.f-telegram,
.f-viber {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid rgba(0, 54, 112, 0.2);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
}
.f-ok:before,
.f-vk:before,
.f-address:before,
.f-time:before,
.f-email:before,
.f-instagram:before,
.f-youtube:before,
.f-whatsapp:before,
.f-telegram:before,
.f-viber:before {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  top: 0;
  left: -20px;
}
.f-ok:hover,
.f-vk:hover,
.f-address:hover,
.f-time:hover,
.f-email:hover,
.f-instagram:hover,
.f-youtube:hover,
.f-whatsapp:hover,
.f-telegram:hover,
.f-viber:hover {
  color: #004fa3;
  border-bottom: 1px solid rgba(0, 79, 163, 0.5);
  text-decoration: none;
}

.h-form__section {
  background-image: url(blocks/form-gorizontal/bg.webp);
}

.h-form {
  max-width: 900px;
  margin: 25px auto;
  padding: 25px 50px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .h-form {
    padding: 20px 100px 35px 100px;
  }
}

.h-form__title {
  margin: 10px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .h-form__title {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .h-form__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
  }
}

@media (max-width: 992px) {
  .h-form__item {
    max-width: 270px;
    margin: 0 auto 1em auto;
  }
}
.h-form__item .btn {
  width: 100%;
}

.h-form__input {
  width: 100%;
}

.h-form__privacy {
  display: inline-block;
  margin-top: 5px;
  position: relative;
  bottom: -5px;
}

.gallery__title {
  font-weight: 600;
  line-height: 1.23;
  font-size: 30px;
}
@media (min-width: 768px) {
  .gallery__title {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .gallery__title {
    font-size: 40px;
  }
}

.gallery__desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .gallery__desc {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .gallery__desc {
    font-size: 24px;
  }
}

.gallery {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 400px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 800px) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.gallery__link {
  border: none;
  line-height: 0;
  cursor: zoom-in;
}
.gallery__link:hover {
  border: none;
}
.gallery__link:hover .gallery__img {
  transform: scale(1.04);
  box-shadow: 0 2px 20px 2px rgba(0, 0, 0, 0.45);
}

.gallery__img {
  transition: transform 0.15s linear;
  max-height: 357px;
}

.h-categories {
  margin: auto;
  max-width: 300px;
  padding-bottom: 2em;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media (min-width: 615px) {
  .h-categories {
    max-width: 615px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 930px) {
  .h-categories {
    max-width: 930px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1245px) {
  .h-categories {
    max-width: unset;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.h-categories__item {
  max-width: 300px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.h-categories__item:hover {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.h-categories__item a {
  text-decoration: none;
  border: none;
}

.h-categories__img {
  width: auto;
}

.h-categories__title {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 7px 17px 0 rgba(172, 172, 172, 0.2);
  z-index: 99;
}
@media (max-width: 992px) {
  .site-header.fixed .h-item_2,
  .site-header.fixed .logo__separator,
  .site-header.fixed .logo__text,
  .site-header.fixed .h-item_4 {
    display: none;
  }
  .site-header.fixed .header__grid {
    display: grid;
    grid-template-columns: 65px auto;
    grid-gap: 15px;
    justify-content: flex-start;
    max-width: 365px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .site-header.fixed .h-search__wrap,
  .site-header.fixed .h-button__wrap_a {
    display: none;
  }
}
.site-header.fixed .menu-toggle {
  position: absolute;
  top: 25px;
  right: 15px;
  background: none;
}
@media (max-width: 380px) {
  .site-header.fixed .menu-toggle {
    right: 5px;
    padding: 0.4em 0.5em;
  }
}
.site-header.fixed .menu-toggle:before {
  color: #1d1d1b;
}
.site-header.fixed .menu-toggle__text {
  display: none;
}

@media (min-width: 600px) {
  .admin-bar .site-header.fixed {
    top: 32px;
  }
}
.header__grid {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 0.5em 0;
  align-items: center;
}
@media (min-width: 992px) {
  .header__grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.h-item {
  margin-bottom: 0.5em;
}
@media (min-width: 992px) {
  .h-item {
    margin-bottom: 0;
  }
}

.h-item_2 {
  display: none;
}
@media (min-width: 992px) {
  .h-item_2 {
    display: block;
  }
}

.h-item_4 {
  display: none;
}
@media (min-width: 992px) {
  .h-item_4 {
    display: block;
  }
}

.h-phone__link {
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  border: none;
  transition: color 0.3s;
}
.h-phone__link:active, .h-phone__link:focus {
  border: none;
}
.h-phone__link:hover {
  color: #004fa3;
}

.h-button__wrap {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.h-soc {
  max-width: 250px;
}

.h-soc__row {
  display: none;
}
@media (min-width: 992px) {
  .h-soc__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}

.h-soc__item {
  display: flex;
  align-items: center;
  gap: 3px;
}
.h-soc__item svg {
  width: 24px;
  height: 16px;
  fill: #1d1d1b;
}

.h-ok__link,
.h-vk__link,
.h-address__link,
.h-time__link,
.h-email__link,
.h-instagram__link,
.h-youtube__link,
.h-whatsapp__link,
.h-telegram__link,
.h-ozon__link,
.h-viber__link {
  display: inline-block;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 54, 112, 0.2);
  text-decoration: none;
  transition: all 0.3s;
}
.h-ok__link:hover,
.h-vk__link:hover,
.h-address__link:hover,
.h-time__link:hover,
.h-email__link:hover,
.h-instagram__link:hover,
.h-youtube__link:hover,
.h-whatsapp__link:hover,
.h-telegram__link:hover,
.h-ozon__link:hover,
.h-viber__link:hover {
  color: #004fa3;
  border-bottom: 1px solid rgba(0, 79, 163, 0.5);
  text-decoration: none;
}

.h-email__wrap {
  margin-bottom: 0.2em;
  margin-bottom: 3px;
}

.h-address__wrap {
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .h-email__wrap,
  .h-time__wrap,
  .h-address__wrap,
  .h-search__wrap {
    margin-top: 0.5em;
  }
}

.h-search__wrap i {
  cursor: pointer;
}
.h-search__wrap i:hover {
  color: #ff0800;
}
.h-search__wrap .wc-block-product-search__fields {
  display: flex;
  align-items: center;
}
.h-search__wrap .wc-block-product-search__field {
  padding-left: 0;
  padding-bottom: 3px;
  margin-left: 4px;
  font-size: 14px;
  color: #5E5971;
  border: unset;
  border-radius: 0;
  border-bottom: 1px solid rgba(31, 37, 42, 0.2);
  outline: none !important;
}
.h-search__wrap .wc-block-product-search__field:focus, .h-search__wrap .wc-block-product-search__field:active {
  border-bottom: 1px solid rgba(31, 37, 42, 0.5);
}
.h-search__wrap .wc-block-product-search__field::-webkit-input-placeholder {
  color: #5E5971;
  opacity: 1;
}
.h-search__wrap .wc-block-product-search__field::-moz-placeholder {
  color: #5E5971;
  opacity: 1;
}
.h-search__wrap .wc-block-product-search__field:-moz-placeholder {
  color: #5E5971;
  opacity: 1;
}
.h-search__wrap .wc-block-product-search__field:-ms-input-placeholder {
  color: #5E5971;
  opacity: 1;
}
.h-search__wrap .wc-block-product-search__field:focus::-webkit-input-placeholder {
  opacity: 0;
}
.h-search__wrap .wc-block-product-search__field:focus::-moz-placeholder {
  opacity: 0;
}
.h-search__wrap .wc-block-product-search__field:focus:-moz-placeholder {
  opacity: 0;
}
.h-search__wrap .wc-block-product-search__field:focus:-ms-input-placeholder {
  opacity: 0;
}
.h-search__wrap .wc-block-product-search__button {
  display: none;
  padding: 5px 5px;
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}

.advantages.gorizontal,
.advantages {
  display: grid;
  grid-template-columns: 70px auto;
  grid-gap: 16px;
  min-height: 153px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(38, 50, 109, 0.1);
}

.advantages__icon {
  display: flex;
  width: 70px;
  height: 70px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 35px;
  background: #004fa3;
}

.advantages__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.advantages__title {
  color: #004fa3;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .advantages__title {
    font-size: 16px;
  }
}
.advantages__description {
  margin-top: 10px;
  color: #303C42;
  font-size: 14px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .advantages__description {
    font-size: 16px;
  }
}
.advantages.vertical {
  display: block;
  min-height: unset;
}

.advantages.vertical .advantages__icon {
  margin: auto;
}

.advantages.vertical .advantages__title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.advantages.vertical .advantages__description {
  text-align: center;
}

.how-we-work__item_even {
  margin-top: 80px;
}

.icon {
  margin-top: 2em;
}

.icon:hover .icon__fa {
  transition: all, 0.3s;
  background-color: rgba(255, 57, 51, 0.1);
}

.icon__fa {
  border-radius: 100%;
  width: 137px;
  height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
  background-color: #F0F3EF;
}
.icon__fa i {
  font-size: 2em;
  color: #fff;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}

.icon__inner {
  width: 97px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
  background-color: #004fa3;
  font-size: 2em;
  font-weight: 100;
  color: #fff;
}
.icon__inner svg {
  max-height: 32px;
  fill: #fff;
}

.icon__title {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.4;
}

.icon__subtitle {
  text-align: center;
}

/*--------------------------------------------------------------
# Order
--------------------------------------------------------------*/
.ip-order {
  background-color: #004fa3;
}

@media (min-width: 600px) {
  .ip-order {
    background: transparent url(blocks/order/order.webp) top center no-repeat;
    background-size: cover;
  }
}
.ip-order__grid {
  padding: 25px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .ip-order__grid {
    background-color: rgba(0, 79, 163, 0.9);
  }
}
@media (min-width: 1200px) {
  .ip-order__grid {
    padding: 50px;
  }
}
.ip-order__title {
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}
.ip-order__title span {
  color: red;
}

@media (min-width: 768px) {
  .ip-order__title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .ip-order__title {
    font-size: 28px;
  }
}
.ip-order__subtitle {
  text-align: center;
}

.ip-order_theme_dark .ip-order__title {
  color: #fff;
}
.ip-order_theme_dark .ip-order__subtitle {
  color: #fff;
}

.ip-order__description {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.ip-order-form textarea {
  max-height: 122px;
}
.ip-order-form input:not([type=submit]), .ip-order-form textarea {
  width: 100%;
  padding-left: 7px;
  color: #1d1d1b;
  border: 1px solid #3F3F40;
  background-color: transparent;
}
.ip-order-form input:not([type=submit])::-webkit-input-placeholder, .ip-order-form textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order-form input:not([type=submit])::-moz-placeholder, .ip-order-form textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order-form input:not([type=submit]):-moz-placeholder, .ip-order-form textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order-form input:not([type=submit]):-ms-input-placeholder, .ip-order-form textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order-form input:not([type=submit]):focus::-webkit-input-placeholder, .ip-order-form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.ip-order-form input:not([type=submit]):focus::-moz-placeholder, .ip-order-form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.ip-order-form input:not([type=submit]):focus:-moz-placeholder, .ip-order-form textarea:focus:-moz-placeholder {
  opacity: 0;
}
.ip-order-form input:not([type=submit]):focus:-ms-input-placeholder, .ip-order-form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.ip-order-form .message {
  text-align: center;
}

.ip-order-form__item {
  margin-top: 1.2em;
}

.ip-order-form__submit {
  display: block;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.ip-order_theme_dark input:not([type=submit]), .ip-order_theme_dark textarea {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}
.ip-order_theme_dark input:not([type=submit])::-webkit-input-placeholder, .ip-order_theme_dark textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order_theme_dark input:not([type=submit])::-moz-placeholder, .ip-order_theme_dark textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order_theme_dark input:not([type=submit]):-moz-placeholder, .ip-order_theme_dark textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order_theme_dark input:not([type=submit]):-ms-input-placeholder, .ip-order_theme_dark textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.userfile {
  display: none;
}

.userfile__label {
  display: block;
  padding: 6px 12px;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .rev__grid > .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.pr-testimonial {
  width: 100%;
  margin: 1em auto;
}
.pr-testimonial blockquote {
  margin: 0;
  padding: 0;
}
.pr-testimonial .pr-testimonial__content {
  background: #f5f7f8;
  margin: 0;
  padding: 25px 25px 25px 65px;
  position: relative;
  font-size: 14px;
  line-height: 22px;
}
@media screen and (min-width: 520px) {
  .pr-testimonial .pr-testimonial__content {
    padding: 35px 35px 35px 85px;
  }
  .pr-testimonial .pr-testimonial__content::before {
    top: 53px;
    left: 31px;
  }
}
.pr-testimonial .pr-testimonial__content::before {
  content: "“";
  color: #004fa3;
  position: absolute;
  top: 43px;
  left: 21px;
  font-weight: bold;
  font-size: 60px;
  font-family: georgia;
}
.pr-testimonial .pr-testimonial__content::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f5f7f8;
  position: absolute;
  bottom: -10px;
  left: 30px;
}
.pr-testimonial .pr-testimonial__content p:last-of-type {
  margin-bottom: 0;
}

.pr-testimonial__name {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  font-weight: bold;
  padding: 13px 0 0 15px;
  margin: 0 0 5px;
}

.pr-testimonial__phone {
  color: #ff0800;
}

.testimonial-b {
  padding: 22px;
  background-color: #fff;
  border-radius: 8px;
}

.testimonial-b__header {
  display: flex;
}

.testimonial-b__img {
  margin-top: 8px;
  margin-right: 14px;
}
.testimonial-b__img img {
  max-width: 44px;
  max-height: 44px;
  border-radius: 50%;
}
@media (min-width: 480px) {
  .testimonial-b__img img {
    max-width: 58px;
    max-height: 58px;
  }
}

.testimonial-b__name {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 480px) {
  .testimonial-b__name {
    font-size: 18px;
  }
}

.testimonial-b__rating {
  margin-top: 0px;
}
@media (min-width: 480px) {
  .testimonial-b__rating {
    margin-top: 7px;
  }
}
@media (max-width: 480px) {
  .testimonial-b__rating svg {
    max-width: 16px;
  }
}

.testimonial-b__date {
  font-size: 12px;
  opacity: 0.7;
}
@media (min-width: 480px) {
  .testimonial-b__date {
    font-size: 14px;
  }
}

.testimonial-b__source {
  margin-left: auto;
}
.testimonial-b__source img {
  max-width: 100px;
}
@media (min-width: 480px) {
  .testimonial-b__source img {
    max-width: 120px;
  }
}

.testimonial-b__content {
  margin-top: 10px;
}

.testimonial__slider .splide__arrow {
  display: none;
  top: -32px;
  background: #fff;
}
@media (min-width: 1200px) {
  .testimonial__slider .splide__arrow {
    top: -45px;
  }
}

.testimonial__slider .splide__arrows {
  position: absolute;
  width: 110px;
  right: 0;
}

.testimonial-b__rating-meta {
  display: none;
}

.p-list * {
  transition: 0.4s linear;
}

.p-list {
  padding: 0 10px;
  margin: 0;
}

.p-list__item {
  border-bottom: 1px solid #efefef;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  font-size: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-list__item:hover {
  border-bottom: 1px solid #004fa3;
}
@media (min-width: 600px) {
  .p-list__item {
    font-size: 1.1em;
  }
}

.p-list__text {
  display: inline-block;
  max-width: 60%;
}
@media (min-width: 600px) {
  .p-list__text {
    max-width: 80%;
  }
}

.p-list__price {
  float: right;
  display: inline-block;
  border: 1px solid #efefef;
  padding: 0 5px;
  font-size: 0.8em;
  color: #999;
}

.p-list__item:hover .p-list__price {
  color: #004fa3;
  border: 1px solid #004fa3;
}

/*
 * IP Price Table 2
 */
.table-wrap {
  overflow: auto;
}

.ip-price-table-2 {
  width: 100%;
}
.ip-price-table-2 tr {
  border-bottom: 1px solid #58667e !important;
}
.ip-price-table-2 td,
.ip-price-table-2 th {
  padding: 0.5em;
  font-size: 14px;
  color: #333;
}
.ip-price-table-2 thead {
  font-weight: 700;
}
.ip-price-table-2 thead td {
  color: #fff;
  text-align: left;
}

.product-card {
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}
.product-card:hover .product-card__inner {
  border: 1px solid #ccc;
}
.product-card:hover .product-card__discount {
  background: #f8c81d;
}

.product-card__inner {
  padding: 15px;
  border: 1px solid #fff;
  transition: all 0.25s;
  overflow: hidden;
}

.product-card__price {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.product-card__old-price {
  color: #b1b1b1;
  text-decoration: line-through;
  font-size: 13px;
}

.product-card__new-price span {
  font-size: 16px;
  font-weight: 700;
}

.product-card__discount {
  width: 40px;
  height: 40px;
  font-weight: 600;
  color: #fff;
  background: #ff3933;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s;
}

.product-card__title {
  min-height: 40px;
  margin: 10px 0 6px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.product-card__specification ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-card__specification ul > li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 4px;
  font-size: 14px;
  line-height: 14px;
  border-bottom: 1px solid #e9e9e9;
}
.product-card__specification ul > li strong {
  font-weight: 400;
}

.product-card__specification-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 4px;
  font-size: 14px;
  line-height: 14px;
  border-bottom: 1px solid #e9e9e9;
}

.product-card__colors {
  display: flex;
  gap: 6px;
}

.product-card__color {
  width: 14px;
  height: 14px;
  border-radius: 8px;
  overflow: hidden;
}

.ral9003 {
  background: #fff;
  border: 1px solid #d8d8d8;
}

.ral8017 {
  background: #44322d;
}

.ral7024 {
  background: #474a50;
}

.ral6005 {
  background: #0f4336;
}

.ral3005 {
  background: #5e2028;
}

.ral5005 {
  background: #154889;
}

.product-card__btn-holder {
  margin-top: 25px;
}

/*
 * СЕО Теги
 */
.ip-seo-tags {
  padding: 30px 0;
}

.ip-seo-tag {
  display: inline-block;
  margin: 3px;
}

.ip-seo-tag span {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  color: #004fa3;
  border: 1px solid #004fa3;
  cursor: pointer;
}

.ip-seo-tag_hide {
  display: none;
}

.service-card {
  position: relative;
  margin: 10px auto 25px auto;
  max-width: 290px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}
.service-card a {
  border-bottom: none;
}

.service-card__header {
  position: absolute;
  top: 150px;
  left: -10px;
  width: calc(100% + 10px);
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 30px;
  background: #004fa3;
}

.service-card__header:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  border: 5px solid transparent;
  border-top: 5px solid #004fa3;
  border-right: 5px solid #004fa3;
}

.service-card__title {
  margin: 0;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.service-card__discount {
  width: 65px;
  height: 52px;
  position: absolute;
  background: #000;
  color: #fff;
  top: 0;
  right: 0;
}
.service-card__discount p {
  padding: 5px;
  line-height: 0.8;
  margin: 0;
}

.service-card__percent {
  font-size: 22px;
  line-height: 0.8;
}
.service-card__percent span {
  font-size: 24px;
  color: #ff0800;
}

.service-card__price {
  color: #fff;
}

.service-card__main {
  min-height: 220px;
  padding: 40px 10px 10px 22px;
  font-size: 0.9em;
}

.service-card__list li {
  font-size: 0.8em;
}
.service-card__list li::marker {
  color: #ff0800;
}

.service-card__footer {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #004fa3;
  padding: 5px 25px;
  -webkit-border-radius: 30px 0 0;
  border-radius: 30px 0 0;
}

.service-card__link {
  color: #000;
  font-weight: 600;
}

@media (min-width: 768px) and (max-width: 992px) {
  .service-card {
    width: 220px;
  }
  .service-card__list {
    padding: 75px 10px 50px 30px;
  }
  .service-card__header {
    width: 230px;
    height: 52px;
  }
  .service-card__title {
    font-size: 16px;
  }
}
.partners {
  margin-bottom: 2em;
}
@media (min-width: 1200px) {
  .partners {
    margin-bottom: 3em;
  }
}

.partners__item {
  flex-shrink: 0;
  text-align: center;
}

.partners__item img {
  margin: auto;
}

.slick-prev:before, .slick-next:before {
  color: #004fa3;
}

.partners .splide__pagination {
  bottom: -2em;
}
@media (min-width: 1200px) {
  .partners .splide__pagination {
    bottom: -3em;
  }
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .steps {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.step {
  min-height: 315px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 20px;
  border-radius: 0;
  box-shadow: 2px 2px 35px rgba(0, 0, 0, 0.11);
}
@media (max-width: 992px) {
  .step {
    min-height: unset;
  }
}
@media (min-width: 768px) {
  .step {
    min-height: 315px;
    padding: 40px 25px 30px 25px;
  }
}

.step_1 {
  background-color: #004fa3;
  color: #fff !important;
}
.step_1 .step__title {
  text-transform: uppercase;
}

.step__header {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}

.step__number {
  position: relative;
  border: 3px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff0800;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  z-index: 1;
}

.step__title {
  margin: 17px 0 5px 0;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .step__title {
    font-size: 18px;
  }
}

.step__btn {
  margin-top: 15px;
}

.step__phone {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid rgba(255, 57, 51, 0.2);
}
.step__phone:visited {
  color: #fff;
  border-bottom: 1px solid rgba(255, 57, 51, 0.2);
}
.step__phone:hover, .step__phone:focus, .step__phone:active {
  color: #fff;
  border-bottom: 1px solid rgba(255, 57, 51, 0.5);
  outline: 0;
}

.step__content {
  margin-top: 15px;
}

.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #d1e7ff;
  border-radius: 15px;
  padding: 30px;
}
.stage__num {
  color: #004fa3;
  font-size: 54px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 54px */
  letter-spacing: 2.7px;
  margin-bottom: 10px;
}
.stage__name {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.action-tile {
  background-color: #d1e7ff;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  grid-column: span 2;
  gap: 10px;
}
.action-tile__info {
  max-width: 310px;
  width: 100%;
}
.action-tile__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 16px */
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.action-tile__desc {
  color: #777;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}

@media (max-width: 769px) {
  .stages {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 498px) {
  .stages {
    grid-template-columns: 1fr;
  }
  .action-tile {
    grid-column: unset;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .action-tile .btn {
    width: 100%;
  }
}
.title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 0;
  margin-bottom: 1em;
  border-bottom: 2px solid #E5EDEA;
  color: #1d1d1b;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {
  .title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .title {
    font-size: 28px;
  }
}
.title__line {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  content: "";
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 30%;
  background: #ff0800;
}

.title_inverse {
  border-bottom: 2px solid #ccc;
}
.title_inverse .title__line {
  background: #fff;
}

.tiles {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media (min-width: 768px) {
  .tiles {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
}

.tile {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-radius: 5px;
  background: #F5FAFF;
  padding: 20px 15px;
}
.tile__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  background-color: #ff0800;
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tile__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 769px) {
  .tiles-block .tiles {
    grid-template-columns: 1fr;
  }
}
/*--------------------------------------------------------------
# To top
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.anchor {
  display: block;
  position: relative;
  top: -50px;
  visibility: hidden;
}

.to-top__link {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 10px;
  z-index: 2;
  outline: none;
  border: none;
}
.to-top__link:hover, .to-top__link:active, .to-top__link:focus {
  border: none;
}

.to-top__link svg {
  width: 30px;
  height: 30px;
  fill: #ff3933;
}

@media (min-width: 1200px) {
  .to-top__link svg {
    width: 50px;
    height: 50px;
  }
}
/* IP Video Block*/
.ip-video__grid {
  margin-top: 35px;
}
@media (min-width: 1200px) {
  .ip-video__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
  }
}

.ip-video__title {
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.ip-video__subtitle {
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #0468c4;
}

.ip-video__video {
  position: relative;
  max-width: 400px;
  min-height: 225px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  background-color: #004fa3;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ip-video__video:hover .ip-video__play {
  transform: scale(1.2);
}

.ip-video__video iframe {
  width: 100%;
  height: 100%;
  min-height: 225px;
  margin-bottom: -7px;
}

.ip-video__play {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  background-color: #fb0101;
  transition: all 0.3s;
  transition-timing-function: ease-in;
  z-index: 1;
}

.ip-video__play:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  right: -6px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 13px 0 13px 20px;
  border-color: transparent transparent transparent #fff;
  z-index: 1;
}

/*
 * Почему мы
 */
.why-we__item {
  margin: 10px auto 25px auto;
}
@media (min-width: 768px) {
  .why-we__item {
    display: grid;
    grid-template-columns: 64px auto;
    grid-gap: 10px;
  }
}

.why-we__img-wrap {
  position: relative;
}
@media (max-width: 768px) {
  .why-we__img-wrap {
    width: 64px;
    margin: 0 auto 20px auto;
  }
}
.why-we__img-wrap svg {
  width: 45px;
  height: 45px;
  position: relative;
  top: 17px;
  left: -6px;
}
.why-we__img-wrap img {
  height: auto;
  max-width: 45px;
  position: relative;
  top: 17px;
  left: -6px;
}
.why-we__img-wrap:before {
  position: absolute;
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ff0800;
  z-index: -1;
}

.why-we__title {
  margin-bottom: 5px;
  color: #1a1a18;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1170px) {
  .why-we__title {
    font-size: 22px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 768px) {
  .why-we__title,
  .why-we__desc,
  .why-we__item .vc_figure {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .contacts__grid {
    display: grid;
    grid-template-columns: auto 615px;
    grid-gap: 30px;
  }
}
.contacts__title {
  margin-bottom: 28px;
  color: #303C42;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 110%;
}

@media (min-width: 768px) {
  .contacts__title {
    margin-bottom: 32px;
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .contacts__title {
    margin-bottom: 64px;
  }
}
.contacts__item {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .contacts__item {
    margin-bottom: 28px;
  }
}
.contacts__item p {
  margin-bottom: 0;
}

.contacts__name {
  font-weight: 700;
  color: #303C42;
}

.contacts__value {
  font-weight: 300;
  color: #303C42;
}

.contacts__value a {
  text-decoration: none;
  color: #303C42;
}

.contacts__value a:hover {
  color: #303C42;
}

.contacts__map {
  width: 100%;
  height: 300px;
}

@media (min-width: 1200px) {
  .contacts__map {
    height: 282px;
  }
}
/*--------------------------------------------------------------
# Yandex map
--------------------------------------------------------------*/
#yandex-map {
  position: relative;
  width: 100%;
  height: 300px;
  border: none;
}

@media (min-width: 600px) {
  #yandex-map {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  #yandex-map {
    height: 500px;
  }
}
.map__wrap {
  position: absolute;
  margin: 38px 0;
  padding: 30px;
  background-color: white;
  max-width: 450px;
  background-color: white;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.map__item {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
.map__item:last-child {
  margin-bottom: 0;
}

.map__icon {
  margin-right: 15px;
  min-width: 45px;
  text-align: center;
}
.map__icon .fal {
  font-size: 30px;
  color: #0d151d;
}

.map__text {
  display: inline-block;
}

.map__title {
  font-weight: bold;
  color: #0d151d;
}

.map__desc {
  max-width: 300px;
}

@media only screen and (max-width: 768px) {
  .map__wrap {
    display: none;
  }
}
.sproduct__price {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.sproduct__title {
  margin-top: 0.5em;
  font-size: 16px;
  line-height: 1.2;
}

.sproduct__desc {
  display: none;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: center;
}
@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.services__item {
  display: inline-block;
  align-items: center;
  padding: 8px;
  max-width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .services__item {
    padding: 12px;
    min-height: 76px;
  }
}
.services__item:hover {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.services__item:before {
  position: relative;
  bottom: -3px;
  display: inline-block;
  margin-right: 7px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M64 496H311.2c5.8 5.5 12 10.6 18.5 15.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H204.1c12.7 0 24.9 5.1 33.9 14.1L369.9 145.9c9 9 14.1 21.2 14.1 33.9v18.7c-5.4 1.5-10.8 3.3-16 5.4V179.9c0-1.3-.1-2.6-.2-3.9H248c-22.1 0-40-17.9-40-40V16.2c-1.3-.2-2.6-.2-3.9-.2H64C37.5 16 16 37.5 16 64V448c0 26.5 21.5 48 48 48zM361.1 160c-.8-1-1.6-1.9-2.4-2.7L226.7 25.4c-.9-.9-1.8-1.7-2.7-2.4V136c0 13.3 10.7 24 24 24H361.1zM560 368a128 128 0 1 0 -256 0 128 128 0 1 0 256 0zm-272 0a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-48a16 16 0 1 1 0-32 16 16 0 1 1 0 32zM408 440c0-4.4 3.6-8 8-8h8V360h-8c-4.4 0-8-3.6-8-8s3.6-8 8-8h16c4.4 0 8 3.6 8 8v80h8c4.4 0 8 3.6 8 8s-3.6 8-8 8H432 416c-4.4 0-8-3.6-8-8z'/%3E%3C/svg%3E");
  flex-shrink: 0;
  width: 24px;
  height: auto;
}
@media (max-width: 480px) {
  .services__item:before {
    display: none;
  }
}

.services__item.hide {
  display: none;
}

.services__link {
  font-size: 14px;
}

.show-more__btn-wrap {
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 1200px) {
  .show-more__btn-wrap {
    margin-top: 25px;
  }
}

.wpb_text_column h2 {
  margin-bottom: 15px;
}

.wpb_text_column h3 {
  margin-bottom: 15px;
}

.wpb_text_column h4 {
  margin-bottom: 15px;
}

.wpb_text_column ul {
  text-align: justify;
  list-style: none;
  margin: 15px 0 15px 15px;
  padding: 0;
}

.wpb_text_column li:before {
  display: inline-block;
  margin-right: 10px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23157dee' viewBox='0 0 448 512'%3E%3Cpath d='M443.3 100.7c6.2 6.2 6.2 16.4 0 22.6l-272 272c-6.2 6.2-16.4 6.2-22.6 0l-144-144c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L160 361.4 420.7 100.7c6.2-6.2 16.4-6.2 22.6 0z'/%3E%3C/svg%3E");
  width: 10px;
  height: auto;
}

.wpb_text_column p + p {
  margin-bottom: 10px;
}
/*# sourceMappingURL=../ip/sass/maps/critical.css.map */
