@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.none {
  display: none;
}

.clear {
  clear: both;
}

a {
  color: #29C0F3;
}
a:hover {
  color: #2091B7;
}

img {
  max-width: 100%;
}

body {
  font-family: "Jost", sans-serif;
  font-size: clamp(16px, calc(13.92px + 0.76vw), 18px);
}

h1, h2, h3, h4 {
  margin-bottom: 8px;
  color: #fff;
}

p, ul, ol {
  margin-bottom: 8px;
  color: #9EB4D5;
}

h1 {
  font-size: clamp(33.28px, calc(26.88px + 3.24vw), 55px);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 120%;
}

h2 {
  font-size: clamp(31.04px, calc(23.2px + 2.46vw), 40px);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 120%;
}

h3 {
  font-size: clamp(21.6px, calc(17.12px + 1.39vw), 25px);
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

h4 {
  font-size: clamp(18px, calc(14.72px + 1.03vw), 21px);
}

p {
  line-height: 150%;
  color: #fff;
}

ol, ul {
  padding-left: 1.3em;
}
ol li, ul li {
  padding: 0.1em 0;
}

ul {
  list-style: square;
}
.content__wrapper ul {
  list-style: none;
}
.content__wrapper ul li {
  padding: 0 0 8px 10px;
  position: relative;
}
.content__wrapper ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -20px;
  top: 10px;
  background: url(../layout/li.svg) 0 0 no-repeat;
  width: 18px;
  height: 5px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.admlink {
  position: fixed;
  left: 0;
  top: 0px;
  color: rgba(0, 0, 0, 0.3);
  font-size: clamp(14px, calc(10.72px + 0.55vw), 16px);
  z-index: 1000;
}

.delimiter {
  margin-top: 32px;
  margin-bottom: 32px;
  border: 1px solid #ccc;
}

.lefted,
.lefted p {
  text-align: left;
}

.centered,
.centered p {
  text-align: center;
}

.righted,
.righted p {
  text-align: right;
}

.space {
  margin-top: 32px;
  margin-bottom: 32px;
}

.space-top {
  margin-top: 32px;
}

.space-bottom {
  margin-bottom: 32px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
}

.fgrid {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 16px;
}
.fullwide .fgrid {
  max-width: 100%;
  padding: 0;
}

.frow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
@media (min-width: 768px) {
  .frow {
    flex-flow: row;
  }
  .frow.vcenter {
    align-items: center;
  }
}

.fcol {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .fcol {
    width: 1px;
  }
}

.fc-1 {
  flex: 1 1 auto;
}

.fc-2 {
  flex: 2 1 auto;
}

.fc-3 {
  flex: 3 1 auto;
}

.fc-4 {
  flex: 4 1 auto;
}

.fc-5 {
  flex: 5 1 auto;
}

.fc-6 {
  flex: 6 1 auto;
}

.grid2 {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 768px) {
  .grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid3 {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid4 {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid6 {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.spacer {
  height: 64px;
  width: 100%;
}

.gallery {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery img {
  width: 100%;
  display: block;
}

.galimg {
  display: block;
}

.pictpoint {
  text-align: center;
  display: flex;
  flex-flow: column;
}
.pictpoint .img {
  max-width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}
.pictpoint .img img {
  object-fit: contain;
  object-position: 50% 50%;
}
.pictpoint .text {
  color: #9EB4D5;
  margin-inline: 16px;
}
.pictpoint .hl {
  display: block;
  color: #fff;
}
.pictpoint .hl::after {
  content: "";
  display: block;
  margin: 16px auto;
  width: 100px;
  height: 2px;
  background-color: #71A80F;
}
.pictpoint p {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 16px);
  color: #B4B4B4;
}
.horizontal .pictpoint {
  text-align: left;
  flex-flow: row;
  align-items: center;
}
.horizontal .pictpoint .img {
  margin: 0 16px auto 0;
}

.bignum {
  text-align: left;
  padding: 16px;
}
.bignum .num {
  font-family: "Jost", sans-serif;
  font-size: 5em;
  font-weight: 100;
  color: #fff;
  display: block;
  line-height: 100%;
  margin-bottom: 8px;
}
.bignum .hl {
  display: block;
  font-weight: 100;
}
.bignum p {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 16px);
}
.bignum::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #ED877A;
  margin-top: 32px;
}

input, select, textarea {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: clamp(16px, calc(13.92px + 0.76vw), 18px);
  font-family: "Jost", sans-serif;
  background-color: transparent;
  border-style: solid;
  border-color: #ccc;
  border-width: 0 0 1px 0;
  padding: 8px;
  border-radius: 0;
}

select {
  position: relative;
  padding-right: 20px;
  background: #fff url(../layout/selarr.svg) calc(100% - 7px) 50% no-repeat;
  background-size: 15px auto;
}

label {
  display: flex;
  flex-flow: column;
  margin-bottom: 8px;
  color: #1D1D1D;
}
label span {
  min-width: 150px;
  margin-top: 8px;
  margin-bottom: 4px;
}
label input + span {
  margin-left: 8px;
  min-width: auto;
}

input[type=radio],
input[type=checkbox] {
  position: relative;
  margin-top: 8px;
  width: clamp(16px, calc(13.92px + 0.76vw), 18px);
  height: clamp(16px, calc(13.92px + 0.76vw), 18px);
  border: 1px solid #ccc;
}

input[type=radio]:checked:after,
input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin-top: clamp(16px, calc(13.92px + 0.76vw), 18px)/-4;
  margin-left: clamp(16px, calc(13.92px + 0.76vw), 18px)/-4;
  width: clamp(16px, calc(13.92px + 0.76vw), 18px)/2;
  height: clamp(16px, calc(13.92px + 0.76vw), 18px)/2;
  background: #fff;
}

input[type=radio],
input[type=radio]:checked:after {
  border-radius: 50%;
}

input[type=submit] {
  background: #29C0F3 url(../layout/submitbg.svg?v2) 16px 50% no-repeat;
  border: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 16px 32px 16px 70px;
  text-transform: uppercase;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #010102;
  border-color: #010102;
}

.form__spec {
  visibility: hidden;
  height: 1px;
  overflow: hidden;
}

.req {
  font-weight: 500;
}
.req span::after {
  content: "*";
}

.form__quote {
  color: #fff;
  padding: 16px;
  margin: 8px 0;
}

.form__quote_success {
  background: #00A676;
}

.form__quote_err {
  background: #C93C3C;
}

.contact {
  margin-bottom: 32px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 16px;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.contact__message {
  height: 8em;
}

.contact__submit {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .contact__submit {
    margin-bottom: 0;
    margin-right: 32px;
  }
}

.contact__mandatory {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 16px);
}

.contact__sendrow {
  display: flex;
  flex-flow: column;
}
@media (min-width: 768px) {
  .contact__sendrow {
    flex-flow: row;
    align-items: center;
  }
}

.header__wrapper {
  position: relative;
  z-index: 10;
  transition: 0.3s;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  gap: 16px;
}

.header__logo {
  margin-right: auto;
  max-width: 200px;
}
@media (min-width: 768px) {
  .header__logo {
    max-width: 263px;
  }
}

.header__panel {
  display: flex;
  position: fixed;
  top: 60px;
  width: 220px;
  flex-flow: column;
  background: #fff;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.2);
  align-items: flex-end;
  padding: 16px;
  gap: 16px;
  transition: 0.3s;
  right: -236px;
}
.header__panel.opened {
  right: 0;
}
@media (min-width: 768px) {
  .header__panel {
    position: relative;
    box-shadow: none;
    background: transparent;
    flex-flow: row;
    width: 100%;
    top: auto;
    flex-wrap: wrap;
    right: auto;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .header__panel {
    margin-left: 0;
    flex-wrap: nowrap;
  }
}

.header__opener {
  display: inline;
  margin-left: 16px;
  font-size: 30px;
  text-decoration: none;
  color: #fff;
  line-height: 30px;
  margin-top: -10px;
}
.header__opener:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .header__opener {
    display: none;
  }
}

@media (min-width: 768px) {
  .header__menu {
    margin-inline: 200px auto;
  }
}
.header__menu ul {
  list-style: none;
  display: flex;
  text-align: right;
  flex-flow: column;
  margin: 0;
  min-width: 200px;
}
@media (min-width: 768px) {
  .header__menu ul {
    flex-flow: row;
    margin-right: 0;
    padding: 0;
    min-width: auto;
  }
}
.header__menu ul li {
  padding: 0;
  margin: 4px 0;
}
@media (min-width: 768px) {
  .header__menu ul li {
    margin: 0 16px;
  }
}
.header__menu ul a {
  font-size: clamp(16px, calc(13.92px + 0.76vw), 18px);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  font-weight: 400;
}
@media (min-width: 768px) {
  .header__menu ul a {
    font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
    color: #fff;
  }
  .header__menu ul a:hover {
    color: #fff;
  }
}

.header__langs {
  padding: 0.3em 16px;
  border-right: 1px solid #ccc;
  margin-left: 16px;
}
@media (min-width: 768px) {
  .header__langs {
    border-left: 1px solid #ccc;
    border-right: 0;
  }
}

.header__lang {
  color: #9EB4D5;
  text-decoration: none;
  text-transform: uppercase;
}
.header__lang:hover {
  color: #fff;
}
.header__lang-active {
  color: #D91E05;
}

.header__contact {
  text-align: right;
}
@media (min-width: 768px) {
  .header__contact {
    line-height: 1.2;
    text-align: left;
  }
  .header__contact a {
    text-decoration: none;
    font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
    color: #fff;
  }
}

.headerSocials {
  display: flex;
  gap: 4px;
}
.headerSocials img {
  display: block;
}

.scrolled .header__wrapper {
  background: #07152B;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
}
.scrolled .header__logo img {
  max-height: 50px;
  margin-bottom: -10px;
  margin-top: -10px;
}

.footerGrid {
  padding-top: 64px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .footerGrid {
    text-align: left;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footerGrid {
    grid-template-columns: 300px 1fr 1fr 2fr;
  }
}

.footerAbout {
  display: flex;
  flex-flow: column;
  gap: 32px;
  order: 4;
  grid-column: 1/2;
  text-align: center;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .footerAbout {
    grid-column: 1/4;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .footerAbout {
    grid-column: 1/2;
    order: unset;
    text-align: left;
  }
}

.footLogo {
  width: 280px;
  margin: -20px 0 0 -10px;
}

.footerSocials {
  display: flex;
  gap: 8px;
  margin: auto;
}
@media (min-width: 1024px) {
  .footerSocials {
    margin: unset;
  }
}

.footerContacts {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .footerContacts {
    grid-template-columns: 1fr 1fr;
    margin-left: 50px;
  }
}

.footer {
  color: #fff;
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
}
.footer a {
  color: #9EB4D5;
  text-decoration: none;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  padding: 8px 0;
}
.footer .hl {
  font-family: "Jost", sans-serif;
  font-size: clamp(21.6px, calc(17.12px + 1.39vw), 25px);
  font-weight: 500;
  display: block;
  margin-bottom: 32px;
  color: #fff;
}
.footer .copy {
  color: #9EB4D5;
}

@media (min-width: 1024px) {
  .footerAddress {
    background: url(../layout/pin.svg?v2) 0% 0% no-repeat;
    padding-left: 50px;
    color: #9EB4D5;
  }
}

body {
  background-color: #091A34;
}

.whiteBg,
.transBg,
.dblueBg {
  padding-block: 64px;
}

.grayBg {
  color: #fff;
  background: #393534;
  position: relative;
  padding-top: 49px;
}
.grayBg::before {
  content: "";
  background: url(../layout/grayBgTop.svg) 50% 0% repeat-x;
  height: 33px;
  width: 100%;
  position: absolute;
  top: -33px;
}
.grayBg p {
  color: #B2A9A9;
}

.dblueBg {
  background-color: #07152B;
}

@media (min-width: 1024px) {
  .bottomBoxBg {
    position: relative;
  }
  .bottomBoxBg::after {
    content: "";
    display: block;
    position: absolute;
    background: #393534;
    width: 45%;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}
.spaced {
  margin-block: 32px;
}

.bigText {
  font-size: clamp(18px, calc(14.72px + 1.03vw), 21px);
  font-weight: 600;
}

.iluBg {
  background: url(../layout/iluBg.jpg) 0% 0% no-repeat;
  background-size: cover;
  padding-block: 96px;
}

.iluBg2 {
  background: url(../layout/iluBg2.jpg) 0% 0% no-repeat;
  background-size: cover;
  padding-block: 96px;
}

.ctabut {
  text-decoration: none;
  padding: 16px 0;
  margin: 16px 0;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}
.ctabut::before {
  content: "";
  display: inline-block;
  background: url(../layout/ctabutbg.svg?v2) no-repeat 0% 50%;
  background-size: 40px auto;
  width: 40px;
  height: 10px;
  margin-right: 16px;
}

.whiteBg .ctabut {
  color: #3B2D2D;
}
.whiteBg .ctabut::before {
  background-image: url(../layout/ctabutbgGray.svg);
}

.grayBg .ctabut {
  background-color: #fff;
  padding-inline: 16px;
  color: #393534;
}
.grayBg .ctabut::before {
  background-image: url(../layout/ctabutbgGray.svg);
}

.hpIluText .imagetext.right .img {
  display: none;
}
@media (min-width: 1024px) {
  .hpIluText .imagetext.right {
    background: url(../layout/img_bg_texura.jpg) 100% 0% no-repeat;
    padding: 44px 60px 0 0;
  }
  .hpIluText .imagetext.right .img {
    display: block;
    align-self: flex-start;
    width: 48%;
  }
}

@media (min-width: 768px) {
  .testimonialsGrid {
    display: grid;
    grid-template-columns: 1fr 70%;
    gap: 64px;
  }
}

.testimonialsCarousel .slick-prev,
.testimonialsCarousel .slick-next {
  background-color: #091A34;
  width: calc(50% - 2px);
  height: 64px;
  transition: 0.3s;
  top: 0;
}
.testimonialsCarousel .slick-list {
  margin-inline: -8px;
  padding-top: 68px;
}
@media (min-width: 768px) {
  .testimonialsCarousel .slick-list {
    padding-top: 0;
    margin-inline: 66px;
  }
  .testimonialsCarousel .slick-prev,
.testimonialsCarousel .slick-next {
    width: 64px;
    top: calc(50% - 53px);
  }
}

.aboveContact {
  color: #fff;
  display: flex;
  flex-flow: column;
  gap: 16px;
  align-items: center;
  max-width: 600px;
  margin-inline: auto;
}
.aboveContact .ac__uph {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 16px);
  color: #29C0F3;
  margin-bottom: 0;
}
.aboveContact .ac__cta {
  line-height: 100%;
  font-size: clamp(33.28px, calc(26.88px + 3.24vw), 55px);
  font-weight: 600;
}
.aboveContact .ac__p {
  color: #D1E0F5;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 16px);
  font-weight: 100;
}
.aboveContact a {
  color: #fff;
}
.aboveContact .ctabut {
  margin-bottom: 0;
}

.contactWrapper {
  padding: 16px 32px;
  border: 1px solid #E3E3E3;
  background-color: #fff;
}
.contactWrapper h3 {
  color: #1D1D1D;
}

.address {
  display: grid;
  grid-template-columns: 30% 1fr;
  margin-bottom: 8px;
  color: #fff;
  line-height: 150%;
}
.address .val {
  color: #9EB4D5;
}
.address a {
  color: #9EB4D5;
  text-decoration: underline;
}

.bigger {
  font-size: clamp(18px, calc(14.72px + 1.03vw), 21px);
  font-weight: 700;
}

.pageheader {
  position: relative;
  margin-top: -120px;
}
.pageheader .bgimg {
  position: relative;
}
.pageheader .bgimg img {
  width: 100%;
}
.pageheader .inner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
}
.pageheader h1, .pageheader p {
  color: #fff;
  margin-bottom: 16px;
}
.pageheader h1 {
  font-weight: 400;
}
.pageheader h1::after {
  display: none;
}
.pageheader .pageheader__sup {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}
.pageheader .ctabut {
  margin: 0;
}
@media (max-width: 1024px) {
  .pageheader .bgimg {
    height: 500px;
  }
  .pageheader .bgimg picture {
    display: flex;
    height: 100%;
  }
  .pageheader .bgimg img {
    object-fit: cover;
    object-position: 50% 0%;
  }
}

.hpCarousel {
  margin-top: -120px;
}
.hpCarousel .pageheader {
  margin-top: 0;
}
.hpCarousel .pageheader_hl,
.hpCarousel .pageheader__sub {
  max-width: 600px;
}
.hpCarousel .ctabut {
  color: #fff;
}
.hpCarousel .pageheader_hl {
  font-weight: 500;
  font-size: clamp(33.28px, calc(26.88px + 3.24vw), 55px);
  line-height: 110%;
}
.hpCarousel + div {
  position: relative;
}
.hpCarousel .slick-prev,
.hpCarousel .slick-next {
  background-color: #E8E8E9;
  width: 130px;
  height: 42px;
  transition: 0.3s;
  top: auto;
  bottom: 20px;
}
.hpCarousel .slick-prev:hover,
.hpCarousel .slick-next:hover {
  background-color: #D8D8D9;
}
.hpCarousel .slick-prev {
  right: 146px;
  left: auto;
  background-image: url(../layout/hpCar_arrow_left.svg);
}
.hpCarousel .slick-next {
  right: 16px;
  background-image: url(../layout/hpCar_arrow_right.svg);
}
@media (min-width: 576px) {
  .hpCarousel .slick-prev,
.hpCarousel .slick-next {
    width: 256px;
  }
  .hpCarousel .slick-prev {
    right: 272px;
  }
}
@media (min-width: 1024px) {
  .hpCarousel .slick-prev {
    left: 50%;
    background-image: url(../layout/hpCar_arrow_left.svg);
  }
  .hpCarousel .slick-next {
    right: auto;
    left: calc(50% + 256px);
    background-image: url(../layout/hpCar_arrow_right.svg);
  }
}

.router {
  color: #fff;
  text-decoration: none;
  text-align: left;
  display: block;
  padding: 16px 16px;
}
.router:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .router {
    padding: 16px;
  }
}

.router__img {
  display: block;
  position: relative;
  margin-bottom: 16px;
}
.router__img img {
  max-width: 100%;
  max-height: 100%;
}
.router__img::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #091A3480;
}
@media (hover: hover) {
  .router__img::after {
    transition: 0.5s;
  }
  .router__img:hover::after {
    background-color: transparent;
  }
}

.router__hl {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
}

.router__text {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 16px);
  display: block;
  margin-bottom: 16px;
  color: #9EB4D5;
}

