/* fallback */
@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialsymbolsrounded/v245/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxc.woff2)
    format('woff2');
}
.grecaptcha-badge {
  display: none;
}
:root {
  --white: #fff;
  --green: #87ac3d;
  --l-green: #bbee55;
  --red: #b02114;
  --l-red: #f43726;
  --black: #000;
  --blue: #005bff;
  --l-black: #454545;
  --l-gray: #f5f5f5;
  --px35: 15px;
}
.parallax__layer {
  transition: transform 0.3s linear;
}
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: linear;

  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
body {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 360px;
  height: 100vh;
  height: 100dvh;
  background: #e51f1f;
  transition: all 0.4s ease;
}

.sidebar.collapsed {
  width: 85px;
}
.sidebar.collapsed .logo-title span {
  color: #e51f1f;
}
.sidebar .sidebar-header {
  display: flex;
  position: relative;
  padding: 25px 17px;
  align-items: center;
  justify-content: space-between;
}
.sidebar.collapsed .logo-text {
  opacity: 0;
}
.sidebar-header .header-logo img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}
.header-logo {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-logo .logo-title {
  color: #fff;
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
}
.header-logo .logo-text {
  color: #fff;
  font-size: 15px;
  max-width: 88px;
  line-height: 1;
}
.sidebar-header .sidebar-toggler,
.sidebar-menu-button {
  position: absolute;
  right: -16px;
  height: 35px;
  width: 35px;
  color: #e51f1f;
  border: none;
  cursor: pointer;
  display: flex;
  background: #eef2ff;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.4s ease;
}
#svgArrow {
  width: 120px;
  position: absolute;
  top: -225px;
  right: -44px;
  transform: rotate(187deg);
}
.reviews__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.reviews__grid .reviews_item {
  width: calc(50% - 5px);
  border-radius: 10px;
  overflow: hidden;
}
.reviews__grid .reviews_item.reviews_item0 {
  width: 100%;
}
#svgArrow .draw-arrow {
  stroke-width: 5;
  stroke: #e51f1f;
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#svgArrow .draw-arrow.tail-1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
#svgArrow .draw-arrow.tail-2 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

#svgArrow.show .draw-arrow {
  -webkit-animation-name: draw;
  animation-name: draw;
}
@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.sidebar.collapsed .sidebar-header .sidebar-toggler {
  transform: translate(-40px, 65px);
}

.sidebar-header .sidebar-toggler span,
.sidebar-menu-button span {
  font-size: 1.75rem;
  transition: 0.4s ease;
}

.sidebar.collapsed .sidebar-header .sidebar-toggler span {
  transform: rotate(180deg);
}

.sidebar-header .sidebar-toggler:hover {
  background: #d9e1fd;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  width: 80%;
  position: relative;
}

.modal-content span {
  position: absolute;
  top: -10px;
  right: -15px;
  font-size: 90px;
  cursor: pointer;
  z-index: 99999;
  display: block;
  color: #fff;
  cursor: pointer;
}
.modal-content iframe {
  height: 80vh;
}
.sidebar-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0 15px;
  flex-direction: column;
  transform: translateY(15px);
  transition: 0.4s ease;
}

.sidebar .sidebar-nav .primary-nav {
  overflow-y: auto;
  scrollbar-width: thin;
  padding-bottom: 20px;
  height: calc(100vh - 370px);
  scrollbar-color: transparent transparent;
}

.sidebar .sidebar-nav .primary-nav:hover {
  scrollbar-color: #eef2ff transparent;
}

.sidebar.collapsed .sidebar-nav .primary-nav {
  overflow: unset;
  transform: translateY(65px);
}

.sidebar-nav .nav-item .nav-link {
  color: #fff;
  display: flex;
  gap: 12px;
  white-space: nowrap;
  border-radius: 8px;
  padding: 11px 15px;
  align-items: center;
  text-decoration: none;
  border: 1px solid #e51f1f;
  transition: 0.4s ease;
}

/* H1 в сайдбар-меню должен выглядеть как обычный label, без изменения внешнего вида */
.sidebar-nav .nav-item .nav-link h1.nav-label {
  all: unset;
  display: inline;
  font: inherit;
  color: inherit;
}

.sidebar-nav .nav-item:is(:hover, .open) > .nav-link:not(.dropdown-title) {
  color: #e51f1f;
  background: #eef2ff;
}

.sidebar .nav-link .nav-label {
  transition: opacity 0.3s ease;
}

.sidebar.collapsed .nav-link :where(.nav-label, .dropdown-icon) {
  opacity: 0;
  pointer-events: none;
}

.sidebar.collapsed .nav-link .dropdown-icon {
  transition: opacity 0.3s 0s ease;
}

.sidebar-nav .secondary-nav {
  position: absolute;
  bottom: 35px;
  width: 100%;
  background: #e51f1f;
}

.sidebar-nav .nav-item {
  position: relative;
}

/* Dropdown Stylings */
.sidebar-nav .dropdown-container .dropdown-icon {
  margin: 0 -4px 0 auto;
  transition: transform 0.4s ease, opacity 0.3s 0.2s ease;
}

.sidebar-nav .dropdown-container.open .dropdown-icon {
  transform: rotate(180deg);
}

.sidebar-nav .dropdown-menu {
  height: 0;
  overflow-y: hidden;
  list-style: none;
  padding-left: 15px;
  transition: height 0.4s ease;
  margin-bottom: 0;
}
.has-sidebar {
  display: flex;
  justify-content: space-between;
}
.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page {
  padding-top: 110px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.page > section {
  width: 100%;
}
@media (max-width: 1600px) {
  .page {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .page {
    padding-top: 55px;
  }
}
.hero__section {
  margin-top: -110px;
}
@media (max-width: 1600px) {
  .hero__section {
    margin-top: -80px;
  }
}
@media (max-width: 768px) {
  .hero__section {
    margin-top: -55px;
  }
}
.has-sidebar .layout {
  width: 100%;
  margin-left: 360px;
  position: relative;
  z-index: 2;
  transition: 0.4s all;
}
.close-sidebar.has-sidebar .layout {
  margin-left: 85px;
}
.sidebar.collapsed .dropdown-menu {
  position: absolute;
  top: -10px;
  left: 100%;
  opacity: 0;
  height: auto !important;
  padding-right: 10px;
  overflow-y: unset;
  pointer-events: none;
  border-radius: 0 10px 10px 0;
  background: #e51f1f;
  transition: 0s;
}
.fixed-menu__social-item {
  transition: 0.4s all;
}
.fixed-menu__social-item:hover {
  transform: translateY(-5px);
}
.sidebar.collapsed .dropdown-menu:has(.dropdown-link) {
  padding: 7px 10px 7px 24px;
}

.sidebar.sidebar.collapsed .nav-item:hover > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(12px);
  transition: all 0.4s ease;
}

.sidebar.sidebar.collapsed .nav-item:hover > .dropdown-menu:has(.dropdown-link) {
  transform: translateY(10px);
}

.dropdown-menu .nav-item .nav-link {
  color: #f1f4ff;
  padding: 9px 15px;
}

.sidebar.collapsed .dropdown-menu .nav-link {
  padding: 7px 15px;
}

.dropdown-menu .nav-item .nav-link.dropdown-title {
  display: none;
  color: #fff;
  padding: 9px 15px;
}

.dropdown-menu:has(.dropdown-link) .nav-item .dropdown-title {
  font-weight: 500;
  padding: 7px 15px;
}

.sidebar.collapsed .dropdown-menu .nav-item .dropdown-title {
  display: block;
}

.sidebar-menu-button {
  display: none;
}
.fixed-menu__bottom-content {
  position: absolute;
  bottom: 0;
  padding-bottom: 35px;
  padding-left: 30px;
  width: 100%;
  padding-right: 30px;
}
.fixed-menu__mobile-title {
  display: block;
  font-size: 20px;
  line-height: 1;
  /* font-weight: 300; */
  color: #fff;
}
.email-sidebar,
.phone-sidebar {
  display: flex;
  margin: 10px 0 10px 0;
  transition: opacity 0.3s ease;
}
.email-sidebar .material-symbols-rounded,
.phone-sidebar .material-symbols-rounded {
  opacity: 0;
  width: 0;
  color: #bfdf14;
}
.sidebar.collapsed .fixed-menu__email-link,
.sidebar.collapsed .fixed-menu__working-time,
.sidebar.collapsed .fixed-menu__mobile-title,
.sidebar.collapsed .fixed-menu__mobile-link {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  height: 0;
  width: 0;
  transition: opacity 0.3s ease;
}
.sidebar.collapsed .email-sidebar .material-symbols-rounded,
.sidebar.collapsed .phone-sidebar .material-symbols-rounded {
  opacity: 1;
  width: auto;
  cursor: pointer;
}
.fixed-menu__mobile-link {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  color: #bfdf14;
  font-family: Gilroy;
}
.fixed-menu__working-time {
  display: block;
  font-size: 20px;
  line-height: 1;
  /* font-weight: 300; */
  color: #fff;
}
.fixed-menu__email-link {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #fff;
  font-size: 22.7px;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 10px;
  text-transform: none;
  /* font-family: Gilroy; */
}

.d-flex,
.list--row {
  display: flex;
}
/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .sidebar-menu-button {
    position: fixed;
    left: 20px;
    top: 20px;
    height: 40px;
    width: 42px;
    display: flex;
    color: #f1f4ff;
    background: #e51f1f;
  }

  .sidebar.collapsed {
    width: 270px;
    left: -270px;
  }

  .sidebar.collapsed .sidebar-header .sidebar-toggler {
    transform: none;
  }

  .sidebar.collapsed .sidebar-nav .primary-nav {
    transform: translateY(15px);
  }
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: 0.4s all;
}
body {
  font-family: 'Bebas Neue', serif;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  color: #3f3f46;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: 'Bebas Neue';
}
p {
  margin-top: 0;
  margin-bottom: 20px;
}
ol,
ul,
dl {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}
b,
strong {
  font-weight: bold;
}

a {
  color: #e51f1f;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.4s;
}

a:hover {
  text-decoration: none;
}
img {
  vertical-align: middle;
  border-style: none;
  width: auto;
  margin: auto;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}
.single-image-product img {
  width: 100%;
  height: auto;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role='button'] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
  cursor: pointer;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  transition: 0.4s all;
}
.container-full {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  /* align-content: flex-end; */
  /* align-items: flex-end; */
}

