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

/*
@media(min-width: $query__xs) {
}
@media(min-width: $query__sm) {
}
@media(min-width: $query__md) {
}
@media(min-width: $query__lg) {
}
*/
/*
Какие точки использовать?
Ответ на этот вопрос даёт сам блок. Один. Каждый.
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;
}

.bg {
  margin-top: 25px;
  margin-bottom: 25px;
  background-color: rgba(52, 244, 250, 0.8);
  border: 10px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .bg {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.border img {
  border: 10px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

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

.section_first {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 25px;
}
@media (min-width: 1200px) {
  .section_first {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 25px;
  }
}

.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;
  font-weight: normal;
}
@media (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 50px;
  }
}

h3 {
  font-size: 25px;
  line-height: 29px;
}

h4 {
  font-size: 21px;
  line-height: 25px;
}

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 url(images/bg.webp) repeat;
}

.text {
  font-size: 24px;
}

.text_white {
  color: #fff;
}

.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.6em;
  min-width: 186px;
  border: 1px solid;
  border-radius: 0px;
  border-color: rgb(52, 244, 250);
  background: rgb(52, 244, 250);
  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%);
}
.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: rgb(52, 244, 250);
  background: rgb(52, 244, 250);
  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: #66f7fb;
  background: #66f7fb;
  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: #66f7fb;
  color: #fff;
  background: #66f7fb;
  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;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(18, 32, 54, 0.2);
}
a:visited, a:hover, a:focus, a:active {
  color: #1d1d1b;
  border-bottom: 1px solid rgba(18, 32, 54, 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 #2c4c82;
}
table thead {
  background-color: #1F365C;
}
table thead th,
table thead td {
  color: #fff;
  font-weight: normal;
  border: 1px solid #2c4c82;
}
table p {
  margin: 0;
}

.ip-table tbody tr:nth-of-type(even),
.ip-table tfoot tr:nth-of-type(even) {
  background-color: rgba(31, 54, 92, 0.05);
}
.ip-table tbody tr:hover,
.ip-table tfoot tr:hover {
  background-color: rgba(44, 76, 130, 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;
  font-weight: normal;
}
@media (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 50px;
  }
}

h3 {
  font-size: 25px;
  line-height: 29px;
}

h4 {
  font-size: 21px;
  line-height: 25px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.menu-g-container {
  display: block;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .menu-g-container {
    padding-top: 25px;
  }
}

.menu-g {
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
@media (min-width: 768px) {
  .menu-g {
    text-align: right;
  }
}

.menu-g .menu-item {
  position: relative;
  display: inline-block;
}
.menu-g .menu-item:hover > a, .menu-g .menu-item.focus > a {
  background-color: #66f7fb;
}

.menu-g a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 0.9em;
  color: #1d1d1b;
  padding: 0.2em 0.5em;
  border: 5px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: rgb(52, 244, 250);
  transition: background-color 0.3s;
}
@media (min-width: 992px) {
  .menu-g a {
    padding: 0.3em 1em;
    font-size: 1em;
    border: 10px solid rgba(0, 0, 0, 0.5);
  }
}

.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;
}

article.page {
  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(31, 54, 92, 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-block__img {
  margin-top: 1em;
  text-align: center;
}

.sidebar-block__name {
  font-size: 18px;
  color: #1F365C;
  text-align: center;
  font-weight: 700;
  font-style: normal;
}

.sidebar-block__line {
  width: 50px;
  height: 3px;
  background-color: #1F365C;
  margin: 20px auto;
}

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

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

.sidebar-block__link {
  font-size: 0.9em;
  font-weight: 300;
  display: inline-block;
  padding-bottom: 0.1em;
  color: #1F365C;
  border-bottom: 1px solid rgba(31, 54, 92, 0.2);
  transition: all 0.3s;
}
.sidebar-block__link:hover {
  border-bottom: 1px solid rgba(31, 54, 92, 0.5);
}

/*
 * 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: #1F365C;
  color: #fff;
  padding: 10px 10px;
  display: block;
  border-bottom: 1px solid #2c4c82;
  transition: 0.5s all;
}
.home-menu .menu a:hover {
  background: #2c4c82;
  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;
}

/* Blocks
--------------------------------------------- */
.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: #1F365C;
  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(18, 32, 54, 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: #1F365C;
  border-bottom: 1px solid rgba(31, 54, 92, 0.5);
  text-decoration: none;
}

/* 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;
}

.site-header {
  position: relative;
  top: -1px;
  padding-bottom: 50px;
  background-image: url(images/header.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.logo__wrap {
  margin-top: 25px;
  text-align: center;
}
@media (min-width: 1200px) {
  .logo__wrap {
    margin-top: 140px;
  }
}

.logo__text {
  display: inline-block;
  padding: 5px 30px;
  border-radius: 10px;
  background-color: #186B67;
  color: rgb(52, 244, 250);
  font-size: 44px;
  -webkit-text-stroke: 1px #fff;
}

.h-slider {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 0 !important;
  border: 10px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.h-slider a {
  line-height: 0;
}
.h-slider .swiper-slide {
  line-height: 0;
}

.music {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.music__inner {
  border: 10px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: rgb(52, 244, 250);
}

.music__title {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
  color: rgb(52, 244, 250);
}

.music__audio {
  width: 100%;
}
.music__audio::-webkit-media-controls-panel {
  background-color: rgb(52, 244, 250);
}

.music__content {
  font-size: 1.2em;
  color: #fff;
}

/* 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: 560px;
  min-height: 315px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  background-color: #1F365C;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 10px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

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

.ip-video__video iframe {
  width: 100%;
  height: 100%;
  min-height: 315px;
  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;
}

.contacts__section {
  min-height: 820px;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Yandex map
--------------------------------------------------------------*/
#yandex-map {
  position: relative;
  width: 100%;
  height: 350px;
  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;
  }
}