@font-face {
  font-family: "Neo Sans Pro";
  src: local("Neo Sans Pro Regular"), url("../fonts/NeoSansPro-Regular.woff") format("woff"), url("../fonts/NeoSansPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neo Sans Pro";
  src: local("Neo Sans Pro Medium"), url("../fonts/NeoSansPro-Medium.woff") format("woff"), url("../fonts/NeoSansPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: "Neo Sans Pro", sans-serif;
  background-color: #f4f8f9;
  color: #000;
  font-size: 13px;
  line-height: 1.16;
}
body.hidden {
  overflow: hidden;
}
label.col-form-label.dropdown {
    top: -13px !important;
}
@media screen and (min-width: 992px) {
  body {
    font-size: 15px;
    line-height: 22px;
  }
}

.wrapper {
  position: relative;
  flex: 1 0 auto;
  overflow: hidden;
}

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

.article__title,
.section__title {
  position: relative;
  max-width: 600px;
  font-weight: normal;
  font-size: 24px;
  line-height: 1.17;
  margin-bottom: 15px;
}
label.col-form-label.dropdown {
    top: -13px;
}
@media screen and (min-width: 992px) {
  .article__title,
.section__title {
    font-size: 34px;
  }
}

.section__title--line-red-top::before, .section__title--line-white-top::before, .section__title--line-white-bottom::before, .section__title--line-blue-top::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  max-width: 331px;
  height: 1px;
}
.section__title--line-red-top, .section__title--line-white-top, .section__title--line-blue-top {
  padding-top: 15px;
}
.section__title--line-red-top::before, .section__title--line-white-top::before, .section__title--line-blue-top::before {
  top: 0;
}
.section__title--line-red-top::before {
  background: url("../img/line-red.svg") left top/auto no-repeat;
}
.section__title--line-white-top::before {
  background: url("../img/line-white.svg") left top/auto no-repeat;
}
.section__title--line-blue-top::before {
  background: url("../img/line-blue.svg") left top/auto no-repeat;
}
.section__title--line-white-bottom {
  padding-bottom: 15px;
}
.section__title--line-white-bottom::before {
  bottom: 0;
  background: url("../img/line-white.svg") left top/auto no-repeat;
}
.section__description {
  font-size: 15px;
  max-width: 685px;
  margin-bottom: 25px;
  line-height: 1.3;
}
@media screen and (min-width: 992px) {
  .section__description {
    font-size: 20px;
  }
}
.section__description--line-blue-bottom {
  position: relative;
  padding-bottom: 25px;
}
.section__description--line-blue-bottom::after {
  position: absolute;
  content: url("../img/line-blue.svg");
  bottom: 0;
  left: 0;
}

a {
  color: inherit;
  transition: 0.3s linear;
}

.header {
  width: 100%;
  top: 0;
  font-size: 12px;
  line-height: 1.16;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  transition: 0.3s linear;
}
.header.fix .header-bottom {
  border-color: transparent;
}
.header-top, .header-bottom {
  border-bottom: 1px solid transparent;
}
.header-top {
  display: none;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .header-top {
    display: flex;
  }
}
.header-top .header__list {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.header-top .header__list li:not(:last-of-type) {
  margin-right: 62px;
}
.header-top .header__link {
  padding-top: 17px;
  padding-bottom: 17px;
}
@media screen and (max-width: 991.98px) {
  .header-bottom {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .header-bottom {
    margin-bottom: -1px;
  }
  .header-bottom .header__link {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.header__contact {
  text-transform: none;
}
.header__contact:not(:last-of-type) {
  margin-right: 36px;
}
.header__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.header__link {
  display: flex;
  color: inherit;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: 0.3s border-color linear;
  cursor: pointer;
}
.header__link--sublist {
  display: flex;
}
.header__link--sublist::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  transform: rotate(45deg);
  transition: 0.3s linear;
}
@media screen and (max-width: 991.98px) {
  .header__link--sublist::after {
    margin-top: 2px;
  }
}
@media screen and (min-width: 992px) {
  .header__link--sublist::after {
    width: 6px;
    height: 6px;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
  }
}
.header__link--sublist.active::after {
  transform: rotate(-135deg);
  border-color: #F0B323;
}

.burger-menu {
  border: none;
  background-color: transparent;
  min-height: 15px;
}
@media screen and (min-width: 992px) {
  .burger-menu {
    display: none;
  }
}
.burger-menu span {
  position: relative;
  display: block;
  width: 28px;
  height: 1px;
}
.burger-menu span::before, .burger-menu span::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
}
.burger-menu span::before {
  top: -6px;
}
.burger-menu span::after {
  bottom: -6px;
}

.navigation__list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  text-transform: uppercase;
}
.navigation__list > li {
  position: relative;
}
@media screen and (min-width: 992px) {
  .navigation__list > li:not(:last-of-type) {
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .navigation__list > li:not(:last-of-type) {
    margin-right: 30px;
  }
}
@media screen and (min-width: 992px) {
  .navigation__list > li:hover > .navigation__sublist, .navigation__list > li:hover > div > .navigation__sublist {
    opacity: 1;
    transform: scaleY(1);
  }
}
.navigation__sublist {
  list-style: none;
  padding-left: 15px;
  text-transform: none;
}
@media screen and (max-width: 991.98px) {
  .navigation__sublist li {
    margin-top: 10px;
  }
  .navigation__sublist li a {
    color: inherit;
    opacity: 0.5;
    transition: 0.3s linear;
  }
  .navigation__sublist li a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 992px) {
  .navigation__sublist {
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 0;
    background-color: #fff;
    min-width: 200px;
    opacity: 0;
    transition: 0.3s linear;
    transform: scaleY(0);
    transform-origin: 0 0;
    color: #000;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .navigation__sublist li {
    margin-right: 0;
  }
  .navigation__sublist li:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .navigation__sublist li a {
    display: flex;
    padding: 16px;
    color: #000;
  }
  .navigation__sublist li a:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.1);
  }
}

.logo {
  display: flex;
  align-items: center;
  color: inherit;
}
.logo:hover {
  color: inherit;
  text-decoration: none;
}
.logo__icon {
  fill: inherit;
}
.logo__icon--iqb {
  width: 98px;
  height: 35px;
}
.logo__text {
  display: none;
  max-width: 90px;
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.12;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .logo__text {
    display: flex;
  }
}
.logo__text::before {
  content: "";
  display: block;
  padding-right: 1px;
  height: 33px;
  margin-right: 8px;
  margin-left: 8px;
}

.mobile-menu {
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    flex-direction: column;
    z-index: 1;
    transition: 0.3s linear;
  }
  .mobile-menu.active {
    left: 0;
    overflow-y: auto;
  }
  .mobile-menu__body {
    flex-grow: 1;
    padding: 30px;
    font-size: 15px;
  }
  .mobile-menu__body > li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .mobile-menu__body button {
    color: inherit;
    min-width: 250px;
  }
  .mobile-menu__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    z-index: -5;
    transition: 0.3s linear;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .mobile-menu__backdrop.active {
    opacity: 1;
    visibility: visible;
    z-index: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .mobile-menu {
    width: 75%;
  }
}
@media screen and (max-width: 575.98px) {
  .mobile-menu {
    width: 100%;
  }
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 992px) {
  .mobile-menu__header {
    display: none;
  }
}
.mobile-menu__footer {
  padding: 10px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 992px) {
  .mobile-menu__footer {
    display: none;
  }
}

.close {
  position: relative;
  width: 28px;
  height: 28px;
  opacity: 1;
}
.close::before, .close::after {
  position: absolute;
  top: 0;
  left: 14px;
  content: "";
  height: 28px;
  width: 1px;
}
.close::before {
  transform: rotate(45deg);
}
.close::after {
  transform: rotate(-45deg);
}

.footer {
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.16;
}
.footer-wrap {
  color: #fff;
  fill: #fff;
}
.footer-wrap--main-page {
  background: linear-gradient(144.61deg, #003452 23.37%, #065B8C 85.11%);
}
@media screen and (min-width: 992px) {
  .footer-wrap--main-page {
    padding-top: 25px;
  }
}
.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 30px;
}
@media screen and (min-width: 576px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (min-width: 992px) {
  .footer-top {
    padding-top: 30px;
  }
}
.footer-top__contact {
  font-size: 17px;
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  .footer-top__contact:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .footer-top__contact:not(:last-of-type) {
    margin-right: 37px;
  }
}
.footer-middle {
  padding-top: 35px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-middle__solutions {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.5);
  text-transform: none;
}
.footer-middle__solutions li:not(:first-of-type) {
  margin-top: 8px;
}
.footer-middle__solutions a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  font-size: 13px;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  transition: 0.3s linear;
}
@media screen and (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .footer-bottom__privacy-policy {
    margin-left: 50px;
  }
}
.footer__link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer .button {
  max-width: 195px;
  padding-left: 20px;
  padding-right: 20px;
  border-color: #fff;
  color: #fff;
}
.footer .button:hover {
  border-color: #E62533;
  color: #fff;
  border-color: #E62533;
}
.footer .social-block {
  margin-bottom: 0;
}
.footer .navigation__list {
  padding: 0;
}
.footer .logo:not(:last-of-type) {
  margin-right: 90px;
}

@media screen and (min-width: 992px) {
  .modal-dialog--system-requirements {
    max-width: 830px;
  }
}
.modal-dialog--system-requirements .modal-content {
  background-color: #F4F8F9;
}
@media screen and (min-width: 992px) {
  .modal-dialog--system-requirements .modal-content {
    padding: 44px;
  }
}
.modal-dialog--system-requirements .modal__table {
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .modal-dialog--system-requirements .modal__table {
    font-size: 15px;
  }
}
.modal-dialog--system-requirements .modal__table tr {
  vertical-align: top;
  border-bottom: 1px solid rgba(108, 114, 148, 0.21);
}
.modal-dialog--system-requirements .modal__table-data, .modal-dialog--system-requirements .modal__table-value {
  font-weight: 400;
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.modal-dialog--system-requirements .modal__table-data {
  padding-right: 10px;
  color: rgba(10, 20, 36, 0.5);
}
.modal-dialog--system-requirements .modal__table-value p {
  margin-bottom: 8px;
}
.modal-dialog--system-requirements .modal__table-value b {
  font-weight: 500;
}
.modal-header {
  background-color: #F4F8F9;
  border-bottom: 1px solid rgba(108, 114, 148, 0.21);
}
@media screen and (min-width: 576px) {
  .modal-header {
    padding: 24px 45px 24px 24px;
  }
}
@media screen and (min-width: 576px) {
  .modal-body {
    padding: 24px 24px 16px;
  }
}
.modal-body .img-fluid {
  width: 100%;
}
.modal .close {
  position: absolute;
  top: 25px;
  right: 25px;
}
.modal .close::before, .modal .close::after {
  background-color: #003B7C;
  border: 1px solid #003B7C;
}
.modal .section__title {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .modal .section__title {
    font-size: 30px;
  }
}
.modal-footer p {
  font-size: 11px;
  line-height: 1.45;
  color: #000;
  margin: 0;
}
.modal-footer p sup, .modal-footer p a {
  color: #E62533;
}
.modal-footer p a {
  text-decoration: underline;
}
.modal-footer p a:hover {
  text-decoration: none;
}
.modal .button {
  margin-bottom: 16px;
}
.modal .form-group {
  position: relative;
}
.modal .form-group label, .modal .form-group span.is-invalid {
  font-size: 11px;
  line-height: 1.17;
}
.modal .form-group label {
  position: absolute;
  top: -5px;
  left: 10px;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #fff;
  color: rgba(10, 20, 36, 0.5);
}
.modal .form-group label sup {
  color: #F0B323;
}
.modal .form-group span.is-invalid {
  margin-right: 7px;
  color: #dc3545;
}
.modal .form-control {
  width: 100%;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(108, 114, 148, 0.21);
  resize: none;
}
.modal .form-control.is-invalid {
  border-color: #dc3545;
}
.modal .form-control.is-valid {
  border-color: #28a745;
}
.modal .form-text {
  font-size: 11px;
  color: rgba(10, 20, 36, 0.5);
}
.modal-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.modal-iframe__wrap {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.modal-iframe__wrap + .close {
  top: -30px;
  right: 0;
}
@media screen and (min-width: 576px) {
  .modal-iframe__wrap + .close {
    right: -30px;
  }
}
.modal.fade.show {
  padding-right: 0 !important;
}/*# sourceMappingURL=template_styles.css.map */