.container-full .row {
  margin-right: 0;
  margin-left: 0;
}
.container-full .row .col-6 {
  padding: 0;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col-0 {
  display: none;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 600px;
  }
  .close-sidebar .container,
  .close-sidebar .container-md,
  .close-sidebar .container-lg {
    max-width: 800px;
  }
  .close-sidebar .container-sm {
    max-width: 700px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 870px;
  }

  .container-sm {
    max-width: 600px;
  }

  .close-sidebar .container,
  .close-sidebar .container-sm,
  .close-sidebar .container-md,
  .close-sidebar .container-lg {
    max-width: 870px;
  }
  .close-sidebar .container-sm {
    max-width: 700px;
  }
}
@media (min-width: 1610px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1340px;
  }
  .container-lg {
    max-width: 1120px;
  }
  .container-md {
    max-width: 1020px;
  }
  .container-sm {
    max-width: 600px;
  }
  .close-sidebar .container,
  .close-sidebar .container-sm,
  .close-sidebar .container-md,
  .close-sidebar .container-lg {
    max-width: 1120px;
  }

  .close-sidebar .container-sm {
    max-width: 700px;
  }
}
.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

.flexcenter {
  align-content: center;
  align-items: center;
}
/**HEADER**/
.navbar-collapse {
  vertical-align: middle;
  margin-top: 12px;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.4s all;
  padding: 0px 0;
  background: none;
  margin-top: 0;
}
.navbar-nav {
  list-style-type: none;
  margin: 0;
  display: flex;
  justify-content: space-around;
  width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.menu-item a {
  transition: all 0.4s;
  font-family: Bebas Neue;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #414042;
}
.sub-menu {
  display: none;
}
.headerbg {
  border-radius: 10px;
  background: rgb(0, 0, 0);
  padding: 20px;
}
.logo a {
  font-size: 70px;
  color: rgb(241, 30, 30);
  line-height: 1;
  font-weight: 900;
}
.logo a:hover {
  text-decoration: none;
}
.left-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header_title {
  font-size: 25px;
  font-family: 'Gilroy';
  color: rgb(255, 255, 255);
  line-height: 1.186;
  text-align: left;
  max-width: 300px;
}
.contact_info {
  text-align: right;
}
.contact_info .phone {
  font-size: 25px;
  color: #fff;
  font-family: 'Gilroy';
  display: block;
}
.contact_info .email {
  font-size: 18px;
  display: block;
  color: #b8b8b8;
  font-family: 'Gilroy';
}
.d-flex {
  display: flex;
}
.justify-content-end {
  justify-content: flex-end;
}
.align-items-center {
  align-items: center;
}
.guarantees {
  padding-top: 35px;
  padding-bottom: 0;
  background: url(../img/about-quality-bg.webp) no-repeat top center / cover;
}
.guarantees img.marina {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: 100%;
}
.guarantees__header {
  position: relative;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.guarantees__title {
  max-width: 820px;
  font-size: 70px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}
.guarantees__title span {
  color: var(--l-red);
  font-family: inherit;
  position: relative;
}
.guarantees__wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
  justify-content: space-between;
}
.guarantees__manager {
  position: relative;
  right: -15px;
  margin-left: auto;
  margin-bottom: 80px;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  background: var(--white);
  right: 0;
  margin-left: 0;
  border-radius: 8px;
  width: max-content;
}
.manager__name {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
  color: #000;
  font-weight: 700;
}
.btn.banner-mos__btn:hover {
  background: #f43726;
}
.btn.btn--red:hover,
.btn.banner-sample__btn:hover {
  background: #bfdf14;
  color: #000;
}
.btn.btn--red-shadow:hover {
  border: 1px solid #bfdf14;
  box-shadow: 0 6px 0px #90a711;
}
.btn.btn--white:hover {
  background: var(--l-red);
  color: var(--white);
}
.btn.btn--green-shadow:hover {
  background: #f43726;
  color: #000;
  border: 1px solid #f43726;
  box-shadow: 0 6px 0px #9a1d12;
}
.manager__role {
  display: flex;
  font-size: 11px;
  line-height: 1;
}
.guarantees__video-wrapper {
  position: relative;
  flex-direction: column;
  padding-bottom: 80px;
  width: 100%;
  max-width: 700px;
}
.guarantees__link-wrapper {
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  order: 2;
}
.guarantess__video-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 243px;
  height: 143px;
  border: 1px solid #978884;
  border-radius: 8px;
  overflow: hidden;
}
.guarantess__video-poster,
.guarantees__quote-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guarantees__video-title {
  padding: 15px 10px;
  color: var(--white);
  border-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}
.gurantees__quote-wrapper {
  display: flex;
  align-items: center;
  max-width: 90%;
  margin-left: auto;
  order: 1;
}
.guarantees__quote-text {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin-right: 5px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  font-family: 'Gilroy';
}
.guarantees__quote-icon--top {
  margin-bottom: 5px;
  align-items: center;
}
.guarantees__quote-icon--top::after,
.guarantees__quote-icon--bottom::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.guarantees__quote-icon svg {
  flex-shrink: 0;
}
.fixed-menu__social-link svg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.fixed-menu__bottom-social {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.fixed-menu__bottom-social .material-symbols-rounded {
  color: #bfdf14;
  opacity: 0;
  visibility: hidden;
  width: 0;
  cursor: pointer;
}
.sidebar.collapsed .fixed-menu__bottom-social .material-symbols-rounded {
  opacity: 1;
  visibility: visible;
  width: auto;
  z-index: 9;
}
.fixed-menu__social-list {
  gap: 10px;
  list-style: none;
  margin: 0;
  transition: 0.4s all;
  width: 100%;
  justify-content: space-between;
}
.sidebar.collapsed .fixed-menu__social-list {
  opacity: 0;
  transform: translateX(-10px);
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}

.sidebar.collapsed .fixed-menu__bottom-social.active .fixed-menu__social-list {
  opacity: 1;
  visibility: visible;
  width: auto;
  transform: translateX(10px);
  z-index: 3;
}
.guarantees__quote-video-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 5px;
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: 0;
  flex-shrink: 0;
}
.guarantees__quote-video-wrapper::before {
  content: '';
  position: absolute;
  background: url(../img/play.png) no-repeat center center / 22px;
  width: 30px;
  height: 30px;
}
.guarantees__quote-view {
  padding-left: 35px;
  font-size: 26px;
  line-height: 1;
  color: var(--white);
  font-weight: 600;
  display: none;
}
.guarantees__stats {
  position: absolute;
  left: 0;
  bottom: -70px;
  top: auto;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-bottom: 0;
  flex-wrap: wrap;
  z-index: 99;
}
.guarantees__stats-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 8px);
  padding: 15px 10px 10px 10px;
  background: #f9f9fa;
  border: 1px solid #cbcbcb;
  border-radius: 10px;
  text-align: center;
  width: calc(25% - 10px);
  transition: 0.4s all;
}
.guarantees__stats-item:hover {
  background: #e51f1f;
  border: 1px solid #e51f1f;
  transform: translateY(-5px);
  color: #fff;
}
.guarantees__stats-item:hover .guarantees__stats-number {
  color: #ffffff;
}
.guarantess__video-link::before {
  content: '';
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--l-red) url(../img/play.png) no-repeat center center / 22px;
  box-shadow: 0 0 0 9px rgb(253 63 46 / 36%);
  animation: pulse 2s infinite;
}
.guarantees__stats-number {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--l-red);
  font-size: 40px;
}
header .menu-item-type-post_type.current-menu-item a,
header .menu-item a:hover,
header .menu-item:hover a {
  text-decoration: none;
  border-bottom: 2px solid #333;
}
header .menu-item {
  position: relative;
  padding: 0;
  transition: all 0.4s;
  display: inline-block;
}
/**END HEADER**/

