@charset "UTF-8";

/*
Theme Name: FDW
Theme URI: 
Author: Texterra
Author URI: https://texterra.ru
Description: 
Tested up to: 6.0
Requires at least: 4.9.6
Requires PHP: 5.2.4
Version: 1.0.0
License: 
License URI: 
Text Domain: 
Tags: 
*/

html {
  scroll-behavior: smooth;
}

* {
  outline: none;
}

.form {
  position: relative;
}

.form__buttonholder {
  cursor: pointer;
}

.cn-text-container {
    font-size:15px;
}

.cn-button-custom {
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  background: #1d2cbb;
  color: #ffffff;
  border: unset;
  font-family: 'AeonikPro', sans-serif !important;
  font-weight: 400;
  font-style: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 575px) {
  .form__buttonholder {
    width: 100%;
  }
}

.footer-form {
  padding: 48px 48px;
  border-radius: 32px;
  background-color: var(--color-light);
  width: 100%;
  max-width: 710px;
}

.form__bottom {
  max-width: 330px;
  width: 100%;
  align-items: center;
  margin-top: 30px;
  flex-direction: column;
  display: flex;
  gap: 15px;
  margin: auto;
}

.form__buttonholder {
  width: 100%;
}

.form__buttonholder .button {
  width: 100%;
  max-width: 100%;
}

.form__bottom--one-col {
  grid-template-columns: 1fr;
  margin-top: 40px;
  max-width: unset;
}

@media screen and (max-width: 575px) {
  .form__bottom {
    grid-template-columns: 1fr;
    margin-top: 20px;
    max-width: 100%;
  }
}

.inputholder {
  position: relative;
  font-style: normal;
  margin-bottom: 20px;
}

