:root {
  --primary: #1f2228;
  --secondary: #292d36;
  --accent: #29b0a4;
  --accentLight: #cae9e7
}
* {
  padding: 0;
  margin: 0;
  border: 0
}
*,
*::after,
*::before {
  box-sizing: border-box
}
*::after,
*::before {
  display: inline-block
}
body,
html {
  height: 100%;
  min-width: 320px
}
body {
  color: var(--accentLight);
  line-height: 1;
  font-family: "Montserrat Alternates",Arial,Helvetica,sans-serif;
  font-size: 1.125rem;
  line-height: 150%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
button,
input,
textarea {
  font-family: "Montserrat Alternates",Arial,Helvetica,sans-serif;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0,0,0,0)
}
input,
textarea {
  width: 100%
}
button,
option,
select {
  cursor: pointer
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none
}
ul li {
  list-style: none
}
img {
  vertical-align: top
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit
}
.lock body {
  overflow: hidden;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden
}
@supports (overflow:clip) {
  .wrapper {
    overflow: clip
  }
}
.wrapper>main {
  flex: 1 1 auto
}
.wrapper>* {
  min-width: 0
}
[class*=__container] {
  max-width: 80.625rem;
  margin: 0 auto;
  padding: 0 .9375rem
}
body::after {
  content: "";
  background-color: rgba(0,0,0,.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 149
}
.popup-show body::after {
  opacity: 1
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility .8s ease 0s;
  visibility: hidden;
  pointer-events: none
}
.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto
}
.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1)
}
.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}
.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s,-webkit-transform .3s ease 0s;
  background-color: var(--secondary);
  border: 1px solid var(--accent);
  padding: 20px;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px
}
.lock .popup__content {
  visibility: visible
}
.popup__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 15px;
  cursor: pointer;
  align-self: flex-end
}
.popup__close img {
  width: 25px;
  height: 25px
}
.popup__text {
  display: flex;
  align-self: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  max-width: 600px;
  padding-bottom: 20px
}
[data-showmore-button] span {
  font-size: 16px
}
[data-showmore-button] span:last-child {
  display: none
}
._showmore-active [data-showmore-button] span {
  display: none
}
._showmore-active [data-showmore-button] span:last-child {
  display: block
}
.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.ibg--top {
  -o-object-position: top;
  object-position: top
}
.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom
}
.ibg--left {
  -o-object-position: left;
  object-position: left
}
.ibg--right {
  -o-object-position: right;
  object-position: right
}
.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain
}
.button {
  background-color: var(--accent);
  padding: 6px 25px;
  border-radius: 10px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.25px;
  text-align: center;
  position: relative;
  transition: all .3s;
  z-index: 2
}
.button:active::after {
  width: calc(100% + 10px);
  height: calc(100% + 10px)
}
.button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(41,176,165,.197);
  top: 50%;
  right: 50%;
  z-index: -1;
  -webkit-transform: translate(50%,-50%);
  transform: translate(50%,-50%);
  border-radius: 10px;
  transition: all .2s
}
.label {
  color: var(--accentLight);
  font-size: 16px;
  line-height: 120%;
  font-weight: 400
}
.input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 100%
}
.input__main {
  overflow: hidden;
  background-color: var(--primary);
  border-radius: 5px;
  border-bottom: 1px solid var(--accentLight);
  height: 40px;
  width: 100%;
  font-size: 16px
}
.input__main p,
.input__main span {
  width: 100%;
  height: 100%;
  display: flex
}
.input__main p input,
.input__main span input {
  padding: 0 10px;
  outline: 0
}
.textarea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
  overflow: hidden
}
.textarea__main {
  background-color: var(--primary);
  border-radius: 5px;
  border-bottom: 1px solid var(--accentLight);
  height: 120px;
  width: 100%;
  font-size: 16px
}
.textarea__main p,
.textarea__main span {
  height: 100%;
  display: block
}
.textarea__main textarea {
  resize: none;
  width: 100%;
  height: 100%;
  padding: 10px;
  outline: 0
}
.textarea__main textarea::-webkit-scrollbar {
  display: none
}
.title {
  color: var(--accent);
  line-height: 120%;
  font-weight: 700
}
.subtitle {
  color: var(--accent);
  line-height: 120%;
  font-weight: 700
}
.text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #b6b6b6;
  font-size: 16px;
  line-height: 150%
}
.text h1 {
  font-weight: 600;
  padding: 5px 0;
  color: var(--accentLight);
  line-height: 120%
}
.text h1:first-child {
  padding-top: 0
}
.text h1:last-child {
  padding-bottom: 0
}
.text img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.text li,
.text ol,
.text ul {
  list-style-type: disc
}
.text ul {
  padding-left: 25px
}
.text a {
  text-decoration: underline;
  color: var(--accent)
}
.text .button {
  color: var(--primary)
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px 20px
}
.gallery>a {
  position: relative
}
.gallery>a::after {
  content: "";
  transition: all .2s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(41,176,165,.8941176471);
  opacity: 0;
  border-radius: 10px
}
.gallery>a::before {
  content: url(../img/search.svg);
  transition: all .2s;
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: 2;
  -webkit-transform: translate(50%,-50%);
  transform: translate(50%,-50%);
  opacity: 0
}
.card {
  background: var(--secondary);
  padding: 15px 20px;
  border-radius: 20px;
  border-left: 3px solid var(--accent)
}
#backToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 2;
  background-color: var(--accent);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  transition: all .1s
}
#backToTopBtn button {
  padding: 20px 10px 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center
}
#backToTopBtn img {
  width: 15px
}
.wp-video {
  max-width: 640px;
  width: 100%!important;
  border-radius: 10px;
  overflow: hidden
}
.wp-video video {
  width: 100%;
  height: 100%
}
.quote {
  padding-left: 15px;
  border-left: 2px solid var(--accent);
  font-weight: 500
}
.no-webp .blurbg {
  background-image: url(https://finape.by/wp-content/themes/finape/img/blur.png)
}
.blurbg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative
}
.blurbg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(31,34,40,.8352941176);
  z-index: 0
}
.blurbg>div {
  position: relative;
  z-index: 1
}
.lg-content {
  bottom: 47px!important
}
.header {
  background-color: var(--primary);
  padding: 10px 0;
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  box-shadow: -1px 4px 108px -25px rgba(41,176,165,.4823529412);
  transition: all .3s
}
.header._no {
  display: none
}
.header__container {
  position: relative
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}
.header__logo {
  line-height: 38px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
}
.header__logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header__logo img {
    width: 30px;
    height: 30px;
    @media(max-width: 600px) {
        display: none;
    }
}
.header__left {
  display: flex;
  align-items: center;
  gap: 40px
}
.header__left-number {
  font-size: 28px;
  font-weight: 600;
  color: var(--accentLight)
}
.header__left-number span {
  font-size: 36px;
  font-weight: 600;
  color: var(--accent)
}
.header__left-menu {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 10px;
  cursor: pointer
}
.header__left-menu svg {
  width: 30px;
  height: 30px
}
.menu-header {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 150;
  visibility: hidden;
  pointer-events: none
}
.menu-header.fixed {
  position: absolute;
  pointer-events: none!important
}
.menu-header.fixed>span {
  background-color: rgba(0,0,0,0);
  pointer-events: none
}
.menu-header.fixed>div {
  padding-left: 30px;
  max-width: 390px
}
.menu-header.fixed>div>div:first-child {
  opacity: 0;
  visibility: hidden
}
.menu-header__bg {
  position: absolute;
  background-color: rgba(0,0,0,.5);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transition: all .3s;
  opacity: 0
}
.menu-header.active {
  visibility: visible;
  pointer-events: all
}
.menu-header.active .menu-header__bg {
  opacity: 1
}
.menu-header.active .menu-header__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0)
}
.menu-header__close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: 15px;
  cursor: pointer
}
.menu-header__close img {
  width: 25px;
  height: 25px
}
.menu-header__inner {
  padding: 40px 0 0 60px;
  border-left: 2px solid var(--accent);
  background: var(--primary);
  border-radius: 20px 0 0 20px;
  margin-left: auto;
  height: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  transition: all .3s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  pointer-events: all!important
}
.menu-header__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 30px;
  overflow: auto
}
.menu-header__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  font-size: 18px
}
.menu-header__list a::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: var(--accentLight);
  transition: all .3s
}
.menu-header__footer {
  border-radius: 90px 0 0 0;
  padding: 30px;
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px
}
.menu-header__footer-place {
  max-width: 206px;
  text-align: right;
  font-size: 18px;
  line-height: 120%
}
.menu-header__footer-email {
  line-height: 120%;
  text-align: right
}
.menu-header__footer-number {
  padding: 23px 0;
  font-weight: 600;
  font-size: 28px
}
.menu-header__footer-number span {
  padding-left: 10px;
  font-size: 36px;
  color: var(--accent)
}
.menu-header__footer-button {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px
}
.footer {
  background-color: var(--primary);
  padding: 40px 0
}
.footer_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}
.footer__copy {
  text-align: center;
  line-height: 140%;
  font-size: .75rem
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 30px
}
.footer__lists {
  display: flex;
  align-items: flex-start;
  gap: 30px
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 230px
}
.footer__list ul li {
  font-size: 14px;
  line-height: 130%
}
.footer__list-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px
}
.footer__list-item {
  font-size: 14px;
  line-height: 140%
}
.footer__list-item>a {
  transition: all .3s
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}
.footer__right-logo img{
  color: var(--accent);
  font-size: 30px;
  font-weight: 600;
  width: 90px;
  height: 90px;
}
.footer__right-mail>a {
  font-size: 16px;
  transition: all .3s
}
.form__wrapper {
  display: flex;
  overflow: hidden
}
.form__image {
  flex: 0 0 40%
}
.form__image img {
  width: calc(100% + 20px);
  z-index: 1;
  position: relative;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.main-form {
  background-color: var(--primary);
  padding-top: 45px;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  position: relative
}
.main-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%
}
.main-form__wrapper>p:last-child {
  align-self: flex-start
}
.main-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: -21px;
  border: 21px solid transparent;
  border-bottom: 47px solid var(--accent);
  z-index: 2
}
.main-form__inner {
  width: 100%;
  background-color: var(--secondary);
  padding: 45px 30px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  overflow: hidden
}
.main-form__inner-decor {
  display: none;
  position: absolute;
  bottom: -20px;
  right: 0;
  height: 190px
}
.main-form__inner-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.main-form__fields {
  display: flex;
  gap: 20px;
  z-index: 3;
  position: relative;
  align-self: stretch
}
.main-form__fields-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  width: 100%
}
.main-form__fields-block:last-child {
  max-width: 400px
}
.main-form__fields-block>div {
  width: 100%
}
.screen-reader-response {
  display: none
}
.wpcf7-response-output {
  font-size: 14px;
  line-height: 16px;
  padding-top: 10px;
  letter-spacing: 1px;
  font-weight: 400
}
.wpcf7-form-control-wrap {
  position: relative
}
.wpcf7-form-control-wrap span {
  position: absolute;
  top: 6px;
  right: 10px;
  justify-content: flex-end;
  text-align: right;
  color: red;
  font-weight: 900;
  pointer-events: none
}
.wpcf7-submit {
  cursor: pointer
}
.banner {
  background: var(--secondary);
  overflow: hidden;
  height: 185px;
  display: flex;
  align-items: flex-end
}
.banner__container {
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px
}
.banner__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  z-index: 1;
  position: relative
}
.banner__breadcrumbs {
  font-size: 15px;
  font-weight: 300;
  max-width: 100%;
  overflow: auto
}
.banner__breadcrumbs::-webkit-scrollbar {
  height: 4px
}
.banner__breadcrumbs::-webkit-scrollbar-track {
  background-color: rgba(41,176,165,.1450980392)
}
.banner__breadcrumbs::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
  cursor: pointer
}
.banner__breadcrumbs ul {
  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap
}
.banner__breadcrumbs ul li:last-child::after {
  display: none
}
.banner__decor {
  position: absolute;
  right: -20px;
  bottom: -60px;
  z-index: 0
}
.banner__decor img {
  width: 300px
}
.home__action {
  display: flex;
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden
}
.home__action-logo {
  line-height: 121%;
  color: var(--accent);
  font-weight: 700;
  position: relative;
}
.home__action-logo img {
  width: 40px;
  height: 40px;
  @media (max-width: 1100px){
     display: none; 
  }
}
.home__action-menu {
  position: absolute;
  top: 85px;
  right: 100px;
  z-index: 2;
  padding: 0 10px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--accent);
  border-radius: 10px;
  cursor: pointer
}
.home__action-menu span {
  color: var(--primary);
  font-weight: 600
}
.home__action-menu svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px
}
.home__action-menu svg path {
  stroke: var(--primary)
}
.home__action-quote {
  font-size: 30px;
  line-height: 140%;
  font-style: italic;
  font-weight: 700;
  color: var(--light);
  -webkit-transform: translateY(-5vh);
  transform: translateY(-5vh)
}
.home__action-quote span {
  background-color: rgba(39,69,80,.4470588235)
}
.home__action-quote span span {
  background-color: rgba(255,0,0,.751)
}
.home__action-left {
  max-width: 1200px;
  width: 100%;
  padding: 80px 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px
}
.home__action-left>div {
  z-index: 1
}
.home__slider {
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 2!important
}
.home__slide {
  display: flex;
  align-items: center
}
.home__slide-text {
  letter-spacing: .06em;
  line-height: 140%;
  color: var(--accentLight);
  max-width: 580px
}
.home__action-right {
  flex: 1 1 auto;
  background-color: var(--secondary);
  position: relative
}
.home__action-right__text {
  color: var(--primary);
  font-size: 412px;
  line-height: 284px;
  font-weight: bolder;
  letter-spacing: -.07em;
  position: absolute;
  bottom: 0;
  left: 0
}
.home__action-right__logo {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 300px;
  height: 300px;
}
.home__action-right__logo img {
  width: 100%;
  height: 100%;
}
.home__action-right__decor {
  position: absolute;
  z-index: 1
}
.home__action-right__decor img {
  width: 150px
}
.home__action-right__triangle {
  top: 40%;
  left: 60px
}
.home__action-right__kvadrat {
  top: 30%;
  left: 330px
}
.home__action-setting {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 70%;
  right: 200px;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 300px;
  height: 300px
}
.home__action-setting>img {
  transition: all .3s
}
.home__action-setting img {
  width: 100%
}
.home__action-controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}
.home__action-controls__bullets {
  display: flex;
  align-items: center;
  gap: 10px
}
.home__action-controls__bullets span {
  width: 11px;
  height: 4px;
  background: var(--accentLight);
  border-radius: 2px;
  transition: all .3s
}
.home__action-controls__bullets span.swiper-pagination-bullet-active {
  width: 31px;
  background: var(--accent)
}
.home__action-controls__prev {
  cursor: pointer
}
.home__action-controls__next {
  cursor: pointer
}
.home__action-controls__next img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}
.home-about__container {
  display: flex;
  flex-direction: column;
  gap: 20px
}
.home-about__block {
  padding: 20px;
  gap: 15px;
  border: 1px solid var(--accentLight);
  background: rgba(31,34,40,.9176470588);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px
}
.home-about__block>a {
  font-size: 16px
}
.home-about__block-title {
  color: var(--accent);
  font-weight: 700;
  line-height: 120%
}
.home-about__block-text {
  color: var(--accentLight);
  font-weight: 300;
  line-height: 150%
}
.home-about__block-text strong {
  font-weight: 500
}
.home-about__block-columns {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap
}
.home-about__block-column {
  display: flex;
  flex-direction: column;
  max-width: 270px
}
.home-about__block-column__name {
  line-height: 120%
}
.home-about__block-column__content {
  display: flex;
  flex-direction: column;
  font-weight: 400
}
.home-about__showmore {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start
}
.home-about__block-content__fina-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px
}
.home-about__block-content__fina {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--accentLight)
}
.home-about__block-content__fina img {
  height: 50px
}
.home-about__block-wrapper {
  display: flex;
  gap: 16px;
  align-items: flex-start
}
.home-about__block-wrapper>div:first-child {
  flex: 1 1 auto
}
.home-about__block-wrapper>div:last-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 0 0 400px;
  max-width: 400px;
  height: 421px
}
.news-list {
  max-width: 800px;
  height: 100%
}
.news-list__item {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer
}
.news-list__item-image {
  min-height: 155px;
  height: 100%;
  overflow: hidden;
  border-radius: 10px
}
.news-list__item-image a {
  height: 100%;
  width: 100%
}
.news-list__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.news-list__item-title {
  font-weight: 300;
  line-height: 140%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical
}
.news-list__item-date {
  color: var(--accent)
}
.wrapper-home>header {
  position: fixed;
  background-color: rgba(0,0,0,0);
  pointer-events: none;
  top: 0;
  left: 0;
  box-shadow: none
}
.wrapper-home>header>div>div:first-child {
  -webkit-transform: translateY(-140%);
  transform: translateY(-140%);
  transition: all .3s
}
.wrapper-home>header._header-scroll {
  background-color: var(--primary);
  pointer-events: all;
  box-shadow: -1px 4px 108px -25px rgba(125,255,102,.5058823529)
}
.wrapper-home>header._header-scroll>div>div:first-child {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
.home__slider-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0
}
.home__slide-images {
  position: relative
}
.home__slide-images::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(15,26,26,.7)
}
.home__slide-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.home-projects {
  background-color: var(--primary);
  padding: 30px 0
}
.home-projects__container {
  display: flex;
  flex-direction: column
}
.projects-list__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px
}
.projects-list__item-image {
  width: 100%;
  flex: 0 0 150px;
  border-radius: 10px;
  overflow: hidden
}
.projects-list__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.projects-list__item-title {
  font-size: 1rem;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical
}
.projects-list__item-title span {
  color: var(--accent);
  margin-top: auto;
  text-decoration: underline;
  font-size: 14px;
  display: flex;
  width: 100%
}
.home__partners-controls__bullets {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: center
}
.home__partners-controls__bullets span {
  width: 11px;
  height: 4px;
  background: var(--accentLight);
  border-radius: 2px;
  transition: all .3s
}
.home__partners-controls__bullets span.swiper-pagination-bullet-active {
  width: 31px;
  background: var(--accent)
}
.about {
  background-color: var(--primary)
}
.sertificats__item {
  border-radius: 10px;
  overflow: hidden;
  min-height: 200px
}
.sertificats__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.publications__container {
  display: flex;
  flex-direction: column;
  gap: 16px
}
.item-publications {
  border-left: 3px solid var(--accentLight);
  border-radius: 20px;
  background: var(--secondary);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}
