@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");
:root {
  --box-shadow: 1px 1px 3px 0 rgba(0,0,0, 0.15);
  --box-shadow-small: 0 1px 2px 0 rgba(0,0,0, 0.15);
  --color-primary: #103E93;
  --color-primary-rgb: 16, 62, 147;
  --color-text: #000;
  --color-primary-light: #E3EEFFFF;
  --color-primary-light-rgb: 227, 238, 255;
  --column-gap: 25px;
  --row-gap: 25px;
  --border-radius: 10px;
  --border-radius-small: 5px;
  --font-family: "Inter", sans-serif;
  --border-color: #bdbdbd;
  --container-width: calc(100% - 60px);
}
@media (max-width: 1680px) {
  :root {
    --container-width: calc(100% - 60px);
  }
}
@media (max-width: 1440px) {
  :root {
    --container-width: calc(100% - 60px);
  }
}
@media (max-width: 1280px) {
  :root {
    --container-width: calc(100% - 60px);
  }
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font: 15px/1.5 var(--font-family);
  color: #1e2326;
  background-color: #eee;
  background-image: url(../img/teasers-background.png);
  background-size: cover;
}

h1:empty {
  display: none;
}

a,
button,
.btn {
  outline: none !important;
}

button,
.btn {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05px;
  border-radius: 0;
  border: none;
  padding: 8px 14px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn-default {
  color: #fff !important;
  border: 1px solid #fff !important;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
ul,
ol,
dd,
p,
figure,
pre,
table,
fieldset,
hr {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

h1 {
  font: 1.933em var(--font-family);
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font: 1.5em var(--font-family);
  font-weight: 500;
  text-transform: none;
  line-height: 1.2;
}

h3 {
  font: 1.33em var(--font-family);
  font-weight: 500;
  line-height: 1.25;
}

h4 {
  font: 1.1em var(--font-family);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

hr {
  border-color: #d6e4e5;
}

a {
  color: #1e2326;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-primary);
}

.float-right {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.float-left {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

img.float-right {
  max-width: 440px;
}

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

.left-aligned {
  padding-left: 0;
}

.blue {
  color: #28689c;
}

.ex {
  display: inline-block;
  width: 28px;
  height: 25px;
  background: url("../img/EX-logo.svg") no-repeat 100% 100% transparent;
  background-size: 100%;
}

.form-control {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: #fff;
  border-color: #aab2b2;
  border-radius: var(--border-radius-small);
  height: 31px;
  padding: 5px 10px;
  color: #1e2326;
  font-size: 0.933em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-control:focus {
  border-color: var(--color-primary);
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

textarea {
  resize: vertical;
  min-height: 45px;
}

.container {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  transition: all 0.3s ease;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.header {
  background: #fff;
  padding: 1.5rem 0;
  margin-bottom: 3rem;
  border-bottom: 0px solid #28689c;
  position: relative;
  z-index: 1;
  height: 95px;
  box-shadow: var(--box-shadow);
}
.home .header {
  margin-bottom: 0;
}

.logo {
  display: block;
  width: 203px;
  height: 65px;
  float: left;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 5px;
  top: 14px;
  padding: 0;
  border-radius: 0;
  width: 32px;
  height: 32px;
  background: url("../img/nav-toggle.png") no-repeat center;
}

.nav {
  position: absolute;
  bottom: -15px;
  right: 0;
}

.nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav > ul > li {
  display: inline-block;
  margin-left: 3rem;
  padding-bottom: 12px;
}

.nav > ul > li > a {
  display: block;
  position: relative;
  background: transparent !important;
  color: #1e2326;
  text-decoration: none !important;
  z-index: 0;
}

.nav > ul > li > a:after {
  display: block;
  content: "";
  background: var(--color-primary);
  position: absolute;
  z-index: -1;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav > ul > li > a:hover:after {
  height: 3px;
}

.caret {
  margin-left: 4px;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.has-dropdown {
  position: relative;
}

.has-dropdown:after {
  display: block;
  content: "";
  background: rgba(var(--color-primary-light-rgb), 1);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -10px;
  right: -10px;
  height: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
}
@media (max-width: 1020px) {
  .has-dropdown:after {
    display: none;
  }
}

.has-dropdown > a:after {
  display: none !important;
}

.has-dropdown:hover:after {
  height: 55px;
}

.has-dropdown:hover .dropdown-menu {
  visibility: visible;
}

.menu > li > a {
  font-size: 20px;
}

.dropdown-menu {
  min-width: 200px;
  background: rgba(var(--color-primary-light-rgb), 0.95);
  border: none;
  margin: 0;
  padding: 0;
  font-size: 1em;
  left: -10px;
  top: 42px;
  visibility: hidden;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: block;
  box-shadow: var(--box-shadow);
  border-radius: 0;
}
@media (min-width: 1021px) {
  .dropdown-menu {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
}
.dropdown-menu > li {
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.2);
}
.dropdown-menu > li:last-child > a {
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.dropdown-menu > li > a {
  font-weight: 500;
  display: block;
  padding: 15px 20px;
  position: relative;
  transition: none;
}
@media (min-width: 1021px) {
  .dropdown-menu > li > a:hover {
    background-color: var(--color-primary);
    color: #fff;
  }
}

.search-page {
  width: 250px;
}
.search-page__form {
  display: flex;
  align-items: center;
}

.search-page__input {
  font-size: 12px;
  width: 220px !important;
  border-color: #bdbdbd;
  z-index: 100;
  border-radius: 8px !important;
  height: 25px;
}
@media (min-width: 1021px) {
  .search-page__input {
    width: 160px !important;
  }
}

.search-page__input:focus {
  border-color: var(--color-primary);
}

input:required:invalid {
  outline: none;
}

.search-page__btn {
  background: transparent;
  margin-left: 0 !important;
  font-size: 15px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #333;
}
.search-page__btn:active, .search-page__btn:hover, .search-page__btn:focus {
  color: var(--color-primary);
}
@media (max-width: 1020px) {
  .search-page__btn {
    text-indent: -9999px;
  }
  .search-page__btn, .search-page__btn:hover, .search-page__btn:active, .search-page__btn:focus {
    color: #fff;
  }
}

.left-col {
  width: 285px;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  float: left;
}

.left-col section {
  width: 100%;
  background: #fff;
  margin-bottom: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
}

.recent-news__item {
  margin-bottom: 1rem;
}

.recent-news__item:last-child {
  margin-bottom: 0;
}

.recent-news__item a {
  display: block;
  color: #1e2326;
}

.recent-news__item a:hover,
.recent-news__item a:focus {
  color: var(--color-primary);
}

.recent-news__item h5 {
  margin-bottom: 0.3rem;
}

.recent-news__item p {
  font-size: 13px;
  margin-bottom: 0;
}

.time {
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #aab2b2;
  margin-bottom: 0.3rem;
}

.feedback-block p {
  font-size: 13px;
}

.feedback-form__btn,
.feedback-block__btn {
  width: 100%;
  font-size: 1em;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid #bdbdbd;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  transition: all 0.5s ease;
}
.feedback-form__btn:hover, .feedback-form__btn:focus,
.feedback-block__btn:hover,
.feedback-block__btn:focus {
  color: #fff;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
}

.category-list h5 {
  position: relative;
  margin-bottom: 0.75rem;
}
.category-list ul {
  list-style: none;
  padding-left: 0;
}
.category-list ul:last-child {
  margin-bottom: 0;
}
.category-list ul li {
  margin-bottom: 0.95rem;
  padding-left: 27px;
}
.category-list ul li:last-child {
  margin-bottom: 0;
}
.category-list ul li a {
  font-size: 13px;
  font-weight: 400;
  display: block;
  position: relative;
  line-height: 1.3;
  color: #1e2326;
  text-decoration: none;
  z-index: 0;
}
.category-list ul li a:hover, .category-list ul li a:focus, .category-list ul li a.active {
  color: var(--color-primary);
}
.category-list ul li a.active {
  font-weight: bold;
}
.category-list ul li a.active .pointer {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='3' fill='%232452A5'/%3E%3Crect x='2' y='12' width='2' height='2' fill='white'/%3E%3Crect x='7' y='12' width='2' height='2' fill='white'/%3E%3Crect x='12' y='12' width='2' height='2' fill='white'/%3E%3C/svg%3E");
}
.category-list ul li .pointer {
  display: block;
  position: absolute;
  left: -27px;
  top: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='3' fill='%23D9D9D9'/%3E%3Crect x='2' y='12' width='2' height='2' fill='white'/%3E%3Crect x='7' y='12' width='2' height='2' fill='white'/%3E%3Crect x='12' y='12' width='2' height='2' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.pointer- {
  display: inline-block;
  position: absolute;
  left: -12px;
  top: 4px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid;
}

.main-content {
  float: left;
  background: #fff;
  width: calc(100% - 285px - 1.5rem);
  min-height: calc(100vh - 215px - 15rem);
  padding: 3rem 4rem;
  margin-bottom: 3rem;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
}
.main-content--front {
  width: 100%;
  padding: 0;
  margin: 0;
  box-shadow: none;
  background: transparent;
}
.main-content--front article {
  margin-bottom: 0 !important;
}
.main-content ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px;
}
.main-content ul:last-child {
  margin-bottom: 1.5rem;
}
.main-content ul.list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px;
}
.main-content ul.list:last-child {
  margin-bottom: 1.5rem;
}
.main-content ul.list > li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 35px;
}
.main-content ul.list > li:before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 8px;
  width: 15px;
  height: 5px;
  background-color: var(--color-primary);
}
.main-content p {
  margin-bottom: 2.25rem;
}
.main-content p:last-child {
  margin-bottom: 1.5rem;
}
.main-content a {
  color: var(--color-primary);
  text-decoration: underline;
}
.main-content .breadcrumb a {
  color: #1e2326;
  text-decoration: none;
}

.breadcrumb {
  font-size: 13px;
  background: #fff;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 2.25rem;
  color: #aab2b2;
}
.breadcrumb a {
  color: #1e2326;
}
.breadcrumb a:hover, .breadcrumb a:focus {
  color: var(--color-primary);
}
.breadcrumb li {
  margin-bottom: 0.75rem;
}
.breadcrumb .active {
  color: #aab2b2;
}
.breadcrumb > li + li:before {
  color: #d6e4e5;
}

.front-image {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.col-3 {
  width: 33.33%;
  float: left;
  padding-right: 1.5rem;
}

.company-intro__directions .col-3 {
  position: relative;
}

.company-intro__directions .col-3 a {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.75rem;
}

.directions-icons {
  height: 100px;
  width: 100%;
  margin-bottom: 1.5rem;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f4f7f8;
}

.image-preview {
  float: left;
  width: 33.33%;
  padding: 10px 5px 0;
  display: block;
}

.main-preview {
  width: 100%;
  display: block;
}

table,
.table {
  width: 100%;
}

table > tbody > tr td,
.table > tbody > tr td,
table > tbody > tr th,
.table > tbody > tr th {
  border-top: none;
  padding: 10px 10px;
  border-bottom: 1px #ccc solid;
}

table > tbody > tr th,
.table > tbody > tr th {
  background-color: transparent;
  text-align: left;
  border-bottom: 2px #ccc solid;
}

.table-bordered > tbody > tr td,
.table-bordered > tbody > tr th {
  border-top: 1px solid #d6e4e5;
}

.cert-gallery,
.news-gallery {
  width: 100%;
}

.cert-gallery__item {
  width: 25%;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  float: left;
}

.news-gallery__item {
  width: 20%;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  float: left;
}

.product-list__header {
  border-bottom: 1px solid #d6e4e5;
  margin-bottom: 1.5rem;
}

.product-list__body {
  margin-bottom: 1.5rem;
}
.product-list__body:after {
  display: table;
  content: "";
  clear: both;
}

.product-list__body .item-wrapper {
  width: 25%;
  height: 265px;
  float: left;
  padding-right: 1.5rem;
  margin-bottom: 50px;
}

.product-list__body__item {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 0.75rem;
  text-align: left;
  text-decoration: none !important;
  background: #fff;
}

.product-list__body__item img {
  float: left;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-list__body__item p {
  clear: both;
  font-size: 13px;
  color: #1e2326;
  margin-bottom: 0 !important;
}

.product-list__body__item p b {
  font-weight: 600;
}

.product-list__body__item:after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  height: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-list__body__item:hover {
  text-decoration: none;
}

.product-list__body__item:hover p {
  color: var(--color-primary);
}

.product-list__body__item:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.col-2 {
  width: 50%;
  float: left;
  padding-right: 4.5rem;
}

.col-2 textarea {
  height: 100px;
}

.col-2 span {
  margin-bottom: 0.75rem;
}

.news-articles {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
  gap: 30px;
}
@media (min-width: 761px) {
  .news-articles {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1282px) {
  .news-articles {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.news-articles__item {
  padding-top: 3rem;
  border-top: 1px solid #d6e4e5;
}

.learn-more {
  color: var(--color-primary);
  position: relative;
  font-weight: 600;
  padding-bottom: 3px;
}

.learn-more:after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  height: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.learn-more:hover {
  text-decoration: none;
}

.learn-more:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.pagination > li a,
.pagination > li span {
  color: var(--color-primary);
  border: 1px solid #d6e4e5;
}

.pagination > li a:hover,
.pagination > li a:focus {
  background: #f4f7f8;
}

.pagination > .active a,
.pagination > .active span {
  background-color: #28689c !important;
  border-color: #28689c;
  z-index: 0;
}

.pagination > li:first-child a,
.pagination > li:last-child a {
  border-radius: 0;
}

.pagination > li:first-child span,
.pagination > li:last-child span {
  border-radius: 0;
}

.news-content .time {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.news-content h2 {
  margin-bottom: 1.5rem;
}

.search-results > p {
  margin-bottom: 3rem;
}

.search-results .search-results__item {
  border-top: 1px solid #d6e4e5;
  padding-top: 2rem;
  margin-bottom: 2rem !important;
}

.search-results .search-results__item p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#map {
  height: 400px;
}

.info-block {
  width: 50%;
  float: left;
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

.info-block:nth-of-type(2n+3) {
  clear: both;
}

.info-block h4 {
  margin-bottom: 1.5rem;
}

.info-block ul {
  border-left: 1px solid #d6e4e5;
  padding-left: 2rem;
}

.info-block ul li {
  margin-bottom: 0.5rem;
}

.footer {
  background: #333;
  color: #fff;
  padding: 3rem 0;
}

.footer__sitemap {
  width: 900px;
  float: right;
  font-size: 13px;
}

.footer__sitemap a {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 1rem;
}

.footer__sitemap span {
  margin-bottom: 1rem;
}

.footer__sitemap .text-gray {
  color: #aab2b2;
}

.footer__sitemap .text-gray a {
  color: inherit;
}

.footer__credits {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
}

.feedback-form {
  display: none;
  width: 600px;
  background: #fff;
  padding: 3rem 4rem;
  color: #1e2326;
}

.feedback-form hr {
  margin-bottom: 2rem;
}

.feedback-form textarea {
  height: 100px;
}

.fancybox-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.fancybox-skin {
  padding: 0 !important;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fancybox-lock {
  overflow: visible !important;
}

@media (max-width: 1280px) {
  body {
    font-size: 14px;
  }

  .container {
    width: var(--container-width);
  }

  .left-col {
    width: 270px;
  }

  .main-content {
    padding: 3rem 4rem;
  }
  .home .main-content {
    width: 100%;
    padding-top: 0;
  }

  .nav > ul > li {
    margin-left: 1.5rem;
  }

  .dropdown-menu {
    top: 45px;
  }

  .product-list__body .item-wrapper {
    width: 33.33%;
    height: 265px;
  }

  .logo {
    width: 203px;
    height: 65px;
  }

  img.float-right {
    max-width: 300px;
  }

  .front-image {
    float: none;
    width: 100%;
    max-width: 560px;
    margin-left: 0;
  }

  .company-intro__directions h3 {
    margin-bottom: 3rem;
  }

  .company-intro__directions .col-3 {
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #d6e4e5;
  }

  .company-intro__directions .col-3:last-child {
    border-bottom: none;
  }

  .company-intro__directions .col-3 p {
    overflow: hidden;
  }

  .directions-icons {
    float: left;
    width: 105px;
    margin-bottom: 0;
    background-position: 0 0;
    background-size: 90px auto;
  }

  .subsystems-item__icon {
    width: 100px;
    padding-right: 35px;
  }

  .subsystems-item__code {
    width: 160px;
  }

  .subsystems-item__name {
    width: calc(100% - 260px);
  }

  .col-2 {
    padding-right: 2rem;
  }

  .footer .logo {
    display: none;
  }

  .footer__sitemap {
    width: 100%;
  }

  .footer__credits {
    width: 33.33%;
  }
}
@media (max-width: 1020px) {
  .header {
    padding: 1rem 0;
    height: auto;
  }

  .logo {
    width: 187px;
    height: 60px;
  }

  .feedback-block,
.recent-news {
    display: none;
  }

  .main-content {
    width: 100%;
  }

  .left-col {
    width: 100%;
    margin-bottom: 0;
  }

  .category-list h3,
.category-list hr {
    display: none;
  }

  .search-page {
    float: none;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    background: var(--color-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .search-page .form-control {
    border: 1px solid #d6e4e5;
  }

  .search-page .form-control:focus {
    background: #fff;
    border: 1px solid var(--color-primary);
  }

  .search-page__btn {
    background: transparent;
  }

  .nav-toggle {
    display: block;
  }

  .nav-opened .nav-wrapper {
    left: 0;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 300px;
    padding: 0;
    z-index: 999;
    left: -300px;
    background: #f4f7f8;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-box-shadow: 5px -5px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 5px -5px 20px rgba(0, 0, 0, 0.3);
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column-reverse;
    background-color: var(--color-primary);
  }

  .nav {
    position: absolute;
    top: 0;
    bottom: 0;
    padding-top: 0;
    width: 100%;
    height: auto;
  }

  .nav > ul > li {
    position: relative;
    display: block;
    margin-left: 0;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav > ul > li > a {
    font-size: 16px;
    padding: 15px 20px;
    color: #fff;
  }
  .nav > ul > li > a, .nav > ul > li > a:hover, .nav > ul > li > a:active, .nav > ul > li > a:focus {
    color: #fff;
  }

  .nav > ul > li > a:after {
    display: none;
  }

  .dropdown-menu {
    display: none;
    visibility: visible;
    position: relative;
    float: none;
    top: 0;
    left: 0;
    width: 100%;
    background: #eef3f4;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .dropdown-menu > li a {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    white-space: normal;
  }

  .dropdown-menu > li a:hover,
.dropdown-menu > li a.active {
    background: #e8eef0 !important;
  }

  .dropdown-menu > li a:after {
    display: none;
  }
}
@media (max-width: 768px) {
  .header {
    margin-bottom: 1.5rem;
  }

  .main > .container {
    width: 100%;
    max-width: none;
  }

  .main-content {
    padding: 3rem 3rem;
    margin-bottom: 1.5rem;
    min-height: calc(100vh - 215px - 12rem);
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.7857em;
  }

  .float-right {
    float: none;
    margin-left: 0;
  }

  .image-preview {
    max-width: 110px;
    padding: 10px 10px 0 0;
    display: block;
  }

  .main-preview {
    max-width: 330px;
  }

  .subsystems-item__icon,
.subsystems-item__code,
.subsystems-item__name {
    padding: 10px 0;
  }

  .subsystems-item__icon {
    width: 90px;
    padding-right: 35px;
  }

  .subsystems-item__code {
    width: 150px;
  }

  .subsystems-item__name {
    width: calc(100% - 240px);
  }
}
@media (max-width: 600px) {
  .subsystems-item__code,
.subsystems-item__name {
    display: block;
    float: left;
  }

  .subsystems-item__icon {
    width: 80px;
    vertical-align: top;
    padding-right: 25px;
  }

  .subsystems-item__code {
    padding-bottom: 0;
  }

  .subsystems-item__name {
    padding-top: 0;
    width: 100%;
  }

  .col-2 {
    width: 100%;
    padding-right: 0;
  }

  .cert-gallery__item {
    width: 33.33%;
  }

  .product-list__body .item-wrapper {
    width: 50%;
    height: 265px;
  }

  .info-block {
    width: 100%;
  }

  .news-articles__item {
    width: 100%;
    padding-top: 1.5rem;
    padding-right: 0;
    height: auto;
  }

  .news-gallery__item {
    width: 25%;
  }

  .footer {
    height: 282px;
    overflow: hidden;
  }

  .footer .col-3 {
    width: 50%;
  }

  .footer .col-3:last-child {
    width: 100%;
    border-top: 1px solid #d6e4e5;
    padding-top: 1.5rem;
  }

  .footer__credits {
    width: 50%;
  }

  .main-content {
    min-height: calc(100vh - 272px - 12rem);
  }
}
@media (max-width: 450px) {
  .product-list__body .item-wrapper {
    height: 255px;
  }

  .news-gallery__item {
    width: 33.33%;
  }

  .directions-icons {
    width: 90px;
    background-size: 75px auto;
  }
}
@media (max-width: 420px) {
  .search-page {
    margin-right: calc(50% - 120px);
  }

  .product-list__body .item-wrapper {
    width: 100%;
    max-width: 290px;
    height: auto;
    padding-right: 0;
  }

  .footer__credits {
    position: relative;
    width: 100%;
  }

  .footer {
    height: auto;
  }

  .main-content {
    min-height: calc(100vh - 341px - 12rem);
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 4rem);
  }

  .main-content {
    padding: 3rem 2rem;
  }

  h1 {
    font-size: 1.643em;
  }

  .cert-gallery__item {
    width: 50%;
  }
}
.document-icon {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 12px;
  display: inline-block;
  padding: 2px 6px;
  vertical-align: middle;
  position: relative;
  border-radius: 3px;
  top: -1px;
}

.page-template-default .main-content ul,
.category .main-content ul,
.single-software .main-content ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px;
}
.page-template-default .main-content ul:last-child,
.category .main-content ul:last-child,
.single-software .main-content ul:last-child {
  margin-bottom: 1.5rem;
}
.page-template-default .main-content ul > li,
.category .main-content ul > li,
.single-software .main-content ul > li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 27px;
}
.page-template-default .main-content ul > li:before,
.category .main-content ul > li:before,
.single-software .main-content ul > li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23103E93' d='M9 21.035l-9-8.638 2.791-2.87 6.156 5.874 12.21-12.436 2.843 2.817z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: 0 0;
}

.products-system__description ul,
.products-system-item__body ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px;
}
.products-system__description ul:last-child,
.products-system-item__body ul:last-child {
  margin-bottom: 1.5rem;
}
.products-system__description ul > li,
.products-system-item__body ul > li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 27px;
}
.products-system__description ul > li:before,
.products-system-item__body ul > li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23103E93' d='M9 21.035l-9-8.638 2.791-2.87 6.156 5.874 12.21-12.436 2.843 2.817z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: 0 0;
}

.header-panel {
  float: right;
  display: flex;
  gap: 10px;
  align-items: center;
  position: absolute;
  top: -15px;
  right: 0;
  background-color: #F4F4F4;
  border-radius: var(--border-radius);
  padding: 1px 15px 1px 5px;
}
@media (max-width: 1020px) {
  .header-panel {
    float: none;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding: 0;
    background-color: transparent;
    gap: 0;
  }
}
.header-panel__info {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1020px) {
  .header-panel__info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }
}

.icon-text {
  display: flex;
  gap: 7px;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 1020px) {
  .icon-text {
    padding: 10px 20px;
    border-bottom: 1px var(--border-color) solid;
    width: 100%;
    gap: 10px;
  }
  .icon-text, .icon-text:hover, .icon-text:active, .icon-text:focus {
    color: #fff;
  }
}
.icon-text__icon {
  display: flex;
  align-items: center;
}
@media (max-width: 1020px) {
  .icon-text__icon {
    width: 16px;
  }
}
@media (max-width: 1020px) {
  .icon-text__icon path {
    fill: #fff;
  }
}

.hero {
  padding: 40px 0;
  background-image: url(../img/hero-image.jpg);
  background-size: cover;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .hero .container {
    display: block;
  }
}
.hero:after {
  content: "";
  display: table;
  clear: both;
}
.hero__image {
  display: inline-block;
  border-radius: 5px;
  border-color: rgba(88, 144, 248, 0.44);
  border-style: solid;
  border-width: 5px;
  max-width: 480px;
  margin: 0 auto;
  order: 2;
}
@media (min-width: 1024px) {
  .hero__image {
    float: right;
    margin: 0 0 30px 30px;
    border-radius: 10px;
    border-width: 10px;
  }
}
@media (min-width: 1280px) {
  .hero__image {
    max-width: 600px;
  }
}
.hero__image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.hero h1 {
  order: 1;
  color: #fff;
  font-size: 25px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 40px;
  }
}
.hero__text {
  background: linear-gradient(to left, #012467BF, #103E93B5, #5F94F500);
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  order: 3;
  margin-left: -20px;
}
@media (min-width: 1024px) {
  .hero__text {
    border-radius: 10px;
    padding: 30px;
    margin-left: -30px;
    width: 45%;
  }
}

.teasers {
  background-image: url(../img/teasers-background.png);
  background-size: cover;
  padding: 40px 0 60px;
}
.teasers .container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--row-gap);
  column-gap: var(--column-gap);
}
.teasers .container:before, .teasers .container:after {
  display: none;
}
@media (min-width: 768px) {
  .teasers .container {
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
  }
}
.teasers h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .teasers h2 {
    grid-column: span 2;
  }
}

.teaser {
  background-color: #fff;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
}
.teaser__image {
  width: 100%;
  aspect-ratio: 380/170;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.teaser h3 {
  padding: 0 25px;
  font-size: 18px;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 5px;
}
.teaser__text {
  margin-bottom: 15px;
  padding: 0 25px;
}
.teaser__more {
  font-size: 16px;
  border-top: 1px #DFDFDF solid;
  display: flex;
  height: 70px;
  padding: 0 65px 0 25px;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  background-image: url(../img/arrow-circle.svg);
  background-size: 32px;
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
}
.teaser__more, .teaser__more:hover {
  color: var(--color-primary);
  text-decoration: none !important;
}

.products-system__description {
  margin-bottom: 30px;
}
.products-system h2 .blue {
  background-color: var(--color-primary);
  color: #fff;
  display: inline-block;
  padding: 1px 10px;
  border-radius: var(--border-radius-small);
}

.products-system-item {
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #F2F2F2;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.products-system-item__header {
  margin: 0;
}
.products-system-item__header a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  min-height: 46px;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--color-text);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}
.products-system-item__header a:hover, .products-system-item__header a:focus {
  color: var(--color-primary);
}
.products-system-item__header a span {
  display: block;
  margin-right: 15px;
}
.products-system-item__header i {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.products-system-item__header svg {
  display: block;
  width: 16px;
  height: 16px;
  transition: all 0.2s ease;
}
.products-system-item__header a:not(.collapsed) {
  background-color: var(--color-primary);
}
.products-system-item__header a:not(.collapsed), .products-system-item__header a:not(.collapsed):hover, .products-system-item__header a:not(.collapsed):focus {
  color: white;
}
.products-system-item__header a:not(.collapsed) svg {
  color: white;
  transform: rotate(90deg);
}
.products-system-item__body {
  border-top: 1px solid #d6e4e5;
}
.products-system-item__content {
  padding: 20px;
}
.products-system-item__content ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px;
}
.products-system-item__content ul:last-child {
  margin-bottom: 1.5rem;
}
.products-system-item__content ul > li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 27px;
}
.products-system-item__content ul > li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23103E93' d='M9 21.035l-9-8.638 2.791-2.87 6.156 5.874 12.21-12.436 2.843 2.817z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: 0 0;
}
.products-system-item__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.product-gallery {
  margin: 30px -4rem;
  padding: 25px 4rem;
  width: calc(100% + 4rem * 2);
  background-color: #f2f2f299;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .product-gallery {
    margin: 30px -3rem;
    padding: 25px 3rem;
    width: calc(100% + 3rem * 2);
  }
}
@media (max-width: 360px) {
  .product-gallery {
    margin: 30px -2rem;
    padding: 25px 2rem;
    width: calc(100% + 2rem * 2);
  }
}

.ngg-caption-view-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.ngg-galleryoverview {
  margin: 0 !important;
  padding: 0;
  min-height: auto;
}

.ngg-caption-view-wrapper .ngg-gallery-thumbnail-box.ngg-4-columns {
  width: calc(50% - 20px);
}
@media (min-width: 1200px) {
  .ngg-caption-view-wrapper .ngg-gallery-thumbnail-box.ngg-4-columns {
    width: calc(25% - 20px);
  }
}

.ngg-caption-view-wrapper .ngg-gallery-thumbnail-box:first-child {
  width: calc(100% - 20px);
}
.ngg-caption-view-wrapper .ngg-gallery-thumbnail-box:first-child .ngg-gallery-thumbnail img {
  object-fit: contain;
  aspect-ratio: auto;
}

.sl-wrapper .sl-image {
  background-color: #fff;
}

.ngg-gallery-thumbnail {
  background-color: #fff;
  box-shadow: var(--box-shadow-small);
  border-radius: var(--border-radius);
  padding: 20px;
  border: 0 !important;
  height: calc(100% - 10px);
}
.ngg-gallery-thumbnail img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.subsystems {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .subsystems {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1400px) {
  .subsystems {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .subsystems h3 {
    grid-column: span 2;
  }
}
@media (min-width: 1400px) {
  .subsystems h3 {
    grid-column: span 3;
  }
}

.system-description {
  margin-bottom: 3rem !important;
}

.subsystems-item {
  display: flex;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.subsystems-item__icon {
  display: flex;
  width: 95px;
  padding: 20px;
}
.subsystems-item__icon img {
  width: 55px;
  height: auto;
}
.subsystems-item__code {
  width: calc(100% - 100px);
  padding: 20px 20px 20px 0;
}
.subsystems-item__code a {
  display: inline-block;
}
.subsystems-item__name {
  display: table-cell;
  vertical-align: middle;
  width: calc(100% - 280px);
  padding: 10px;
}

/*# sourceMappingURL=styles.css.map */
