@charset "UTF-8";
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
html.is-hidden {
  overflow: hidden;
}

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

*:focus {
  outline: 4px solid rgba(30, 67, 155, 0.3);
}

body {
  min-width: 320px;
  background-color: #fff;
  color: #1E439B;
  font-family: "Jost", "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  font-style: normal;
  max-width: 100%;
  width: 100%;
}

section {
  scroll-margin-top: 65px;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
}

figure {
  margin-inline: 0;
}

h1:not([class]),
h2:not([class]),
h3:not([class]),
h4:not([class]),
h5:not([class]),
h6:not([class]) {
  line-height: 1;
  font-weight: 500;
}

input,
textarea,
a,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

input,
textarea {
  max-width: 100%;
  width: 100%;
}

a:not([class]) {
  font-family: inherit;
  font-style: inherit;
  color: #fff;
  transition: color 0.3s ease-in-out;
}
a:not([class]):hover {
  color: #ED1C24;
}

address {
  font-style: normal;
  font-family: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: none;
}

svg * {
  transition-property: fill, stroke;
}

b:not([class]) {
  font-weight: 500;
  color: #000;
}

table:not([class]) {
  border-collapse: collapse;
  border-spacing: 0;
  min-width: 100%;
}
table:not([class]) caption {
  caption-side: bottom;
}
table:not([class]) tr:nth-child(even) {
  background-color: rgba(176, 163, 147, 0.2);
}
table:not([class]) {
  /* Эффект при наведении на строку */
}
table:not([class]) tr {
  transition: background-color 0.3s ease;
}
table:not([class]) tr:hover {
  background-color: rgba(176, 163, 147, 0.4);
  cursor: pointer;
}
table:not([class]) {
  /* Для сохранения эффекта при наведении на четные строки */
}
table:not([class]) tr:nth-child(even):hover {
  background-color: rgba(176, 163, 147, 0.5);
}
table:not([class]) th {
  vertical-align: middle;
  text-align: left;
  padding: 1em 2em;
  border: 1px solid rgba(176, 163, 147, 0.2);
  background-color: rgba(176, 163, 147, 0.1);
  font-weight: 600;
}
table:not([class]) td {
  vertical-align: middle;
  padding: 1em 2em;
  border: 1px solid rgba(176, 163, 147, 0.2);
  transition: background-color 0.3s ease;
}