.linkedfile {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid #818181;
  margin-bottom: auto;
  padding: 32px 0;
}
.linkedfile img {
  margin-bottom: 16px;
  width: 80px;
}
.linkedfile strong {
  font-weight: 400;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
@media (max-width: 1024px) {
  .people {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .people {
    grid-template-columns: 1fr;
  }
}

.person {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
}
.person .photo {
  width: 66px;
  height: 66px;
  margin-bottom: auto;
  margin-top: 10px;
  border-radius: 50%;
  overflow: hidden;
}
.person .photo img {
  width: 100%;
}
.person .text {
  padding: 8px 32px 8px 0;
}
.person .fce {
  color: #9EB4D5;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-bottom: 16px;
}
.person .hl {
  font-weight: 600;
  color: #fff;
  font-size: clamp(16px, calc(13.92px + 0.76vw), 18px);
  display: block;
  margin-bottom: 8px;
}
.person .phone,
.person .email,
.person .mobile,
.person .fax {
  color: #9EB4D5;
  display: block;
  margin-bottom: 8px;
}
.person .phone strong,
.person .email strong,
.person .mobile strong,
.person .fax strong {
  font-weight: 400;
}
.person .phone strong a,
.person .email strong a,
.person .mobile strong a,
.person .fax strong a {
  text-decoration: none;
  color: #9EB4D5;
}
.person .phone strong a:hover,
.person .email strong a:hover,
.person .mobile strong a:hover,
.person .fax strong a:hover {
  text-decoration: underline;
  color: #fff;
}

.hr_position {
  margin-bottom: 16px;
  padding: 64px 0;
  box-sizing: border-box;
}
.hr_position .text {
  margin-bottom: 16px;
}
.hr_position .hl {
  font-weight: 600;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 21px);
}
.hr_position .more {
  text-decoration: underline;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.hr_position .extblock {
  display: none;
}
.hr_position .block {
  margin-bottom: 16px;
}
.hr_position ul li {
  color: #9EB4D5;
}
.hr_position .ctabut {
  display: inline-block;
}

.bcbg {
  padding: 16px 0;
  margin: auto;
}

.breadcrumbs {
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
  color: #9EB4D5;
}
.breadcrumbs a {
  text-decoration: none;
  font-weight: 500;
  color: #9EB4D5;
}
.breadcrumbs a::after {
  content: "—";
  margin: 0 8px;
}

.hpNews, .news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 64px 0;
}
@media (min-width: 768px) {
  .hpNews, .news {
    grid-template-columns: repeat(4, 1fr);
  }
}

.articleBox {
  text-decoration: none;
  display: flex;
  flex-flow: column;
}
.articleBox img {
  display: block;
}
.articleBox .texts {
  padding-top: 32px;
  text-align: left;
}
.articleBox .hl {
  display: block;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 21px);
  font-family: "Jost", sans-serif;
  margin: 0 0 32px 0;
}
.articleBox .p {
  color: #9EB4D5;
  margin-bottom: 32px;
  display: block;
}
.articleBox .btn {
  display: inline-block;
  margin: auto auto 0 0;
}
.news .articleBox {
  border: 1px solid #ccc;
}
.news .articleBox .texts {
  display: block;
  padding: 32px;
}

.imagetext {
  display: flex;
  align-items: center;
  gap: 64px;
}
.imagetext .text,
.imagetext .img {
  flex: 1 1 50%;
  width: 50%;
}
.imagetext.left .text {
  margin-left: 64px;
}
.imagetext.right .img {
  order: 2;
}
.imagetext.right .text {
  margin-right: 64px;
}
.imagetext h3 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 21px);
}
@media (max-width: 1024px) {
  .imagetext {
    align-items: center;
    flex-flow: column;
  }
  .imagetext .text,
.imagetext .img {
    flex: 1 1 100%;
    width: 100%;
  }
  .imagetext .img {
    max-width: 100%;
  }
  .imagetext.left .text {
    margin-left: 0;
  }
  .imagetext.right .img {
    order: 0;
  }
  .imagetext.right .text {
    margin-right: 0;
  }
  .imagetext img {
    width: 100%;
  }
}
.imagetext + .imagetext {
  margin-top: 96px;
}

.testimonial {
  color: #9CB1D2;
  display: block;
  padding: 0 8px;
  box-sizing: border-box;
}
.testimonial .inner {
  background: #091A34;
  padding: 32px;
}
.testimonial .author {
  display: inline-block;
  margin-top: 32px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 21px);
}