/***FOOTER**/
footer {
  padding: 35px 0 35px;
  background: #414042;
  color: #fff;
}
footer .logo {
  padding: 20px 20px;
  text-align: center;
}
footer .inn {
  text-align: right;
  margin-top: 60px;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
}
/**END FOOTER**/
section {
  padding: 30px 0;
  background-size: cover;
  position: relative;
}
.button,
.btn {
  border: none;
  color: #fff;
  min-width: auto;
  display: inline-block;
  transition: all 0.4s;
  padding: 18px 45px 18px 45px;
  height: 55px;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  line-height: 1;
  text-transform: uppercase;
  border: 0;
  border-radius: 10px;
  background: #f43726;
}
.button:hover,
.btn:hover {
  text-decoration: none;
  color: #fff;
  background: #000;
}
.banner_baza.type1 .image {
  display: block;
}
.banner_baza.type1 .image_mobile {
  display: none;
}
p {
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgba(65, 64, 66);
}
input {
  outline: none;
  border: none;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
h1 {
  font-family: Bebas Neue;
  font-weight: bold;
  font-size: 50px;
  line-height: 61px;
  color: #414042;
}
h5 {
  font-weight: 500;
  font-size: 14px;
  margin: 12px 0px;
}
.section-all-horses h2 {
  font-family: Bebas Neue;
  font-weight: bold;
  font-size: 40px;
  line-height: 49px;
  color: #414042;
  margin-bottom: 40px;
  margin-top: 40px;
}
.section-all-horses .mtb {
  margin: 10px 0;
}
.wpcf7 input {
  background: #ffffff;
  border: 1px solid rgba(65, 64, 66, 0.25);
  width: 100%;
  min-height: 40px;
  margin-bottom: 5px;
}
.wpcf7 textarea {
  background: #ffffff;
  border: 1px solid rgba(65, 64, 66, 0.25);
  width: 100%;
  height: 157px;
  margin-bottom: 10px;
}
.section-form h1 {
  margin-bottom: 42px;
}
.wpcf7 label {
  font-family: Bebas Neue;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #414042;
}
.wpcf7 .wpcf7-submit {
  width: 140px;
  min-height: 30px;
  height: 30px;
  background: #414042;
  border: 1px solid #414042;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  text-align: center;
}
.post_image img {
  width: 100%;
}
.post_image {
  margin-bottom: 30px;
  transition: 0.4s all;
  display: inline-block;
}
img.right {
  width: 10px;
  float: right;
  margin-bottom: 10px;
}
.post_text {
  font-family: Bebas Neue;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
}
.hero_content {
  min-height: 100vh;
}
.hero {
  padding: 0;
  min-height: 100vh;
}
.hero_title {
  margin-bottom: 20px;
  line-height: 1;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 87px;
  position: absolute;
  top: 20%;
  right: 0;
  max-width: 600px;
  font-weight: 900;
}
.hero_title span {
  color: #e51f1f;
}

.hero_image {
  position: absolute;
  left: 0;
  max-width: 1000px;
  bottom: 0;
}
.features_list {
  position: absolute;
  right: 0;
  bottom: 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature_block {
  position: absolute;
  right: 32%;
  bottom: 10%;
  background: #fff;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: linear-gradient(0deg, #d1d1d1, #ffffff);
  box-shadow: 0 0 2px 7px rgb(240 240 240 / 50%);
  font-size: 18px;
  line-height: 1;
  color: #e51f1f;
  text-transform: uppercase;
  text-align: center;
  animation: bounceIn 2s infinite 2s;
}
@keyframes fade {
  0% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}
.feature_block .feature_value {
  color: #3f3f46;
  font-size: 35px;
  font-weight: 900;
}
.feature_block {
}
.features_list .feature_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: calc(50% - 5px);
  padding: 20px 5px 10px 5px;
  text-align: center;
  background: linear-gradient(145deg, #3c3c3c, #111);
  border-radius: 10px;
  box-shadow: inset 0px 0px 10px #3c3c3c;
  align-items: flex-start;
  width: 100%;
  padding: 22px 30px 22px 60px;
}
.features_list .feature_item .feature_item_icon {
  position: absolute;
  top: 0;
  left: -30px;
  bottom: 0;
  margin: auto;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f43726;
  box-shadow: 0 0 0 2px rgb(255 0 0 / 50%), 0 0 0 4px rgb(255 0 0 / 30%),
    0 0 0 6px rgb(255 0 0 / 20%);
  display: flex;
  color: #fff;
  font-size: 25px;
  font-family: 'Gilroy';
}

.features_list .feature_item .feature_item_icon:before {
  content: '';
  position: absolute;
  display: block;
  width: 200%;
  height: 200%;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: -1;
  background-color: #e51f1f;
  -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.features_list .feature_item .feature_item_icon:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

.features_list .feature_item.sk .feature_item_icon:before {
  background-color: #bfdf14;
}

@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.features_list .feature_item .feature_item_content {
  font-size: 25px;
  text-align: left;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.features_list .feature_item .feature_item_content .feature_item_title {
  color: #fff;
  display: block;
}

.features_list .feature_item .feature_item_content .feature_item_title span {
  display: block;
}
.features_list .feature_item.sk .feature_item_content .feature_item_title span {
  color: #bfdf14;
}
.features_list .feature_item.sk .feature_item_icon {
  padding: 10px;
  background: #bfdf14;
  box-shadow: 0 0 0 2px rgb(191 223 20), 0 0 0 4px rgb(191 223 20 / 30%),
    0 0 0 6px rgb(191 223 20 / 30%);
}
.author_block {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  width: fit-content;
  background: #fff;
  padding: 20px 30px 20px 20px;
  border-radius: 8px;
  width: 210px;
  height: 106px;
}
.author_block .author_name {
  font-weight: bold;
}
.author_block .author_name span {
  font-weight: 400;
  display: block;
}
.author_position {
  font-size: 14px;
}

.about-section {
  padding-bottom: 35px;
  background: #191818;
}
.about__header {
  transform: skew(0deg, -2deg) translateY(-40px);
  text-align: center;
}
.about__header-title {
  position: relative;
  display: inline-block;
  padding: 20px 45px 10px 20px;
  font-size: 80px;
  line-height: 1;
  color: #fff;
  background: #292929;
  border-radius: 10px;
  margin-top: -50px;
  margin-bottom: 50px;
  font-family: 'Bebas Neue', sans-serif;
}
.about__header-title span {
  color: #f43726;
  font-family: inherit;
}
.about__header-title::after {
  content: '';
  position: absolute;
  bottom: -34px;
  right: 0;
  display: block;
  width: 74px;
  height: 74px;
  background: url(../img/down-btn.png) no-repeat center center / contain;
  animation: fade 1s linear infinite alternate;
}
.about__slide {
  height: auto !important;
  overflow: hidden;
  border-radius: 10px;
  background: #292929;
}
.about__posts-title {
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  padding: 10px 20px 10px 20px;
  color: #fff;
}
.about__posts-icon {
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #414141;
  border-radius: 50%;
  transition: 0.4s all;
}
.about__posts-icon:hover {
  background: #e51f1f;
}
.home-product__swiper {
  border-radius: 14px;
  box-shadow: 0 0 30px #c2c2c2;
}
.post-template-default .page,
.archive .page,
.page-template-default .page {
  margin-top: 115px;
  min-height: 40vh;
}
.home.page-template-default .page {
  margin-top: 0;
}
.singlePost__content img {
  margin-bottom: 30px;
}
.singlePost__text ul {
  padding-left: 20px;
}
body:not(.home).page-template-default .page li,
body:not(.home).page-template-default .page p {
  font-family: Gilroy;
  font-size: 18px;
  line-height: 26px;
}
.home-product__slider-wrapper .swiper-button-next {
  right: -20px;
}
.home-product__slider-wrapper .swiper-button-prev {
  left: -20px;
}
body:not(.home).page-template-default .page ul {
  padding-left: 20px;
}
body:not(.home).page-template-default .page h3,
body:not(.home).page-template-default .page h1.h3,
body:not(.home).page-template-default .page h1.h1-like-h3,
.page h1.h1-like-h3,
.textBlock .h1-like-h3 {
  font-size: 35px;
  line-height: 1.1;
  margin: 0;
}

/* Срастить H1 и следующий H3 без лишних отступов, чтобы визуально было как один блок */
.textBlock .h1-like-h3 + h3 {
  margin-top: 0;
}
.about__posts-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about__posts .swiper-wrapper {
  gap: 20px;
}
.about__slide {
  transition: 0.4s all;
  width: 32%;
}
.page-header__logo {
  color: #f11e1e;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 39px;
  line-height: 1;
  font-weight: bold;
}
table {
  width: 100%;
}
tr:nth-child(odd) {
  background: #f5f5f5;
}
table tr th,
table tr td {
  padding: 20px;
  text-align: center;
  font-family: Gilroy;
}
strong {
  font-weight: bold;
}
.table table thead tr {
  background: #bfdf14;
}
.title--h1 {
  font-size: 40px;
  line-height: 50px;
}
.page-header .col-4 {
  text-align: right;
}
.about__slide:hover {
  transform: translateY(-5px);
}
.about__video-slider-wrapper {
  display: block;
  width: calc(60% - 5px);
  padding-top: 25px;
  padding-bottom: 5px;
  /*background: #0b0b0b;*/
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about__playlist-wrapper {
  width: calc(40% - 5px);
}
.bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
main {
  overflow: hidden;
}
.bg-bubbles li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgb(191 223 20 / 13%);
  bottom: -160px;
  -webkit-animation: square 25s infinite;
  animation: square 25s infinite;
  transition-timing-function: linear;
}
.bg-bubbles li:nth-child(1) {
  left: 10%;
}
.bg-bubbles li:nth-child(2) {
  left: 20%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 17s;
  animation-duration: 17s;
}
.bg-bubbles li:nth-child(3) {
  left: 25%;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.bg-bubbles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-duration: 22s;
  animation-duration: 22s;
  background-color: rgba(255, 255, 255, 0.25);
}
.bg-bubbles li:nth-child(5) {
  left: 70%;
}
.bg-bubbles li:nth-child(6) {
  left: 80%;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-bubbles li:nth-child(7) {
  left: 32%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.bg-bubbles li:nth-child(8) {
  left: 55%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}
.bg-bubbles li:nth-child(9) {
  left: 25%;
  width: 10px;
  height: 10px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
  background-color: rgba(255, 255, 255, 0.3);
}
.bg-bubbles li:nth-child(10) {
  left: 90%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 11s;
  animation-delay: 11s;
}
@-webkit-keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-700px) rotate(600deg);
  }
}
@keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-700px) rotate(600deg);
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px 4px rgb(131 131 131 / 10%);
  z-index: 9;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #414141;
  font-size: 20px !important;
  font-weight: bold !important;
}
.about__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.about__video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__video-item {
  flex-direction: row;
  align-items: center;
}
.about__video-list {
  margin-bottom: 10px;
  list-style: none;
  padding-top: 25px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.imgphone img {
  height: 100%;
}
.about__shorts-video {
  border-radius: 10px;
  overflow: hidden;
}
.btn--small {
  padding: 10px 15px;
  font-size: 13px;
  background: #f43726;
  color: #fff;
  height: auto;
}
.about__title-wrapper {
  width: 100%;
}
.about__item-title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 5px;
  font-size: 20px;
}
.about__video-img-wrapper {
  flex-shrink: 0;
  width: 50%;
  max-width: 220px;
  height: auto;
  margin-right: 15px;
  border-radius: 10px;
  overflow: hidden;
  width: 220px;
  height: 120px;
  flex-shrink: 0;
  margin-right: 20px;
  margin-bottom: 0;
}
.about__video-info-wrapper .btn--red:hover {
  color: #000;
}
.home-product_section {
  padding: 50px 0;
}
.home-product__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding-bottom: 70px;
}
.home-product__product-order-wrapper {
  width: calc(40% - 25px);
  padding: 0;
}
.home-product__details-wrapper {
  display: block;
  width: calc(60% - 25px);
}
.home-product__slider-wrapper {
  position: relative;
}
.swiper-button-prev.home-product__btn-prev {
  left: -20px;
}
.swiper-button-next.home-product__btn-next {
  right: -20px;
}
.singlePost__text p {
  font-family: Gilroy;
}
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  padding-top: 15px;
}
.home-product__cost-wrapper {
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 600;
  font-family: 'Gilroy';
}
.home-product__slider-wrapper img {
  border-radius: 10px;
}
.swiper-pagination-bullet {
  background: #353535 !important;
  opacity: 1 !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 10px !important;
  transition: all 0.2s linear !important;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  background: #fe311f !important;
  width: 34px !important;
}
.home-product__cost {
  margin-right: 5px;
  font-size: 24px;
  line-height: 1;
  color: #c337ff;
  font-size: 28px;
}
.home-product__sale {
  font-size: 16px;
  line-height: 1;
  text-decoration: line-through;
  color: #9d9ba4;
  font-size: 20px;
}
.home-product__info-wrapper {
  margin-bottom: 10px;
}
.home-product__info {
  flex-shrink: 0;
  margin-right: 10px;
}
.home-product__title {
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  font-size: 26px;
  font-family: 'Gilroy';
}
.home-product__rating {
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.home-product__rating svg,
.home-product__btn svg {
  margin-right: 5px;
}
.home-product__desc {
  font-size: 20px;
  line-height: 1.3;
  color: #808080;
  font-family: 'Gilroy';
}
.home-product__swiper {
  overflow: hidden;
}
.home-product__list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.home-product__btn {
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  color: var(--white);
  border-radius: 10px;
  background: #c237ff;
  border: 0;
  box-shadow: none;
  font-size: 20px;
  line-height: 1;
}
.home-product__list-title {
  margin-bottom: 35px;
  font-size: 42px;
  line-height: 37px;
  font-weight: bold;
  font-family: 'Gilroy';
  letter-spacing: -1px;
}
.home-product__list-title span {
  color: #f43726;
}
.home-product__item {
  align-items: center;
  gap: 20px;
}
sup {
  font-size: 11px;
  line-height: 1;
}
.home-product__item-title {
  margin-bottom: 5px;
  color: #f43726;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.1;
}
section.page-header {
  padding-bottom: 0;
}
section.imageBlock {
  padding-top: 0;
}
.quote .textBlock__inner {
  border-left: 7px solid #f43726;
  font-size: 28px;
  line-height: 1;
  padding-left: 15px;
}
section.imageBlock img {
  border-radius: 10px;
}
.home-product__item-desc {
  font-size: 18px;
  font-weight: 300;
  font-family: 'Gilroy';
  margin-bottom: 0;
}
.promo {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.reviews__desc-wrapper,
.reviews__video-wrapper,
.promo__char,
.promo__delivery {
  width: calc(50% - 20px);
}
.promo__char,
.promo__delivery {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.promo__char {
  position: relative;
  justify-content: flex-end;
  padding: 60px 15px 20px 15px;
  margin-bottom: 50px;
  background: url(../img/promo-card-bg.png) no-repeat center center / cover;
  border-radius: 10px;
  margin-bottom: 0;
}
.promo__char::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 125px;
  height: 75px;
  background: url(../img/heat.png) no-repeat center center / contain;
}

.promo__text {
  max-width: calc(100vw - 155px);
  color: #fff;
  max-width: 260px;
  font-size: 48px;
  line-height: 1;
  font-family: 'Bebas Neue', sans-serif;
  transform: rotate(-2deg);
  font-weight: 900;
}
.promo__text span {
  color: #f43726;
  font-family: inherit;
}
.promo__delivery-title span,
.banner-ozon__title span {
  color: #f43726;
}
.promo__char::after {
  content: '';
  position: absolute;
  bottom: -48px;
  left: -65px;
  width: 235px;
  height: 209px;
  background: url(../img/kirpichi.png) no-repeat center center / contain;
}
.promo__delivery {
  padding: 20px 10px 20px 10px;
  border: 2px solid #e4e4e4;
  border-radius: 20px;
  background: url(../img/map.png) no-repeat center center / contain;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.promo__delivery,
.banner-ozon {
  padding: 40px 20px 30px 20px;
  text-align: center;
}

.promo__delivery-title,
.banner-ozon__title {
  margin-bottom: 20px;
  font-size: 43px;
  line-height: 1;
  color: #000000;
  text-align: center;
}
.promo__delivery-desc {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
  font-size: 22px;
  color: #000000;
  text-align: center;
  font-family: 'Gilroy';
}
.arr1 {
  position: absolute;
  width: 96px;
  height: 256px;
  object-fit: cover;
  top: -228px;
  right: 0;
}

.reviews__wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 20px;
  padding-top: 120px;
  z-index: 9;
  position: relative;
}

.reviews__desc-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 105px;
  max-width: 480px;
  position: relative;
  margin-top: 49px;
}
.home-social {
  margin-bottom: 0;
  padding: 25px 0 70px 0;
  background: #eff4f9;
}
.home-social__header {
  margin-bottom: 25px;
}
.home-social__list {
  justify-content: space-between;
  gap: 5px;
}
.home-social__item {
  width: calc(100% / 7 - 5px);
}
.home-social__link {
  padding: 5px;
  align-items: center;
  padding: 5px;
  width: 100%;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 5px 4px rgba(131 131 131 / 10%);
  border-radius: 44px;
  transition: all 0.4s;
}
.home-social__item a:hover {
  transform: translateY(-10px);
  background: #e51f1f;
}
.home-social__item a:hover .home-social__text-wrapper {
  color: #fff;
}
.home-social__img-wrapper {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 5px;
  border-radius: 50%;
}
.home-social__img-wrapper svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.home-social__text-wrapper {
  font-size: 15px;
  flex-direction: column;
  line-height: 1;
  color: #000;
}
.home-social__title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
.reviews__desc {
  max-width: 415px;
  font-size: 40px;
  margin-bottom: 25px;
  line-height: 1.15;
  /* font-family: "Gilroy", sans-serif; */
  color: #000;
}
.reviews__telegram {
  position: relative;
  align-items: center;
  padding: 15px 15px;
  max-width: 200px;
  background: var(--white);
  box-shadow: 0 0 5px 4px rgba(131 131 131 / 10%);
  border-radius: 20px;
  z-index: 5;
  gap: 10px;
  transition: 0.4s all;
}
.reviews__telegram:hover {
  transform: translateY(-10px);
  background: #bfdf14;
  box-shadow: 0 0 18px 8px rgb(131 131 131 / 28%);
}
.imgphone {
  position: absolute;
  bottom: 0;
  display: block;
  width: auto;
  right: -60px;
  bottom: 0px;
  bottom: 60px;
  height: 330px;
  z-index: 5;
}
.reviews__telegram-profile {
  font-family: 'Gilroy', sans-serif;
  color: #000;
}
.reviews__swiper {
  overflow: hidden;
  position: relative;
}
.reviews__header {
  margin-bottom: 35px;
}
.reviews__title {
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  color: #000;
}
.banner-sample {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: -55px;
  margin-bottom: 0;
  max-width: 767px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  border-radius: 20px;
  position: relative;
  width: 100%;
}
.btn--big {
  padding: 20px 60px;
}
.btn--red {
  background: var(--l-red);
  color: var(--white);
}
.btn--red-shadow {
  border: 1px solid var(--l-red);
  box-shadow: 0 6px 0px var(--red);
}
.btn--white {
  background: var(--white);
  color: var(--l-red);
  border-radius: 10px;
  padding: 10px 4px;
  width: 100%;
}
.btn--white-shadow {
  border: 1px solid var(--l-red);
  box-shadow: 0 6px 0px var(--red);
}
.banner-sample__btn {
  position: relative;
  bottom: -15px;
  display: inline-flex;
  z-index: 5;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: max-content;
}
.banner-sample__wrapper {
  width: 100%;
  padding: 37px 130px 70px 130px;
  overflow: hidden;
  position: relative;
  background: url(../img/spatula-bg.png) no-repeat center center / cover;
}
.banner-sample__wrapper::before,
.banner-sample__wrapper::after {
  content: '';
  display: block;
  position: absolute;
}
.banner-sample__wrapper::before {
  width: 222px;
  height: 222px;
  transform: rotate(29deg);
  background: url(../img/spatula.png) no-repeat center center / contain;
  left: -35px;
  transform: rotate(7deg);
  bottom: -50%;
}
.baza-slider,
.top-posts-slider {
  overflow: hidden;
}

.baza img {
  height: 110px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}
.top-posts img {
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}
.baza h5 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
}
body:not(.home).page-template-default .page .baza p {
  line-height: 18px;
  font-size: 14px;
  color: #999;
}