.hidden {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hidden {
    padding-right: 15px;
  }
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost/Jost-Regular.woff");
  src: url("../fonts/Jost/Jost-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost/Jost-Medium.woff");
  src: url("../fonts/Jost/Jost-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost/Jost-SemiBold.woff");
  src: url("../fonts/Jost/Jost-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost/Jost-Bold.woff");
  src: url("../fonts/Jost/Jost-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.woff");
  src: url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Medium.woff");
  src: url("../fonts/Montserrat/Montserrat-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.woff");
  src: url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
.title {
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

.text {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .title {
    font-size: 40px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 28px;
    line-height: 1;
  }
  .text {
    font-size: 14px;
  }
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.picture {
  display: block;
}
.picture__image {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.new-button {
  border: none;
  outline: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 12px 24px;
  background-color: transparent;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 6px;
  transition: 0.3s color ease-out, 0.3s border ease-out, 0.3s background-color ease-out;
  width: 100%;
}
.new-button * {
  pointer-events: none;
}
.new-button__text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
.new-button:disabled,
.new-button .disabled {
  background-color: #BDBDBD;
  color: #fff;
  cursor: not-allowed;
  pointer-events: none;
}

.new-button-theme--white {
  color: #1E439B;
  background-color: #fff;
}
@media (hover: hover) {
  .new-button-theme--white:hover {
    background-color: #1E439B;
    color: #fff;
  }
}

.new-button-theme--white-border {
  color: #1E439B;
  background-color: #fff;
  border: 1px solid #1E439B;
}
@media (hover: hover) {
  .new-button-theme--white-border:hover {
    background-color: #1E439B;
    color: #fff;
  }
}

.new-button-theme--red {
  color: #fff;
  background-color: #ED1C24;
}
@media (hover: hover) {
  .new-button-theme--red:hover {
    background-color: #FF575D;
    color: #fff;
  }
}

.header {
  position: relative;
  z-index: 10;
}
.header__container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding-bottom: 10px;
}
.header__container.is-fixed .header__wrapper {
  background-color: #1E439B;
  border-color: #1E439B;
}
.header__container.is-fixed .header__wrapper::before {
  background-color: #1E439B;
  border-color: #1E439B;
}
.header__wrapper {
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 24px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 0 0 12px 0;
  position: relative;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.header__wrapper::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 100%;
  top: -1px;
  width: 100000000000000px;
  border-bottom: 1px solid #fff;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.header__wrap {
  display: flex;
  align-items: center;
}
.header .new-button {
  margin-left: 24px;
}
.header .new-button img {
  display: none;
}
.header .new-button__text {
  font-size: 14px;
}

.logo {
  width: 268px;
  flex-grow: 0;
  margin-right: 30px;
}
.logo img {
  width: 100%;
  display: block;
  margin: 0;
}

.navigation__list {
  display: flex;
  margin: 0 -14px;
}
.navigation__item {
  padding: 0 14px;
}
.navigation__link {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .navigation__link:hover {
    color: #ED1C24;
  }
}

.tel {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  text-wrap: nowrap;
  text-decoration: none;
  margin-top: 4px;
}

.burger {
  width: 24px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  margin-left: 24px;
  cursor: pointer;
  display: none;
}
.burger__line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .navigation {
    display: none;
  }
  .burger {
    display: flex;
  }
  .tel {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    padding: 12px 17px 12px 0;
  }
  .header .new-button {
    padding: 12px;
    margin-left: 0;
  }
  .header .new-button__text {
    display: none;
  }
  .header .new-button img {
    display: block;
    width: 14px;
  }
  .burger {
    margin-left: 16px;
  }
  .logo {
    max-width: 221px;
    margin-right: 17px;
  }
}
.footer {
  background-color: #1E439B;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 130px;
  padding: 47px 130px 56px 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 0 0 12px 0;
  position: relative;
}
.footer__wrapper::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 100%;
  height: 1px;
  width: 100000000000000px;
  background-color: #fff;
}
.footer__wrap-logo {
  max-width: 268px;
  width: 100%;
  flex-shrink: 0;
  margin-right: 15px;
}
.footer__wrap-logo img {
  width: 100%;
  display: block;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 520px;
}
.footer__item {
  max-width: 243px;
}
.footer__caption {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer__list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 5px;
}
.footer__list:last-child {
  margin-bottom: 0;
}
.footer__list-item {
  padding: 0;
  margin: 0 0 12px;
}
.footer__list-item:last-child {
  margin-bottom: 0;
}
.footer__link {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .footer__link:hover {
    color: #ED1C24;
  }
}
.footer__text {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
}
.footer__row {
  display: flex;
  align-items: center;
}
.footer__link-tel {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .footer__link-tel:hover {
    color: #ED1C24;
  }
}
.footer__down {
  padding: 24px 0 40px;
  display: flex;
  justify-content: space-between;
}
.footer__copyright {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #A1BDFF;
  font-family: "Jost", sans-serif;
}
.footer__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 458px;
}
.footer__down-link {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #A1BDFF;
  margin-right: 15px;
  font-family: "Jost", sans-serif;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}
@media (hover: hover) {
  .footer__down-link:hover {
    color: #ED1C24;
  }
}
.footer__down-link:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .footer__wrapper {
    padding: 34px 56px 43px 0;
  }
  .footer__wrap {
    max-width: 370px;
  }
  .footer__down {
    padding: 42px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    flex-direction: column;
  }
  .footer__wrap-logo {
    margin-bottom: 48px;
  }
  .footer__wrap {
    flex-direction: column;
  }
  .footer__item {
    margin-bottom: 40px;
  }
  .footer__item:last-child {
    margin-bottom: 0;
  }
  .footer__down {
    flex-direction: column;
  }
  .footer__copyright {
    margin-bottom: 12px;
  }
  .footer__flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__down-link {
    margin-bottom: 12px;
  }
  .footer__down-link:last-child {
    margin-bottom: 0;
  }
}
nobr {
  display: inline;
}

