.burger {
  display: none;
  position: relative;
  width: 33px;
  height: 25px;
}
.burger::before,
.burger::after {
  content: "";
  background: #102b9f;
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 4px;
  right: 0;
  top: 10px;
  transition: 0.38s ease-in-out;
}
.burger::after {
  top: 20px;
}
.burger::before {
  width: 100%;
}
.burger span {
  content: "";
  background: #102b9f;
  border-radius: 5px;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  transition: 0.38s ease-in-out;
}
.burger--open::before {
  opacity: 0;
}
.burger--open::after {
  width: 100%;
  transform: rotate(-45deg) translate(5px, -10px);
}
.burger--open span {
  width: 100%;
  transform: rotate(45deg) translate(4px, 9px);
}

@media (max-width: 992px) {
  .burger {
    display: block;
  }
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.563rem, 8.917vw + -4.133rem, 3.313rem);
  padding-top: clamp(0.75rem, 0.955vw + 0.14rem, 0.938rem);
  border-top: 1px solid #cfd3da;
}
.nav__link {
  color: #181d40;
  font-size: clamp(0.688rem, 0.955vw + 0.077rem, 0.875rem);
  line-height: 18px;
  font-weight: 500;
  transition: color 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .nav__link:hover {
    color: #102b9f;
  }
}
.nav__link--active {
  position: relative;
}
.nav__link--active::before {
  content: "";
  background-color: #102b9f;
  position: absolute;
  width: 100%;
  height: 2px;
  top: -19px;
  left: 0;
  border-radius: 0px 0px 2px 2px;
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
  .nav--mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .nav--mobile .nav__link {
    font-size: 16px;
    line-height: 24px;
  }
}
.menu {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  background-color: #fff;
  position: fixed;
  left: -100%;
  top: 0px;
  width: 100%;
  height: 100vh;
  padding-bottom: 30px;
  padding-top: 100px;
  z-index: 9;
  transition: 0.38s ease-in-out;
  overflow: auto;
}
@media (max-width: 992px) {
  .menu {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .menu {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .menu {
    --container-width: 100%;
  }
}
.menu--open {
  left: 0;
}
.menu__container {
  grid-area: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu__container-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .menu__container {
    grid-area: full;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.header {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
@media (max-width: 992px) {
  .header {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .header {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .header {
    --container-width: 100%;
  }
}
.header__container {
  grid-area: center;
}
.header__top {
  padding: 23px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top-logo {
  width: 30%;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
}
.header__top-contacts {
  display: flex;
  align-items: center;
  gap: clamp(1.875rem, 9.554vw + -4.228rem, 3.75rem);
}
.header__logo {
  width: 71px;
  height: 65px;
}
.header__logo img {
  width: 100px;
  height: 100%;
  object-fit: cover;
}
.header__text {
  max-width: 156px;
  color: #181d40;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

@media (max-width: 992px) {
  .header {
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    z-index: 10;
  }
  .header .btn,
  .header .link {
    display: none;
  }
  .header__top-logo {
    width: auto;
  }
  .header__top {
    padding: 15px 0px;
  }
}
.input {
  width: 100%;
  padding: 12px 15px 12px 15px;
  border-radius: 5px 0px 0px 0px;
  border-radius: 5px;
  border: 1px solid #cfd3da;
  font-family: "Cera Pro";
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #181d40;
}
.input::placeholder {
  color: #818998;
}
.input--checkbox {
  padding: 0;
  appearance: none;
  border-radius: 3px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.38s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #cfd3da;
}
.input--checkbox::before {
  font-size: 7px;
  color: #ffffff;
}
.input--checkbox:checked {
  border: 1px solid #102b9f;
  background-color: #102b9f;
}
.input--textarea {
  resize: none;
  height: clamp(6.25rem, 8.28vw + 0.961rem, 7.875rem);
}
.input--textarea::-webkit-scrollbar {
  width: 10px;
}
.input--textarea::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 5px;
}
.input--textarea::-webkit-scrollbar-thumb {
  background-color: #102b9f;
  border-radius: 5px;
  border: 3px solid #ffffff;
}
.form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.form__wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.form__text {
  width: 90%;
  text-align: left;
  font-size: clamp(0.75rem, 0.637vw + 0.343rem, 0.875rem);
  line-height: clamp(1.125rem, 0.637vw + 0.718rem, 1.25rem);
  color: #a8adb7;
}
.form__text a {
  color: #102b9f;
  position: relative;
}
.form__text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #102b9f;
  transition: 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .form__text a:hover::after {
    width: 100%;
  }
}
.modal {
  display: none;
  background-color: #ffffff;
  border-radius: 10px;
  padding: clamp(1.875rem, 6.369vw + -2.193rem, 3.125rem)
    clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem)
    clamp(1.875rem, 6.369vw + -2.193rem, 3.125rem)
    clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
  width: clamp(28.125rem, 15.924vw + 17.954rem, 31.25rem);
}
.modal__container {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.fancybox__backdrop {
  background: rgba(42, 44, 49, 0.7);
}

.fancybox__content > .f-button.is-close-btn {
  width: 28px;
  height: 28px;
  top: 15px;
  right: 15px;
  opacity: 1;
}

.f-button svg {
  width: 25px;
  height: 25px;
  fill: #6d727b;
  color: #6d727b;
}

.textError {
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: red;
}

@media (max-width: 768px) {
  .is-compact .fancybox__content > .f-button.is-close-btn {
    top: 15px;
  }
  .f-button {
    background: transparent;
  }
}
.footer {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  background-color: #181d40;
}
@media (max-width: 992px) {
  .footer {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .footer {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .footer {
    --container-width: 100%;
  }
}
.footer__container {
  grid-area: center;
  padding-top: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  padding-bottom: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
}
.footer__wrapper {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  margin-bottom: clamp(2.5rem, 11.146vw + -4.62rem, 4.688rem);
  gap: clamp(5rem, 38.217vw + -19.411rem, 12.5rem);
}
.footer__info {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 3.185vw + -1.409rem, 1.25rem);
}
.footer__info-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  width: 40%;
}
.footer__logo {
  display: block;
  width: clamp(5rem, 9.236vw + -0.899rem, 6.813rem);
  height: clamp(4.375rem, 9.554vw + -1.728rem, 6.25rem);
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__text {
  font-size: clamp(0.75rem, 0.637vw + 0.343rem, 0.875rem);
  line-height: clamp(1rem, 0.637vw + 0.593rem, 1.125rem);
  color: #a8adb7;
}
.footer__text span {
  color: #6d727b;
}
.footer__text--link {
  color: #ffffff;
  transition: color 0.38s ease-in-out;
}
.footer__text--link:hover {
  color: #a8adb7;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__list-link {
  color: #a8adb7;
  font-size: clamp(0.875rem, 0.637vw + 0.468rem, 1rem);
  line-height: clamp(1.125rem, 1.911vw + -0.096rem, 1.5rem);
  transition: color 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .footer__list-link:hover:hover {
    color: #ffffff;
  }
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.footer__contacts-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__bottom {
  align-items: center;
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 0.6fr;
  gap: clamp(1.563rem, 23.885vw + -13.694rem, 6.25rem);
}
.footer__bottom-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__develop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.footer__develop .footer__text--link {
  color: #6d727b;
}
@media screen and (min-width: 993px) {
  .footer__develop:hover .footer__text--link {
    color: #ffffff;
  }
}
.footer__develop img {
  width: clamp(1.875rem, 5.096vw + -1.38rem, 2.875rem);
  height: 36px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer__contacts {
    align-items: flex-start;
  }
  .footer__list-link {
    font-size: 16px;
  }
  .footer__text {
    font-size: 14px;
  }
  .footer__bottom {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
  .footer__bottom-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer__develop {
    justify-content: flex-start;
  }
  .footer__develop img {
    width: 46px;
    height: 36px;
  }
}
@media (max-width: 576px) {
  .footer__wrapper {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    grid-template-columns: 1fr;
  }
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/Cera Pro/CeraPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/Cera Pro/CeraPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/Cera Pro/CeraPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Cera Pro", sans-serif;
  font-weight: 400;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

html.with-fancybox {
  overflow: hidden;
}

input,
textarea {
  outline: none;
  background-color: transparent;
}

.section {
  margin-bottom: clamp(2.5rem, 12.739vw + -5.637rem, 5rem);
}

.swiper {
  user-select: none;
}
.link {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 993px) {
  .link:hover .link__text {
    color: #102b9f;
  }
}
.link--gray .link__text {
  color: #a8adb7;
}
.link--gray.link--telefon .link__text {
  color: #ffffff;
}
@media screen and (min-width: 993px) {
  .link--gray:hover .link__text {
    color: #ffffff;
  }
  .link--gray:hover.link--telefon .link__text {
    color: #a8adb7;
  }
}
@media screen and (min-width: 993px) {
  .link--nohover:hover .link__text {
    color: #a8adb7;
  }
}
.link--telefon .link__text {
  font-size: clamp(1.25rem, 1.274vw + 0.436rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.563rem, 1.592vw + 0.545rem, 1.875rem);
}
.link--start {
  align-items: flex-start;
}
.link__icon {
  color: #102b9f;
  font-size: clamp(1.125rem, 0.637vw + 0.718rem, 1.25rem);
}
.link__text {
  font-size: 14px;
  line-height: 18px;
  color: #181d40;
  transition: color 0.38s ease-in-out;
}
.link__text span {
  display: block;
  color: #818998;
  font-family: Cera Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 5px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: clamp(1.25rem, 0.955vw + 0.64rem, 1.438rem);
  padding-right: clamp(1.25rem, 0.955vw + 0.64rem, 1.438rem);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  background-color: #102b9f;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid #102b9f;
  width: fit-content;
  transition: all 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .btn:hover {
    background-color: #ffffff;
    color: #102b9f;
  }
}
.btn--full {
  width: 100%;
}
.btn__icon {
  font-size: 13px;
}
.btn--center {
  margin: 0 auto;
}
.btn--full {
  width: 100%;
}
.btn--gray {
  background-color: #f2f4f8;
  color: #6d727b;
  border: 1px solid #f2f4f8;
}
@media screen and (min-width: 993px) {
  .btn--gray:hover {
    border: 1px solid #102b9f;
    background-color: #102b9f;
    color: #f2f4f8;
  }
}
.btn--p50 {
  padding-left: clamp(1.563rem, 7.962vw + -3.523rem, 3.125rem);
  padding-right: clamp(1.563rem, 7.962vw + -3.523rem, 3.125rem);
}
.btn--width {
  width: 50%;
}
.btn--order {
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
  padding-right: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
}
.btn--error {
  padding-left: clamp(1.25rem, 6.688vw + -3.022rem, 2.563rem);
  padding-right: clamp(1.25rem, 6.688vw + -3.022rem, 2.563rem);
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
  }
}
.subtitle {
  color: #181d40;
  font-size: clamp(1.75rem, 4.459vw + -1.098rem, 2.625rem);
  font-weight: 700;
  line-height: clamp(2rem, 6.688vw + -2.272rem, 3.313rem);
  margin-bottom: 20px;
}
.subtitle--border {
  padding-bottom: 20px;
  border-bottom: 1px solid #cfd3da;
}
.subtitle--mb30 {
  margin-bottom: clamp(0.938rem, 4.777vw + -2.114rem, 1.875rem);
}
.subtitle--mb40 {
  margin-bottom: clamp(1.25rem, 6.369vw + -2.818rem, 2.5rem);
}
.subtitle--mb80 {
  margin-bottom: clamp(2.5rem, 12.739vw + -5.637rem, 5rem);
}
.subtitle--mbNone {
  margin-bottom: 0;
}
.subtitle--white {
  color: #ffffff;
}

@media (max-width: 992px) {
  .subtitle {
    font-size: 26px;
    line-height: 30px;
  }
}
.title {
  color: #181d40;
  font-size: clamp(2rem, 5.096vw + -1.255rem, 3rem);
  font-weight: 700;
  line-height: clamp(3.125rem, 3.185vw + 1.091rem, 3.75rem);
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.title--mb20 {
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .title {
    font-size: 30px;
    line-height: 34px;
  }
}
.error {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  height: 32vh;
  padding-top: clamp(1.25rem, 9.554vw + -4.853rem, 3.125rem);
  margin-bottom: clamp(5rem, 25.478vw + -11.274rem, 10rem);
}
@media (max-width: 992px) {
  .error {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .error {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .error {
    --container-width: 100%;
  }
}
.error__container {
  grid-area: center;
  display: flex;
  justify-content: space-between;
}
.error__info {
  width: 50%;
  position: relative;
}
.error__text {
  width: 80%;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  color: #6d727b;
  font-size: 20px;
  line-height: 30px;
}
.error__num {
  color: #d5eaff;
  font-size: clamp(15.625rem, 35.032vw + -6.752rem, 22.5rem);
  font-weight: 700;
  line-height: clamp(10.625rem, 12.739vw + 2.488rem, 13.125rem);
}

@media (max-width: 992px) {
  .error {
    padding-top: 135px;
    height: auto;
  }
  .error__num {
    font-size: 130px;
  }
}
@media (max-width: 768px) {
  .error {
    padding-top: 110px;
  }
  .error__container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
  }
  .error__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .error__icon {
    width: 100%;
  }
  .error__num {
    font-size: 180px;
    width: 100%;
    text-align: center;
  }
}
.breadcrumb {
  position: relative;
  padding-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .breadcrumb {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .breadcrumb {
    --container-width: 100%;
  }
}
.breadcrumb__wrapper {
  grid-area: center;
}
.breadcrumb__wrapper span {
  position: relative;
}
.breadcrumb__wrapper span:first-child {
  display: flex;
  align-items: center;
}
.breadcrumb__wrapper span span:first-child a {
  padding-left: 0;
}
.breadcrumb > span > span:not(:first-child) {
  margin-left: 20px;
}
.breadcrumb a,
.breadcrumb_last {
  color: #818998;
  font-size: 14px;
  line-height: 18px;
  transition: color 0.38s ease-in-out;
  position: relative;
  padding-left: 45px;
}
.breadcrumb a::before,
.breadcrumb_last::before {
  content: url('data:image/svg+xml,<svg width="5" height="6" viewBox="0 0 5 6" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y="0.5" width="5" height="5" rx="1" fill="%23102B9F"/></svg>');
  padding-right: 20px;
  padding-left: 20px;
  width: 15px;
  height: 15px;
  font-size: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.breadcrumb_last {
  max-width: 50ch;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb span:first-child > a::before {
  display: none;
}
.breadcrumb__title {
  color: #5e5e5e;
}

@media (max-width: 992px) {
  .breadcrumb {
    margin-top: 110px;
  }
  .breadcrumb_last {
    max-width: 30ch;
  }
}
@media (max-width: 768px) {
  .breadcrumb__wrapper span:first-child {
    flex-wrap: wrap;
  }
  .breadcrumb a,
  .breadcrumb_last {
    padding-left: 17px;
    padding-right: 17px;
  }
  .breadcrumb a::before,
  .breadcrumb_last::before {
    padding-right: 0;
    padding-left: 0;
  }
  .breadcrumb_last {
    max-width: 100%;
  }
}
.chapter {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .chapter {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .chapter {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .chapter {
    --container-width: 100%;
  }
}
.chapter__container {
  grid-area: center;
}
.chapter__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.chapter__card {
  position: relative;
  background-color: #e8f4ff;
  border-radius: 10px;
  min-height: clamp(12.5rem, 9.554vw + 6.397rem, 14.375rem);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.chapter__card-title {
  width: 87%;
  color: #181d40;
  font-size: clamp(1.375rem, 0.637vw + 0.968rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.5rem, 1.911vw + 0.279rem, 1.875rem);
}
.chapter__card-more {
  color: #6d727b;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
.chapter__card-more span {
  font-size: 12px;
}
.chapter__img {
  width: clamp(9.375rem, 17.834vw + -2.017rem, 12.875rem);
  height: clamp(8.125rem, 12.739vw + -0.012rem, 10.625rem);
  object-fit: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 992px) {
  .chapter__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .chapter__cards {
    grid-template-columns: 1fr;
  }
}
.feedback {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  margin-top: clamp(1rem, 3.185vw + -1.034rem, 1.625rem);
}
@media (max-width: 992px) {
  .feedback {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .feedback {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .feedback {
    --container-width: 100%;
  }
}
.feedback__container {
  grid-area: center;
  position: relative;
  border-radius: 10px;
  background-color: #202750;
  z-index: 1;
  padding: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.feedback__container:after {
  content: "";
  background-image: url("../img/bg_feedback.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}
.feedback__wrapper {
  width: 50%;
}
.feedback__text {
  color: #a8adb7;
  font-size: clamp(0.938rem, 1.592vw + -0.08rem, 1.25rem);
  line-height: clamp(1.375rem, 2.548vw + -0.252rem, 1.875rem);
  margin-bottom: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
}
.feedback__text a {
  font-weight: 700;
  color: #ffffff;
}
.feedback__btns {
  display: flex;
  gap: 15px;
}
.feedback__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(28.438rem, 20.064vw + 15.622rem, 32.375rem);
  height: clamp(16.875rem, 11.465vw + 9.552rem, 19.125rem);
  object-fit: contain;
}
.feedback__img--management {
  width: clamp(26.875rem, 39.809vw + 1.447rem, 34.688rem);
  height: clamp(20rem, 15.924vw + 9.829rem, 23.125rem);
  bottom: -60px;
}

@media (max-width: 992px) {
  .feedback__wrapper {
    width: 60%;
  }
  .feedback__img {
    width: 320px;
    height: 190px;
  }
  .feedback__img--management {
    height: 270px;
  }
}
@media (max-width: 768px) {
  .feedback__container {
    padding-bottom: 0;
    padding-right: 0;
  }
  .feedback__wrapper {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 30px;
  }
  .feedback__img {
    position: static;
    width: 100%;
    height: 170px;
    object-position: right;
  }
}
@media (max-width: 576px) {
  .feedback__btns {
    flex-direction: column;
  }
}
.catalog {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .catalog {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .catalog {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .catalog {
    --container-width: 100%;
  }
}
.catalog__container {
  grid-area: center;
}
.catalog__description {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #6d727b;
  font-size: clamp(0.875rem, 0.637vw + 0.468rem, 1rem);
  line-height: clamp(1.25rem, 1.274vw + 0.436rem, 1.5rem);
}
.catalog__description ul li {
  position: relative;
  padding-left: clamp(0.938rem, 1.592vw + -0.08rem, 1.25rem);
}
.catalog__description ul li::before {
  content: "";
  border-radius: 50%;
  background-color: #6d727b;
  width: 4px;
  height: 4px;
  position: absolute;
  left: clamp(0.063rem, 1.911vw + -1.158rem, 0.438rem);
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .catalog__description {
    width: 100%;
  }
}
.delivery {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .delivery {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .delivery {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .delivery {
    --container-width: 100%;
  }
}
.delivery__container {
  grid-area: center;
  border-radius: 10px;
  background-color: #e8f4ff;
  padding: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  padding-right: clamp(3.125rem, 9.554vw + -2.978rem, 5rem);
  display: flex;
  justify-content: space-between;
}
.delivery__info {
  width: 50%;
}
.delivery__text {
  color: #6d727b;
  font-size: clamp(1.125rem, 0.637vw + 0.718rem, 1.25rem);
  line-height: clamp(1.375rem, 2.548vw + -0.252rem, 1.875rem);
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.delivery__icon {
  object-fit: cover;
  width: clamp(11.25rem, 6.369vw + 7.182rem, 12.5rem);
  height: clamp(11.25rem, 6.369vw + 7.182rem, 12.5rem);
}

@media (max-width: 768px) {
  .delivery__container {
    flex-direction: column;
    gap: 30px;
  }
  .delivery__info {
    width: 100%;
  }
}
.content {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
.content__group {
  padding-bottom: 32px;
}
@media (max-width: 992px) {
  .content__group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 16px;
  }
}
.content__unknown {
  font-weight: 700;
  font-size: 24px;
  color: rgb(129, 137, 152);
}
@media (max-width: 992px) {
  .content__unknown {
    line-height: 1;
    color: rgb(129, 137, 152);
    font-size: 18px;
    font-weight: 600;
  }
}
.content__textPrice {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: rgb(129, 137, 152);
}
.content__price {
  line-height: 1;
  color: rgb(16, 43, 159);
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 992px) {
  .content__price {
    font-weight: 700;
    font-size: 16px;
    color: rgb(16, 43, 159);
  }
}
@media (max-width: 992px) {
  .content {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .content {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .content {
    --container-width: 100%;
  }
}
.content__container {
  grid-area: center;
  display: flex;
  gap: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.content__container--reverse {
  flex-direction: row-reverse;
}
.content__info {
  width: 62%;
}
.content__info--category {
  width: 50%;
}
.content__info-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  color: #6d727b;
  font-size: clamp(0.875rem, 0.637vw + 0.468rem, 1rem);
  line-height: clamp(1.25rem, 1.274vw + 0.436rem, 1.5rem);
}
.content__info-text ul li {
  position: relative;
  padding-left: clamp(0.625rem, 3.185vw + -1.409rem, 1.25rem);
}
.content__info-text ul li::before {
  content: "";
  border-radius: 50%;
  background-color: #6d727b;
  width: 4px;
  height: 4px;
  position: absolute;
  left: clamp(0.063rem, 1.911vw + -1.158rem, 0.438rem);
  top: 50%;
  transform: translateY(-50%);
}
.content__info-btns {
  display: flex;
  gap: 15px;
  width: 80%;
}
.content__photo {
  width: 48%;
  padding-top: 11px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: clamp(1.875rem, 5.096vw + -1.38rem, 2.875rem);
  border-radius: 10px;
  border: 1px solid #e9ebef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content__photo--category {
  background-color: #e8f4ff;
  border: none;
  padding: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  padding-right: clamp(3.75rem, 6.369vw + -0.318rem, 5rem);
}
.content__photo img {
  width: clamp(28.125rem, 15.924vw + 17.954rem, 31.25rem);
  height: clamp(30rem, 17.516vw + 18.812rem, 33.438rem);
  object-fit: contain;
}

@media (max-width: 992px) {
  .content__container {
    flex-direction: column;
  }
  .content__info {
    width: 100%;
  }
  .content__photo {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .content__info-btns {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .content__info-btns {
    flex-wrap: wrap;
  }
  .content__photo img {
    height: 300px;
  }
}
.sorting {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sorting__text {
  color: #818998;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.sorting__list-active {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.sorting__list-text,
.sorting__list a {
  color: #181d40;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
.sorting__list-icon {
  font-size: 12px;
  color: #818998;
  transform: rotate(90deg);
}
.sorting__list-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  padding-right: 20px;
  margin-left: -10px;
  background-color: #ffffff;
  border-radius: 5px;
  margin-top: 5px;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s ease-in-out;
}
.sorting__list-dropdown--open {
  opacity: 1;
  visibility: visible;
}
.filter {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
}
.filter__item-title {
  margin-bottom: 20px;
  color: #181d40;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.filter__item-wrapper {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.filter__item-wrapper:last-of-type {
  margin-bottom: 0;
}
.filter__checkbox {
  border-radius: 2px;
  appearance: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.38s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #cfd3da;
}
.filter__checkbox::before {
  font-size: 12px;
  color: #ffffff;
}
.filter__checkbox:checked {
  border: 1px solid #102b9f;
  background-color: #102b9f;
}
.filter__label {
  width: 80%;
  color: #181d40;
  font-size: 14px;
  line-height: 18px;
}
.filter__btns {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 10px;
}
.filter__btns .btn {
  padding-left: clamp(0.625rem, 2.548vw + -1.002rem, 1.125rem);
  padding-right: clamp(0.625rem, 2.548vw + -1.002rem, 1.125rem);
}
.filter__btnClose {
  display: none;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 16px;
  top: 100px;
}
.filter__btnClose::after {
  content: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M24.1588 5.49151C24.3713 5.27147 24.4889 4.97677 24.4863 4.67087C24.4836 4.36498 24.3609 4.07236 24.1446 3.85605C23.9283 3.63974 23.6357 3.51705 23.3298 3.51439C23.0239 3.51173 22.7292 3.62932 22.5092 3.84184L14.0007 12.3503L5.49216 3.84184C5.27213 3.62932 4.97743 3.51173 4.67153 3.51439C4.36563 3.51705 4.07302 3.63974 3.85671 3.85605C3.6404 4.07236 3.5177 4.36498 3.51504 4.67087C3.51239 4.97677 3.62998 5.27147 3.8425 5.49151L12.351 14L3.8425 22.5085C3.73107 22.6161 3.64219 22.7449 3.58105 22.8872C3.5199 23.0295 3.48772 23.1826 3.48637 23.3375C3.48503 23.4924 3.51454 23.6461 3.57321 23.7894C3.63187 23.9328 3.7185 24.0631 3.82804 24.1726C3.93758 24.2822 4.06784 24.3688 4.21122 24.4275C4.3546 24.4861 4.50822 24.5156 4.66313 24.5143C4.81804 24.513 4.97113 24.4808 5.11347 24.4196C5.25581 24.3585 5.38454 24.2696 5.49216 24.1582L14.0007 15.6497L22.5092 24.1582C22.7292 24.3707 23.0239 24.4883 23.3298 24.4856C23.6357 24.483 23.9283 24.3603 24.1446 24.144C24.3609 23.9277 24.4836 23.635 24.4863 23.3291C24.4889 23.0232 24.3713 22.7285 24.1588 22.5085L15.6503 14L24.1588 5.49151Z" fill="%236D727B"/></svg>');
}

@media (max-width: 992px) {
  .filter {
    background-color: #fff;
    position: fixed;
    left: -100%;
    top: 0px;
    width: 100%;
    height: 100vh;
    padding-bottom: 30px;
    padding-top: 100px;
    padding-left: 16px;
    padding-right: 16px;
    z-index: 8;
    transition: 0.38s ease-in-out;
    overflow: auto;
  }
  .filter--open {
    left: 0;
  }
  .filter__btnClose {
    display: block;
  }
  .filter__btns {
    grid-template-columns: 1fr;
  }
  .filter__btns .btn {
    width: 40%;
  }
}
@media (max-width: 576px) {
  .filter__btns .btn {
    width: 100%;
  }
}
.card {
  border: 1px solid #e9ebef;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  justify-content: space-between;
  border-radius: 10px;
}
.card__group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .card__group {
    flex-direction: column;
    gap: 8px;
  }
}
.card__textPrise,
.card__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: rgb(129, 137, 152);
}
.card__prise {
  line-height: 1;
  font-size: 18px;
  color: rgb(16, 43, 159);
  font-weight: 700;
}
@media (max-width: 992px) {
  .card__prise {
    font-weight: 700;
    font-size: 16px;
    color: rgb(16, 43, 159);
  }
}
.card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card__photo {
  width: clamp(10rem, 16.561vw + -0.578rem, 13.25rem);
  height: clamp(10rem, 16.561vw + -0.578rem, 13.25rem);
  border-radius: 5px;
  object-fit: contain;
}
.card__title {
  color: #181d40;
  font-size: clamp(0.875rem, 0.637vw + 0.468rem, 1rem);
  font-weight: 700;
  line-height: clamp(1.125rem, 0.637vw + 0.718rem, 1.25rem);
}
.category {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .category {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .category {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .category {
    --container-width: 100%;
  }
}
.category__container {
  grid-area: center;
}
.category__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.category__title {
  color: #181d40;
  font-size: clamp(1.25rem, 1.274vw + 0.436rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.625rem, 1.274vw + 0.811rem, 1.875rem);
}
.category__content {
  display: grid;
  gap: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
  grid-template-columns: minmax(220px, 260px) minmax(690px, 1016px);
}
.category__box {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
}
.category__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 992px) {
  .category__content {
    grid-template-columns: 1fr;
  }
  .category__title {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .category__title::after {
    content: url('data:image/svg+xml,<svg width="20px" height="15px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 10.5A3.502 3.502 0 0 0 18.355 8H21a1 1 0 1 0 0-2h-2.645a3.502 3.502 0 0 0-6.71 0H3a1 1 0 0 0 0 2h8.645A3.502 3.502 0 0 0 15 10.5zM3 16a1 1 0 1 0 0 2h2.145a3.502 3.502 0 0 0 6.71 0H21a1 1 0 1 0 0-2h-9.145a3.502 3.502 0 0 0-6.71 0H3z" fill="%23000000"/></svg>');
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 768px) {
  .category__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .category__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contacts {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .contacts {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .contacts {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .contacts {
    --container-width: 100%;
  }
}
.contacts__container {
  grid-area: center;
  display: flex;
  justify-content: space-between;
}
.contacts__info {
  width: 30%;
}
.contacts__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
}
.contacts__wrapper-title {
  color: #181d40;
  font-size: clamp(1.25rem, 1.274vw + 0.436rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.625rem, 1.274vw + 0.811rem, 1.875rem);
}
.contacts__map {
  width: 57%;
  height: clamp(27.5rem, 38.217vw + 3.089rem, 35rem);
}
.contacts__map .ymaps-2-1-79-map ymaps {
  border-radius: 10px;
}
.contacts__map .ymaps-2-1-79-ground-pane {
  filter: grayscale(1);
}

@media (max-width: 992px) {
  .contacts__container {
    flex-direction: column;
    gap: 30px;
  }
  .contacts__info {
    width: 100%;
  }
  .contacts__map {
    width: 100%;
    height: 300px;
  }
}
.certificates {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .certificates {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .certificates {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .certificates {
    --container-width: 100%;
  }
}
.certificates__container {
  grid-area: center;
}
.certificates__wrapper {
  position: relative;
}
.certificates__link {
  border-radius: 10px;
  outline: none;
}
.certificates__link-img {
  object-fit: cover;
  width: 100%;
  height: clamp(19.375rem, 45.223vw + -9.511rem, 28.25rem);
  border-radius: 10px;
}
.certificates__btn {
  border-radius: 50%;
  width: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  height: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  background-color: #102b9f;
}
.certificates__btn:after {
  content: none;
}
.certificates__btn::before {
  font-size: 13px;
  color: #ffffff;
}
.certificates__btnPrev {
  left: -70px;
}
.certificates__btnPrev::before {
  transform: rotate(-180deg);
}
.certificates__btnNext {
  right: -70px;
}

@media (max-width: 1460px) {
  .certificates__btnPrev {
    left: -20px;
  }
  .certificates__btnNext {
    right: -20px;
  }
}
@media (max-width: 1380px) {
  .certificates__btnPrev {
    left: -10px;
  }
  .certificates__btnNext {
    right: -10px;
  }
}
@media (max-width: 992px) {
  .certificates__btn {
    display: none;
  }
}
.pages {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.pages__arrow {
  color: #181d40;
  font-size: 24px;
  transition: color 0.38s ease-in-out;
}
.pages__arrow:last-child {
  transform: rotate(180deg);
}
@media screen and (min-width: 993px) {
  .pages__arrow:hover {
    color: #102b9f;
  }
}
.pages__number {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pages__number-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  color: #181d40;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  transition: all 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .pages__number-item:hover {
    color: #102b9f;
  }
}
.pages__number-item--active {
  pointer-events: none;
  border: 1px solid #cfd3da;
}
.news {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .news {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .news {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .news {
    --container-width: 100%;
  }
}
.news__container {
  grid-area: center;
  width: 83%;
}
.news__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.news__link {
  background-color: #e8f4ff;
  padding: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
  border-radius: 10px;
}
.news__link-title {
  color: #181d40;
  font-family: Cera Pro;
  font-size: clamp(1.375rem, 0.637vw + 0.968rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.625rem, 1.274vw + 0.811rem, 1.875rem);
  margin-bottom: 15px;
}
.news__link-text {
  color: #6d727b;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__date {
  font-size: 14px;
  line-height: 18px;
  color: #818998;
}
.news__date--mb {
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.news__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #6d727b;
  font-size: 16px;
  line-height: 24px;
}
.news__content ul li {
  position: relative;
  padding-left: clamp(0.625rem, 3.185vw + -1.409rem, 1.25rem);
}
.news__content ul li::before {
  content: "";
  border-radius: 50%;
  background-color: #6d727b;
  width: 4px;
  height: 4px;
  position: absolute;
  left: clamp(0.063rem, 1.911vw + -1.158rem, 0.438rem);
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 992px) {
  .news__container {
    width: 100%;
  }
}
.characteristics table {
  width: 100%;
  text-align: left;
  border-collapse: separate;
  border-spacing: 0;
}
.characteristics table td,
.characteristics table th {
  border-style: none solid solid none;
  font-size: 16px;
  line-height: 20px;
  padding: 20px;
  color: #181d40;
}
.characteristics table td:last-of-type,
.characteristics table th:last-of-type {
  text-align: center;
  width: 10%;
}
.characteristics table thead th {
  background-color: #181d40;
  color: #ffffff;
  font-weight: 700;
}
.characteristics table thead th:last-child {
  border-top-right-radius: 5px;
}
.characteristics table thead th:first-child {
  border-top-left-radius: 5px;
}
.characteristics table tbody tr:last-child td:last-child {
  border-bottom: 1px solid #e9ebef;
  border-bottom-right-radius: 10px;
}
.characteristics table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid #e9ebef;
}
.characteristics table tbody tr td {
  padding-top: 13px;
  padding-bottom: 13px;
}
.characteristics table tbody tr td[colspan] {
  text-align: left;
  background-color: #f2f4f8;
  font-weight: 500;
}
.characteristics table tbody tr td:first-child {
  border-left: 1px solid #e9ebef;
}
.characteristics table tbody tr td:last-child {
  border-right: 1px solid #e9ebef;
}

@media (max-width: 992px) {
  .characteristics {
    overflow: auto;
  }
  .characteristics table {
    min-width: 650px;
  }
}
.drawings {
  display: flex;
  gap: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.drawings:last-child {
  margin-bottom: 0;
}
.drawings__img {
  object-fit: contain;
  width: clamp(28.125rem, 35.032vw + 5.748rem, 35rem);
  height: clamp(16.875rem, 22.293vw + 2.635rem, 21.25rem);
  padding: clamp(1.375rem, 2.229vw + -0.049rem, 1.813rem)
    clamp(0.875rem, 0.637vw + 0.468rem, 1rem)
    clamp(1.375rem, 2.229vw + -0.049rem, 1.813rem)
    clamp(0.875rem, 0.637vw + 0.468rem, 1rem);
  border: 1px solid #e9ebef;
  border-radius: 10px;
}
.drawings__info {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawings__title {
  color: #181d40;
  font-size: clamp(1.375rem, 0.637vw + 0.968rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.625rem, 1.274vw + 0.811rem, 1.875rem);
}
.drawings__list {
  margin-bottom: clamp(0.625rem, 3.185vw + -1.409rem, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawings__list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 16px;
  line-height: 24px;
}
.drawings__list-name {
  color: #818998;
}
.drawings__list-value {
  color: #181d40;
}

@media (max-width: 768px) {
  .drawings {
    flex-direction: column-reverse;
  }
  .drawings__info {
    width: 100%;
  }
  .drawings__img {
    width: 100%;
  }
}
.supplies {
  display: grid;
  grid-template-columns: repeat(2, 30%);
  gap: clamp(0.938rem, 4.777vw + -2.114rem, 1.875rem);
}
.supplies__img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: clamp(23.75rem, 38.217vw + -0.661rem, 31.25rem);
  margin-bottom: 20px;
}
.supplies__title {
  color: #181d40;
  font-size: clamp(1.375rem, 0.637vw + 0.968rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.5rem, 1.911vw + 0.279rem, 1.875rem);
  margin-bottom: 10px;
}
.supplies__text {
  color: #6d727b;
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 768px) {
  .supplies {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .supplies {
    grid-template-columns: 1fr;
  }
}
.solutions {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solutions__title {
  color: #181d40;
  font-size: clamp(1.375rem, 0.637vw + 0.968rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.5rem, 1.911vw + 0.279rem, 1.875rem);
}
.solutions__text {
  font-size: 16px;
  line-height: 24px;
  color: #6d727b;
  margin-bottom: clamp(0.625rem, 3.185vw + -1.409rem, 1.25rem);
}

@media (max-width: 768px) {
  .solutions {
    width: 100%;
  }
}
.tabs {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .tabs {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .tabs {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .tabs {
    --container-width: 100%;
  }
}
.tabs__container {
  grid-area: center;
}
.tabs__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cfd3da;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.159rem, 2.5rem);
}
.tabs__item {
  cursor: pointer;
  color: #181d40;
  position: relative;
  padding-bottom: 11px;
  font-weight: 500;
  font-size: clamp(0.938rem, 0.955vw + 0.327rem, 1.125rem);
  line-height: clamp(1.25rem, 0.955vw + 0.64rem, 1.438rem);
  transition: all 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .tabs__item:hover {
    color: #102b9f;
  }
}
.tabs__item--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 100%;
  background-color: #102b9f;
}
.tabs__content {
  height: inherit;
}
.tabs__content-item {
  opacity: 0;
  transition: opacity 0.38s ease-in-out;
  display: none;
  height: inherit;
}
.tabs__content-item--active {
  display: block;
}
.tabs__content-item--opacity {
  opacity: 1;
}

@media (max-width: 992px) {
  .tabs__wrapper {
    overflow-x: scroll;
    gap: 30px;
  }
  .tabs__item {
    white-space: nowrap;
  }
}
.hero {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .hero {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .hero {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .hero {
    --container-width: 100%;
  }
}
.hero__container {
  grid-area: center;
  background-color: #e8f4ff;
  position: relative;
  border-radius: 10px;
  padding: clamp(2.688rem, 9.554vw + -3.415rem, 4.563rem)
    clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem) 0px
    clamp(1.875rem, 9.554vw + -4.228rem, 3.75rem);
  min-height: clamp(26.25rem, 31.847vw + 5.908rem, 32.5rem);
  z-index: 1;
}
.hero__container:after {
  content: "";
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.05;
  filter: grayscale(1);
  z-index: -1;
}
.hero__slider {
  height: 100%;
}
.hero__slide-info {
  width: 45%;
}
.hero__tag {
  width: fit-content;
  background-color: #181d40;
  padding: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.hero__text {
  color: #181d40;
  font-size: clamp(1.375rem, 0.637vw + 0.968rem, 1.5rem);
  line-height: clamp(1.125rem, 1.274vw + 0.311rem, 1.375rem);
  margin-bottom: clamp(1.25rem, 6.369vw + -2.818rem, 2.5rem);
}
.hero__img {
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
  width: clamp(29.375rem, 31.847vw + 9.033rem, 35.625rem);
  height: 100%;
}
.hero__pagination {
  z-index: 2;
}
.hero__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: fit-content;
  bottom: 53px;
}
.hero__pagination.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 6px;
}
.hero__pagination.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet:first-of-type {
  margin-left: 0;
}
.hero__pagination .swiper-pagination-bullet {
  opacity: 1;
  border-radius: 3px;
  width: 12px;
  height: 12px;
  background-color: #bbbec5;
}
.hero__pagination .swiper-pagination-bullet-active {
  background-color: #181d40;
}

@media (max-width: 992px) {
  .hero {
    margin-top: 110px;
  }
  .hero__slide-info {
    width: 60%;
  }
  .hero__img {
    width: 370px;
    bottom: -40px;
  }
}
@media (max-width: 768px) {
  .hero__slide-info {
    width: 100%;
  }
  .hero__img {
    width: 290px;
    bottom: -75px;
  }
}
@media (max-width: 576px) {
  .hero__slide-info {
    width: 100%;
    margin-bottom: 30px;
  }
  .hero__img {
    position: static;
    width: 100%;
    height: 180px;
    object-position: right;
  }
  .hero__pagination {
    z-index: 2;
  }
  .hero__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
  }
  .hero__container {
    padding-top: 30px;
  }
}
.about {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .about {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .about {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .about {
    --container-width: 100%;
  }
}
.about__container {
  grid-area: center;
  display: flex;
  gap: clamp(1.875rem, 9.554vw + -4.228rem, 3.75rem);
}
.about__text {
  padding-top: clamp(0.938rem, 3.185vw + -1.097rem, 1.563rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.784rem, 1.875rem);
  color: #6d727b;
  font-size: clamp(0.875rem, 0.637vw + 0.468rem, 1rem);
  line-height: clamp(1.25rem, 1.274vw + 0.436rem, 1.5rem);
}
.about__text h2 {
  margin-bottom: 10px;
  color: #181d40;
  font-size: clamp(1.75rem, 4.459vw + -1.098rem, 2.625rem);
  font-weight: 700;
  line-height: clamp(2.25rem, 5.414vw + -1.208rem, 3.313rem);
}
.about__img {
  width: clamp(26.875rem, 68.79vw + -17.064rem, 40.375rem);
  height: clamp(21.875rem, 54.14vw + -12.707rem, 32.5rem);
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about__container {
    flex-direction: column;
  }
  .about__text h2 {
    font-size: 26px;
  }
}
.advantages {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(15px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(15px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .advantages {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .advantages {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .advantages {
    --container-width: 100%;
  }
}
.advantages__container {
  grid-area: center;
}
.advantages__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(1.25rem, 6.369vw + -2.818rem, 2.5rem);
  row-gap: clamp(2.5rem, 12.739vw + -5.637rem, 5rem);
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.advantages__title {
  color: #181d40;
  font-size: clamp(1.375rem, 0.637vw + 0.968rem, 1.5rem);
  font-weight: 700;
  line-height: clamp(1.5rem, 1.911vw + 0.279rem, 1.875rem);
}
.advantages__text {
  color: #6d727b;
  font-size: clamp(0.875rem, 0.637vw + 0.468rem, 1rem);
  line-height: clamp(1.25rem, 1.274vw + 0.436rem, 1.5rem);
}

@media (max-width: 992px) {
  .advantages__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .advantages__wrapper {
    grid-template-columns: 1fr;
  }
}