.top-posts h5 {
  font-size: 20px;
}
body:not(.home).page-template-default .page .top-posts p {
  line-height: 18px;
  font-size: 14px;
  color: #999;
}
.title-icon {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  font-size: 25px;
  margin-bottom: 30px;
}
.title-icon h2 {
  margin-bottom: 0;
}
.title-icon img {
  width: max-content;
  margin: 0;
}
.top-posts .swiper-button-next {
  right: -25px;
  top: 70px;
}
.baza .swiper-button-next {
  right: -25px;
  top: 70px;
}
.btn-see {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  max-width: max-content;
  padding: 5px 15px;
  color: #646464;
  margin: auto;
  border-radius: 30px;
}
.btn-see:hover {
  background: #000;
  color: #fff;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.flex-wrap {
  flex-wrap: wrap;
  gap: 10px;
}
.top-posts-item {
  width: calc(25% - 8px);
}
.btn-see svg {
  width: 15px;
  height: 10px;
}
.baza .swiper-button-prev {
  left: -25px;
  top: 70px;
}
.top-posts .swiper-button-prev {
  left: -25px;
  top: 70px;
}
.banner-sample__wrapper::after {
  right: -55px;
  bottom: -40%;
  width: 187px;
  height: 203px;
  transform: skew(0deg, 15deg);
  background: url(../img/home-img.png) no-repeat center center / contain;
  right: 0;
  bottom: 0;
  transform: none;
  right: 0;
  bottom: 0;
  transform: none;
}
.banner-sample__text {
  font-size: 46px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  transform: skew(0, -3deg);
  color: var(--white);
  font-size: 56px;
  max-width: 430px;
  display: block;
  margin: 0;
}
.banner-sample__text span {
  color: var(--l-red);
  font-family: inherit;
  position: relative;
}
.fancybox-button svg path {
  fill: rgb(255 255 255);
}
.banner-doc__wrapper,
.banner-why {
  display: flex;
  margin: 0 auto;
  gap: 20px;
  padding-top: 0;
}
.banner-why {
  padding-top: 120px;
}
.home .banner-why {
  padding-top: 0;
}
.banner-doc__item--bg-img {
  background: url(../img/sk-15.png) no-repeat center center / cover;
}
.banner-doc__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 15px;
  width: calc(50% - 10px);
  border: 1px solid #eaeaea;
  border-radius: 10px;
}
.banner-doc__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.banner-doc__item--btn {
  background: linear-gradient(to bottom, #e7f4fc, #ffffff);
}
.banner-doc__desc {
  font-size: 22px;
  text-align: center;
  font-weight: 400;
}
.banner-mos {
  position: relative;
  z-index: 30;
  padding: 0 0 40px;
}
.btn--black {
  background: var(--black);
  color: var(--white);
}
.banner-mos__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  max-width: 690px;
  border-radius: 20px;
  background: var(--l-gray);
  text-align: center;
  padding: 20px 30px;
}
.banner-mos__text-wrapper {
  max-width: 360px;
  margin-bottom: 0;
  font-size: 32px;
  text-align: left;
  line-height: 1;
  font-weight: 900;
}
.banner-mos__btn {
  position: relative;
  padding: 18px 55px;
}
.banner-mos__btn::before {
  content: '';
  position: absolute;
  background: url(../img/btn-img.png) no-repeat center center / contain;
  left: -115px;
  top: -35px;
  width: 185px;
  height: 167px;
}
.banner-mos__text-wrapper span {
  color: var(--l-red);
}
.banner-doc__btn {
  position: relative;
  justify-content: center;
  bottom: 40px;
  margin: 0 auto;
}
.banner-why__wrapper {
  border-radius: 20px;
  padding: 50px 16px 50px 55px;
  position: relative;
  width: 100%;
  background: url(../img/zavob-bg.png) no-repeat center center / cover;
  color: var(--white);
}
.bannerimg {
  right: 0;
  bottom: 0;
  width: auto;
  max-height: 510px;
  z-index: 2;
  position: absolute;
}
.banner-why__title {
  max-width: 580px;
  font-size: 54px;
  line-height: 1;
}
.home .banner-why__title {
  max-width: 500px;
}
.banner-why__title span {
  font-family: inherit;
  color: var(--l-red);
  position: relative;
}