.new-modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: none;
  overflow: hidden;
}
.new-modal--open {
  display: block;
}
.new-modal__overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  padding: 0 20px;
}
.new-modal__overlay::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  font-size: 0;
  line-height: 0;
  width: 0;
  margin-left: -5px;
}
.new-modal__block {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  width: 100%;
  max-width: 1130px;
  font-size: 0;
  line-height: 0;
  position: relative;
  white-space: pre-wrap;
}
.new-modal__block .form-sect {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.new-modal__block .form-sect__wrapper {
  border: none;
  overflow: hidden;
  background-color: #fff;
}
.new-modal__block * {
  font-size: initial;
  line-height: normal;
  white-space: normal;
  vertical-align: initial;
}
.new-modal__down {
  display: block;
  vertical-align: inherit;
  border-radius: 16px;
  overflow: hidden;
}
.new-modal__content {
  overflow: auto;
}

.new-modal .close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}
.new-modal .close::before, .new-modal .close::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 1px);
  width: 2px;
  height: 24px;
  background-color: #1E439B;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.new-modal .close::after {
  transform: rotate(45deg);
}
.new-modal .close::before {
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .new-modal .close:hover::before, .new-modal .close:hover::after {
    background-color: #ED1C24;
  }
}

.details-modal {
  max-width: 730px;
}

.first-screen {
  position: relative;
}
.first-screen__bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.first-screen__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.first-screen__content {
  position: relative;
  z-index: 1;
  padding: 132px 0 163px;
  color: #fff;
}
.first-screen__title {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
}
.first-screen__title-text {
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}
.first-screen__text {
  line-height: 1;
  display: block;
}

@media screen and (max-width: 1024px) {
  .first-screen__content {
    padding: 122px 0 107px;
  }
  .first-screen__title {
    font-size: 40px;
  }
  .first-screen__title-text {
    line-height: 1.3;
    display: block;
  }
  .first-screen__text {
    line-height: 1;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .first-screen__content {
    padding: 116px 0 132px;
  }
  .first-screen__title {
    font-size: 28px;
  }
}
.category {
  padding: 44px 0 54px;
  background-color: #F2F0F0;
}
.category__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row dense;
  gap: 24px;
}
.category__item {
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 36px;
  min-height: 80px;
  text-decoration: none;
  color: #1E439B;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.category__item--lg {
  flex-direction: column;
  padding: 27px 23px 20px 29px;
  align-items: flex-start;
  grid-column-start: 1;
  grid-column-end: span 1;
  grid-row: span 2;
}
.category__item--lg .category__wrap-icon {
  margin-left: auto;
}
.category__item--lg .category__text {
  margin-bottom: 18px;
}
@media (hover: hover) {
  .category__item:hover {
    color: #fff;
    background-color: #1E439B;
  }
}
.category__text {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  display: block;
}
.category__wrap-icon {
  margin-left: auto;
  flex-shrink: 0;
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 15px;
  background-color: #fff;
  border-radius: 12px;
}