.item-publications__info {
  display: flex;
  flex-direction: column;
  gap: 5px
}
.item-publications__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  color: var(--accent)
}
.item-publications__footer {
  display: flex;
  align-items: center;
  gap: 20px
}
.item-publications__footer>div {
  font-size: 1rem
}
.item-publications__place {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical
}
.item-publications__control {
  flex: 0 0 170px
}
.contacts__container {
  display: grid;
  grid-template-areas: "info parts" "map scheme";
  grid-template-columns: 1fr 250px;
  gap: 40px 20px
}
.contacts__parts {
  display: flex;
  flex-direction: column;
  gap: 20px
}
.contacts__parts a {
  transition: all 0.3s;
}
.contacts__parts a:hover {
  color: #29b0a4;
}
.contacts__map {
  grid-area: map;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.contacts__map>div:nth-child(2) {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  max-height: 260px
}
.contacts__map>div:nth-child(2) iframe {
  width: 100%;
  height: 100%
}
.contacts__scheme {
  grid-area: scheme;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.contacts__scheme-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  height: 260px;
  display: block
}
.contacts__scheme-image>a {
  width: 100%;
  height: 100%
}
.contacts__scheme-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.info-contacts {
  grid-area: info;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border-left: 2px solid var(--accentLight);
  background: var(--secondary);
  border-radius: 15px;
  padding: 15px
}
.info-contacts__block {
  max-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 15px
}
.info-contacts__block:last-child {
  max-width: calc(100% - 290px - 290px - 30px);
}
.info-contacts__part {
  display: flex;
  flex-direction: column;
  gap: 10px
}
.info-contacts__content {
  font-size: 17px;
  font-weight: 300;
  line-height: 140%
}
.info-contacts__content p {
  padding-bottom: 10px
}
.info-contacts__content p:last-child {
  padding-bottom: 0
}
.info-contacts__content span {
  font-size: 12px;
  font-style: italic;
}
.info-contacts a {
  transition: all 0.3s;
}
.info-contacts a:hover {
  color: #29b0a4;
}
.part-contacts {
  grid-area: parts;
  border-left: 2px solid var(--accentLight);
  background: var(--secondary);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.part-contacts__content {
  font-weight: 300;
  letter-spacing: .5px
}
.error {
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  position: relative;
  overflow: hidden
}
.error__decor {
  position: absolute;
  right: -30px;
  bottom: -40px
}
.error__decor img {
  max-height: 100%
}
.error__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px
}
.error__main {
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-color: var(--accent);
  -webkit-text-stroke-width: 5px
}
.error__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px
}
.page-flex {
  display: flex
}
.page-flex>div {
  flex: 1 1 auto;
  width: 100%
}
.perspective {
  padding: 40px 0
}
.perspective__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px
}
.item-perspective {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}
.item-perspective__title a {
  font-weight: 400;
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical
}
.perspective-item {
  background: var(--primary);
  padding: 40px 0
}
.perspective-item__container {
  display: flex;
  flex-direction: column;
  gap: 20px
}
.perspective-item__pdf {
  display: flex;
  flex-direction: column;
  gap: 15px
}
.perspective-item__pdf-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 20px
}
.perspective-item__pdf-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  font-size: 16px
}
.perspective-item__gallery-image {
  border-radius: 10px;
  overflow: hidden;
  min-height: 200px
}
.perspective-item__gallery-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.catalog {
  padding: 40px 0
}
.catalog__list {
  display: flex;
  gap: 6px
}
.catalog__container {
  display: flex;
  flex-direction: column;
  gap: 20px
}
.catalog__list ul {
  width: 100%;
  flex: 1 1 auto;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: height .3s ease,opacity .3s ease
}
.catalog__list ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500
}
.catalog__list ul li a img {
  transition: all .3s
}
.catalog__list ul li a.active img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}
.catalog__list ul li a.active+ul {
  visibility: visible;
  opacity: 1
}
.catalog__list ul li ul li {
  position: relative
}
.catalog__list ul li ul li::before {
  content: url(../img/sub.svg);
  position: absolute;
  left: -25px;
  top: -60px;
  z-index: -1
}
.catalog__list>ul {
  height: auto;
  visibility: visible;
  opacity: 1
}
.catalog__list img {
  width: 26px;
  height: 26px
}
.catalog__list>ul>li>a {
  background-color: var(--secondary);
  color: var(--accentLight)
}
.catalog__list>ul>li>ul>li {
  margin-left: 50px
}
.catalog__list>ul>li>ul>li>a {
  background-color: var(--primary)
}
.catalog__list>ul>li>ul>li>ul>li {
  margin-left: 50px
}
.catalog__list>ul>li>ul>li>ul>li>a {
  background-color: var(--primary)
}
.catalog__list>ul>li>ul>li>ul>li>ul>li {
  margin-left: 50px
}
.catalog__list>ul>li>ul>li>ul>li>ul>li>a {
  background-color: var(--primary)
}
.subcatalog {
  background-color: var(--primary);
  padding: 40px 0;
  overflow: hidden
}
.subcatalog__container {
  display: flex;
  gap: 30px;
  align-items: flex-start
}
.subcatalog__main {
  flex: 1 1 auto
}
.subcatalog__main-tab {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: opacity .3s ease-in-out;
  opacity: 0;
  display: none
}
.subcatalog__main-tab.active {
  opacity: 1;
  display: flex
}
.subcatalog__main-tab__descr {
  width: 100%;
  flex: 1 1 auto
}
.subcatalog__main-tab__image {
  display: flex;
  flex-direction: column;
  flex: 0 0 200px
}
.subcatalog__main-tab__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.subcatalog__list {
  flex: 0 0 30%;
  position: relative
}
.subcatalog__list-wrapper {
  background-color: var(--secondary);
  border-right: 2px solid var(--accent);
  border-radius: 0 15px 15px 0;
  overflow: hidden
}
.subcatalog__list-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  padding-left: 0;
  max-height: calc(100vh - 325px);
  height: 100%;
  overflow: auto
}
.subcatalog__list-inner::-webkit-scrollbar {
  width: 6px
}
.subcatalog__list-inner::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0)
}
.subcatalog__list-inner::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px
}
.subcatalog__list::before {
  content: "";
  width: 1000px;
  height: 100%;
  background-color: var(--secondary);
  position: absolute;
  top: 0;
  right: 100%
}
.subcatalog__list-item {
  text-overflow: ellipsis;
  color: var(--accentLight);
  cursor: pointer;
  font-size: 16px;
  line-height: 20px
}
.subcatalog__list-item.active {
  color: var(--accent)
}
.info {
  background: var(--primary);
  padding: 40px 0
}
.info__container {
  display: flex;
  gap: 20px
}
.info__text {
  flex: 1 1 auto
}
.info__list {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  row-gap: 20px
}
.info__item {
  height: 210px;
  display: flex;
  flex-direction: column
}
.info__item img {
  flex: 1 1 auto;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.info__item-text {
  color: #b6b6b6;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  padding: 5px 0
}
.news {
  padding: 30px 0
}
.news__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}
.news__card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--accent);
  background-color: var(--secondary);
  cursor: pointer
}
.news__card a {
  width: 100%
}
.news__card-image {
  height: 200px;
  max-width: 100%
}
.news__card-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.news__card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px
}
.news__card-name {
  font-size: 1rem;
  flex: 1 1 auto
}
.news__card-name a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical
}
.news__card-date {
  color: var(--accentLight);
  font-size: 15px;
  white-space: nowrap
}
.newsItem {
  background-color: var(--primary);
  padding: 30px 0
}
.newsItem__container {
  display: flex;
  align-items: flex-start;
  gap: 20px
}
.newsItem__main {
  flex: 1 1 auto
}
.newsItem__header {
  display: flex;
  flex-direction: column;
  gap: 5px
}
.newsItem__date {
  font-size: 15px
}
.newsItem__main {
  display: flex;
  flex-direction: column;
  gap: 10px
}
.newsItem__files {
  display: flex;
  flex-direction: column;
  gap: 15px
}
.newsItem .newsItem__gallery {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column
}
.newsItem .newsItem__gallery-image {
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 120px
}
.newsItem .newsItem__gallery-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.projects__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 1.875rem
}
.item-projects {
  background-color: var(--secondary);
  padding: 10px;
  border-radius: 10px
}
.item-projects a {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.item-projects__image {
  max-width: 100%;
  width: 100%;
  height: 150px;
  border-radius: 10px;
  overflow: hidden
}
.item-projects__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.item-projects__title {
  font-size: 16px;
  line-height: 20px
}
.parent__container {
  padding-top: 30px;
  padding-bottom: 30px
}
.parent__list>ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px
}
.parent__list>ul>li>a {
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  padding: 20px;
  border-radius: 16px;
  border-left: 2px solid var(--accent);
  display: flex;
  align-items: center
}
.swiper {
  overflow: hidden
}
.swiper-initialized {
  touch-action: pan-y
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative
}
.swiper-vertical .swiper-wrapper {
  flex-direction: column
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start
}
.swiper-initialized .swiper-slide {
  flex-shrink: 0
}
.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0)
}
.swiper-button-lock {
  display: none!important
}
@font-face {
  font-family: lg;
  src: url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block
}
.lg-icon {
  font-family: lg!important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.lg-container {
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
}
.lg-next,
.lg-prev {
  background-color: rgba(0,0,0,.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: 0;
  border: none
}
.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0!important;
  cursor: default
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none
}
.lg-next {
  right: 20px
}
.lg-next:before {
  content: ""
}
.lg-prev {
  left: 20px
}
.lg-prev:after {
  content: ""
}
@-webkit-keyframes lg-right-end {
  0% {
    left: 0
  }
  50% {
    left: -30px
  }
  100% {
    left: 0
  }
}
@keyframes lg-right-end {
  0% {
    left: 0
  }
  50% {
    left: -30px
  }
  100% {
    left: 0
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0
  }
  50% {
    left: 30px
  }
  100% {
    left: 0
  }
}
@keyframes lg-left-end {
  0% {
    left: 0
  }
  50% {
    left: 30px
  }
  100% {
    left: 0
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end .3s;
  animation: lg-right-end .3s;
  position: relative
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end .3s;
  animation: lg-left-end .3s;
  position: relative
}
.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}
.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.4))
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none!important;
  outline: medium none;
  will-change: color;
  transition: color .2s linear;
  background: 0 0;
  border: none;
  box-shadow: none
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px
}
.lg-toolbar .lg-icon:hover {
  color: #fff
}
.lg-toolbar .lg-close:after {
  content: ""
}
.lg-toolbar .lg-maximize {
  font-size: 22px
}
.lg-toolbar .lg-maximize:after {
  content: ""
}
.lg-toolbar .lg-download:after {
  content: ""
}
.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  transition: opacity .2s ease-out 0s
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0
}
.lg-sub-html a {
  color: inherit
}
.lg-sub-html a:hover {
  text-decoration: underline
}
.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.6))
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0
}
.lg-error-msg {
  font-size: 14px;
  color: #999
}
.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle
}
.lg-closing .lg-next,
.lg-closing .lg-prev,
.lg-closing .lg-sub-html,
.lg-closing .lg-toolbar {
  opacity: 0;
  transition: opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear,-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s;
  transition: transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;
  transition: transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear,-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -webkit-transform: scale3d(.5,.5,.5);
  transform: scale3d(.5,.5,.5);
  will-change: transform,opacity;
  transition: opacity 250ms cubic-bezier(0,0,.25,1),-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s!important;
  transition: transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;
  transition: transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1),-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s!important
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -webkit-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1)
}
.lg-group:after {
  content: "";
  display: table;
  clear: both
}
.lg-container {
  display: none;
  outline: 0
}
.lg-container.lg-show {
  display: block
}
.lg-on {
  scroll-behavior: unset
}
.lg-hide-sub-html .lg-sub-html,
.lg-next,
.lg-pager-outer,
.lg-prev,
.lg-toolbar {
  opacity: 0;
  will-change: transform,opacity;
  transition: opacity .25s cubic-bezier(0,0,.25,1) 0s,-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;
  transition: transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;
  transition: transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s,-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s
}
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer,
.lg-show-in .lg-prev,
.lg-show-in .lg-toolbar {
  opacity: 1
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px,0,0);
  transform: translate3d(-10px,0,0)
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px,0,0);
  transform: translate3d(10px,0,0)
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0,-10px,0);
  transform: translate3d(0,-10px,0)
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0,20px,0);
  transform: translate3d(0,20px,0)
}
.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: .001;
  outline: 0;
  will-change: auto;
  overflow: hidden;
  transition: opacity .15s ease 0s
}
.lg-outer * {
  box-sizing: border-box
}
.lg-outer.lg-zoom-from-image {
  opacity: 1
}
.lg-outer.lg-visible {
  opacity: 1
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide {
  transition-duration: inherit!important;
  transition-timing-function: inherit!important
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
  transition-duration: 0s!important;
  opacity: 1
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0s;
  white-space: nowrap
}
.lg-outer .lg-item {
  will-change: transform,opacity;
  display: none!important
}
.no-webp .lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url(data:image/gif;base64,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) no-repeat scroll center center rgba(0,0,0,0)
}
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide,
.lg-outer.lg-css3 .lg-prev-slide {
  display: inline-block!important
}
.lg-outer.lg-css .lg-current {
  display: inline-block!important
}
.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%
}
.lg-outer .lg-img-wrap:before,
.lg-outer .lg-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle
}
.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0
}
.lg-outer .lg-item.lg-complete {
  background-image: none
}
.lg-outer .lg-item.lg-current {
  z-index: 1060
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative
}
.lg-outer .lg-empty-html .lg-sub-html,
.lg-outer .lg-empty-html.lg-sub-html {
  display: none
}
.lg-outer.lg-hide-download .lg-download {
  opacity: .75;
  pointer-events: none
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  opacity: 1
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity .2s ease-out .15s
}
.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: rgba(0,0,0,.831372549);
  opacity: 0;
  will-change: auto;
  transition: opacity 333ms ease-in 0s
}
.lg-backdrop.in {
  opacity: 1
}
.lg-css3.lg-no-trans .lg-current,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-prev-slide {
  transition: none 0s ease 0s!important
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.lg-css3.lg-fade .lg-item {
  opacity: 0
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1
}
.lg-css3.lg-fade .lg-item.lg-current,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-prev-slide {
  transition: opacity .1s ease 0s
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  transition: -webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;
  transition: transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;
  transition: transform 1s cubic-bezier(.175,.885,.32,1.275) 0s,-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  transition: -webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;
  transition: transform 1s cubic-bezier(0,0,.25,1) 0s;
  transition: transform 1s cubic-bezier(0,0,.25,1) 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%,0,0);
  transform: translate3d(-100%,0,0)
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0)
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  opacity: 1
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  transition: opacity .1s ease 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;
  transition: transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;
  transition: transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s
}
.lg-container {
  display: none
}
.lg-container.lg-show {
  display: block
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  transition-duration: 0s!important
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  transition-duration: 0s!important;
  opacity: 1
}
.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute
}
.lg-inline .lg-backdrop {
  z-index: 1
}
.lg-inline .lg-outer {
  z-index: 2
}
.lg-inline .lg-maximize:after {
  content: ""
}
.lg-components {
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
  will-change: transform;
  transition: -webkit-transform .35s ease-out 0s;
  transition: transform .35s ease-out 0s;
  transition: transform .35s ease-out 0s,-webkit-transform .35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0
}
.video-page{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.video-page .wp-video{
    max-height: 400px;
}
.video-page-3{
    grid-template-columns: 1fr 1fr 1fr;
}
.video-page-4{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media(max-width: 1100px) {
    .video-page-4{
        grid-template-columns: 1fr 1fr 1fr!important;
    }
}
@media(max-width: 700px) {
    .video-page{
        grid-template-columns: 1fr 1fr!important;
    }
}
@media(max-width: 400px) {
    .video-page{
        grid-template-columns: 1fr!important;
    }
}
@media (min-width:80.625em) {
  .title {
    font-size: 1.875rem
  }
  .subtitle {
    font-size: 1.25rem
  }
  .text h1 {
    font-size: 1.75rem
  }
  .header__logo {
    font-size: 2.125rem
  }
  .menu-header__footer-email {
    font-size: 1.1875rem
  }
  .home__action-logo {
    font-size: 2.25rem
  }
  .home__slide-text {
    font-size: 2.125rem
  }
  .home-about__container {
    padding-top: 2.5rem
  }
  .home-about__container {
    padding-bottom: 2.5rem
  }
  .home-about__block-title {
    font-size: 1.625rem
  }
  .home-about__block-text {
    font-size: 1.25rem
  }
  .home-about__block-descr {
    font-size: 1rem
  }
  .home-about__block-columns {
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem
  }
  .home-about__block-columns {
    row-gap: 1.5625rem
  }
  .home-about__block-column {
    gap: .9375rem
  }
  .home-about__block-column__name {
    font-size: 1.25rem
  }
  .home-about__block-column__content {
    gap: .375rem
  }
  .home-about__block-column__content {
    font-size: 1.125rem
  }
  .home-about__block-content__fina {
    font-size: 1.375rem
  }
  .home-about__block-content__fina-descr {
    font-size: 1rem
  }
  .news-list__item-title {
    font-size: 1rem
  }
  .news-list__item-date {
    font-size: 1rem
  }
  .home-projects__container {
    gap: 1.25rem
  }
  .about__container {
    padding-top: 1.875rem
  }
  .about__container {
    padding-bottom: 1.875rem
  }
  .sertificats__container {
    padding-top: 1.875rem
  }
  .sertificats__container {
    padding-bottom: 1.875rem
  }
  .publications__container {
    padding-top: 1.875rem
  }
  .publications__container {
    padding-bottom: 1.875rem
  }
  .item-publications__title {
    font-size: 1.125rem
  }
  .contacts__container {
    padding-top: 1.875rem
  }
  .contacts__container {
    padding-bottom: 1.875rem
  }
  .info-contacts {
    gap: 1.875rem
  }
  .error__decor {
    height: 21.875rem
  }
  .error__main {
    line-height: 15rem
  }
  .error__main {
    font-size: 12.5rem
  }
}
@media (max-width:90em) {
  .home__action-setting {
    right: 0
  }
}
@media (max-width:80em) {
  .home__action-menu {
    right: 40px;
    top: 65px
  }
  .home__action-quote {
    display: none
  }
  .home__action-left {
    max-width: 100%!important;
    padding: 60px 40px
  }
  .home__slider {
    max-width: 600px
  }
  .home__action-right__decor img {
    width: 120px
  }
  .home__action-right__triangle {
    left: auto;
    right: 80px;
    top: 15%
  }
  .home__action-right__kvadrat {
    right: 30px;
    left: auto;
    top: auto;
    bottom: 15%
  }
  .home__action-setting {
    width: 200px;
    height: 200px;
    top: 50%
  }
  .home__action-controls {
    max-width: 600px;
    justify-content: space-between
  }
}
@media (max-width:50em) {
  .item-publications__title {
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical
  }
}
@media (max-width:48em) {
  .banner__decor {
    -webkit-transform: scale(1,-1);
    transform: scale(1,-1);
    top: -145px;
    bottom: auto
  }
  .home__action-menu {
    right: 20px;
    top: 30px
  }
  .home__action {
    min-height: 450px
  }
  .home__action-left {
    padding: 30px 20px
  }
  .home__slider {
    max-width: 100%
  }
  .home__action-right__decor img {
    width: 70px
  }
  .home__action-right__triangle {
    top: 20%;
    right: 220px
  }
  .home__action-right__kvadrat {
    bottom: 20%
  }
  .home__action-setting {
    display: none
  }
  .home__action-controls {
    max-width: 100%
  }
}
@media (max-width:20em) {
  .title {
    font-size: 1.5rem
  }
  .subtitle {
    font-size: 1.125rem
  }
  .text h1 {
    font-size: 1.375rem
  }
  .header__logo {
    font-size: 1.25rem
  }
  .menu-header__footer-email {
    font-size: .875rem
  }
  .home__action-logo {
    font-size: 1.125rem
  }
  .home__slide-text {
    font-size: 1.25rem
  }
  .home-about__container {
    padding-top: 1.25rem
  }
  .home-about__container {
    padding-bottom: 1.25rem
  }
  .home-about__block-title {
    font-size: 1.5rem
  }
  .home-about__block-text {
    font-size: .875rem
  }
  .home-about__block-descr {
    font-size: .875rem
  }
  .home-about__block-columns {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
  }
  .home-about__block-columns {
    row-gap: .9375rem
  }
  .home-about__block-column {
    gap: .3125rem
  }
  .home-about__block-column__name {
    font-size: 1rem
  }
  .home-about__block-column__content {
    gap: .1875rem
  }
  .home-about__block-column__content {
    font-size: 1rem
  }
  .home-about__block-content__fina {
    font-size: 1.125rem
  }
  .home-about__block-content__fina-descr {
    font-size: .875rem
  }
  .news-list__item-title {
    font-size: .875rem
  }
  .news-list__item-date {
    font-size: .875rem
  }
  .home-projects__container {
    gap: .625rem
  }
  .about__container {
    padding-top: 1.25rem
  }
  .about__container {
    padding-bottom: 1.25rem
  }
  .sertificats__container {
    padding-top: 1.25rem
  }
  .sertificats__container {
    padding-bottom: 1.25rem
  }
  .publications__container {
    padding-top: 1.25rem
  }
  .publications__container {
    padding-bottom: 1.25rem
  }
  .item-publications__title {
    font-size: 1rem
  }
  .contacts__container {
    padding-top: 1.25rem
  }
  .contacts__container {
    padding-bottom: 1.25rem
  }
  .info-contacts {
    gap: 1.25rem
  }
  .error__decor {
    height: 9.375rem
  }
  .error__main {
    line-height: 10rem
  }
  .error__main {
    font-size: 8.75rem
  }
}
@media (max-width:108.125em) {
  .home__action-left {
    max-width: 900px
  }
  .home__action-setting {
    right: 100px
  }
}
@media (max-width:96.875em) {
  .home__action-right__triangle {
    top: 30%
  }
  .home__action-right__kvadrat {
    top: 40%
  }
}
@media (max-width:93.75em)and (max-width:20em) {
  .home__slide-text {
    font-size: 1.375rem
  }
}
@media (max-width:93.75em) {
  .home__action-controls {
    justify-content: flex-start;
    gap: 80px
  }
}
@media (max-width:73.75em) {
  .form__image {
    display: none
  }
  .main-form::before {
    top: 11px;
    left: 13px;
    z-index: 3;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
  }
  .main-form__inner-decor {
    display: block
  }
  .parent__list>ul {
    grid-template-columns: 1fr 1fr 1fr
  }
}
@media (max-width:71.875em) {
  .home-about__block-wrapper {
    flex-direction: column
  }
  .home-about__block-wrapper>div:last-child {
    max-width: 100%;
    flex: auto;
    height: auto;
    display: none
  }
  .news-list__item-image {
    min-height: auto;
    height: auto;
    max-height: 150px
  }
}
@media (max-width:68.75em) {
  .contacts__container {
    grid-template-columns: 1fr 200px;
    grid-template-areas: "info info" "parts parts" "map scheme";
    gap: 20px
  }
  .contacts__parts {
    flex-direction: row
  }
}
@media (max-width:61.9375em) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr
  }
  .home__action-setting {
    top: calc(50% - 100px);
    right: -100px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 1
  }
  .subcatalog__main-tab {
    flex-direction: column
  }
  .subcatalog__main-tab__image {
    flex: auto
  }
  .projects__container {
    grid-template-columns: 1fr 1fr
  }
}
@media (max-width:56.25em) {
  .newsItem__container {
    flex-direction: column
  }
  .newsItem .newsItem__gallery {
    flex-direction: row;
    display: grid
  }
  .newsItem .newsItem__gallery-image {
    flex: 0 0 200px
  }
}
@media (max-width:55.625em) {
  .subcatalog__container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch
  }
  .subcatalog__list-wrapper {
    border-radius: 15px
  }
  .subcatalog__list-inner {
    max-height: 300px;
    padding: 10px;
    padding-left: 10px
  }
  .subcatalog__list {
    border-radius: 15px
  }
  .subcatalog__list::before {
    display: none
  }
  .info__container {
    flex-direction: column
  }
  .info__list {
    display: grid
  }
  .info__item {
    height: 140px
  }
}
@media (max-width:55.5em) {
  .news__list {
    grid-template-columns: 1fr
  }
}
@media (max-width:51.25em) {
  .header__left-number {
    display: none
  }
}
@media (max-width:51.875em) {
  .parent__list>ul {
    grid-template-columns: 1fr 1fr
  }
}
@media (max-width:43.125em) {
  .parent__list>ul {
    grid-template-columns: 1fr
  }
}
@media (max-width:42.5em) {
  .popup {
    padding: 0
  }
  .popup_show .popup__content {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  .popup__wrapper {
    justify-content: flex-end
  }
  .popup__content {
    border-radius: 20px 20px 0 0;
    border: none;
    border-top: 1px solid var(--accent);
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }
  .popup__text {
    align-self: stretch
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 15px
  }
  .gallery>a {
    min-height: 150px
  }
  .menu-header__close {
    align-self: flex-end;
    margin-right: 15px
  }
  .menu-header__inner {
    max-width: 100%;
    border-radius: 0;
    border-left: none
  }
  .menu-header__list a::before {
    width: 10px
  }
  .main-form__inner>div {
    width: 100%
  }
  .main-form__fields {
    flex-direction: column;
    width: 100%
  }
  .main-form__fields-block {
    flex: auto;
    max-width: 100%!important
  }
  .item-publications {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start
  }
  .item-publications__control {
    flex: auto;
    width: 100%
  }
  .item-publications__control>a {
    width: 100%
  }
  .contacts__container {
    grid-template-columns: 1fr;
    grid-template-areas: "info" "parts" "map" "scheme"
  }
  .contacts__parts {
    flex-wrap: wrap
  }
  .contacts__scheme-image {
    height: 200px
  }
  .part-contacts {
    flex: 1 1 auto
  }
}
@media (max-width:41.25em) {
  .card {
    padding: 8px 10px
  }
  .footer__lists {
    flex-direction: column;
    align-items: center;
    gap: 30px
  }
}
@media (max-width:37.5em) {
  .home__action-menu {
    right: 20px;
    top: 22px
  }
  .projects__container {
    grid-template-columns: 1fr
  }
}
@media (max-width:34.375em) {
  .menu-header__inner {
    padding-left: 20px
  }
}
@media (max-width:30.625em) {
  .button.w100 {
    width: 100%
  }
  .text {
    font-size: 16px;
    line-height: 140%
  }
  #backToTopBtn button {
    padding: 10px 6px 10px 10px
  }
  .menu-header__close {
    position: absolute
  }
  .menu-header__footer-number {
    font-size: 22px;
    padding: 15px 0
  }
  .menu-header__footer-number span {
    font-size: 32px
  }
  .footer_inner {
    flex-direction: column;
    align-items: center;
    gap: 30px
  }
  .footer__list-title {
    align-items: center;
    text-align: center
  }
  .footer__list-main {
    align-items: center;
    text-align: center
  }
  .main-form__wrapper>p:last-child {
    align-self: stretch
  }
  .main-form__inner-decor img {
    opacity: .5
  }
  .home__action {
    height: auto
  }
  .home__action-menu span {
    display: none
  }
  .home__action-menu {
    width: 40px
  }
  .home__action-right__decor {
    display: none
  }
  .home__action-controls__prev {
    width: 40px
  }
  .home__action-controls__prev img {
    width: 100%
  }
  .home__action-controls__next {
    width: 40px
  }
  .home__action-controls__next img {
    width: 100%
  }
  .home-about__block {
    padding: 15px
  }
  .home-about__block-wrapper>div:last-child {
    display: flex
  }
  .error {
    padding: 80px 0
  }
  .item-perspective {
    flex-direction: column;
    align-items: flex-start
  }
  .perspective-item__pdf-card {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 10px
  }
}
@media (min-width:20em)and (max-width:80.625em) {
  @supports (font-size:clamp(1.5rem ,1.3762886598rem + 0.618556701vw ,1.875rem)) {
    .title {
      font-size: clamp(1.5rem ,1.3762886598rem + .618556701vw ,1.875rem)
    }
  }
  @supports not (font-size:clamp(1.5rem ,1.3762886598rem + 0.618556701vw ,1.875rem)) {
    .title {
      font-size: calc(1.5rem + .375*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1.125rem ,1.0837628866rem + 0.206185567vw ,1.25rem)) {
    .subtitle {
      font-size: clamp(1.125rem ,1.0837628866rem + .206185567vw ,1.25rem)
    }
  }
  @supports not (font-size:clamp(1.125rem ,1.0837628866rem + 0.206185567vw ,1.25rem)) {
    .subtitle {
      font-size: calc(1.125rem + .125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1.375rem ,1.2512886598rem + 0.618556701vw ,1.75rem)) {
    .text h1 {
      font-size: clamp(1.375rem ,1.2512886598rem + .618556701vw ,1.75rem)
    }
  }
  @supports not (font-size:clamp(1.375rem ,1.2512886598rem + 0.618556701vw ,1.75rem)) {
    .text h1 {
      font-size: calc(1.375rem + .375*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1.25rem ,0.9613402062rem + 1.4432989691vw ,2.125rem)) {
    .header__logo {
      font-size: clamp(1.25rem ,.9613402062rem + 1.4432989691vw ,2.125rem)
    }
  }
  @supports not (font-size:clamp(1.25rem ,0.9613402062rem + 1.4432989691vw ,2.125rem)) {
    .header__logo {
      font-size: calc(1.25rem + .875*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(0.875rem ,0.7719072165rem + 0.5154639175vw ,1.1875rem)) {
    .menu-header__footer-email {
      font-size: clamp(.875rem ,.7719072165rem + .5154639175vw ,1.1875rem)
    }
  }
  @supports not (font-size:clamp(0.875rem ,0.7719072165rem + 0.5154639175vw ,1.1875rem)) {
    .menu-header__footer-email {
      font-size: calc(.875rem + .3125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1.125rem ,0.7538659794rem + 1.8556701031vw ,2.25rem)) {
    .home__action-logo {
      font-size: clamp(1.125rem ,.7538659794rem + 1.8556701031vw ,2.25rem)
    }
  }
  @supports not (font-size:clamp(1.125rem ,0.7538659794rem + 1.8556701031vw ,2.25rem)) {
    .home__action-logo {
      font-size: calc(1.125rem + 1.125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1.25rem ,0.9613402062rem + 1.4432989691vw ,2.125rem)) {
    .home__slide-text {
      font-size: clamp(1.25rem ,.9613402062rem + 1.4432989691vw ,2.125rem)
    }
  }
  @supports not (font-size:clamp(1.25rem ,0.9613402062rem + 1.4432989691vw ,2.125rem)) {
    .home__slide-text {
      font-size: calc(1.25rem + .875*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-top:clamp(1.25rem ,0.837628866rem + 2.0618556701vw ,2.5rem)) {
    .home-about__container {
      padding-top: clamp(1.25rem ,.837628866rem + 2.0618556701vw ,2.5rem)
    }
  }
  @supports not (padding-top:clamp(1.25rem ,0.837628866rem + 2.0618556701vw ,2.5rem)) {
    .home-about__container {
      padding-top: calc(1.25rem + 1.25*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-bottom:clamp(1.25rem ,0.837628866rem + 2.0618556701vw ,2.5rem)) {
    .home-about__container {
      padding-bottom: clamp(1.25rem ,.837628866rem + 2.0618556701vw ,2.5rem)
    }
  }
  @supports not (padding-bottom:clamp(1.25rem ,0.837628866rem + 2.0618556701vw ,2.5rem)) {
    .home-about__container {
      padding-bottom: calc(1.25rem + 1.25*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1.5rem ,1.4587628866rem + 0.206185567vw ,1.625rem)) {
    .home-about__block-title {
      font-size: clamp(1.5rem ,1.4587628866rem + .206185567vw ,1.625rem)
    }
  }
  @supports not (font-size:clamp(1.5rem ,1.4587628866rem + 0.206185567vw ,1.625rem)) {
    .home-about__block-title {
      font-size: calc(1.5rem + .125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(0.875rem ,0.7512886598rem + 0.618556701vw ,1.25rem)) {
    .home-about__block-text {
      font-size: clamp(.875rem ,.7512886598rem + .618556701vw ,1.25rem)
    }
  }
  @supports not (font-size:clamp(0.875rem ,0.7512886598rem + 0.618556701vw ,1.25rem)) {
    .home-about__block-text {
      font-size: calc(.875rem + .375*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(0.875rem ,0.8337628866rem + 0.206185567vw ,1rem)) {
    .home-about__block-descr {
      font-size: clamp(.875rem ,.8337628866rem + .206185567vw ,1rem)
    }
  }
  @supports not (font-size:clamp(0.875rem ,0.8337628866rem + 0.206185567vw ,1rem)) {
    .home-about__block-descr {
      font-size: calc(.875rem + .125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports ((-moz-column-gap:clamp(1.25rem ,0.631443299rem + 3.0927835052vw ,3.125rem)) or (column-gap:clamp(1.25rem ,0.631443299rem + 3.0927835052vw ,3.125rem))) {
    .home-about__block-columns {
      -webkit-column-gap: clamp(1.25rem ,.631443299rem + 3.0927835052vw ,3.125rem);
      -moz-column-gap: clamp(1.25rem ,.631443299rem + 3.0927835052vw ,3.125rem);
      column-gap: clamp(1.25rem ,.631443299rem + 3.0927835052vw ,3.125rem)
    }
  }
  @supports not ((-moz-column-gap:clamp(1.25rem ,0.631443299rem + 3.0927835052vw ,3.125rem)) or (column-gap:clamp(1.25rem ,0.631443299rem + 3.0927835052vw ,3.125rem))) {
    .home-about__block-columns {
      -webkit-column-gap: calc(1.25rem + 1.875*(100vw - 20rem)/ 60.625);
      -moz-column-gap: calc(1.25rem + 1.875*(100vw - 20rem)/ 60.625);
      column-gap: calc(1.25rem + 1.875*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (row-gap:clamp(0.9375rem ,0.731314433rem + 1.0309278351vw ,1.5625rem)) {
    .home-about__block-columns {
      row-gap: clamp(.9375rem ,.731314433rem + 1.0309278351vw ,1.5625rem)
    }
  }
  @supports not (row-gap:clamp(0.9375rem ,0.731314433rem + 1.0309278351vw ,1.5625rem)) {
    .home-about__block-columns {
      row-gap: calc(.9375rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (gap:clamp(0.3125rem ,0.106314433rem + 1.0309278351vw ,0.9375rem)) {
    .home-about__block-column {
      gap: clamp(.3125rem ,.106314433rem + 1.0309278351vw ,.9375rem)
    }
  }
  @supports not (gap:clamp(0.3125rem ,0.106314433rem + 1.0309278351vw ,0.9375rem)) {
    .home-about__block-column {
      gap: calc(.3125rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1rem ,0.9175257732rem + 0.412371134vw ,1.25rem)) {
    .home-about__block-column__name {
      font-size: clamp(1rem ,.9175257732rem + .412371134vw ,1.25rem)
    }
  }
  @supports not (font-size:clamp(1rem ,0.9175257732rem + 0.412371134vw ,1.25rem)) {
    .home-about__block-column__name {
      font-size: calc(1rem + .25*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (gap:clamp(0.1875rem ,0.1256443299rem + 0.3092783505vw ,0.375rem)) {
    .home-about__block-column__content {
      gap: clamp(.1875rem ,.1256443299rem + .3092783505vw ,.375rem)
    }
  }
  @supports not (gap:clamp(0.1875rem ,0.1256443299rem + 0.3092783505vw ,0.375rem)) {
    .home-about__block-column__content {
      gap: calc(.1875rem + .1875*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1rem ,0.9587628866rem + 0.206185567vw ,1.125rem)) {
    .home-about__block-column__content {
      font-size: clamp(1rem ,.9587628866rem + .206185567vw ,1.125rem)
    }
  }
  @supports not (font-size:clamp(1rem ,0.9587628866rem + 0.206185567vw ,1.125rem)) {
    .home-about__block-column__content {
      font-size: calc(1rem + .125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1.125rem ,1.0425257732rem + 0.412371134vw ,1.375rem)) {
    .home-about__block-content__fina {
      font-size: clamp(1.125rem ,1.0425257732rem + .412371134vw ,1.375rem)
    }
  }
  @supports not (font-size:clamp(1.125rem ,1.0425257732rem + 0.412371134vw ,1.375rem)) {
    .home-about__block-content__fina {
      font-size: calc(1.125rem + .25*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(0.875rem ,0.8337628866rem + 0.206185567vw ,1rem)) {
    .home-about__block-content__fina-descr {
      font-size: clamp(.875rem ,.8337628866rem + .206185567vw ,1rem)
    }
  }
  @supports not (font-size:clamp(0.875rem ,0.8337628866rem + 0.206185567vw ,1rem)) {
    .home-about__block-content__fina-descr {
      font-size: calc(.875rem + .125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(0.875rem ,0.8337628866rem + 0.206185567vw ,1rem)) {
    .news-list__item-title {
      font-size: clamp(.875rem ,.8337628866rem + .206185567vw ,1rem)
    }
  }
  @supports not (font-size:clamp(0.875rem ,0.8337628866rem + 0.206185567vw ,1rem)) {
    .news-list__item-title {
      font-size: calc(.875rem + .125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(0.875rem ,0.8337628866rem + 0.206185567vw ,1rem)) {
    .news-list__item-date {
      font-size: clamp(.875rem ,.8337628866rem + .206185567vw ,1rem)
    }
  }
  @supports not (font-size:clamp(0.875rem ,0.8337628866rem + 0.206185567vw ,1rem)) {
    .news-list__item-date {
      font-size: calc(.875rem + .125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (gap:clamp(0.625rem ,0.418814433rem + 1.0309278351vw ,1.25rem)) {
    .home-projects__container {
      gap: clamp(.625rem ,.418814433rem + 1.0309278351vw ,1.25rem)
    }
  }
  @supports not (gap:clamp(0.625rem ,0.418814433rem + 1.0309278351vw ,1.25rem)) {
    .home-projects__container {
      gap: calc(.625rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-top:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .about__container {
      padding-top: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (padding-top:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .about__container {
      padding-top: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-bottom:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .about__container {
      padding-bottom: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (padding-bottom:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .about__container {
      padding-bottom: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-top:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .sertificats__container {
      padding-top: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (padding-top:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .sertificats__container {
      padding-top: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-bottom:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .sertificats__container {
      padding-bottom: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (padding-bottom:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .sertificats__container {
      padding-bottom: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-top:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .publications__container {
      padding-top: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (padding-top:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .publications__container {
      padding-top: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-bottom:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .publications__container {
      padding-bottom: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (padding-bottom:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .publications__container {
      padding-bottom: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(1rem ,0.9587628866rem + 0.206185567vw ,1.125rem)) {
    .item-publications__title {
      font-size: clamp(1rem ,.9587628866rem + .206185567vw ,1.125rem)
    }
  }
  @supports not (font-size:clamp(1rem ,0.9587628866rem + 0.206185567vw ,1.125rem)) {
    .item-publications__title {
      font-size: calc(1rem + .125*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-top:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .contacts__container {
      padding-top: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (padding-top:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .contacts__container {
      padding-top: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (padding-bottom:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .contacts__container {
      padding-bottom: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (padding-bottom:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .contacts__container {
      padding-bottom: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (gap:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .info-contacts {
      gap: clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)
    }
  }
  @supports not (gap:clamp(1.25rem ,1.043814433rem + 1.0309278351vw ,1.875rem)) {
    .info-contacts {
      gap: calc(1.25rem + .625*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (height:clamp(9.375rem ,5.2512886598rem + 20.618556701vw ,21.875rem)) {
    .error__decor {
      height: clamp(9.375rem ,5.2512886598rem + 20.618556701vw ,21.875rem)
    }
  }
  @supports not (height:clamp(9.375rem ,5.2512886598rem + 20.618556701vw ,21.875rem)) {
    .error__decor {
      height: calc(9.375rem + 12.5*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (line-height:clamp(10rem ,8.3505154639rem + 8.2474226804vw ,15rem)) {
    .error__main {
      line-height: clamp(10rem ,8.3505154639rem + 8.2474226804vw ,15rem)
    }
  }
  @supports not (line-height:clamp(10rem ,8.3505154639rem + 8.2474226804vw ,15rem)) {
    .error__main {
      line-height: calc(10rem + 5*(100vw - 20rem)/ 60.625)
    }
  }
  @supports (font-size:clamp(8.75rem ,7.5128865979rem + 6.1855670103vw ,12.5rem)) {
    .error__main {
      font-size: clamp(8.75rem ,7.5128865979rem + 6.1855670103vw ,12.5rem)
    }
  }
  @supports not (font-size:clamp(8.75rem ,7.5128865979rem + 6.1855670103vw ,12.5rem)) {
    .error__main {
      font-size: calc(8.75rem + 3.75*(100vw - 20rem)/ 60.625)
    }
  }
}
@media (max-width:93.75em)and (min-width:80.625em) {
  .home__slide-text {
    font-size: 2.875rem
  }
}
@media (max-width:93.75em)and (min-width:20em)and (max-width:80.625em) {
  @supports (font-size:clamp(1.375rem ,0.8801546392rem + 2.4742268041vw ,2.875rem)) {
    .home__slide-text {
      font-size: clamp(1.375rem ,.8801546392rem + 2.4742268041vw ,2.875rem)
    }
  }
  @supports not (font-size:clamp(1.375rem ,0.8801546392rem + 2.4742268041vw ,2.875rem)) {
    .home__slide-text {
      font-size: calc(1.375rem + 1.5*(100vw - 20rem)/ 60.625)
    }
  }
}
@media (any-hover:hover) {
  .gallery>a:hover::after,
  .gallery>a:hover::before {
    opacity: 1
  }
  .menu-header__list a:hover {
    color: var(--accent)
  }
  .menu-header__list a:hover::before {
    width: 20px;
    background-color: var(--accent)
  }
  .footer__list-item>a:hover {
    color: var(--accent)
  }
  .footer__right-mail>a:hover {
    color: var(--accent)
  }
}
.webp .blurbg {
  background-image: url(https://finape.by/wp-content/themes/finape/img/blur.webp)
}
.webp .lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url(data:image/webp;base64,UklGRs4AAABXRUJQVlA4IMIAAACwBQCdASogACAAPpFCnEolo6KhqAgAsBIJaQAD5dDxrXM99232GfVDjLF0EQDwsC0CXKtWlgAA/vV76pcYbjjsL88+3qb/4UfhRX+dwASYANdOF+J5Nu61NxB7TUbHeCQeee2d4nX3M/8oPzSbTnBOl/xCNiQkRhkYBtGvv3/fXfn2CbNj/EPmnHMb/H7zFQx28TJK5yXYt1B6zlKYbIeBfYPo1h1tsfJDbPjNrzTs7O1elyh7eF4fdYd8hFly7AAAAA==) no-repeat scroll center center rgba(0,0,0,0)
}