.bounce {
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}
.banner-sample__text span::after,
.banner-why__title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 9px;
  left: 0;
  bottom: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' viewBox='0 0 280 18' fill='none' preserveAspectRatio='none' class='draw-line__svg' style=''%3E%3Cpath d='M154.17 16.5838C149.252 15.9341 144.937 13.0896 140.669 10.4421C139.225 9.59372 137.579 9.31296 136.053 10.0428C133.436 11.2107 131.011 12.8672 128.461 14.2027C125.581 15.7078 122.516 17.0906 119.289 17.0632C117.302 17.0535 115.335 16.4888 113.589 15.4092C111.676 14.2795 110.031 12.4459 107.869 11.9183C105.654 11.7629 103.602 13.09 101.508 13.7282C99.8905 14.315 98.2721 14.8584 96.6267 15.325C93.8194 16.1248 90.8329 16.4454 87.9637 15.9539C85.284 15.5701 82.9226 13.9415 80.2983 13.3205C79.3179 13.0911 78.3317 13.238 77.3682 13.4665C72.9656 14.9009 68.6968 16.8972 64.1371 17.6688C59.1096 18.7376 54.1909 17.1235 49.8536 14.2071C47.8682 13.093 45.6575 12.2479 43.4491 12.9267C35.8062 15.4961 27.3449 20.6303 19.5095 15.9262C16.3981 14.3104 14.2141 10.4992 10.7161 9.88812C8.34526 9.84145 6.40069 11.6634 4.46818 12.9788C3.23697 13.9497 0.717623 16.0418 0.0130976 13.4111C-0.172516 10.7186 1.65245 8.41642 3.09215 6.49208C5.70817 3.15902 9.80276 1.19458 13.7349 2.23715C17.321 3.00106 20.0171 5.91629 23.1049 7.8749C30.1259 10.9291 38.3973 2.63468 45.7773 3.17524C50.156 3.23133 53.8348 6.0383 57.735 7.89637C65.6592 10.2264 72.7941 2.72279 80.7065 3.70281C83.2438 3.99742 85.6049 5.13891 87.9719 6.14046C92.8246 7.64002 97.6454 4.8242 102.226 3.33375C104.61 2.44469 107.167 1.94812 109.663 2.55205C112.192 3.09274 114.454 4.64098 116.559 6.26419C118.225 7.82735 120.314 7.63287 122.208 6.76175C122.09 6.81197 121.988 6.85226 121.878 6.89752C127.813 4.6367 133.161 -1.02354 139.807 0.161167C143.355 0.71836 146.349 3.12223 149.468 4.94046C157.529 9.85293 166.667 5.56078 174.861 3.78252C178.767 2.71338 181.66 3.55652 185.011 5.90611C187.84 6.74553 190.704 5.32272 193.399 4.47178C197.687 2.84161 201.996 0.916927 206.6 0.949909C211.095 0.835251 215.456 2.23225 219.884 2.90957C222.805 3.40505 225.762 3.56717 228.71 3.5028C236.41 3.35319 243.992 1.66245 251.649 1.00724C253.693 0.900304 255.709 1.38697 257.749 1.50676C259.847 1.54841 261.939 1.49371 264.036 1.46305C267.948 1.42576 271.852 1.16197 275.709 0.421574C277.702 0.0502937 279.641 1.70041 279.955 3.93745C280.274 6.22745 278.859 8.33944 276.871 8.72029C272.938 9.47163 268.965 9.9584 265.012 10.5654C261.923 11.1096 258.793 11.2493 255.675 10.9501C254.121 10.8028 252.576 10.4383 251.007 10.6626C242.998 11.6469 235.008 13.1516 226.925 13.11C221.844 13.1381 216.838 12.0993 211.857 11.0648C203.117 8.85949 197.616 14.0835 189.424 15.5338C185.758 16.2517 181.953 15.4095 178.866 13.0217C178.013 12.742 177.116 13.1092 176.262 13.2538C173.958 13.857 171.659 14.4601 169.346 15.0201C164.381 16.2229 159.262 17.4235 154.161 16.5839L154.17 16.5838Z' fill='%23f43726' style='%0A'%3E%3C/path%3E%3C/svg%3E");
}
.banner-why__desc {
  margin-bottom: 35px;
  font-size: 18px;
  max-width: 340px;
  color: #fff;
}
.banner-why__btn {
  position: relative;
  z-index: 5;
}
.btn--green-shadow {
  border: 1px solid var(--l-green);
  box-shadow: 0 6px 0px var(--green);
}
.btn--green {
  background: var(--l-green);
  color: var(--black);
}
.btn--big {
  padding: 20px 60px;
}
.footer {
  background: #1b1d22;
  padding: 78px 0 55px 0;
  color: #fff;
}
.footer-left__top {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-bottom: 35px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #fff;
}
.footer-logo .logo-text {
  font-size: 68px;
  line-height: 97px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: bold;
}
.footer-logo__info {
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  max-width: 115px;
}
.footer-logos {
  display: flex;
  gap: 9px;
}
.footer-bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.footer-label {
  font-size: 16px;
  line-height: 14px;
  color: #c2c3c4;
  font-weight: 400;
  display: block;
  font-family: Gilroy;
}
.footer-bottom__left .footer-label {
  margin-bottom: 15px;
}
.footer-bottom__left a {
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  font-weight: normal;
}
.footer-bottom__right .footer-tel__number {
  display: inline-block;
  margin: 7px 0 12px 0;
  color: #bfdf14;
  font-size: 28px;
  line-height: 24px;
  font-weight: bold;
}
.footer-label__sm {
  font-size: 14px;
  line-height: 11px;
  font-weight: 400;
  color: #c2c3c4;
  display: block;
}
.footer .email-box {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
}
.footer .email-box a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  font-family: Gilroy;
}
.footer-right .box {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-right h4 {
  color: #3ca1f3;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.footer-right a,
.footer-right .white-text {
  font-size: 16px;
  line-height: 24px;
  color: #c2c3c4;
  display: block;
  font-weight: 300;
  color: #fff;
  font-family: Gilroy;
}
.upbtn {
  opacity: 0.6;
  z-index: 9999;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: -80px;
  right: 20px;
  cursor: pointer;
  transition: all 0.7s ease-in-out;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #e51f1f;
  border-radius: 50%;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCIgdmlld0JveD0iMCAwIDQ0NC44MTkgNDQ0LjgxOSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDQ0LjgxOSA0NDQuODE5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPHBhdGggZD0iTTQzMy45NjgsMjc4LjY1N0wyNDguMzg3LDkyLjc5Yy03LjQxOS03LjA0NC0xNi4wOC0xMC41NjYtMjUuOTc3LTEwLjU2NmMtMTAuMDg4LDAtMTguNjUyLDMuNTIxLTI1LjY5NywxMC41NjYgICBMMTAuODQ4LDI3OC42NTdDMy42MTUsMjg1Ljg4NywwLDI5NC41NDksMCwzMDQuNjM3YzAsMTAuMjgsMy42MTksMTguODQzLDEwLjg0OCwyNS42OTNsMjEuNDExLDIxLjQxMyAgIGM2Ljg1NCw3LjIzLDE1LjQyLDEwLjg1MiwyNS42OTcsMTAuODUyYzEwLjI3OCwwLDE4Ljg0Mi0zLjYyMSwyNS42OTctMTAuODUyTDIyMi40MSwyMTMuMjcxTDM2MS4xNjgsMzUxLjc0ICAgYzYuODQ4LDcuMjI4LDE1LjQxMywxMC44NTIsMjUuNywxMC44NTJjMTAuMDgyLDAsMTguNzQ3LTMuNjI0LDI1Ljk3NS0xMC44NTJsMjEuNDA5LTIxLjQxMiAgIGM3LjA0My03LjA0MywxMC41NjctMTUuNjA4LDEwLjU2Ny0yNS42OTNDNDQ0LjgxOSwyOTQuNTQ1LDQ0MS4yMDUsMjg1Ljg4NCw0MzMuOTY4LDI3OC42NTd6IiBmaWxsPSIjRkZGRkZGIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.upbtn:hover {
  opacity: 1;
  background-color: #e51f1f;
}

.home-product_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-product_section::before,
.home-product_section::after {
  position: absolute;
  width: 350px;
  height: 350px;
  content: '';
  border-radius: 54% 46% 42% 58%/60% 58% 42% 40%;
  background-image: linear-gradient(45deg, #d8d8d8, #cacaca);
  animation: vawe 5s linear infinite;
}
.home-product_section::before {
  top: -10%;
  right: -10%;
}
.home-product_section::after {
  bottom: -10%;
  left: -15%;
}
.home-product_section .dots {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.home-product_section .dots span {
  position: absolute;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #d8d8d8, #cacaca);
  border-radius: 38% 62% 55% 45%/32% 53% 47% 68%;
  animation: vawe 7s linear infinite;
}
.home-product_section .dots span:nth-child(1) {
  top: 10%;
  left: calc(100% - 360px);
  width: 75px;
  height: 75px;
}
.home-product_section .dots span:nth-child(2) {
  top: 15px;
  left: 180px;
  width: 50px;
  height: 50px;
  border-radius: 38% 62% 33% 67%/60% 53% 47% 40%;
  transform: rotate(90deg);
}
.home-product_section .dots span:nth-child(3) {
  right: 180px;
  bottom: 20px;
  width: 80px;
  height: 80px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
}
.home-product_section .dots span:nth-child(4) {
  bottom: 50px;
  left: 240px;
  width: 20px;
  height: 20px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
}
.home-product_section .dots span:nth-child(5) {
  right: 280px;
  bottom: 80px;
  width: 25px;
  height: 25px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
}
.home-product_section .dots span:nth-child(6) {
  top: 6%;
  left: calc(100% - 400px);
  width: 25px;
  height: 25px;
}
.author_block svg {
  position: absolute;
  left: 0;
  top: 0;
}
.textBlock_left-content {
  max-width: 440px;
}
.textBlock_left-content span {
  color: #e51f1f;
}
.textBlock_left {
  border-radius: 20px;
  padding: 60px 40px;
  background-color: #f5f5f5;
  position: relative;
}
.textBlock_left::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: 370px;
  height: 245px;
  background-image: url(/wp-content/uploads/2025/06/untitled-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.shape {
  stroke-dasharray: 140 540;
  stroke-dashoffset: -474;
  stroke-width: 4px;
  fill: transparent;
  stroke: #e51f1f;
  border-bottom: 5px solid black;
  transition: stroke-width 1s, stroke-dashoffset 1s, stroke-dasharray 1s;
}

.shape:hover {
  stroke-dashoffset: 0;
  stroke-dasharray: 760;
}

.timeline {
  width: 100%;
  background-color: #f5f5f5;
  color: #fff;
  padding: 40px 40px;
  border-radius: 15px;
}
.timeline ul {
  list-style-type: none;
  border-left: 2px solid #b9b9b9;
  padding: 10px 5px;
}
.timeline ul li {
  padding: 15px;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}
.timeline ul li span {
  display: inline-block;
  border-radius: 0;
  padding: 0;
  font-size: 30px;
  text-align: center;
  color: #e51f1f;
  font-family: 'Bebas Neue', serif;
  font-weight: bold;
}
.timeline ul li .content h3 {
  color: #34ace0;
  font-size: 17px;
  padding-top: 5px;
}
.timeline ul li .content p {
  padding: 5px 0px 15px 0px;
  font-size: 15px;
  margin-bottom: 0;
}
.timeline ul li:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background-color: #878787;
  border-radius: 50%;
  left: -11px;
  top: 20px;
  transition: 0.5s;
}
.timeline ul li:hover {
  background-color: #dcdcdc;
}
.timeline ul li:hover:before {
  background-color: #e51f1f;
  box-shadow: 0px 0px 10px 2px #e51f1f;
}
.masonry {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 2rem;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  transition: 0.4s all;
}
.masonry-item__title {
  font-size: 30px;
  color: #2c2c2c;
  line-height: 1;
  position: relative;
}
.masonry-item__title span {
  padding-right: 10px;
}
.masonry-item__title svg {
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
  top: -12px;
  right: -20px;
  transition: 0.4s all;
}
.masonry-item:hover {
  background-color: #e51f1f;
}
.line {
  width: 50px;
  height: 2px;
  background-color: #e51f1f;
  margin-bottom: 15px;
  transition: 0.4s all;
}
.masonry-item:hover svg {
  stroke: #ffffff;
  transform: rotate(45deg);
}

.masonry-item:hover .line {
  background: #fff;
}
.masonry-item:hover .masonry-item__text p,
.masonry-item:hover .masonry-item__title {
  color: #fff;
}
.doc-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cfcfcf;
  padding: 10px 0;
}
.doc-item .doc__title {
  width: 70%;
}
.doc-item .doc__file {
  width: 10%;
  text-align: center;
  align-items: center;
}
.doc_format span {
  padding: 3px 15px;
  background-color: #e51f1f;
  color: #fff;
  border-radius: 5px;
}
.doc_format span.XLSX {
  background: #4caf50;
}
.doc_format span.PDF {
  background: #bd0d00;
}
.doc_format span.DOCX,
.doc_format span.DOC {
  background: #3ca1f3;
}
.doc_format span.PNG,
.doc_format span.JPEG,
.doc_format span.JPG {
  background: #bfdf14;
}
.doc-item .doc__file svg {
  width: 30px;
  height: 30px;
}

.banner_shipping .row {
  background: #f6f6f6;
  padding: 30px 20px;
  border-radius: 10px;
}

.banner_shipping img {
  border-radius: 20px;
}
.breadcrumbs-bottom a {
  color: #999;
}
.breadcrumbs-bottom {
  display: flex;
  gap: 0;
  color: #999;
  color: #000;
  margin-bottom: 40px;
  align-content: center;
  align-items: center;
}
.breadcrumbs-bottom a.item-home {
  color: #000;
}
.item-home {
  margin-right: 10px;
  color: #000;
}
.banner_shipping .textBlock__inner {
  margin-top: 40px;
}
.doc-item .doc_format {
  text-align: center;
  width: 10%;
}
.doc-item .doc_weight {
  width: 10%;
  text-align: right;
}
.banners_shipping img {
  border-radius: 0;
  width: 30%;
}
.banners_shipping .textBlock__inner {
  background: #f6f6f6;
  padding: 30px 20px;
  border-radius: 10px;
}
.banners_shipping .textBlock__inner_text {
  height: 52px;
  margin-bottom: 15px;
}
.togglecost {
  margin-top: 25px;
}
.togglecost__link {
  color: #000;
}
.faq {
  width: 100%;
  position: relative;
}
.faq-questions {
  margin-top: 25px;
  list-style: none;
}
.faq-questions,
.faq-questions > li {
  width: 100%;
  display: block;
}
.faq-questions > li {
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  border-bottom: 1px solid rgba(246, 246, 246, 0.85);
}
.faq-questions > li:last-child {
  border-bottom: 0;
}
.faq-questions > li .faq-answer,
.faq-questions > li .faq-asnwer {
  display: none;
}
.faq-questions > li .faq-answer:hover,
.faq-questions > li .faq-asnwer:hover {
  color: #000;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #000;
}
.faq-answer {
  padding: 15px;
  font-weight: 300;
  font-size: 18px;
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000;
  transition: 0.2s;
}
.opened .faq-icon {
  transform: rotate(45deg);
}
body:not(.home).page-template-default .page .togglecost ul {
  padding-left: 0;
  list-style: none;
}
body:not(.home).page-template-default .page a:hover {
  color: #e51f1f;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.logos .logo {
  width: 25%;
  transition: 0.4s all;
}
.logos .logo img {
  transition: 0.4s all;
}
.logos .logo:hover {
  z-index: 9;
}
.logos .logo:hover img {
  box-shadow: 0 0 30px #cecece6b;
  border-radius: 17px;
}

.logos .logo img {
}
form.calculator label {
  display: inline-block;
  border-left: 4px solid #fe311f;
  padding: 14px 0 12px 15px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  vertical-align: middle;
  margin-bottom: 0;
}
.calculator__item {
  padding: 10px 10px;
  background: #f5f5f5;
  border-radius: 5px;
}
.calculator select {
  padding: 10px 8px;
  background: #f9f9fa;
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calculator button {
  background: #fe311f;
  border: 1px solid #fe311f;
  text-align: center;
  border-radius: 8px;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 24px;
  transition: all 0.2s linear;
}
.calculator__btn-wrapper {
  margin: 20px 0;
}
.separate_walls,
.entire_building {
  display: none;
}
.calculator__error-text {
  margin-bottom: 20px;
  color: var(--l-red);
  text-transform: uppercase;
  font-weight: 600;
}
.calculator input {
  padding: 10px 8px;
  background: #f9f9fa;
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calculator input,
.calculator select,
.calculator textarea {
  vertical-align: middle;
  display: inline-block;
}
.calculator__item + .calculator__item,
.calculator__entire,
.calculator__separate {
  margin-top: 5px;
}
.calculator__results-wrapper {
  background: var(--l-gray);
}
.calculator__results-desc {
  padding: 30px 30px 20px;
}
.calculator__results-button {
  display: none;
}
.calculator__results-link {
  margin-bottom: 30px;
  margin-left: 30px;
}
.calculator__title-results {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.5;
}
.calculator__resultred,
.calculator__title-results span {
  font-weight: 600;
  color: var(--l-red);
}
.calculator-products__section {
  order: 1;
}
.calculator-products__grid {
  display: grid;
  gap: 20px;
  padding-bottom: 10px;
}

@media (min-width: 600px) {
  .calculator-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.calculator-product {
  padding: 180px 20px 20px;
  border-radius: 20px;
  background-color: #f3f5f5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 768px) {
  .calculator-product {
    padding-top: 225px;
  }
}

@media (min-width: 1200px) {
  .calculator-product {
    padding-top: 224px;
  }
}

.calculator-product--1 {
  background-image: url('../assets/calculator/product-1-mobile.webp');
}
.calculator-product--2 {
  background-image: url('../assets/calculator/product-2-mobile.webp');
}
.calculator-product--3 {
  background-image: url('../assets/calculator/product-3-mobile.webp');
}

@media (min-width: 1200px) {
  .calculator-product--1 {
    background-image: url('../assets/calculator/product-1-desktop.webp');
  }
  .calculator-product--2 {
    background-image: url('../assets/calculator/product-2-desktop.webp');
  }
  .calculator-product--3 {
    background-image: url('../assets/calculator/product-3-desktop.webp');
  }
}

.calculator-product__button-wrap {
  max-width: 350px;
  margin: 0 auto;
  height: 100%;
}

.calculator-product__button-wrap a {
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 4px !important;
}

.calculator-product__button-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calculator-product__text {
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}
.popup {
  display: none;
  max-width: 600px;
  padding: 0;
}
.popup-top {
  min-height: 250px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/wp-content/themes/spadar/img/spatula-bg.png');
  position: relative;
  background-size: cover;
  background-position: center;
}
.popup-top::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: var(--l-red);
  opacity: 0.6;
}
.popup-top .popup-top-title {
  z-index: 3;
  font-size: 40px;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}
.popup-bottom {
  min-height: 200px;
  padding: 20px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 1em 0.5em;
}
.popup p {
  margin-bottom: 5px;
  position: relative;
}
.wpcf7 .form__field-wrapper textarea,
.wpcf7 .form__field-wrapper input {
  margin-bottom: 5px;
  padding: 10px;
}
.wpcf7-acceptance label {
  display: flex;
  align-items: center;
}
.wpcf7-list-item {
  margin: 0px;
}
.wpcf7 input.form__acceptance {
  background: #ffffff;
  border: none;
  width: auto;
  min-height: auto;
  margin-bottom: 0;
  margin-right: 10px;
}
.textBlock__inner ol {
  padding-left: 20px;
}
.popup .wpcf7 .wpcf7-submit {
  width: 140px;
  min-height: 30px;
  height: 50px;
  background: #e51f1f;
  border: 1px solid #e51f1f;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  text-align: center;
  display: block;
  padding: 10px;
  margin: auto;
}
.popup .wpcf7 .wpcf7-submit:hover {
  background: #000;
  border: 1px solid #000;
}
.wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 300px) {
  .timeline {
    width: 100%;
    padding: 30px 5px 30px 10px;
  }
  .timeline ul li .content h3 {
    color: #34ace0;
    font-size: 15px;
  }
}

@keyframes vawe {
  20% {
    border-radius: 45% 55% 62% 38%/53% 51% 49% 47%;
  }
  40% {
    border-radius: 45% 55% 49% 51%/36% 51% 49% 64%;
  }
  60% {
    border-radius: 60% 40% 57% 43%/47% 62% 38% 53%;
  }
  80% {
    border-radius: 60% 40% 32% 68%/38% 36% 64% 62%;
  }
}
@media (max-width: 1600px) {
  .hero_image {
    max-width: 850px;
  }
  .hero_title {
    font-size: 70px;
    max-width: 550px;
  }
  .feature_block {
    right: 40%;
  }
  .features_list .feature_item {
    padding: 12px 17px 12px 50px;
  }
  .sidebar-nav .nav-item .nav-link {
    gap: 10px;
    padding: 6px 15px;
  }
  .fixed-menu__mobile-title {
    font-size: 16px;
  }
  .fixed-menu__mobile-link {
    font-size: 26px;
  }
  .email-sidebar,
  .phone-sidebar {
    margin: 5px 0 5px 0;
  }
  .fixed-menu__email-link {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .sidebar .sidebar-nav .primary-nav {
    height: calc(100vh - 325px);
  }
  .hero_image {
    max-width: 750px;
  }
  .fixed-menu__bottom-social {
    margin-top: 0;
  }
  .home-product_section .container-lg {
    z-index: 9;
  }
  body:not(.home).page-template-default .page li,
  body:not(.home).page-template-default .page p {
    line-height: 20px;
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .logo a {
    font-size: 50px;
  }
  .header_title {
    font-size: 14px;
    line-height: 14px;
    max-width: 122px;
  }
  .headerbg {
    padding: 15px;
  }
  .banner-why__title {
    max-width: 510px;
    font-size: 50px;
  }
  .bannerimg {
    max-height: 410px;
  }
  .banner-why {
    padding-top: 50px;
  }
  .imgphone {
    bottom: -40px;
    height: 300px;
  }
  .home-social__text-wrapper {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .top-posts-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .top-posts-slider .swiper-slide {
    width: 100%; /* По 2 в ряд */
    margin-bottom: 20px;
  }
  .baza img,
  .top-posts img {
    height: auto;
  }
  .baza .swiper-button-prev,
  .baza .swiper-button-next,
  .top-posts .swiper-button-prev,
  .top-posts .swiper-button-next {
    display: none;
  }
  body:not(.home).page-template-default .page .top-posts p {
    margin-bottom: 0;
  }
  .top-posts h5 {
    font-size: 18px;
    margin: 5px 0 0;
  }
  .title-icon {
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1;
  }
  .upbtn {
    right: auto;
    left: 20px;
  }
  body:not(.home).page-template-default .page .baza p {
    line-height: 12px;
    font-size: 12px;
    margin-bottom: 0;
  }
  .baza img {
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    width: 50%;
    object-fit: cover;
  }
  .baza-slide-content {
    width: 50%;
  }
  .baza h5 {
    font-size: 13px;
    line-height: 1;
    margin-bottom: 5px;
    margin-top: 0;
  }
  .baza__post-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1440px) {
  .about__header-title {
    font-size: 60px;
  }
  .top-posts h5 {
    font-size: 18px;
    line-height: 1;
  }

  .about__item-title {
    font-size: 14px;
  }
  .about__video-slider-wrapper video {
    max-height: 450px;
  }
  .home-product__item-title {
    font-size: 20px;
  }
  .home-product__item-desc {
    font-size: 14px;
  }
  .home-product__list {
    gap: 10px;
  }
  .guarantees__title {
    max-width: 600px;
    font-size: 60px;
  }
  .banner-why__desc {
    font-size: 16px;
  }
  .banner-why__title {
    font-size: 45px;
  }
  .banner-why__wrapper {
    padding: 30px 16px 30px 30px;
  }
  .bannerimg {
    max-height: 330px;
  }
  .home-product__title {
    font-size: 20px;
  }
  .home-product__desc {
    font-size: 16px;
  }
  #svgArrow {
    width: 96px;
    top: -181px;
    right: -20px;
  }
}
@media (max-width: 1300px) {
  body,
  p {
    font-size: 16px;
  }
  .sidebar {
    width: 300px;
  }
  .has-sidebar .layout {
    margin-left: 300px;
  }
  .fixed-menu__social-link svg {
    width: 25px;
    height: 25px;
  }
  .hero_title {
    font-size: 50px;
    max-width: 390px;
  }
  .feature_block {
    right: 34%;
    bottom: 5%;
  }
  .features_list .feature_item .feature_item_icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .features_list {
    gap: 10px;
  }
  .features_list .feature_item .feature_item_content {
    font-size: 22px;
  }
  .features_list .feature_item {
    padding: 12px 17px 12px 30px;
  }
  .features_list .feature_item.sk .feature_item_icon {
    padding: 5px;
  }
  .features_list {
    bottom: 13%;
  }
  .about__video-slider-wrapper video {
    max-height: 327px;
  }
  .about__video-list {
    gap: 10px;
  }
  .about__item-title {
    font-size: 14px;
  }
  .about__video-img-wrapper {
    margin-right: 10px;
    width: 160px;
    height: 90px;
  }
  .btn--small {
    padding: 10px 15px;
    font-size: 12px;
  }
  .home-product__item-title {
    font-size: 18px;
  }
  .home-product__item img {
    margin: 0;
    width: 45px;
  }
  .home-product__list-title {
    margin-bottom: 15px;
    font-size: 30px;
  }
  .home-product__desc {
    font-size: 16px;
  }
  .home-product__title {
    font-size: 20px;
  }
  #svgArrow {
    width: 100px;
    top: -200px;
    right: -44px;
  }
  .promo__char::after {
    width: 170px;
    height: 150px;
  }
  .promo__text {
    font-size: 40px;
  }
  .promo__delivery-title,
  .banner-ozon__title {
    margin-bottom: 5px;
    font-size: 30px;
  }
  .promo__delivery-desc {
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 18px;
  }
  .about__playlist-wrapper .btn {
    padding: 10px 15px;
    height: 32px;
    font-size: 13px;
  }
  .guarantees__title {
    max-width: 500px;
    font-size: 60px;
  }
  .guarantees__quote-text {
    font-size: 14px;
    line-height: 18px;
  }
  .imgphone {
    right: -20px;
    bottom: 0px;
    bottom: 30px;
    height: 270px;
    z-index: 5;
  }
  .imgphone img {
    height: 100%;
  }
  .reviews__desc {
    max-width: 322px;
    font-size: 30px;
    margin-bottom: 25px;
  }
  .home-social__text-wrapper {
    font-size: 12px;
  }
  .banner-sample__wrapper {
    padding: 37px 130px 66px 130px;
    border-radius: 10px;
    overflow: hidden;
  }
  .banner-sample__text {
    font-size: 50px;
    max-width: 400px;
  }
  .home-social__img-wrapper svg,
  .home-social__img-wrapper {
    width: 35px;
    height: 35px;
  }
  .banner-doc__title {
    font-size: 30px;
  }
  .bannerimg {
    max-height: 315px;
  }
  .banner-why__title {
    font-size: 40px;
    max-width: 430px;
  }
  .footer-logo .logo-text {
    font-size: 55px;
    line-height: 90px;
  }
  .footer-logo__info {
    font-size: 14px;
    line-height: 14px;
  }
  .footer-left__top {
    gap: 40px;
    margin-bottom: 10px;
  }
  .footer-right a,
  .footer-right .white-text {
    font-size: 14px;
    line-height: 18px;
  }
  .about__posts-icon {
    width: 40px;
    height: 40px;
  }
  table tr th,
  table tr td {
    padding: 10px;
  }
  table {
    font-size: 14px;
  }
  .post-template-default .page,
  .archive .page,
  .page-template-default .page {
    margin-top: 80px;
  }
  .hero_image {
    max-width: 685px;
  }
  .btn--big {
    padding: 15px 45px;
    height: 45px;
  }
  .guarantees__video-wrapper {
    padding-bottom: 70px;
    max-width: 570px;
    order: 3;
  }
  .guarantess__video-link {
    width: 210px;
    height: 110px;
  }
  .guarantess__video-link::before {
    width: 55px;
    height: 55px;
  }
  .popup-top {
    min-height: 180px;
  }
  body:not(.home).page-template-default .page h3,
  body:not(.home).page-template-default .page h1.h3,
  body:not(.home).page-template-default .page h1.h1-like-h3,
  .page h1.h1-like-h3,
  .textBlock .h1-like-h3 {
    font-size: 25px;
    line-height: 1.1;
    margin: 0;
  }
  section {
    padding: 15px 0;
  }
  .banner-why {
    padding-top: 20px;
  }
  .masonry-item__title {
    font-size: 20px;
  }
  .quote .textBlock__inner {
    font-size: 22px;
  }
}
@media (max-width: 1110px) {
  .hero_title {
    font-size: 60px;
    max-width: 430px;
  }
  .about__header-title {
    font-size: 50px;
  }
  body,
  p {
    font-size: 14px;
    line-height: 16px;
  }
  .about__posts-title {
    padding: 10px 10px 10px 10px;
  }
  .about__video-img-wrapper {
    margin-right: 10px;
    width: 130px;
    height: 75px;
  }
  .about__playlist-wrapper .btn {
    padding: 6px 10px;
    height: 25px;
    font-size: 12px;
  }
  .about__video-slider-wrapper video {
    max-height: 260px;
  }
  .contact_info .phone {
    font-size: 20px;
  }
  .promo__text {
    font-size: 35px;
    max-width: 240px;
  }
  .gurantees__quote-wrapper {
    max-width: 73%;
  }
  .footer {
    padding: 40px 0 30px 0;
  }
  .footer-right h4 {
    font-size: 16px;
    line-height: 18px;
  }
  .footer-right a,
  .footer-right .white-text {
    font-size: 12px;
    line-height: 14px;
  }
  .footer-label,
  .footer-bottom__left a {
    font-size: 14px;
    line-height: 17px;
  }

  .footer .email-box a {
    font-size: 14px;
  }
  .footer .email-box {
    gap: 5px;
    margin-top: 10px;
  }
  .timeline ul li {
    padding: 10px;
  }
  .timeline {
    padding: 15px 15px;
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .close-sidebar.has-sidebar .layout {
    margin-left: 0;
  }
  .navbar {
    box-shadow: 0 0 30px #ccc;
  }
  body {
    line-height: 1.2;
  }
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-1 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-0 {
    display: block;
  }
  .navbar {
    background: #fff;
    position: fixed;
    width: 300px;
    height: 100vh;
    left: -200vw;
    transition: 0.4s all;
    padding: 40px;
    top: 0;
  }
  .toggle-mnu {
    margin-top: 20px;
    display: block;
  }
  .navbar-collapse {
    width: 100%;
  }
  .navbar.active {
    left: 0;
  }
  .text_and_image {
    margin-top: 53px;
  }
  h1 {
    font-size: 40px;
    line-height: 49px;
  }
  .text p,
  .text {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 44px;
  }
  .text li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 0px;
  }
  h2.title,
  .text h2 {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 49px;
  }
  .swiper_horses-div.text h4,
  .swiper_horses-div.text p,
  .swiper_horses-div.text {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  .swiper_horses {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .single h1.title {
    font-size: 35px;
    line-height: 43px;
  }
  .gallery-div {
    height: 300px;
  }
  .single .row {
    align-items: flex-start;
  }
  .wpcf7 .wpcf7-submit {
    width: 100%;
    height: 50px;
    font-size: 18px;
    line-height: 22px;
  }
  .contacts-email {
    display: none;
  }
  .section-instagram h2.title {
    font-size: 30px;
    line-height: 30px;
  }
  .order2 {
    order: 2;
  }
  .order1 {
    order: 1;
  }
  .name-team {
    font-weight: bold;
  }
  .team-div > img {
    width: 100%;
  }
  .team-div.item-3,
  .team-div.item-6,
  .team-div.item-9,
  .team-div.item-2,
  .team-div.item-5,
  .team-div.item-8,
  .team-div {
    margin: 0;
    margin-bottom: 60px;
    max-width: 100%;
  }
  .footer_socials {
    margin-top: 30px;
    margin-bottom: 80px;
  }
  a.social {
    margin-right: 30px;
    height: 35px;
    display: inline-block;
    width: 35px;
  }
  footer .inn {
    text-align: center;
  }
  .text blockquote::before {
    display: none;
  }
  .text blockquote {
    margin-left: 0;
  }
  .text blockquote p {
    font-size: 30px;
    line-height: 37px;
  }
  a.social svg {
    width: 35px;
    height: 35px;
  }
  .section-all-horses h2.title {
    font-size: 32.6151px;
    line-height: 40px;
  }

  header {
    height: auto;
    margin-bottom: 0;
  }
  .navbar-nav {
    display: block;
    padding: 100px 0 0;
    width: 100%;
  }
  header .menu-item {
    display: block;
    margin-bottom: 10px;
  }
  header .menu-item a {
    color: #414042;
  }
  .toggle-mnu span:after,
  .toggle-mnu span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
  }
  .toggle-mnu span:after {
    top: 18px;
  }
  .toggle-mnu span {
    position: relative;
    display: block;
  }
  .toggle-mnu span,
  .toggle-mnu span:after,
  .toggle-mnu span:before {
    background-color: #414042;
  }
  .home .toggle-mnu span,
  .home .toggle-mnu span:after,
  .home .toggle-mnu span:before {
    background-color: #fff;
  }
  .toggle-mnu span,
  .toggle-mnu span:after,
  .toggle-mnu span:before {
    width: 100%;
    height: 3px;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
  }
  .toggle-mnu span:before {
    width: 75%;
    right: 0;
    left: auto;
  }
  .hero_block-div img {
    width: 246px;
  }
  .toggle-mnu.on span {
    background-color: transparent;
  }
  .toggle-mnu.on span:before {
    transform: rotate(45deg) translate(-1px, 0px);
  }
  .toggle-mnu.on span:after {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  .toggle-mnu.on span:after,
  .toggle-mnu.on span:before {
    background-color: #414042;
    width: 100%;
  }
  .home header .menu-item a {
    color: #414042;
  }
  .home .toggle-mnu.on span:after,
  .home .toggle-mnu.on span:before {
    background-color: #fff;
    width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-6 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  p {
    font-size: 14px;
    line-height: 22px;
  }
  footer {
    padding: 30px 0;
  }
  .burger svg {
    width: 34px;
    height: 34px;
    display: none;
  }
  .logo a {
    font-size: 35px;
  }
  .col-md-0 {
    display: none;
  }
  .header_title {
    font-size: 11px;
    line-height: 9px;
    max-width: 90px;
  }
  .headerbg {
    padding: 10px;
  }
  .left-menu {
    gap: 5px;
    justify-content: flex-start;
    padding-left: 30px;
  }
  .sidebar-header .sidebar-toggler {
    right: 10px;
    height: 35px;
    width: 35px;
    top: 10px;
  }
  .header-logo .logo-title {
    font-size: 50px;
  }
  .close-sidebar .sidebar-header .sidebar-toggler {
    right: -45px;
  }
  .header-logo .logo-text {
    font-size: 14px;
  }
  .has-sidebar .layout {
    margin-left: 0;
  }
  .sidebar-nav .nav-item .nav-link {
    gap: 4px;
    padding: 5px 10px;
  }
  .sidebar-nav .nav-list {
    padding: 0 5px;
  }
  .sidebar {
    width: 290px;
  }
  .sidebar .sidebar-header {
    padding: 6px 17px;
  }
  .fixed-menu__bottom-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .features_list .feature_item {
    padding: 8px 12px 8px 20px;
    width: calc(50% - 5px);
  }
  .features_list {
    position: relative;
    max-width: 85%;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero_title {
    font-size: 50px;
    max-width: 430px;
    position: relative;
    margin-top: 80px;
    text-align: center;
  }
  .features_list .feature_item .feature_item_content {
    font-size: 14px;
  }
  .feature_block {
    right: 7%;
    bottom: 9%;
  }
  .hero_image {
    max-width: 140%;
    bottom: 0;
    left: -10%;
    overflow: hidden;
  }
  .hero_content {
    min-height: 80vh;
  }
  .promo__char {
    justify-content: center;
  }

  .hero {
    padding: 0;
    min-height: 90vh;
  }
  .hero_image img {
    max-width: inherit;
  }
  .features_list .feature_item .feature_item_icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
    left: -15px;
  }
  .about__posts-title {
    padding: 5px;
  }
  .about__wrapper {
    flex-direction: column;
  }
  .about__video-slider-wrapper {
    width: 100%;
  }
  .about__video-slider-wrapper video {
    max-height: 300px;
    width: 100%;
  }
  .about__playlist-wrapper {
    width: 100%;
  }
  .home-product__wrapper {
    justify-content: space-between;
    gap: 30px;
    flex-direction: column;
  }
  .home-product__product-order-wrapper {
    width: 100%;
  }
  .home-product__details-wrapper {
    width: 100%;
  }
  #svgArrow {
    display: none;
  }
  .promo {
    flex-direction: column;
    gap: 50px;
  }
  .reviews__desc-wrapper,
  .reviews__video-wrapper,
  .promo__char,
  .promo__delivery {
    width: 100%;
  }
  .promo__text {
    font-size: 30px;
    max-width: 210px;
  }
  .promo__char::after {
    width: 110px;
    height: 110px;
  }
  .guarantees__title {
    font-size: 46px;
  }
  .gurantees__quote-wrapper {
    max-width: 100%;
  }
  .guarantees__stats {
    position: relative;
    order: 1;
    bottom: 0;
  }
  .guarantees__stats-item {
    flex-direction: column;
    width: calc(50% - 8px);
  }
  .promo__delivery,
  .banner-ozon {
    padding: 20px;
  }
  .button,
  .btn {
    padding: 14px 35px;
    height: 42px;
    font-size: 14px;
  }
  .guarantees__wrapper {
    flex-direction: column;
    margin-top: 50vh;
  }
  .guarantees__manager {
    margin-bottom: 20px;
    order: 2;
    bottom: 309px;
  }
  .guarantees {
    position: relative;
  }
  .guarantees::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0.5;
  }
  .guarantees .container-lg {
    z-index: 3;
  }
  .guarantees img.marina {
    max-height: max-content;
    position: absolute;
    bottom: auto;
    left: 0;
    width: 80%;
    height: auto;
    top: 168px;
  }
  .reviews__wrapper {
    flex-direction: column;
    padding-top: 0;
  }
  .home-social__item {
    width: calc(100% / 2 - 5px);
  }
  .home-social__list {
    flex-wrap: wrap;
  }
  .home-social__text-wrapper {
    font-size: 15px;
  }
  .banner-sample__text {
    font-size: 40px;
    max-width: 400px;
    z-index: 9;
    position: relative;
  }
  .banner-sample__wrapper {
    padding: 30px 30px 50px 30px;
    border-radius: 10px;
  }
  .banner-sample__wrapper::before {
    width: 155px;
    height: 185px;
  }
  .banner-sample__wrapper::after {
    width: 100px;
    height: 160px;
  }
  .popup-top .popup-top-title {
    font-size: 25px;
  }
  .popup-top {
    min-height: 130px;
  }
  .banner-doc__wrapper,
  .banner-why {
    gap: 20px;
    padding-top: 0;
    flex-direction: column;
  }
  .banner-doc__item {
    width: 100%;
  }
  .banner-mos__btn::before {
    left: 20px;
    top: 20px;
    width: 100px;
    height: 148px;
  }
  .home .banner-why__title {
    font-size: 30px;
  }
  .banner-why__wrapper .btn {
    padding: 14px 18px;
  }
  .bannerimg {
    max-height: 270px;
    right: -56px;
  }
  .banner-why__desc {
    font-size: 14px;
    max-width: 260px;
  }
  .banner-mos__wrapper {
    gap: 10px;
  }
  .reviews__telegram {
    padding: 10px 10px;
    max-width: 150px;
    border-radius: 10px;
  }
  .banner-mos__text-wrapper {
    font-size: 25px;
  }
  .imgphone {
    bottom: -50px;
  }
  .footer-right .box {
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    text-align: left;
    margin-top: 30px;
  }
  .footer-bottom > div,
  .footer-right .box > div {
    width: 47%;
  }
  .footer-bottom {
    text-align: left;
  }
  .about__video-img-wrapper {
    margin-right: 10px;
    width: 60%;
    height: 129px;
  }
  .title--h1 {
    font-size: 30px;
    line-height: 35px;
  }
  body:not(.home).page-template-default .page h3,
  body:not(.home).page-template-default .page h1.h3,
  body:not(.home).page-template-default .page h1.h1-like-h3,
  .page h1.h1-like-h3,
  .textBlock .h1-like-h3 {
    font-size: 20px;
    line-height: 1.1;
    margin: 0;
  }
  .page-header__logo {
    display: none;
  }
  .banner-why__title {
    font-size: 30px;
    max-width: 375px;
    padding-right: 40px;
  }
  .masonry {
    column-count: 1;
    column-gap: 10px;
  }
  .masonry-item {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .doc-item .doc__title {
    width: 60%;
  }
  .doc-item .doc_weight,
  .doc-item .doc_format,
  .doc-item .doc__file {
    width: 15%;
  }
  .footer-logo .logo-text {
    font-size: 40px;
    line-height: 40px;
  }
  .footer-logo {
    gap: 5px;
  }
  .footer-logo__info {
    font-size: 10px;
    line-height: 10px;
  }
  .footer-bottom__right .footer-tel__number {
    font-size: 25px;
  }
  .footer-label,
  .footer-bottom__left a {
    font-size: 12px;
    line-height: 14px;
  }
  .about__header-title {
    font-size: 40px;
  }
  table tr th,
  table tr td {
    padding: 4px;
  }
  table {
    font-size: 12px;
  }
  .banner-why__wrapper {
    background: none;
  }
  .banner-why {
    background: url(../img/zavob-bg.png) no-repeat center center / cover;
    padding: 0;
    margin: 0;
  }
  .banner-why__wrapper {
    padding: 30px 0;
    max-width: 67%;
    z-index: 9;
  }

  .banner_baza.type1 .image {
    display: none;
  }
  .banner_baza.type1 .image_mobile {
    display: block;
    overflow: hidden;
    border-radius: 10px;
  }
  .textBlock_left::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 270px;
    height: 190px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .textBlock_left-content {
    max-width: 225px;
    z-index: 9;
    position: relative;
  }
  .textBlock_left {
    border-radius: 20px;
    padding: 43px 20px;
    background-color: #f5f5f5;
    position: relative;
  }
  .top-posts-item {
    width: 100%;
  }
  .contact_info .email {
    font-size: 12px;
  }
  .contact_info .phone {
    font-size: 12px;
  }
  .baza-slide:nth-child(n + 5) {
    display: none;
  }
  .top-posts-slide:nth-child(n + 2) {
    display: none;
  }
}