.inputholder__input {
  width: 100%;
  height: 68px;
  font-family: var(--font-family-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1em;
  background-color: rgba(230, 232, 240, 0.4);
  border-radius: 12px;
  border: none;
  outline: none;
  resize: none;
  padding: 31px 32px 17px 32px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  border: 1px solid #e9eef4;
}

.inputholder__input--textarea {
  resize: none;
  height: 100px;
  display: block;
}

.inputholder__input.error {
  border-color: #fde4e6;
  background-color: #fde4e6;
}

.inputholder__input.error + .inputholder__label {
  color: #e41a2b;
}

@media (any-hover: hover) {
  .inputholder__input:not(.error):not(:focus):hover {
    background-color: #f5f5fa;
    border-color: #f5f5fa;
  }
}

.inputholder__input--not-empty {
  border-color: #cbd0d7;
  background-color: #fff;
}

.inputholder__label {
  color: #5e6066;
  font-size: 15px;
  position: absolute;
  top: 15px;
  width: calc(100% - 40px);
  left: 20px;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.inputholder__label--fixed {
  top: 3px;
  font-size: 13px;
  color: #9895a9;
}

.inputholder__input:focus {
  border-color: #cbd0d7;
  background-color: #fff;
}

.inputholder__input:focus + .inputholder__label {
  top: 10px;
  font-size: 13px;
  color: #9895a9;
}

.policy {
  font-style: normal;
  font-size: 15px;
  display: block;
  line-height: 140%;
  /* text-align: center;*/
}

.policy a {
  color: #e41a2b;
}

.form-thanks {
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  position: absolute;
}

@media screen and (max-width: 991px) {
  .form-thanks {
    position: relative;
    padding: 20px 0;
  }
}

.form-thanks--white {
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04),
    0px 4px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

.form-thanks__image {
  max-width: 228px;
  width: 100%;
}

@media screen and (max-width: 575px) {
  .form-thanks__image {
    margin: 0 auto;
    width: auto;
    max-width: 170px;
  }
}

.form-thanks__title {
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0px 0px 20px 0px;
  color: #0e1118;
}

@media screen and (max-width: 575px) {
  .form-thanks__content {
    text-align: center;
  }
}

.form-thanks__caption {
  font-weight: 400;
  color: #9f9fae;
  max-width: 144px;
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 1.2em;
}

@media screen and (max-width: 575px) {
  .form-thanks__caption {
    max-width: unset;
  }
}

.form-thanks__inner {
  width: 100%;
}

.form-thanks__inner--grid {
  display: grid;
  grid-template-columns: 228px 1fr;
  grid-gap: 50px;
  align-items: center;
  max-width: 550px;
  margin: 0 auto;
}

@media screen and (max-width: 575px) {
  .form-thanks__inner--grid {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

.form-thanks__inner--flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.form-thanks__inner--flex-center .form-thanks__image {
  max-width: 136px;
}

.form-thanks__inner--flex-center .form-thanks__caption {
  max-width: unset;
}

.form-thanks__inner--contacts {
  display: grid;
  grid-template-columns: 139px 1fr;
  grid-gap: 30px;
  align-items: center;
  max-width: 393px;
  margin-bottom: auto;
  margin-right: auto;
  margin-top: 50px;
}

@media screen and (max-width: 575px) {
  .form-thanks__inner--contacts {
    grid-template-columns: 1fr;
    margin: auto;
  }
}

.fileupload {
  display: flex;
  flex-direction: column;
}

.fileupload__input {
  display: none;
}

.fileupload__button {
  order: 2;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
}

.fileupload__list {
  order: 1;
}

.fileupload__item {
  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;
  gap: 10px;
}

.fileupload__item-title {
  font-size: 15px;
  line-height: 140%;
  color: #161787;
  max-width: calc(100% - 31px);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.fileupload__item-delete {
  width: 21px;
  height: 21px;
  position: relative;
  cursor: pointer;
}

.fileupload__item-delete:before,
.fileupload__item-delete::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.fileupload__item-delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (any-hover: hover) {
  .fileupload__item-delete:hover:before,
  .fileupload__item-delete:hover::after {
    background-color: #e41a2b;
  }
}

.radio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 30px;
  position: relative;
  cursor: pointer;
}

.radio--hide {
  display: none;
}

.radio--big-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.radio:not(:last-child) {
  margin-bottom: 16px;
}

.radio__input {
  display: none;
}

.radio__input:checked + .radio__title:before {
  border: 6px solid #e41a2b;
  width: 20px;
  height: 20px;
}

.radio__title {
  display: block;
  padding-left: 46px;
  color: #1e1e1f;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.radio__title:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border: 3px solid #cbd0d7;
  background-color: #ffffff;
  border-radius: 100%;
  top: -3px;
  left: 0;
}

@media (any-hover: hover) {
  .radio__title:hover::before {
    border-color: #e41a2b;
  }
}

.custom-select {
  position: relative;
}

.custom-select .shadow {
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.04),
    0px 4px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
}

.custom-select__active {
  padding: 14px 60px 14px 20px;
  cursor: pointer;
  position: relative;
  width: 100%;
  min-height: 56px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #e9eef4;
  border: 1px solid #e9eef4;
  border-radius: 8px;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
}

.custom-select__active:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 25px;
  background-image: url(assets/images/default-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  right: 23px;
  transform: translate(0, -50%) rotate(90deg);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.custom-select__active.open {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04),
    0px 4px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 8px 8px 0 0;
}

.custom-select__active.open:before {
  transform: translate(0, -50%) rotate(-90deg);
}

.error .custom-select__active {
  border-color: #fde4e6;
  background-color: #fde4e6;
}

.custom-select__text {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.custom-select__drop {
  height: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  background-color: #e9eef4;
  border-radius: 0 0 8px 8px;
  padding: 30px 30px 30px 10px;
  display: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  max-height: 302px;
  overflow: auto;
}

.custom-select__drop::-webkit-scrollbar {
  width: 8px;
  background-color: #cbd0d7;
  left: -100px;
}

@media screen and (max-width: 991px) {
  .custom-select__drop {
    font-size: 16px;
  }
}

.custom-select__item {
  display: block;
  cursor: pointer;
  padding: 10px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.custom-select__item:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .custom-select__item:not(:last-child) {
    margin-bottom: 0px;
  }
}

.custom-select__item.active {
  background: #f4f7fa;
  border-radius: 8px;
  color: #161787;
}

@media (any-hover: hover) {
  .custom-select__item:hover {
    background: #f4f7fa;
    border-radius: 8px;
    color: #161787;
  }
}

.custom-select__input {
  display: none;
}

@media screen and (min-width: 1280px) {
  .calculators-text {
    font-size: 18px;
    line-height: 1.4;
  }
}

.calculators-text {
  font-size: 15px;
  line-height: 140%;
  color: #5e6066;
  display: block;
}

.calculators-text--small {
  font-size: 13px;
}

.calculators-text--mb-20 {
  margin-bottom: 20px;
}

.calculators-price {
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
  display: block;
  color: #1e1e1f;
}

@media screen and (max-width: 575px) {
  .calculators-price {
    font-size: 40px;
  }
}

@media screen and (max-width: 575px) {
  .calculators-price {
    font-size: 30px;
  }
}

.calculators-price--small {
  font-size: 32px;
}

.range-slider__value {
  margin: 2px 0 22px;
  color: #1e1e1f;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 39px */
}

.range-slider__item {
  background: #cbd0d7;
  border-radius: 2px;
  border: unset;
  box-shadow: unset;
  height: 4px;
  z-index: 0;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 575px) {
  .range-slider__item {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.range-slider__item .noUi-connects {
  cursor: pointer;
}

.range-slider__item .noUi-connect {
  background: #e41a2b;
}

.range-slider__item .noUi-handle {
  width: 34px;
  height: 34px;
  top: -15px;
  background: #fff;
  border: 8px solid #e41a2b;
  box-shadow: unset;
  border-radius: 100%;
  cursor: pointer;
}

.range-slider__item .noUi-handle:after,
.range-slider__item .noUi-handle:before {
  display: none;
}

.range-slider__item .noUi-pips-horizontal {
  position: relative;
  height: auto;
  width: 92%;
  margin: 0 auto;
}

@media screen and (max-width: 575px) {
  .range-slider__item .noUi-pips-horizontal {
    width: 87%;
  }
}

.range-slider__item .noUi-marker {
  display: none;
}

@media screen and (min-width: 1280px) {
  .range-slider__item .noUi-value {
    font-size: 14px;
  }
}
.range-slider__item .noUi-value {
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  color: #5e6066;
}

.investor-table {
  overflow: auto;
  width: 1010px;
  max-width: 100%;
  margin: 0 auto;
}

.investor-table table {
  width: 100%;
  min-width: 400px;
  border-collapse: collapse;
}

.investor-table th {
  text-align: left;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #5e6066;
  padding: 10px;
}

.investor-table th:first-child {
  padding-left: 16px;
}

.investor-table td {
  padding: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.investor-table td:first-child {
  padding-left: 16px;
}

.investor-table td:not(:first-child) {
  
}

.investor-table tbody tr:nth-child(odd) td {
  background: #e9eef4;
}

.investor-table tbody tr:nth-child(odd) td:first-child {
  border-radius: 12px 0 0 12px;
}

.investor-table tbody tr:nth-child(odd) td:last-child {
  border-radius: 0 12px 12px 0;
}

@media screen and (max-width: 767px) {
  .investor-table th,
  .investor-table td {
    font-size: 15px;
  }
}

.fs-24 {
  font-size: 24px;
}

.fs-64 h1 {
  font-size: 64px;
}

.max-width-70 {
  max-width: 70%;
  margin: 0 auto 48px auto;
}
.old_h2-calculator {
  max-width: 70% !important;
  margin: 0 auto 48px auto !important;
}

.title-50 h1 {
  max-width: 50%;
}

.title-85 .title-50 h1 {
  max-width: 85%;
}

.title-50 .text-center {
  text-align: left;
}

.h2--center, .old_h2--center {
  text-align: center;
}
.old_h2--center {
  text-align: center;
}

@media only screen and (max-width: 722px) {
  .footer-form {
    padding: 32px 0 0 0;
  }

  .footer-form .padding__small-tablet {
    padding: 0 32px;
  }

  .container-menu__menu {
    display: none;
  }
  .container-menu__menu.mobile {
    display: flex;
  }
  .container-menu__menu ul {
    flex-direction: column;
  }
  .container-menu__menu ul li a {
    pointer-events: none;
  }
  .title-50 h1 {
    max-width: 100%;
  }

  .title-85 .title-50 h1 {
    max-width: 100%;
  }

  .fs-64 h1 {
    font-size: 32px;
  }
}
.service-calculator {
  position: relative;
}
.service-calculator__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  align-items: start;
}

@media screen and (max-width: 991px) {
  .service-calculator__body {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 575px) {
  .service-calculator__body {
    grid-gap: 20px;
  }
}

.service-calculator__main {
  display: grid;
  grid-gap: 40px;
}

@media screen and (max-width: 575px) {
  .service-calculator__main {
    grid-gap: 20px;
  }
}

.service-calculator__white {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
}

@media screen and (max-width: 575px) {
  .service-calculator__white {
    padding: 20px;
  }
}

.service-calculator__result {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 50px;
}

@media screen and (max-width: 575px) {
  .service-calculator__result {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}

.service-calculator__result-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-calculator__radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

@media screen and (max-width: 575px) {
  .service-calculator__radio-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.service-calculator__chart {
  margin-bottom: 30px;
}

.service-calculator__chart canvas {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

.service-calculator__table-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 65px;
}

@media screen and (max-width: 991px) {
  .service-calculator__table-tabs {
    gap: 20px;
  }
}

.service-calculator__table-tabs .radio {
  margin-bottom: 0;
}

.btn--full-width {
  width: 100%;
}

.form__bottom--one-col {
  grid-template-columns: 1fr;
  margin-top: 40px;
  max-width: unset;
}

.btn[disabled] {
  pointer-events: none;
}

.btn--blue {
  color: #ffffff;
  background: #1d2cbb;
  font-weight: 500;
}

.btn {
  font-weight: 500;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: 100%;
  padding: 24px 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 16px;
  border: unset;
}

@media (any-hover: hover) {
  .btn--blue:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    outline: 1px solid var(--color-dark);
  }
}

.service-calculator {
  max-width: 73%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .service-calculator {
    max-width: 100%;
  }

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

.tabs--grid {
  display: grid;
  grid-template-columns: 39% calc(61% - 50px);
  grid-gap: 50px;
  max-width: 1160px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .tabs--grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .tabs__side {
    /*   display: none;*/
  }

  .tabs__nav--side {
    gap: 20px;
    margin-top: 0;
  }
}

.tabs__nav {
  margin-bottom: 30px;
  padding-top: 0;
}

@media screen and (max-width: 1280px) {
  .tabs__nav.slider-default {
    width: calc(100% + 15px);
  }
}

.tabs__nav--table {
  margin: 40px 15px 0;
}

.tabs__nav--side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .tabs__nav--side {
    margin-bottom: 0;
  }
}

.tabs__nav--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  overflow: auto;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .tabs__nav--row {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .tabs__nav--row {
    gap: 10px;
  }
}

.tabs__nav-item {
  font-size: 13px;
  line-height: 140%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  color: #5e6066;
  grid-column-start: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tabs__nav-item--active {
  color: #1e1e1f;
}

.tabs__nav-item--active:not(.radio) {
  font-size: 15px;
}

.tabs__nav-item--no-wrap {
  white-space: nowrap;
}

.tabs__nav-item-title {
  color: var(--, #5e6066);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tabs__nav-item--active .tabs__nav-item-title {
  color: #161787;
}

.tabs__nav-item-title:not(:last-child) {
  margin-bottom: 10px;
}

.tabs__nav-item-title--big {
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  color: rgba(0,0,0,.4);
  transition: color .3s ease;
}
.tabs__nav-item-title--big:hover {
  color: rgba(0,0,0,.7);
}

@media screen and (max-width: 1199px) {
  .tabs__nav-item-title--big {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .tabs__nav-item-title--big {
    font-size: 20px;
  }
}

.tabs__nav-item--active .tabs__nav-item-title--big {
  color: #1e1e1f;
}

.tabs__content {
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.tabs__content:not(.tabs__content--vis) {
  height: 0;
}

.tabs__content--calculator {
  padding: 0 20px;
  margin: 0 -20px;
}

.tabs__content-text {
  max-width: 850px;
  width: 100%;
}

.tabs__content-text:not(:last-child) {
  margin-bottom: 50px;
}

.tabs__content-whiteblock {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 16px;
}

@media screen and (max-width: 767px) {
  .tabs__content-whiteblock {
    padding: 30px;
    margin-top: 30px;
  }
  .tabs__content-title,
  .tabs__content-title p {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.tabs__content-title,
.tabs__content-title p {
  color: #161787;
  margin-bottom: 30px;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tabs__content ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tabs__content ul li {
  list-style: none;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 21px */
  display: flex;
  gap: 5px;
}

.tabs__content ul li::before {
  content: "—";
  position: relative;
  left: -5px;
}

.container .container__block.color-type__02 {
  background-color: #4d58cd;
}

.container .container__block.color-type__02 h3, .container .container__block.color-type__02 .old_h3 {
  color: var(--color-light);
}
.container .container__block.color-type__02 h3 a, .container .container__block.color-type__02 .old_h3 a {
  color: var(--color-light);
  text-decoration: none;
}

.product {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04),
    0px 4px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-gap: 30px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (max-width: 991px) {
  .tabs__content ul li {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .product {
    padding: 20px;
  }
  .tabs__content ul li {
    font-size: 16px;
  }
}

.product:not(.product--simple) {
  grid-column: 1 / -1;
}

.product--simple {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.product__top {
  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;
  gap: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.product__tag {
  background-color: #f5f5fa;
  border-radius: 20px;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  padding: 6px 16px;
}

.product__middle {
  display: grid;
  grid-template-columns: 1fr 181px;
  grid-gap: 30px;
}

@media screen and (max-width: 575px) {
  .product__middle {
    grid-template-columns: 1fr;
  }
}

.product__info ul,
.product__info ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px 30px;
}

@media screen and (max-width: 767px) {
  .product__info ul,
  .product__info ol {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

.product__info li {
  margin-bottom: 0 !important;
}

.product__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
}

.product__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 30px;
}

.product__price-value {
  font-weight: 400;
  font-size: 32px;
}

.product-grid {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 3fr 2fr;
}

@media screen and (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: #1e1e1f;
}

.product__info ul li {
  color: #1e1e1f;
  line-height: 140%;
  margin-left: 20px;
}

.product__bottom {
  color: #1e1e1f;
}

.product__bottom .btn {
  width: max-content;
  min-width: 220px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 1.2;
}

.modal {
  position: fixed;
  width: 90%;
  height: auto;
  max-width: 746px;
  max-height: 90%;
  z-index: 16;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  display: none;
  border-radius: 24px;
  padding: 50px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04),
    0px 8px 16px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 575px) {
  .modal {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    width: 100%;
    height: 100%;
    max-height: unset;
    border-radius: 0;
    padding: 30px 20px 30px 30px;
  }
}

.modal__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 125%;
  display: flex;
  margin-bottom: 25px;
  color: #161787;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal__title span:nth-child(2) {
  font-size: 20px;
  line-height: 110%;
}

@media screen and (max-width: 767px) {
  .modal__title {
    font-size: 28x;
  }
}

@media screen and (max-width: 575px) {
  .modal__title {
    font-size: 20px;
  }
}

.modal__title-gray {
  color: #5e6066;
}

.modal__caption {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #5e6066;
  display: block;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .modal__caption {
    font-size: 20x;
  }
}

@media screen and (max-width: 575px) {
  .modal__caption {
    font-size: 16px;
  }
}

.modal__content {
  overflow: auto;
  /*max-height: calc(90vh - 100px);*/
  padding-right: 16px;
}

.modal__content::-webkit-scrollbar {
  width: 8px;
  background-color: #cbd0d7;
  left: -100px;
}

.modal__content::-webkit-scrollbar-thumb {
  background-color: #161787;
  border-radius: 8px;
}

@media screen and (max-width: 575px) {
  .modal__content {
    max-height: calc(100vh - 60px);
    padding-right: 10px;
  }
}

.modal__close {
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  position: absolute;
  cursor: pointer;
}

@media screen and (max-width: 575px) {
  .modal__close {
    top: 4px;
    right: 4px;
  }
}

.modal__close:before,
.modal__close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #1e1e1f;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (any-hover: hover) {
  .modal__close:hover:before,
  .modal__close:hover::after {
    background-color: #e41a2b;
  }
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 31, 0.1);
  z-index: 15;
}

.documents {
  display: grid;
  grid-template-columns: 310px 1fr;
  grid-gap: 50px;
}

@media screen and (max-width: 991px) {
  .documents {
    grid-template-columns: 230px 1fr;
    grid-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .documents {
    grid-template-columns: 1fr;
  }
}

.tabs-accordion {
  display: grid;
  grid-template-columns: 310px 1fr;
  grid-gap: 50px;
}

@media screen and (max-width: 991px) {
  .tabs-accordion {
    grid-template-columns: 230px 1fr;
    grid-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .tabs-accordion {
    grid-template-columns: 1fr;
  }
}

.tabs-accordion__image {
  width: calc(100% + 108px);
  margin-left: -92px;
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 134.84%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 1280px) {
  .tabs-accordion__image {
    width: 100%;
    margin-left: 0;
    padding-bottom: 100%;
  }
}

@media screen and (max-width: 767px) {
  .tabs-accordion__image {
    display: none;
  }
}

.doc-list {
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-gap: 50px;
}

@media screen and (max-width: 991px) {
  .doc-list {
    grid-template-columns: 230px 1fr;
    grid-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .doc-list {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}

.doc-list__btn {
  margin-top: 30px;
  display: none;
}

.doc-list__list {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.doc-list__list--height {
  height: 166px;
  overflow: hidden;
}

.accordion {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  min-height: unset;
}

.accordion:not(:last-child) {
  margin-bottom: 16px;
}

.accordion--no-shadow {
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.accordion__caption {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.accordion__caption-text {
  margin-top: 20px;
}

.accordion__toggle {
  position: relative;
  padding-right: 50px;
  cursor: pointer;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 575px) {
  .accordion__toggle {
    padding-right: 30px;
  }
}

.accordion__text {
  margin-bottom: 6px;
}

.accordion__btn {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.accordion__btn:before,
.accordion__btn::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #161787;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  .accordion__toggle:hover .accordion__btn:before,
  .accordion__toggle:hover .accordion__btn::after {
    background-color: #161787;
  }
}

.accordion__btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__btn--active::after {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.accordion__image {
  display: none;
}

@media screen and (max-width: 767px) {
  .accordion__image {
    display: block;
    width: 100%;
    height: 230px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

.documents__title.h3 {
  color: #1e1e1f;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.infoblock-list {
  counter-reset: infoList;
}

@media (any-hover: hover) {
  a.infoblock:hover .infoblock__title span {
    color: #161787;
  }
}

.infoblock {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  font-size: 15px;
  line-height: 140%;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 575px) {
  .infoblock {
    padding: 20px;
  }
}

.infoblock--middle-radius {
  border-radius: 16px;
}

.infoblock--small-radius {
  border-radius: 10px;
}

.infoblock--small-padding {
  padding: 20px;
  text-decoration: none;
}

.infoblock--shadow {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04),
    0px 4px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
}

.infoblock--fit-height {
  min-height: unset;
}

.infoblock--big-height {
  min-height: 360px;
}

@media screen and (max-width: 991px) {
  .infoblock--big-height {
    min-height: unset;
  }
}

.infoblock--product {
  min-height: 300px;
}

@media screen and (max-width: 991px) {
  .infoblock--product {
    min-height: unset;
  }
}

.infoblock--min-height {
  min-height: 140px;
}

.infoblock--list {
  min-height: 408px;
}

@media screen and (max-width: 767px) {
  .infoblock--list {
    min-height: 300px;
  }
}

.infoblock--image {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}

@media screen and (max-width: 991px) {
  .infoblock--image {
    grid-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .infoblock--image {
    grid-template-columns: 1fr;
  }
}

.infoblock__icon {
  width: 40px;
  height: 40px;
  margin: 0 0 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .infoblock__icon {
    margin-bottom: 30px;
  }
}

.infoblock__icon--big-margin {
  margin: 0 0 50px;
}

@media screen and (max-width: 767px) {
  .infoblock__icon--big-margin {
    margin-bottom: 30px;
  }
}

.infoblock__num {
  width: 40px;
  height: 40px;
  margin: 0 0 40px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04),
    0px 8px 16px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  position: relative;
  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;
}

@media screen and (max-width: 575px) {
  .infoblock__num {
    margin-bottom: 20px;
  }
}

.infoblock__num:before {
  content: counters(infoList, "") "";
  counter-increment: infoList;
  top: 0;
  left: 0;
  color: #e41a2b;
}

.infoblock__title {
  margin: 0 0 10px;
  display: block;
  color: #1e1e1f;
  word-break: break-word;
}

.infoblock__title:last-child {
  margin-bottom: 0;
}

.infoblock__title--big-margin {
  margin: 0 0 20px;
}

.infoblock__title--arrow {
  position: relative;
  padding-right: 50px;
  margin-bottom: 6px;
}

@media screen and (max-width: 575px) {
  .infoblock__title--arrow {
    padding-right: 30px;
  }
}

.infoblock__title a {
  color: #1e1e1f;
}

@media (any-hover: hover) {
  .infoblock__title a:hover {
    color: #161787;
  }
}

.infoblock__title-icon {
  width: 20px;
  height: 20px;
  stroke: #161787;
  /* -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);*/
  position: absolute;
  right: 4px;
  top: 5px;
}

.infoblock__list li {
  padding-left: 70px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20px;
}

@media screen and (max-width: 767px) {
  .infoblock__list li {
    padding-left: 40px;
  }
}

.infoblock__list li:not(:last-child) {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f9f9f9;
}

.infoblock__list li:first-child {
  margin-top: 20px;
}

.infoblock__list-caption {
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  color: #5e6066;
  margin: 6px 0 67px;
}

@media screen and (max-width: 991px) {
  .infoblock__list-caption {
    margin-bottom: 0;
  }
}

.infoblock__list-caption > * {
  margin-bottom: 6px;
}

.infoblock__list-caption > *:last-child {
  margin-bottom: 0;
}

.infoblock__image {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 43.01075%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #f5f5fa;
  border-radius: 20px;
}

.infoblock__time {
  display: block;
  position: relative;
  padding-left: 34px;
  color: #5e6066;
  margin-top: 10px;
}

.infoblock__time::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../images/image/clock-icon.svg);
  top: 0;
  left: 0;
}

.accordion__title.h4 {
  color: #1e1e1f;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.accordion__caption-text ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion__caption-text ul li {
  list-style: none;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  gap: 5px;
}

.accordion__caption-text ul li::before {
  content: "—";
  position: relative;
  left: -5px;
}

.feature-link {
  margin: 24px 0;
}

.accordion.infoblock {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide .tabs__nav-item-title {
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
}

.grid-list {
  display: grid;
  grid-gap: 50px;
}

@media screen and (max-width: 991px) {
  .grid-list {
    grid-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .grid-list {
    grid-gap: 20px;
  }
}

.grid-list--small-gap {
  grid-gap: 16px;
}

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

@media screen and (max-width: 991px) {
  .grid-list--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 575px) {
  .grid-list--four {
    grid-template-columns: 1fr;
  }
}

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

@media screen and (max-width: 991px) {
  .grid-list--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 575px) {
  .grid-list--three {
    grid-template-columns: 1fr;
  }
}

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

@media screen and (max-width: 767px) {
  .grid-list--two {
    grid-template-columns: 1fr;
  }
}

.grid-list--auto-row {
  grid-auto-rows: 1fr;
}

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

.grid-list--variable > * {
  grid-column: span 2;
}

@media screen and (min-width: 992px) {
  .grid-list--variable > *:nth-child(5n + 4),
  .grid-list--variable > *:nth-child(5n + 5) {
    grid-column: span 3;
  }
}

.infoblock__title--arrow span {
  font-weight: 500;
  font-size: 20px;
  color: #1e1e1f;
  margin: 0px 0px 6px 0px;
  text-decoration: none;
}

.infoblock__small-caption.small-text.small-text--purple {
  /* font-size: 15px;
  line-height: 1.4em;
  color: #9e9ee8;
  text-decoration: none; */

  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color-blue-light);
  text-decoration: none;
}
/* .infoblock__small-caption.small-text.small-text--purple:hover {
  text-decoration: underline;
} */

.tabs {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .requisites:not(:nth-child(-n + 2)) {
    padding-top: 20px;
    border-top: 1px solid #cbd0d7;
  }
}

@media screen and (max-width: 767px) {
  .requisites:not(:first-child) {
    padding-top: 20px;
    border-top: 1px solid #cbd0d7;
  }
}

.requisites__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #1e1e1f;
}

.requisites__content {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: #1e1e1f;
  margin: 0px 0px 6px 0px;
}

.requisites:nth-child(odd) {
  padding-right: 25px;
}
.requisites-grid {
  grid-gap: 20px 0;
}
@media screen and (max-width: 991px) {
  .requisites__title {
    font-size: 18px;
  }
  .requisites__content {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .requisites-grid {
    grid-gap: 16px 0;
  }
  .requisites__title {
    font-size: 16px;
  }
  .requisites__content {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .requisites:nth-child(odd) {
    padding-right: 0;
  }
}

.requisites:nth-child(even) {
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .requisites:nth-child(even) {
    padding-left: 0;
  }
}

.vacancy {
  color: #1e1e1f;
}

.vacancy__row {
  display: grid;
  grid-template-columns: 290px 1fr;
  grid-gap: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 930px;
}

.vacancy__row:not(:last-child) {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .vacancy__row:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 991px) {
  .vacancy__row {
    grid-template-columns: 210px 1fr;
    grid-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .vacancy__row {
    grid-template-columns: 1fr;
  }
}

.vacancy__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  display: block;
  margin-bottom: 6px;
}

@media screen and (max-width: 991px) {
  .vacancy__title {
    font-size: 16px;
  }
}

.vacancy-item {
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-gap: 30px;
  max-width: 630px;
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

@media screen and (max-width: 767px) {
  .vacancy-item {
    max-width: unset;
  }
}

@media screen and (max-width: 575px) {
  .vacancy-item {
    grid-template-columns: 1fr;
  }
}

.vacancy-item:not(:last-child) {
  margin-bottom: 20px;
}

.vacancy-item__doc {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-gap: 10px;
  /* stroke: #9e9ee8; */
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  /* color: #9e9ee8; */

  font-size: 15px;
  line-height: 1.4em;
  text-decoration: none;
  align-items: center;

  column-gap: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  stroke: var(--color-blue-light);
  color: var(--color-blue-light);
  text-decoration: none;
}

.vacancy-item__doc-icon {
  width: 20px;
  height: 20px;
}

@media (any-hover: hover) {
  .vacancy-item__doc:hover {
    color: #161787;
    stroke: #161787;
  }
  .vacancy-item__doc:hover span {
    text-decoration: underline;
  }
}

.btn--gray {
  color: #1e1e1f;
  background-color: #dce4f0;
  border: 2px solid #dce4f0;
  font-weight: 700;
}

@media (any-hover: hover) {
  .btn--gray:hover {
    color: #161787;
    border-color: #161787;
    background-color: #ffffff;
  }
}
.vacancy__caption {
  color: var(--font-color-secondary);
}
.button-more {
  width: 100%;
  display: inline-block;
  color: #1e1e1f;
  font-size: 15px;
  line-height: 1.4em;
  text-align: center;
  text-decoration: none;
  background-color: #dce4f0;
  border-radius: 16px;
  padding: 14px 0px;
  border: 1px solid #dce4f0;
  transition: all 0.3s ease 0s;
}
.button-more:hover {
  border-color: #161787;
  background: none;
}

.breadcrumbs {
  margin-bottom: 24px;
}
.breadcrumbs__item-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  text-decoration: none;
  color: rgba(159, 159, 174, 1);
}
.breadcrumbs__item a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  text-decoration: none;
  color: rgba(159, 159, 174, 1);
  transition: color 0.3s ease;
}
.breadcrumbs__item a:hover {
  color: rgba(29, 44, 187, 1);
}


.section-title .title-50 h1 {
  max-width: 100% !important;
  font-size: 64px !important;
}
@media screen and (max-width: 991px) {
  .section-title .title-50 h1 {
    font-size: 40px !important;
  }
}
@media screen and (max-width: 576px) {
  .section-title .title-50 h1 {
    font-size: 30px !important;
  }
}


.section-header {
  position: fixed;
 /* position: absolute !important; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
body {
  padding-top: calc(88px + 32px + 50px);
}
.main > .wrapper-full:nth-child(1) > .wrapper-fix > .heading > .container,
.page > .wrapper-full:nth-child(1) > .wrapper-fix > .container-title {
  margin-top: 20px;
}
.info-block-tabs-2 {
  min-height: 430px;
}
@media only screen and (max-width: 722px) {
  .info-block-tabs-2 {
    min-height: 780px;
  }
}
@media only screen and (max-width: 722px) {
  .container-header {
    /* margin: 32px 0px 96px 0px; */
  }
  body {
    padding-top: calc(80px + 32px + 96px);
  }
}
@media only screen and (max-width: 500px) {
  .container-header {
    /* margin: 10px 0px 64px 0px; */
  }
  body {
    padding-top: calc(76px + 10px + 64px);
  }
  .info-block-tabs-2 {
    min-height: auto;
  }
}
.experience-item img {
  max-width: 90%;
  display: block;
}
.slider-default {
  position: relative;
}

.info-block-6__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Две равные колонки */
  gap: 16px; /* Отступы между карточками */
}
.info-block-6__card:nth-child(3) {
  grid-column: span 2; /* Карточка 3 занимает обе колонки */
}
.info-block-6__card {
  padding: 56px 40px 48px 40px;
  min-height: 280px;
  background-color: #fff;
}
.info-block-6__card img {
  margin-bottom: 24px;
  width: 72px;
  height: 72px;
}
.info-block-6__card h3, .info-block-6__card .old_h3 {
  font-size: 28px;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .info-block-6__card h3, .info-block-6__card .old_h3 {
    font-size: 20px;
  }
}
.info-block-6__card p {
  margin-top: 12px;
  max-width: 600px;
}
.donutchart_wrapper {
  position: relative;
  padding: 70px 0 50px 0;
}

@media screen and (max-width: 800px) {
  .info-block-6__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .info-block-6__card:nth-child(3) {
    grid-column: unset;
  }
  .info-block-6__card {
    padding: 40px 24px 32px 24px;
  }
  .info-block-6__card img {
    margin-bottom: 16px;
    width: 60px;
    height: 60px;
  }
}

@media only screen and (max-width: 722px) {
  .mehanika1-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 16px 0 0 0;
  }
  .mehanika1-icon img {
    margin: auto !important;
    max-width: 220px !important;
    max-height: 80px !important;
  }
  .mehanika2-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 8px 0 0 0;
  }
  .mehanika2-icon img {
    margin: auto !important;
    max-width: 220px !important;
    max-height: 80px !important;
  }
  .container-graph .container-graph__graph-blocks {
    flex-direction: column;
  }
}
.container-banners .block-banners div {
  margin: auto;
}
.container-banners .block-banners div img {
  object-fit: contain;
}

/* Закругление углов столбцов */
rect[fill="#161787"] {
  rx: 4; /* Радиус верхних углов */
  ry: 4; /* Радиус нижних углов */
}