@media screen and (max-width: 1024px) {
  .category {
    padding: 36px 0 63px;
  }
  .category__item {
    padding: 15px 24px 15px 36px;
  }
  .category__item--lg {
    padding: 27px 21px 28px 29px;
  }
  .category__text {
    font-size: 20px;
    line-height: 1.2;
  }
  .category__wrap-icon {
    width: auto;
    height: auto;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .category {
    padding: 20px 0 60px;
  }
  .category__grid {
    display: block;
  }
  .category__item {
    margin-bottom: 20px;
    padding: 14px 18px 15px 24px;
  }
  .category__item:last-child {
    margin-bottom: 0;
  }
  .category__item--lg {
    padding: 22px 16px 30px 24px;
  }
  .category__item--lg .category__text {
    margin-bottom: 30px;
  }
  .category__wrap-icon {
    width: 60px;
  }
}
.info-sect {
  padding: 54px 0 48px;
}
.info-sect__grid {
  display: grid;
  grid-template-columns: 1fr 1.27fr;
  gap: 100px;
}
.info-sect__title {
  margin-bottom: 22px;
}
.info-sect__right {
  margin-top: 7px;
  overflow: hidden;
  border-radius: 20px;
}
.info-sect .text {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .info-sect {
    padding: 37px 0 48px;
  }
  .info-sect__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .info-sect {
    padding: 40px 0 44px;
  }
  .info-sect__grid {
    gap: 24px;
  }
  .info-sect__right {
    margin-top: 0;
  }
  .info-sect__title {
    margin: 0 0 20px;
  }
}
.form-sect {
  padding-bottom: 78px;
}
.form-sect__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.57fr;
  gap: 40px;
  padding: 37px 72px 49px;
  border-radius: 20px;
  border: 1px solid #1E439B;
}
.form-sect__left {
  padding-top: 10px;
}
.form-sect__title {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 24px;
}

@media screen and (max-width: 1024px) {
  .form-sect__wrapper {
    padding: 20px 23px;
    grid-template-columns: 1fr 2.17fr;
    gap: 18px;
  }
  .form-sect__left {
    padding-top: 0;
  }
  .form-sect__title {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .form-sect {
    padding-bottom: 60px;
  }
  .form-sect__wrapper {
    display: block;
  }
  .form-sect__title {
    font-size: 24px;
  }
}
.form-block__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 8px;
}
.form-block__item {
  display: block;
  margin: 0;
}
.form-block__item--lg {
  grid-row: span 2;
}
.form-block__description {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 4px;
  display: block;
}
.form-block__field {
  width: 100%;
  border-radius: 8px;
  background-color: #F2F0F0;
  border: none;
  box-shadow: none;
  min-height: 48px;
  display: block;
  padding: 13px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #1E439B;
}
.form-block__textarea {
  width: 100%;
  border-radius: 8px;
  background-color: #F2F0F0;
  border: none;
  box-shadow: none;
  min-height: 130px;
  display: block;
  padding: 13px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #1E439B;
}
.form-block__row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.3fr 1fr;
  padding-top: 16px;
}
.form-block__info-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
  color: #1E439B;
}

@media screen and (max-width: 1024px) {
  .form-block__grid {
    grid-template-columns: 1fr 0.9fr;
  }
  .form-block__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-block .new-button {
    max-width: 154px;
    padding: 22px 24px;
  }
}
@media screen and (max-width: 767px) {
  .form-block__grid {
    grid-template-columns: 1fr;
  }
  .form-block__row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
  }
  .form-block .new-button {
    max-width: inherit;
  }
}
.category-sect {
  padding: 54px 0 80px;
}
.category-sect--change-offset-bottom {
  margin-bottom: 16px;
}
.category-sect--gray-bg {
  background-color: #F2F0F0;
}

