@charset "UTF-8";

:root {
  /*========== Base ==========*/
  --font-family: "gwLaserFont", Arial, sans-serif;
  --font-family-other: "Bebas Neue", Arial, sans-serif;
  --background-color: var(--white);
  --main-color: var(--black);
  --content-width: 1470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  /*========== Colors ==========*/
  --white: #fff;
  --black: #555560;
  --blue: #5c8ee5;
  --blue-dark: #0077ff;
  --main-color: #5c8ee5;
  --text-main: #222428;
  --text-block-light: #ccc;
  --text-block-dark: #666;
  --p-color: #666;
  --border-color: rgba(235, 235, 240, 0.2);
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked+.custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.list {
  --gap: 30px;
  --elems: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: var(--gap);
}

.list__item {
  width: calc((100% - (var(--elems) - 1) * var(--gap)) / (var(--elems)));
}

@media (max-width: 1024px) {
  .list__item {
    --gap: 30px;
    --elems: 2;
  }
}

@media (max-width: 600px) {
  .list__item {
    --gap: 20px;
    --elems: 1;
  }
}

/*========== Шрифт для H тегов ==========*/
@font-face {
  font-family: "Bebas Neue";
  src: url(assets/fonts/Bebasneue-Regular.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/*========== Основной шрифт ==========*/
@font-face {
  font-family: "gwLaserFont";
  src: url(assets/fonts/Onest-Regular.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "gwLaserFont";
  src: url(assets/fonts/Onest-Medium.woff2) format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "gwLaserFont";
  src: url(assets/fonts/Onest-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "gwLaserFont";
  src: url(assets/fonts/Onest-Bold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

* {
  background: transparent;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--black);
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  line-height: normal;
  -webkit-text-size-adjust: none;
}

main {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 20px;
  color: var(--black);
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.1rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.4rem;
}

b,
strong {
  font-weight: 700;
}

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

a {
  text-decoration: none;
  color: var(--black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  min-height: 1px;
  vertical-align: middle;
}

input,
button,
textarea {
  font-family: inherit;
  outline: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 50px #fff !important;
  -webkit-text-fill-color: var(--text-color) !important;
  color: var(--text-color) !important;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

figure {
  overflow-x: auto;
}

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

textarea {
  padding: 1.5rem;
  font-size: 1.6rem;
  color: #848484;
  border-radius: 1rem;
  border: 1px solid #eaeaea;
}

::-webkit-scrollbar {
  width: 0.6rem;
  height: 0.2rem;
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
  width: 100%;
}

.container-offset {
  margin: 0 auto;
  width: 100%;
}

.page-wrapper {
  margin-top: 100px;
}

@media screen and (max-width: 576px) {
  .page-wrapper {
    margin-top: 60px;
  }
}

.content {
  padding: 50px 0 100px;
}

@media screen and (max-width: 576px) {
  .content {
    padding: 30px 0 50px;
  }
}

.breadcrumbs {
  position: relative;
}

.breadcrumbs span a,
.breadcrumbs span {
  font-size: 1.35rem;
  line-height: 1.2rem;
  font-weight: 400;
  color: #999;
}

@media (any-hover: hover) {
  .breadcrumbs span a:hover {
    color: var(--blue-dark);
  }
}

.header--bgc-color {
  background-color: var(--white) !important;
}

.header--bgc-color .nav__link,
.header--bgc-color .link-contacts__phone {
  color: var(--text-main);
}

.header--bgc-color .header__body {
  border-bottom: 1px solid rgb(228, 232, 243);
}

.header--bgc-color .nav,
.header--bgc-color .link-logo {
  border-left: 1px solid rgb(228, 232, 243);
}

.button-dark {
  border-radius: 3px;
  padding: 12px 21px 11px;
  background-color: var(--blue);
  border: 1px solid;
  border-color: var(--blue);
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .button-dark:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
  }
}

.button-white {
  border-radius: 3px;
  padding: 12px 21px 11px;
  background-color: var(--white);
  border: 1px solid;
  border-color: var(--blue-dark);
  color: var(--blue-dark);
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .button-white:hover {
    color: var(--white);
    background-color: var(--blue-dark);
  }
}

.page-title {
  position: relative;
  color: var(--text-main);
  font-size: 5rem;
  font-weight: 700;
  line-height: 120%;
}

.page-title_fw {
  font-weight: 500;
}

.page-title_fz {
  font-size: 4rem;
}

@media screen and (max-width: 576px) {
  .page-title {
    font-size: 3.5rem;
    line-height: 4.1rem;
  }
}

.section-title {
  position: relative;
  margin: 0;
  color: var(--text-main);
  font-size: 5rem;
  line-height: 120%;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.4em;
  width: 15%;
  height: 3px;
  background-color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 4rem;
  }
}

@media screen and (max-width: 576px) {
  .section-title {
    font-size: 3rem;
  }
}

section:not(:first-child) {
  padding: 70px 0 50px;
}

@media screen and (max-width: 768px) {
  section:not(:first-child) {
    padding: 50px 0 30px;
  }
}

.border-4 {
  border-radius: 4px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.align-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-beetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.size-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: var(--white);
}

/*
Шапка сайта Header.scss
*/
.header {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  min-width: 320px;
  width: 100%;
  color: var(--white);
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header .burger .burger__line {
  background-color: #0077ff;
}

.header .burger::before,
.header .burger::after {
  background-color: #0077ff;
}

.header__body {
  position: relative;
  border-bottom: 1px solid rgba(235, 235, 240, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 85px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .size-icon {
  color: var(--blue);
}

.is--active-header {
  background-color: var(--white);
}

.is--active-header .header__body {
  border-bottom: none;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.is--active-header .nav__link,
.is--active-header .link-contacts__phone {
  color: var(--text-main);
}

.is--active-header .nav {
  border-color: rgba(132, 132, 132, 0.2);
}

@media (any-hover: hover) {
  .is--active-header .link-contacts__phone:hover {
    color: var(--text-block-dark);
  }
}

.burger {
  --burger-width: 25px;
  --burger-height: 18px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
  position: relative;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  top: calc(100% - var(--burger-line-height));
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.link-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 20px;
}

.link-logo__image {
  position: relative;
  min-width: 140px;
  width: 180px;
}

.link-logo__image-dark {
  display: none;
}

.nav {
  position: relative;
  height: 100%;
  margin-right: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-left: 1px solid rgba(235, 235, 240, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav__item {
  padding: 0 50px;
}

.nav__link {
  position: relative;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.8rem;
  color: var(--white);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.nav__link::after {
  content: "";
  opacity: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .nav__link:hover::after {
    opacity: 1;
  }
}

.link-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.link-contacts__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 50px;
  font-weight: 600;
  color: var(--white);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .link-contacts__phone:hover {
    color: var(--text-block-light);
  }
}

.link-contacts__phone span {
  margin-left: 10px;
}

.link-contacts__icon {
  vertical-align: middle;
}

.link-contacts__callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 0 50px;
  height: 100%;
  background-color: var(--blue);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.link-contacts__callback span {
  font-weight: 600;
  line-height: 160%;
  color: var(--white);
}

@media (any-hover: hover) {
  .link-contacts__callback:hover {
    background-color: var(--blue-dark);
  }
}

.mobile-menu {
  position: fixed;
  left: -100%;
  top: 0;
  max-width: 320px;
  width: 100%;
  /* min-height: 100vh; */
  /* height: 100%; */
  height: 100%;
  background-color: var(--white);
  -webkit-box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.1);
  box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  overflow-y: auto;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mobile-menu.menu--active {
  left: 0;
}

.mobile-menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: fit-content;
  padding: 25px 30px;
}

.mobile-menu__header {
  position: relative;
  gap: 20px;
}

.mobile-menu__logo {
  position: relative;
  width: 100%;
  max-width: 150px;
  height: 50px;
}

.mobile-menu__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.mobile-menu__close {
  cursor: pointer;
}

.mobile-menu__icon {
  color: var(--black) !important;
}

.mobile-menu__list {
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__link {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.9rem;
  color: var(--text-main);
}

@media (any-hover: hover) {
  .mobile-menu__link:hover {
    color: var(--blue-dark);
  }
}

.mobile-menu__form {
  display: block;
  margin-top: 25px;
  text-align: center;
}

.mobile-menu__contacts {
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu__phone {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-main);
}

@media (any-hover: hover) {
  .mobile-menu__phone:hover {
    color: var(--blue-dark);
  }
}

.mobile-menu__block-contacts {
  gap: 15px;
}

.mobile-menu__block-contacts span {
  margin-left: 5px;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  color: var(--text-block-dark);
}

.mobile-menu__icon {
  vertical-align: middle;
}

@media (any-hover: hover) {
  .mobile-menu__mail span:hover {
    color: var(--blue-dark) !important;
  }
}

.mobile-menu__social {
  margin-top: 50px;
}

.mobile-overlay {
  position: fixed;
  pointer-events: none;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99998;
  background-color: var(--black);
  opacity: 0;
}

.mobile-overlay.menu--active {
  opacity: 0.7;
  pointer-events: all;
}

.social {
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}

.social__item .size-icon {
  width: 30px;
  height: 30px;
  color: var(--text-main) !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .social__item .size-icon:hover {
    color: var(--blue-dark) !important;
  }
}

/*
Первая секция, только главная страница Main-block.scss
*/
.main-block {
  position: relative;
  color: var(--white) !important;
  background: 50%/cover no-repeat;
}

.main-block::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 45, 51, 0.6);
}

.main-block__body {
  position: relative;
  z-index: 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main-block__body span {
  max-width: 700px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
}

.main-block__title {
  font-family: var(--font-family-other);
  margin-top: 3.05em;
  max-width: 1000px;
  font-size: 7rem;
  line-height: 120%;
  font-weight: 400;
  color: var(--white);
}

.main-block__link-about-company {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 160%;
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 50px 0 100px;
  border-radius: 4px;
  padding: 1.5em 3.75em;
  background-color: var(--blue);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .main-block__link-about-company:hover {
    background-color: var(--blue-dark);
  }
}

.main-block__benefit {
  position: relative;
  margin-top: 75px;
}

.benefit__list {
  border-top: 1px solid var(--border-color);
}

.benefit__item {
  font-size: 1.6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5em 3.1em;
}

.benefit__item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.benefit__icon {
  width: 50px;
  height: 50px;
  color: var(--main-color);
}

.benefit__title {
  font-weight: 400;
  margin-top: 1em;
}

/*
Первая секция, только главная страница Section-motivation.scss
*/
.motivation p,
.page-category p {
  margin-top: 15px;
}

.motivation__list,
.page-category__list {
  margin-top: 5rem;
}

.motivation__item,
.page-category__item {
  --transition-duration: 600ms;
  position: relative;
  overflow: hidden;
  -webkit-transition: all var(--transition-duration);
  transition: all var(--transition-duration);
  -webkit-box-shadow: 0px 16px 24px rgba(15, 23, 41, 0.15), 0px 2px 6px rgba(15, 23, 41, 0.15);
  box-shadow: 0px 16px 24px rgba(15, 23, 41, 0.15), 0px 2px 6px rgba(15, 23, 41, 0.15);
}

.motivation__item::before,
.page-category__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.motivation__item:not(:hover) .motivation__cart-description,
.motivation__item:not(:hover) .page-category__cart-description,
.page-category__item:not(:hover) .motivation__cart-description,
.page-category__item:not(:hover) .page-category__cart-description {
  -webkit-transform: translateY(1em);
  -ms-transform: translateY(1em);
  transform: translateY(1em);
  opacity: 0;
}

.motivation__item:not(:hover) .motivation__info,
.motivation__item:not(:hover) .page-category__info,
.page-category__item:not(:hover) .motivation__info,
.page-category__item:not(:hover) .page-category__info {
  -webkit-transform: translateY(calc(100% - 3.5em));
  -ms-transform: translateY(calc(100% - 3.5em));
  transform: translateY(calc(100% - 3.5em));
}

@media (any-hover: hover) {

  .motivation__item:hover .motivation__image,
  .motivation__item:hover .page-category__image,
  .page-category__item:hover .motivation__image,
  .page-category__item:hover .page-category__image {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .motivation__item:hover::before,
  .page-category__item:hover::before {
    opacity: 0.35;
  }
}

.motivation__image-wrp,
.page-category__image-wrp {
  position: relative;
  padding-top: 85%;
}

.motivation__image-wrp::before,
.page-category__image-wrp::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  z-index: 10;
}

.motivation__image,
.page-category__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: 50%/cover no-repeat;
  -webkit-transition: -webkit-transform var(--transition-duration);
  transition: -webkit-transform var(--transition-duration);
  transition: transform var(--transition-duration);
  transition: transform var(--transition-duration), -webkit-transform var(--transition-duration);
}

.motivation__info,
.page-category__info {
  position: absolute;
  bottom: 23px;
  left: 33px;
  right: 33px;
  z-index: 10;
  color: var(--white);
  -webkit-transition: -webkit-transform var(--transition-duration) ease-in-out;
  transition: -webkit-transform var(--transition-duration) ease-in-out;
  transition: transform var(--transition-duration) ease-in-out;
  transition: transform var(--transition-duration) ease-in-out, -webkit-transform var(--transition-duration) ease-in-out;
}

.motivation__info>*,
.page-category__info>* {
  will-change: transform;
}

@media (any-hover: hover) {

  .motivation__info:hover .motivation__cart-description,
  .page-category__info:hover .motivation__cart-description {
    -webkit-transition-duration: var(--transition-duration);
    transition-duration: var(--transition-duration);
    -webkit-transition-delay: calc(var(--transition-duration) / 3);
    transition-delay: calc(var(--transition-duration) / 3);
  }
}

.motivation__cart-title,
.page-category__cart-title {
  font-size: 2.1rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

.motivation__cart-description,
.page-category__cart-description {
  display: block;
  margin-top: 10px;
  margin-bottom: 25px;
  -webkit-transform: translateY(1em);
  -ms-transform: translateY(1em);
  transform: translateY(1em);
  -webkit-transition-delay: calc(var(--transition-duration) / 8);
  transition-delay: calc(var(--transition-duration) / 8);
  -webkit-transition-duration: calc(var(--transition-duration) / 2);
  transition-duration: calc(var(--transition-duration) / 2);
  transition-property: opacity, transform, -webkit-transform;
}

.motivation__link-category,
.page-category__link-category {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

/*
Каталог продукции плиткой Section-product-list
*/
.section-product-list__flex-container {
  gap: 15px;
}

.section-product-list__all-catalog {
  margin: 0 0 20px;
  font-weight: 500;
}

@media (any-hover: hover) {
  .section-product-list__all-catalog:hover {
    color: var(--blue);
  }
}

.section-product-list__products {
  margin-top: 25px;
}

.products-list__item {
  /* border: 1px solid;
  border-color: #e5e5e5; */
}

/*
Lead-section по всему сайту Section-lead-magnet.scss
*/
.section-lead {
  position: relative;
  padding-top: 50px;
  background-color: #f3f4f6;
}

.contacts-form {
  padding: 50px 0;
}

.contacts-form__title {
  font-family: var(--font-family-other);
  font-size: 4.2rem;
  letter-spacing: 1px;
  color: var(--text-main);
}

.contacts-form__img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: saturate(30%);
  filter: saturate(30%);
}

.form-cantact__flex-container {
  max-width: 800px;
  gap: 15px;
}

.form-cantact__input-panel {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-cantact__description-input {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-block-dark);
}

.form-cantact__form-input {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  padding: 8px 13px 7px;
  background-color: var(--white);
  border: 1px solid #ececec;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}

.form-cantact__form-input::-webkit-input-placeholder {
  font-size: 1.4rem;
}

.form-cantact__form-input::-moz-placeholder {
  font-size: 1.4rem;
}

.form-cantact__form-input:-ms-input-placeholder {
  font-size: 1.4rem;
}

.form-cantact__form-input::-ms-input-placeholder {
  font-size: 1.4rem;
}

.form-cantact__form-input::placeholder {
  font-size: 1.4rem;
}

.form-cantact__submit {
  position: relative;
  margin-top: 25px;
}

.form-cantact__btn {
  position: relative;
}

.form-cantact__req {
  margin-left: 15px;
}

.form-cantact__req span {
  color: #ff0000;
}

.form-cantact__apply {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-block-dark);
}

.form-cantact__apply a {
  color: #115bda;
}

@media (any-hover: hover) {
  .form-cantact__apply a:hover {
    color: var(--text-block-dark);
  }
}

.intl-tel-input {
  width: 100%;
}

.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type=tel] {
  margin-top: 10px !important;
}

.intl-tel-input .flag-container {
  top: 10px !important;
}

.intl-tel-input.allow-dropdown .flag-container {
  height: 50px;
}

/*
Секция примеров работы лазера, только главная страница _Section-sample.scss
*/
.sample {
  position: relative;
}

.sample__pic {
  margin-top: 25px;
}

.sample__item {
  position: relative;
}

.sample__picture {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.sample__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: 50%/cover no-repeat;
}

.sample__title-cart {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.sample__title-cart span {
  font-weight: 700;
}

/*
Секция схема работы, только главная страница _Section-work.scss
*/
.work-scheme {
  position: relative;
}

.work-scheme__list {
  margin-top: 25px;
}

.work-scheme__item {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}

.work-scheme__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  color: var(--main-color);
}

.work-scheme__num::after {
  content: "";
  margin-left: 25px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.work-scheme__cart-title {
  font-weight: 600;
  color: var(--text-main);
}

.work-scheme__link-feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: var(--main-color);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.work-scheme__link-feedback::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 10%;
  height: 2px;
  background-color: var(--main-color);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.work-scheme__link-feedback span {
  font-size: 1.8rem;
  font-weight: 600;
}

@media (any-hover: hover) {
  .work-scheme__link-feedback:hover::before {
    width: 15%;
  }
}

/*
BLOG по всему сайту Section-blog.scss
*/
.blog {
  position: relative;
}

.blog__full-link {
  position: relative;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--blue-dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.blog__full-link::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 15px;
  height: 1px;
  background-color: var(--blue-dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media (any-hover: hover) {
  .blog__full-link:hover {
    color: var(--text-block-dark);
  }

  .blog__full-link:hover::before {
    width: 25px;
    background-color: var(--text-block-dark);
  }
}

.blog__descr-section {
  position: relative;
  margin-top: 10px;
}

.blog__descr-section p {
  font-size: 1.6rem;
  color: var(--text-block-dark);
}

.blog__cards {
  margin-top: 25px;
}

.blog__item {
  position: relative;
  border: 1px solid;
  border-color: #e5e5e5;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .blog__item:hover {
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
}

.blog__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.blog__top {
  position: relative;
  padding-top: 78%;
}

.blog__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: 50%/cover no-repeat;
}

.blog__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 10px;
  padding: 25px 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.blog__cart-link {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
}

@media (any-hover: hover) {
  .blog__cart-link:hover {
    color: var(--blue-dark);
  }
}

.blog__meta {
  margin-top: auto;
}

.blog__date {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-block-dark);
}

/*
Секция контаков, только главная страница _Section-contacts.scss
*/
.contacts__desc {}

.contacts__desc p {
  font-size: 1.6rem;
  color: var(--text-block-dark);
}

.contacts__flex {
  margin-top: 30px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #e5e5e5;
}

.contacts__data {
  position: relative;
  overflow: hidden;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 360px;
  flex: 0 1 360px;
  padding: 25px 32px;
  row-gap: 15px;
}

.contacts__adress {
  position: relative;
}

.contacts__adress span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.contacts__text {
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
  color: rgb(153, 153, 153);
}

.contacts__time {
  font-weight: 400;
  color: var(--p-color);
}

.contacts__time:not(:last-child) {
  margin-bottom: 5px;
}

.contacts__link {
  -webkit-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
}

@media (any-hover: hover) {
  .contacts__link:hover {
    color: var(--blue-dark);
  }
}

.contacts__maps {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contacts__maps_none {
  pointer-events: none;
}

/*
Секция вопрос-ответ, только главная страница _Section-faq.scss
*/
.section-faq {
  position: relative;
  background-color: #f8f8f8;
}

.section-faq .button-white {
  display: inline-block;
}

.section-faq__flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 25px;
}

.section-faq__text-block {
  -ms-flex-preferred-size: 35%;
  flex-basis: 35%;
  padding-right: 50px;
}

.section-faq__sm-descr {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgb(153, 153, 153);
}

.section-faq__sm-descr_size {
  font-size: 1.5rem;
}

.section-faq__feedback {
  margin-top: 20px;
}

.section-faq__accordion {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.section-faq .section-title::before {
  top: -0.8em;
}

.accordion {
  position: relative;
  background-color: var(--white);
}

.accordion__item,
.accordion .documents__item {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  margin-bottom: -1px;
  padding-bottom: 8px;
  -webkit-transition: background ease 0.3s, -webkit-box-shadow ease 0.3s;
  transition: background ease 0.3s, -webkit-box-shadow ease 0.3s;
  transition: background ease 0.3s, box-shadow ease 0.3s;
  transition: background ease 0.3s, box-shadow ease 0.3s, -webkit-box-shadow ease 0.3s;
}

.accordion__item:first-of-type,
.accordion .documents__item:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.accordion__item:last-of-type,
.accordion .documents__item:last-of-type {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

@media (any-hover: hover) {

  .accordion__item:hover,
  .accordion .documents__item:hover {
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #fafafa;
    z-index: 1;
  }
}

.accordion__title {
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  padding: 30px 30px 20px;
}

@media (any-hover: hover) {
  .accordion__title:hover .accordion__title-name {
    color: var(--blue-dark);
  }

  .accordion__title:hover .accordion__icon {
    color: var(--blue-dark);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}

.accordion__title.is--active .accordion__icon {
  -webkit-transform: scale(1) rotate(0);
  -ms-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}

.accordion__title-name {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-main);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.accordion svg {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.accordion__icon {
  color: var(--text-main);
  -webkit-transform: scale(0.9) rotate(45deg);
  -ms-transform: scale(0.9) rotate(45deg);
  transform: scale(0.9) rotate(45deg);
}

.accordion__description {
  padding: 0 30px;
  max-height: 0;
  will-change: max-height;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.accordion__descr-body p:not(:last-child) {
  margin: 0 !important;
}

.is--active {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

/*
Краткая карточка товара, _Product.scss
*/
.product {
  position: relative;
  height: 100%;
  border: 1px solid;
  border-color: #e5e5e5;
  -webkit-transition: border ease 0.3s, background ease 0.3s, -webkit-box-shadow ease 0.3s;
  transition: border ease 0.3s, background ease 0.3s, -webkit-box-shadow ease 0.3s;
  transition: box-shadow ease 0.3s, border ease 0.3s, background ease 0.3s;
  transition: box-shadow ease 0.3s, border ease 0.3s, background ease 0.3s, -webkit-box-shadow ease 0.3s;
}

@media (any-hover: hover) {
  .product:hover {
    background-color: var(--white);
    border-color: var(--white);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}

.product__body {
  height: 100%;
  padding: 28px 28px 22px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product__top {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

@media (any-hover: hover) {
  .product__top:hover .product__char-block {
    right: 0;
  }

  .product__top:hover .product__image-cart {
    right: -100%;
  }
}

.product__char-block {
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.product__image-cart {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product__img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product__bottom {
  display: flex;
  margin-top: 15px;
  flex-direction: column;
  flex: 1 1 auto;
}

.product__model {
  font-size: 1.4rem;
  line-height: 2rem;
  color: #999;
  font-weight: 400;
}

.product__url-title {
  /* margin-top: 5px; */
  flex: 1 1 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.product__title-cart {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0;
}

@media (any-hover: hover) {
  .product__title-cart:hover {
    color: var(--blue-dark);
  }
}

.product__title-cart_fw700 {
  font-weight: 700;
}

.product__info {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
  row-gap: 5px;
}

.product__instock {
  position: relative;
  padding: 0 0 0 12px;
  font-size: 1.42rem;
  font-weight: 400;
}

.product__instock_color-green {
  color: #69be15;
}

.product__instock_color-green::before {
  background-color: #69be15;
}

.product__instock_color-blue {
  color: var(--blue-dark);
}

.product__instock_color-blue::before {
  background-color: var(--blue-dark);
}

.product__instock_color-red {
  color: #d30c0c;
}

.product__instock_color-red::before {
  background-color: #d30c0c;
}

.product__instock::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
}

.product__article {
  font-size: 1.42rem;
  color: var(--text-block-dark);
}

.product__order-block {
  position: relative;
  gap: 10px;
  margin-top: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
}

.product__order {
  cursor: pointer;
  padding: 9px 15px 11px;
  border: 1px solid var(--blue);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .product__order:hover {
    background-color: var(--blue-dark);
  }

  .product__order:hover .product__order-btn {
    color: var(--white);
  }
}

.product__order-btn {
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--blue);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*
Блок характеристики краткой карточки товара, _Product.scss
*/
.char-block {
  position: relative;
  background-color: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}

.char-block__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
}

.char-block__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 5px;
}

.char-block__data {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-block-dark);
}

.char-block__value {
  font-size: 1.4rem;
}

/*
Секция страниц Архивов (рубрик) и прочего контента, _Archive.scss
*/
.meta-description {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.7rem;
  color: #555560;
}

.meta-description__body {
  overflow: hidden;
}

.meta-description h2,
.meta-description h3 {
  font-weight: 500;
  color: var(--text-main);
}

.meta-description h2 {
  font-size: 3rem;
  line-height: 4.2rem;
}

.meta-description h3 {
  font-size: 2.7rem;
  line-height: 3.8rem;
}

.meta-description ol,
.meta-description ul {
  margin-bottom: 20px;
}

.meta-description ol {
  list-style-type: none;
  counter-reset: num;
}

.meta-description ol li {
  position: relative;
  margin-bottom: 15px;
}

.meta-description ol li::before {
  content: counter(num) ".";
  counter-increment: num;
  margin-right: 7px;
}

.meta-description ul li {
  margin-bottom: 15px;
  position: relative;
  word-wrap: break-word;
}

.meta-description ul li::before {
  content: "";
  position: relative;
  left: 0;
  top: 11px;
  background: var(--text-block-dark);
  width: 11px;
  height: 1px;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.meta-description__body p {
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 2.2rem;
}

.meta-description strong {
  color: var(--text-main);
}

.post-meta {
  position: relative;
  margin-top: 20px;
}

/*
Навигация по страницам, Pagination.scss
*/
.pagination {
  position: relative;
  width: 100%;
  padding: 25px 0;
}

.pagination .nextpostslink,
.pagination .previouspostslink {
  width: auto;
  padding: 0 10px;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 9px;
}

.wp-pagenavi a,
.wp-pagenavi .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media (any-hover: hover) {

  .wp-pagenavi a:not(.current):hover,
  .wp-pagenavi .current:not(.current):hover {
    color: var(--blue-dark);
  }
}

.wp-pagenavi .current {
  background-color: var(--blue-dark);
  color: var(--white);
}

.extend {
  position: relative;
}

.extend::before {
  content: "...";
}

/*
Полная карточка товара Article.scss
*/
.article {
  position: relative;
}

.single-post {
  position: relative;
  margin-top: 40px;
}

.single-post__image-preview {
  max-width: 550px;
  width: 50%;
  padding: 0 25px;
}

.single-post__presentation {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.single-post__text-block {
  -ms-flex-preferred-size: calc(50% - 30px);
  flex-basis: calc(50% - 30px);
}

.single-post__short-descr p {
  line-height: 2.6rem;
  font-weight: 400;
  color: var(--black);
}

.single-post__char {
  position: relative;
  margin-top: 15px;
}

.single-post__char-title {
  display: inline-block;
  font-weight: 500;
  color: var(--text-main);
}

.single-post__char-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.single-post__char-text {
  font-size: 1.5rem;
  line-height: 2.1rem;
  color: #999;
}

.single-post__char-value {
  margin-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}

.single-post__important-info {
  position: relative;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #e5e5e5;
}

.single-post__important-info p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #999;
}

.single-post__order-block {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-left: 30px;
}

.image-preview__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
}

.image-preview__img {
  display: inline-block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.order-block {
  position: sticky;
  top: 120px;
  border: 1px solid;
  border-color: #e5e5e5;
  padding: 26px 32px 32px 32px;
}

.order-block__container {
  gap: 20px;
}

.order-block__price {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.order-block__new-price {
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.order-block__price-old-value {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgb(153, 153, 170);
  text-decoration: line-through;
}

.order-block__economy {
  padding: 5px;
  background-color: #ffeb81;
  line-height: 1.2rem;
}

.order-block__stick {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-main);
}

.order-block__buttons {
  gap: 7px;
}

.order-block__order {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
  text-align: center;
  background-color: var(--blue-dark);
}

@media (any-hover: hover) {
  .order-block__order:hover {
    background-color: #0564d0;
  }
}

.order-block__btn-other {
  width: 100%;
  gap: 10px;
  text-align: center;
}

.order-block__ask-question {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.order-block__contacts {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.order-block__guarantee {
  gap: 8px;
}

.order-block__guarantee span {
  font-size: 1.4rem;
}

.order-block__icon {
  color: var(--text-main);
}

.tabs-panel {
  position: relative;
  margin-top: 70px;
}

.tabs .tabs__panel {
  display: none;
}

.tabs .tabs__panel--active {
  display: block;
}

.tabs .tabs__panel .documents__item::before {
  content: none;
}

.tabs__nav {
  white-space: nowrap;
  min-width: auto;
  overflow: visible;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgb(228, 232, 243);
}

.tabs__nav-item {
  position: relative;
}

.tabs__nav-item:not(:last-child) {
  margin-right: 30px;
}

.tabs__nav-btn {
  position: relative;
  cursor: pointer;
  padding: 8px 0 22px;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black);
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.tabs__nav-btn--active {
  color: var(--text-main);
  border-bottom: 2px solid var(--blue-dark);
}

@media (any-hover: hover) {
  .tabs__nav-btn:hover {
    color: var(--blue-dark);
  }
}

.tabs__content {
  position: relative;
  margin-top: 40px;
  font-size: 1.8rem;
  color: var(--text-main);
}

.tabs__content .wp-block-jetpack-slideshow ul li::before {
  content: none;
}

.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-bullets,
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom {
  justify-content: center !important;
}

.wp-block-jetpack-slideshow .amp-carousel-button,
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-next,
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-pause,
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-play,
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-prev {
  width: 50px !important;
  height: 50px !important;
}

.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-bullets .swiper-pagination-bullet,
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom .swiper-pagination-bullet {
  background: var(--blue) !important;
}

.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-bullets .swiper-pagination-bullet-active,
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-bullets .swiper-pagination-bullet[selected],
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom .swiper-pagination-bullet-active,
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom .swiper-pagination-bullet[selected] {
  background-color: var(--blue-dark) !important;
}

.tabs__content p {
  font-weight: 400;
  line-height: 2.6rem;
}

.tabs__content p:not(:last-child) {
  margin-bottom: 12px;
}

.tabs__content .wp-block-image {
  margin: 25px 0;
}

.tabs__content ul:not(.article-char__list),
.tabs__content ol:not(.article-char__list) {
  margin-bottom: 20px;
}

.tabs__content ul li {
  position: relative;
  word-wrap: break-word;
}

.tabs__content ul li:not(.article-char__item) {
  margin-bottom: 8px;
}

.tabs__content ul li::before {
  content: "";
  position: relative;
  left: 0;
  top: 11px;
  background: var(--text-block-dark);
  width: 11px;
  height: 1px;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.tabs__content ol {
  list-style-type: none;
  counter-reset: num;
}

.tabs__content ol li {
  position: relative;
  margin-bottom: 15px;
}

.tabs__content ol li::before {
  content: counter(num) ".";
  counter-increment: num;
  margin-right: 7px;
}

.tabs__content h2,
.tabs__content h3 {
  margin: 16px 0 16px 0;
  font-weight: 500;
  color: var(--text-main);
}

.tabs__content h2 {
  font-size: 4rem;
  line-height: 5.2rem;
}

.tabs__content h3 {
  font-size: 3rem;
  line-height: 4.2rem;
}

.tabs__content iframe {
  width: 100% !important;
  max-height: 450px;
  border-radius: 4px;
}

.tabs__content iframe:not(:last-child) {
  margin-bottom: 25px;
}

.tabs__panel_char table {
  width: 100%;
  margin-bottom: 20px;
  border: 5px solid #fff;
  border-top: 5px solid #fff;
  border-bottom: 3px solid #fff;
  border-collapse: collapse;
  outline: 3px solid var(--blue);
  font-size: 1.65rem;
  background: #fff;
}

.tabs__panel_char table tr:nth-child(1) {
  font-weight: bold;
  padding: 7px;
  color: var(--white);
  background: var(--blue);
  border: none;
  text-align: left;
  font-size: 1.65rem;
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

@media screen and (max-width: 992px) {
  .tabs__panel_char table tr {
    display: flex;
    flex-wrap: wrap;
  }

  .tabs__panel_char table tr:nth-child(1) td {
    border: none;
  }

  .tabs__panel_char table td {
    flex: 0 1 50%;
  }
}

.tabs__panel_char table tr:nth-child(1) td {
  color: var(--white);
}

.tabs__panel_char table td {
  padding: 7px;
  color: var(--text-main);
  border: none;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  font-size: 1.65rem;
}

.tabs__panel_char table tbody tr:nth-child(even) {
  background: #f8f8f8 !important;
}

.article-char {
  position: relative;
}

.article-char__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5e5e5;
  padding: 25px;
  background-color: #f7f8fb;
}

.article-char__item::before {
  content: none !important;
}

.article-char__item-title {
  font-size: 1.5rem;
  line-height: 2.1rem;
  color: #999;
  color: #999;
}

.article-char__item-value {
  color: var(--text-main);
}

.documents__list {
  position: relative;
}

.documents__item {
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 10px;
  margin-bottom: -1px !important;
  padding: 15px !important;
}

.documents__item-icon {
  width: 100%;
  max-width: 50px;
}

.documents__icon {
  width: 50px;
  height: 50px;
}

.documents__title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 !important;
  font-size: 1.8rem !important;
  font-weight: 500 !important;
}

@media (any-hover: hover) {
  .documents__title:hover {
    color: var(--blue-dark);
  }

  .documents__title:hover .documents__icon-dow {
    color: var(--blue-dark);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}

.documents__icon-dow {
  color: #999;
}

.employee {
  position: relative;
  margin-top: 50px;
}

.employee__title {
  color: var(--text-main);
}

.employee__body {
  margin-top: 15px;
  padding: 35px;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 10px;
  border: 1px solid rgb(228, 232, 243);
  transition: background ease 0.3s, box-shadow ease 0.3s, -webkit-box-shadow ease 0.3s;
}

@media (any-hover: hover) {
  .employee__body:hover {
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #fafafa;
    z-index: 1;
  }
}

.employee__photo-person {
  position: relative;
  overflow: hidden;
  max-width: 250px;
}

.employee__image-person {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}

.employee__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.employee__job-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #999;
}

.employee__name {
  font-size: 2.2rem;
  line-height: 3.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 5px;
}

.employee__connection {
  position: relative;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 7px;
}

.employee__phone,
.employee__email {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.employee__phone-text,
.employee__email-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  color: #999;
}

.employee__phone-number,
.employee__email-link {
  margin-top: 3px;
}

@media (any-hover: hover) {

  .employee__phone-number:hover,
  .employee__email-link:hover {
    color: var(--blue-dark);
  }
}

.employee__responsibilities {
  margin-top: 15px;
}

.employee__responsibilities p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.2rem;
  color: var(--p-color);
}

.article-title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 3.7rem;
}

.related-products {
  position: relative;
  margin-top: 45px;
}

.related-products__title {
  color: var(--text-main);
}

/*
Страница контактов,  contacts.scss
*/
.contacts {
  position: relative;
  color: var(--text-main);
}

.contacts__title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 6.4rem;
  color: var(--text-main);
}

.contacts__header {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid rgb(228, 232, 243);
}

.contacts__adress {
  font-size: 4rem;
  font-weight: 500;
  line-height: 6.1rem;
}

.contacts__container {
  margin-top: 40px;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 12px;
}

.contacts__block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts__text-block {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.1rem;
  color: #999;
}

.contacts__link,
.contacts__mode {
  font-size: 2rem;
  font-weight: 500;
  line-height: 3.2rem;
  color: var(--text-main);
}

.contacts__content {
  margin-top: 35px;
  gap: 20px;
}

.contacts__our-company-photo,
.contacts__map-company {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  height: 500px;
}

.contacts__image-company {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid transparent;
}

.contacts__map-company iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgb(228, 232, 243);
}

.contacts__inner-text {
  margin-top: 40px;
  max-width: 500px;
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: var(--black);
}

/*
Страница краткой новости,  blog.scss
*/
.blog {
  position: relative;
}

.blog__description {
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3.1rem;
  color: var(--p-color);
}

.blog__article-list {
  margin-top: 50px;
}

.blog__article-item_change {
  position: relative;
}

.blog__article-item_change .article-blog-post {
  overflow: hidden;
}

.blog__article-item_change .article-blog-post__header {
  width: 100%;
  height: 100%;
}

.blog__article-item_change .article-blog-post__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}

.blog__article-item_change .article-blog-post__image {
  height: 100%;
}

.blog__article-item_change .article-blog-post__content {
  position: absolute;
  bottom: 0;
  z-index: 10;
}

.blog__article-item_change .article-blog-post__title {
  color: var(--white);
}

.blog__article-item_change .article-blog-post__meta,
.blog__article-item_change .article-blog-post__date {
  color: #cdcdcd;
}

@media (any-hover: hover) {
  .blog__article-item_change:hover .article-blog-post__title {
    color: var(--text-block-light) !important;
  }
}

.blog-title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 6.4rem;
  color: var(--text-main);
}

.article-blog-post {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--text-main);
  height: 100%;
  overflow: hidden;
  border: 1px solid rgb(228, 232, 243);
}

@media (any-hover: hover) {
  .article-blog-post:hover .article-blog-post__title {
    color: var(--blue-dark);
  }

  .article-blog-post:hover .article-blog-post__img {
    -webkit-transform: scale(1.3) rotate(1deg);
    -ms-transform: scale(1.3) rotate(1deg);
    transform: scale(1.3) rotate(1deg);
  }
}

.article-blog-post__header {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.article-blog-post__image {
  position: relative;
  padding-top: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.article-blog-post__image::before {
  content: "Изображение отсутствует";
  display: block;
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.article-blog-post__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: rotate 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: rotate 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), rotate 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), rotate 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.article-blog-post__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 15px;
  padding: 25px;
}

.article-blog-post__meta {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.1rem;
  color: #999;
}

.article-blog-post__title {
  margin: 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3.3rem;
  color: var(--text-main);
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 4;
  overflow: hidden;
}

.article-blog-post__date {
  margin-top: auto;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.2rem;
  color: rgb(153, 153, 170);
}

.article-blog-post__link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

/*
Страница полной новости,  blog-full.scss
*/
.blog-full {
  position: relative;
}

.blog-full__title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 6.7rem;
  color: var(--text-main);
}

.blog-full__border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgb(228, 232, 243);
  padding: 3px 10px;
  border-radius: 10px;
  background-color: #f7f8fb;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  color: var(--text-main);
}

.blog-full__post-meta {
  margin-top: 50px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 10px;
}

.blog-full__date {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  color: var(--text-main);
}

.blog-full__post-image {
  position: relative;
  cursor: pointer;
  margin-top: 30px;
  overflow: hidden;
  height: 400px;
  max-height: 100%;
  border-radius: 4px;
}

.blog-full__post-image::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.25;
  z-index: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

@media (any-hover: hover) {
  .blog-full__post-image:hover::before {
    opacity: 0;
  }

  .blog-full__post-image:hover .blog-full__main-image {
    background-position: 100% 1%;
  }
}

.blog-full__main-image {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  -webkit-transition: background-position 1s ease;
  transition: background-position 1s ease;
}

.blog-full__content {
  margin-top: 35px;
  color: var(--text-main);
  font-size: 1.8rem;
  line-height: 2.6rem;
}

.blog-full__content p {
  margin-bottom: 18px;
  color: var(--p-color);
}

.blog-full__content h2,
.blog-full__content h3 {
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: normal;
}

.blog-full__content h2 {
  font-size: 4rem;
  font-weight: 500;
}

.blog-full__content h3 {
  font-size: 2.8rem;
  font-weight: 500;
}

.blog-full__content ul,
.blog-full__content ol {
  margin-bottom: 18px;
}

.blog-full__content ul li {
  position: relative;
  color: var(--p-color);
}

.blog-full__content ul li::before {
  content: "";
  position: relative;
  left: 0;
  top: 11px;
  background: var(--text-block-dark);
  width: 11px;
  height: 1px;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.blog-full__content ol {
  list-style-type: none;
  counter-reset: num;
}

.blog-full__content ol li {
  position: relative;
  margin-bottom: 15px;
  color: var(--p-color);
}

.blog-full__content ol li::before {
  content: counter(num) ".";
  counter-increment: num;
  margin-right: 7px;
}

.blog-full__content blockquote,
.tabs__panel blockquote {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 3.3rem;
}

.blog-full__content blockquote::before,
.tabs__panel blockquote::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--blue-dark);
}

.blog-full__content iframe,
.blog-full__content img {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  max-height: 400px;
  border-radius: 4px;
}

.blog-full__content img {
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.blog-full__bullet {
  margin-top: 40px;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 10px;
}

.blog-full__tag {
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}

@media (any-hover: hover) {
  .blog-full__tag:hover {
    color: var(--blue-dark);
  }
}

/*
Шаблон отсутствия контента
*/
.content-none {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.content-none .section-title {
  font-weight: 600;
}

.content-none .section-title::before {
  content: none;
}

.search-form {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border-radius: 4px;
}

.search-form label {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.screen-reader-text {
  display: none;
}

.search-field {
  padding: 10px 80px 10px 10px;
  width: 100%;
  color: var(--text-main);
  background-color: #eaeaea;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.1rem;
}

.search-submit {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 10px;
  height: 100%;
  color: var(--white);
  background-color: var(--blue);
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .search-submit:hover {
    background-color: var(--blue-dark);
  }
}

/*
Страница 404.php
*/
.page-not-found__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.page-not-found .section-title::before {
  content: none;
}

.page-not-found__buttons {
  gap: 20px;
}

/*
Страница page.php
*/
.page {
  position: relative;
  color: var(--text-main);
}

.page__title {
  font-size: 5rem;
  font-weight: 600;
  line-height: 5.5rem;
  color: inherit;
}

.page__image {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.page__content {
  margin-top: 35px;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #555555;
}

.page__content a {
  color: var(--blue-dark);
}

.page__content a:hover {
  border-bottom: 1px dotted var(--blue-dark);
}

.page__content p {
  margin-bottom: 20px;
}

.page__content h2,
.page__content h3 {
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: normal;
}

.page__content h2 {
  font-size: 4rem;
  font-weight: 500;
}

.page__content strong {
  font-weight: 600;
  color: var(--text-main);
}

.page__content h3 {
  font-size: 2.8rem;
  font-weight: 500;
}

.page__content ul,
.page__content ol {
  margin-bottom: 18px;
}

.page__content ul li {
  position: relative;
}

.page__content ul li {
  margin-bottom: 8px;
}

.page__content ul li::before {
  content: "";
  position: relative;
  left: 0;
  top: 11px;
  background: var(--text-block-dark);
  width: 11px;
  height: 1px;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.page__content ol {
  list-style-type: none;
  counter-reset: num;
}

.page__content ol li {
  position: relative;
  margin-bottom: 15px;
}

.page__content ol li ol {
  margin-top: 10px;
  padding-left: 10px;
}

.page__content ol li ol li {
  margin-bottom: 6px;
}

.page__content ol li::before {
  content: counter(num) ".";
  counter-increment: num;
  margin-right: 7px;
}

.page__content blockquote {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 3.3rem;
}

.page__content blockquote::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--blue-dark);
}

.page__content iframe,
.page__content img {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  max-height: 400px;
  border-radius: 4px;
}

.page__content img {
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

/*
Модальное всплывающее окно modal.scss
*/
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: hidden scroll;
  padding: 20px;
  width: 100%;
  height: auto;
  background-color: rgba(41, 45, 51, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

.modal.is--active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  pointer-events: all;
}

.modal__container {
  position: relative;
  padding: 50px;
  width: calc(100% - 100px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 300px;
  max-width: 470px;
  background-color: var(--white);
}

.modal__header {
  margin-bottom: 35px;
}

.modal__title {
  font-family: var(--font-family-other);
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 110%;
  color: var(--text-main);
}

.modal__close {
  border: 1px solid #eaeaea;
  padding: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

@media (any-hover: hover) {
  .modal__close:hover {
    border-color: #9f9f9f;
  }

  .modal__close:hover .modal__icon {
    color: var(--blue);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}

.modal__icon {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  color: #b2b2b2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

.modal__description {
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #828a99;
}

.form-contact {
  position: relative;
}

.form-contact__header {
  margin-bottom: 35px;
}

.form-contact__input {
  border: 1px solid #e4e4eb;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form-contact__input:not(:last-child) {
  margin-bottom: 35px;
}

.form-contact__input input {
  padding: 20px 30px;
  width: 100%;
  font-size: 1.6rem;
  color: var(--text-main);
}

.form-contact__input input:focus {
  background-color: transparent;
}

.form-contact__input:focus-within {
  border-color: var(--blue);
}

.form-contact__label {
  position: relative;
}

.form-contact__label .wpcf7-not-valid-tip {
  position: absolute;
  top: -30px;
  left: 10px;
  background: #fff;
  display: block;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 10px;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 140%;
  color: #828a99;
  border-color: #0b80c7;
  border-radius: 4px;
  border-width: 1px;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 10px;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 140%;
  border-color: #46b450;
  border-radius: 4px;
  border-width: 1px;
}

.form-contact__footer {
  margin-bottom: 20px;
}

.form-contact__btn {
  border-radius: 0;
  padding: 20px 30px;
  width: 100%;
  font-weight: 400;
  font-size: 1.5rem;
}

.form-contact-policy {
  gap: 20px;
}

.form-contact-policy__icon {
  vertical-align: middle;
  color: var(--black);
}

.form-contact-policy__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 120%;
  color: #828a99;
}

.form-contact-policy__text a {
  text-decoration: underline;
  color: #828a99;
}

@media (any-hover: hover) {
  .form-contact-policy__text a:hover {
    color: var(--blue-dark);
  }
}

@media screen and (width <=576px) {
  .modal__container {
    padding: 20px;
  }

  .modal__header {
    margin-bottom: 15px;
  }

  .modal__title {
    font-size: 3rem;
  }

  .modal__close {
    padding: 6px;
  }

  .modal__icon {
    width: 19px;
    height: 19px;
  }

  .modal__description {
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 130%;
  }
}

/*
Секция fotter,  footer.scss
*/
.footer {
  position: relative;
}

.footer__top {
  padding: 25px 0;
}

.footer__logo {
  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;
}

.footer__phone {
  font-size: 3.7rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 2em;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .footer__phone:hover {
    color: var(--blue-dark);
  }
}

.footer__contact-block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 25px;
  font-weight: 400;
  color: var(--text-block-dark);
}

.footer__icon {
  color: var(--blue-dark);
  vertical-align: middle;
}

.footer__adress,
.footer__mail {
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

@media (any-hover: hover) {
  .footer__adress-name:hover {
    color: var(--blue-dark);
  }
}

@media (any-hover: hover) {
  .footer__link:hover {
    color: var(--blue-dark);
  }
}

.footer__bottom {
  padding: 25px 0;
  border-top: 1px solid;
  border-color: #e5e5e5;
}

.footer__body-bottom {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-block-dark);
}

.footer__item-link {
  margin-left: 45px;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .footer__item-link:hover {
    color: var(--text-block-light);
  }
}

.footer .social {
  gap: 0;
  padding: 0;
  border: none;
}

.social {
  position: relative;
}

.social__item:not(:last-child) {
  margin-right: 10px;
}

/* Attention! Do not delete. */

.maxdev-by-copyright {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem 0;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--gray-color, #666);
}

.maxdev-by-copyright a {
  margin-left: 0.5rem;
  font-weight: 400;
  color: var(--gray-color, #666);
  transition: all 0.2s ease-in-out;
}

.maxdev-by-copyright a:hover {
  color: #d3243d;
}

.maxdev-by-copyright a span {
  color: #d72929;
  transition: color 0.2s ease-in-out;
  font-weight: 700;
}

.maxdev-by-copyright a:hover span {
  color: var(--gray-color, #666);
}

@media screen and (max-width: 1500px) {
  .nav__item {
    padding: 0 20px;
  }

  .nav__link {
    font-size: 1.5rem;
  }

  .link-contacts__phone {
    margin-right: 20px;
  }
}

@media screen and (max-width: 1400px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .burger-st {
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
    height: 100%;
  }

  .link-logo {
    border-left: 1px solid rgba(235, 235, 240, 0.2);
  }

  .link-contacts {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1200px) {
  .single-post__container {
    row-gap: 30px;
  }

  .single-post__presentation {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .single-post__image-preview {
    width: 100%;
    max-width: 100%;
  }

  .image-preview__body {
    height: 450px;
    max-height: 100%;
  }
}

@media screen and (max-width: 992px) {
  .link-contacts__callback {
    display: none;
  }

  .link-contacts__phone span {
    display: none;
  }

  .link-contacts__phone {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
    height: 100%;
    background-color: var(--blue-dark);
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
  }

  .link-contacts__icon {
    width: 30px;
    height: 30px;
    color: var(--white) !important;
  }

  .benefit__list {
    row-gap: 0;
  }

  .motivation__item::before {
    opacity: 0.35;
  }

  .motivation__info {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  .motivation__cart-description {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .sample__picture {
    padding-top: 50%;
  }

  .contacts-form__pic {
    display: none;
  }

  .contacts-form__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__body-top {
    row-gap: 35px;
  }

  .footer__phone {
    margin: 0;
    margin-left: auto;
  }

  .footer__contact-block {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
  }

  .contacts__content {
    display: block;
  }

  .contacts__map-company {
    margin-top: 20px;
  }

  .contacts__inner-text {
    max-width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .link-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .link-contacts {
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }

  .main-block__title {
    font-size: 5rem;
  }

  .main-block__benefit {
    display: none;
  }

  .motivation__image-wrp,
  .product__top,
  .blog__top {
    padding-top: 65%;
  }

  .contacts__flex,
  .section-faq__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts__data {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .section-faq__text-block {
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .footer__phone {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .page-title_fz {
    font-size: 3rem;
  }

  .order-block__ask-question,
  .order-block__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .single-post__presentation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }

  .single-post__text-block {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .single-post__order-block {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .single-post__order-block,
  .single-post__text-block {
    padding: 0;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .order-block__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .tabs__content h2 {
    font-size: 3rem;
  }

  .tabs__content h3 {
    font-size: 2.5rem;
  }

  .tabs-panel {
    margin-top: 30px;
  }

  .tabs__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .tabs__nav-item:not {
    margin: 0;
  }

  .tabs__nav-btn {
    padding: 8px 0 10px;
  }

  .blog-title {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .blog__description {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }

  .blog-full__title {
    font-size: 3.5rem;
    line-height: 100%;
  }

  .blog-full__post-meta {
    margin-top: 30px;
  }

  .blog-full__content h2 {
    font-size: 3rem;
  }

  .blog-full__content h3 {
    font-size: 2.4rem;
  }

  .blog-full__content blockquote {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }

  .blog-full__bullet {
    margin-top: 25px;
  }
}

@media screen and (max-width: 576px) {
  .header__nav {
    height: 60px;
  }

  .main-block__title {
    font-size: 4rem;
  }

  .main-block__body span {
    max-width: 100%;
  }

  .main-block__link-about-company {
    margin: 35px 0;
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
  }

  .motivation__image-wrp,
  .sample__picture,
  .product__top {
    padding-top: 100%;
  }

  .motivation__cart-description {
    margin-bottom: 0;
  }

  .contacts-form__title {
    font-size: 2.7rem;
  }

  .contacts-form {
    padding: 10px 0;
  }

  .form-cantact__flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }

  .form-cantact__submit {
    row-gap: 10px;
  }

  .form-cantact__btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .form-cantact__req {
    margin-left: 0;
  }

  .accordion__title-name {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    font-size: 1.8rem;
  }

  .footer__phone {
    font-size: 2.7rem;
  }

  .footer__body-bottom {
    row-gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__item-link {
    margin-left: 0;
  }

  .image-preview__body {
    height: auto;
  }

  .order-block {
    position: relative;
    top: 0;
    padding: 26px 20px 32px 20px;
  }

  .order-block__btn-other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .tabs__content h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .tabs__content h3 {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .article-title {
    font-size: 2.2rem;
    line-height: 3rem;
  }

  .employee__body {
    padding: 15px;
  }

  .contacts__title {
    font-size: 3rem;
    line-height: 4.4rem;
  }

  .contacts__adress {
    font-size: 2rem;
    line-height: 2.7rem;
    font-weight: 600;
  }

  .contacts__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .contacts__block {
    width: 100%;
  }

  .contacts__btn {
    text-align: center;
  }

  .contacts__our-company-photo,
  .contacts__map-company {
    height: 350px;
  }

  .contacts__inner-text {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }

  .blog-full__title {
    font-size: 2.8rem;
  }

  .blog-full__post-meta {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .blog-full__post-image {
    height: 300px;
  }

  .blog-full__content h2 {
    font-size: 2.8rem;
  }

  .blog-full__content h3 {
    font-size: 2.2rem;
  }

  .blog-full__content iframe,
  .blog-full__content img {
    height: 300px;
  }
}