@media screen and (max-width: 1024px) {
  .category-sect {
    padding: 43px 0 80px;
  }
  .category-sect--change-offset-bottom {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .category-sect {
    padding: 40px 0 60px;
  }
}
.category-block {
  padding-bottom: 66px;
  margin-bottom: 60px;
  border-bottom: 1px solid #1E439B;
}
.category-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.category-block__grid {
  display: grid;
  grid-template-columns: 1.585fr 1fr minmax(1px, 1.16fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  grid-template-areas: "title title title" "text table slider" "btn table slider" ". table slider";
  align-items: flex-start;
}
.category-block__row-title {
  grid-area: title;
  margin-bottom: 32px;
}
.category-block__tag {
  display: inline-block;
  border-radius: 900px;
  background-color: #1E439B;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  padding: 7.5px 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.category-block__text {
  grid-area: text;
  margin: 0;
}
.category-block__table {
  grid-area: table;
  margin-top: 4px;
}
.category-block__slider {
  grid-area: slider;
  margin-left: 15px;
}
.category-block__btn {
  grid-area: btn;
  margin-top: 34px;
  max-width: 300px;
  padding: 22px 20px;
}

.category-block-table {
  border: 1px solid #1E439B;
  border-left: none;
  border-radius: 0 0 20px 0;
  overflow: hidden;
}
.category-block-table__item {
  border: 1px solid #1E439B;
  border-left: none;
  border-top: none;
  margin-right: -1px;
  border-radius: 0 0 20px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 17px;
  padding: 10px 12px 10px 0;
  min-height: 38px;
}
.category-block-table__item:first-child {
  min-height: 43px;
}
.category-block-table__item:last-child {
  border: none;
}
.category-block-table__name {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
.category-block-table__value {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.category-block-slider {
  position: relative;
}
.category-block-slider__slide img {
  max-width: 345px;
  max-height: 225px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.category-block-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-block-slider__navigation {
  display: flex;
  align-items: center;
  margin: 0 -16px;
  position: absolute;
  bottom: 12px;
  right: 0;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.category-block-slider__arrow {
  width: 29px;
  height: 18px;
  color: #1E439B;
  cursor: pointer;
  margin: 0 16px;
  flex-shrink: 0;
}
.category-block-slider__arrow:focus {
  outline: none;
}
.category-block-slider__arrow svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .category-block-slider__arrow:hover {
    color: #ED1C24;
  }
}
.category-block-slider__pagination {
  font-size: 12px;
  line-height: 1;
  color: #1E439B;
  flex-shrink: 0;
  font-weight: 700;
  width: auto;
  display: flex;
  align-items: center;
}
.category-block-slider__pagination span {
  font-size: 14px;
  margin: 0 1px;
}
.category-block-slider__pagination span:first-child {
  color: #ED1C24;
}

@media screen and (max-width: 1024px) {
  .category-block {
    padding-bottom: 66px;
    margin-bottom: 50px;
  }
  .category-block__grid {
    grid-template-columns: 1fr minmax(1px, 1.16fr);
    -moz-column-gap: 50px;
         column-gap: 50px;
    grid-template-areas: "title title" "text text" "table slider" "btn slider";
  }
  .category-block__row-title {
    grid-area: title;
    margin-bottom: 28px;
  }
  .category-block__text {
    margin-bottom: 15px;
  }
  .category-block__table {
    margin-top: 15px;
    max-width: 300px;
  }
  .category-block__slider {
    margin-left: 0;
  }
  .category-block__btn {
    margin-top: 32px;
    max-width: 300px;
    padding: 22px 20px;
  }
  .category-block-slider {
    height: 100%;
  }
  .category-block-slider__slide img {
    max-width: 332px;
    max-height: 235px;
  }
  .category-block-slider__navigation {
    bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .category-block {
    padding-bottom: 58px;
    margin-bottom: 40px;
  }
  .category-block__grid {
    grid-template-columns: minmax(1px, 1fr);
    -moz-column-gap: 50px;
         column-gap: 50px;
    grid-template-areas: "title" "text" "slider" "table" "btn";
  }
  .category-block__row-title {
    margin-bottom: 20px;
  }
  .category-block__tag {
    margin-bottom: 12px;
  }
  .category-block__text {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .category-block__table {
    margin-top: 20px;
    max-width: inherit;
  }
  .category-block__btn {
    margin-top: 32px;
    max-width: 89%;
    padding: 22px 20px;
  }
  .category-block-slider__navigation {
    right: inherit;
    left: 0;
  }
}
.partners {
  padding: 56px 0 80px;
  background-color: #F2F0F0;
}
.partners__row-title {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partners-slider-arrows {
  display: flex;
}

.partners-slider-arrow {
  width: 64px;
  height: 64px;
  color: #1E439B;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid #1E439B;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.partners-slider-arrow--next {
  margin-left: 20px;
}
.partners-slider-arrow:focus {
  outline: none;
}
.partners-slider-arrow svg {
  width: 29px;
  height: 18px;
  pointer-events: none;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .partners-slider-arrow:hover {
    color: #fff;
    background-color: #1E439B;
  }
}

.partners-slider__block {
  background-color: #fff;
  border-radius: 12px;
  padding: 36px 28px 50px;
}
.partners-slider__wrap-img {
  margin-bottom: 35px;
}
.partners-slider__logo {
  width: 100%;
  display: block;
  max-width: 188px;
}
.partners-slider__text {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: #1E439B;
}

@media screen and (max-width: 1024px) {
  .partners {
    position: relative;
    padding: 71px 0 175px;
  }
  .partners__row-title {
    margin-bottom: 24px;
  }
  .partners-slider__block {
    padding: 36px 28px 52px;
  }
  .partners-slider-arrows {
    position: absolute;
    bottom: 80px;
    left: 20px;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .partners {
    padding: 32px 0 156px;
  }
  .partners__row-title {
    margin-bottom: 20px;
  }
  .partners-slider__block {
    padding: 36px 28px 30px;
  }
  .partners-slider__wrap-img {
    margin-bottom: 32px;
  }
  .partners-slider__text {
    font-size: 14px;
  }
  .partners-slider-arrows {
    bottom: 60px;
  }
}
.about {
  padding-top: 52px;
  margin-bottom: 100px;
}
.about__title {
  margin-bottom: 32px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}
.about__wrap-img {
  background-color: #BDBDBD;
  overflow: hidden;
  border-radius: 20px;
  height: 288px;
}
.about__img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about__wrap-text {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  padding-top: 5px;
}
.about__wrap-text p {
  margin: 0 0 24px;
}
.about__wrap-text p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .about {
    margin-bottom: 80px;
  }
  .about__title {
    margin-bottom: 24px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about__wrap-text {
    grid-row-start: 1;
    padding-top: 0;
  }
  .about__wrap-img {
    height: 447px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 40px;
  }
  .about__title {
    margin-bottom: 20px;
  }
  .about__wrap-text {
    font-size: 14px;
  }
  .about__wrap-text p {
    margin-bottom: 20px;
  }
  .about__wrap-text p:last-child {
    margin-bottom: 0;
  }
  .about__wrap-img {
    height: 200px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  transform: translateX(-200px);
  z-index: 100;
  background-color: #fff;
  color: #1E439B;
}
.mobile-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}
.mobile-menu__up {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 0 0 12px 0;
  position: relative;
  background-color: #1E439B;
  border-radius: 0 0 12px 0;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}
.mobile-menu__caption {
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  display: block;
}
.mobile-menu__close {
  cursor: pointer;
}
.mobile-menu__item {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #1E439B;
  display: block;
  text-decoration: none;
  padding: 18px 20px 18px;
  font-size: 14px;
  line-height: 1;
  border-bottom: 1px solid #1E439B;
}
.mobile-menu__down {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 20px;
}
.mobile-menu__down .new-button {
  max-width: 218px;
  padding: 12px 20px;
  margin-top: 12px;
}
.mobile-menu__down .new-button__text {
  font-size: 14px;
}
.mobile-menu__tel {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #1E439B;
  text-decoration: none;
}

.field-download {
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 8px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field-download input[type=file] {
  display: none;
}

.upload-content {
  display: flex;
}

.icon-field {
  color: #1E439B;
  width: 17px;
  height: 17px;
  margin-right: 12px;
  flex-shrink: 0;
}
.icon-field svg {
  width: 100%;
  height: 100%;
}

.file-name {
  font-size: 14px;
}

.remove-file {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #ED1C24;
}
.remove-file * {
  pointer-events: none;
}

.remove-file.show {
  display: flex;
}