@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap");
:root {
  --main-bg-color: #E5E5E5;
  --white-bg-color: #FFFFFF;
  --dark-bg-color: #03121B;
  --color-font-dark: #2C2D2E;
  --color-font-white: #ffffff;
  --link: #0096C7;
  --green: #19B36E;
  --blue-dark: #245576;
  --blue-dark-other: #002239;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font: 500 15px/20px "Montserrat", sans-serif;
  color: var(--color-font-dark);
  min-height: 100vh;
  min-width: 300px;
  background: var(--main-bg-color);
  overflow-x: hidden;
}

body.open-menu {
  overflow: hidden;
}

body.open-menu section, body.open-menu header, body.open-menu fotoer {
  -webkit-filter: blur(4px);
  filter: blur(4px);
}

body.scroll header .header__bar {
  background: #03253A;
  padding-top: 15px;
  padding-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--link);
}

.bootstrap-wrapper .container-fluid {
  max-width: 1440px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.bootstrap-wrapper .container-fluid.full {
  max-width: 1790px;
}

.bootstrap-wrapper .container-fluid .row {
  height: 100%;
}

.justify-space {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.line__top {
  border-top: 1px solid var(--other-line);
}

.line__bottom {
  border-bottom: 1px solid var(--other-line);
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.img-float-right {
  float: right;
  width: 40%;
  height: auto;
}

.img-float-left {
  float: left;
  width: 40%;
  height: auto;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.btn {
  height: 56px;
  width: 305px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-font-dark);
  background: var(--white-bg-color);
  border-radius: 8px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  border: none;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--green);
  color: var(--color-font-white);
}

.btn--green {
  background: var(--green);
  color: var(--color-font-white);
}

.btn-catalog {
  width: 200px;
}

.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  margin-bottom: 60px;
}

.breadcrumbs .breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs .breadcrumbs__item::after {
  content: "/";
  margin: 0 8px;
}

.breadcrumbs .breadcrumbs__link {
  color: var(--general-gray);
}

.breadcrumbs .breadcrumbs__link-home {
  color: var(--general-accent);
}

.triangle__color {
  position: absolute;
  z-index: 1;
  bottom: -100px;
  right: -100px;
}

header {
  background: url(../img/header_bg.jpg) no-repeat 50% 0;
  color: var(--color-font-white);
  position: relative;
  overflow: hidden;
  z-index: 5;
  z-index: 6;
  padding-top: 135px;
}

header .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

header .header__bar {
  padding-top: 45px;
  padding-bottom: 45px;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  height: auto !important;
  z-index: 5;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

header .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

header .nav__list.level--two {
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--white-bg-color);
  border-radius: 8px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 10px));
  transform: translateX(calc(-50% - 10px));
  padding: 12px;
  margin-top: 25px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
}

header .nav__list.level--two::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -10px;
  border: 5px solid transparent;
  border-bottom: 5px solid white;
}

header .nav__list.level--two .nav__item {
  white-space: nowrap;
}

header .nav__list.level--two .nav__item + .nav__item {
  margin-left: 0px;
}

header .nav__list.level--two .nav__link {
  color: var(--color-font-dark);
  font-size: 14px;
  font-weight: 400;
  border: none;
}

header .nav__list.level--two .nav__link::before {
  display: none;
}

header .nav__list.level--two .nav__link:hover {
  color: var(--link);
}

header .nav__list .nav__item {
  position: relative;
}

header .nav__list .nav__item:hover .nav__link::before {
  bottom: 7px;
  opacity: 1;
  visibility: visible;
}

header .nav__list .nav__item.has-children {
  padding-right: 20px;
}

header .nav__list .nav__item.has-children.nav__item:after {
  content: "";
  width: 15px;
  height: 10px;
  background: url(../img/arrow__down.svg) no-repeat 50% 50%;
  background-size: auto 100%;
  display: block;
  position: absolute;
  right: 0;
  top: 8px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

header .nav__list .nav__item.has-children:hover.nav__item:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

header .nav__list .nav__item.has-children:hover > .nav__list {
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
}

header .nav__list .nav__item + .nav__item {
  margin-left: 20px;
}

header .nav__list .nav__link {
  color: var(--color-font-white);
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  padding: 10px 0;
  position: relative;
}

header .nav__list .nav__link::before {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  background: var(--green);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

header .header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header__info .header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .header__info .header__lang .header-lang__item {
  color: var(--color-font-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  border-bottom: 2px solid transparent;
}

header .header__info .header__lang .header-lang__item:hover {
  border-bottom: 2px solid var(--green);
}

header .header__info .header__lang .header-lang__item + .header-lang__item {
  margin-left: 16px;
}

header .header__info .header__lang .header-lang__item.active {
  border-bottom: 2px solid var(--green);
}

header .header__info .header__phone {
  color: var(--color-font-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-left: 40px;
}

header .container-fluid.header__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-right: 300px;
  padding-top: 170px;
  padding-bottom: 80px;
}

header .header__title {
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

header .header__desc {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 30px;
  padding-right: 15%;
}

header .video__overlay {
  width: 100%;
  height: 100%;
  display: block;
}

header #video__bg {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  overflow: hidden;
  z-index: 1;
}

header #video__item {
  top: 0;
  left: 0;
  position: absolute;
  width: auto;
  height: auto;
  _min-width: 100%;
  _min-height: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 0;
}

.header__btn {
  width: 150px;
}

.section__title {
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

h1.section__title {
  text-transform: none;
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
}

.section__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 30px 15px 15px;
  margin-right: 30px;
}

.section__icon::before {
  content: "";
  background: #21AA61;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: -9999em;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
}

.section__icon img {
  position: relative;
  z-index: 2;
}

section.number {
  background: var(--white-bg-color);
  padding: 115px 0 25px;
}

section.number .number__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
}

section.number .number__top {
  color: var(--green);
  font-weight: 900;
  font-size: 44px;
  line-height: 50px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

section.number .number__title {
  font-weight: 900;
  font-size: 22px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 48px;
  min-height: 70px;
}

section.number .number__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

section.projects {
  background: var(--white-bg-color);
  padding: 40px 0 140px;
}

section.projects .project__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section.projects .project__img {
  width: 49%;
}

section.projects .project__img img {
  max-width: 100%;
}

section.projects .project__desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  padding-left: 150px;
}

section.projects .project__title {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
}

section.projects .project__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  padding-right: 10px;
}

section.projects .project__text p {
  margin-bottom: 20px;
}

section.projects .project__text p:last-child {
  margin-bottom: 0;
}

section.projects .slick-arrow {
  position: absolute;
  top: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #f1f1f1;
}

section.projects .slick-arrow.slider-nav__prev {
  left: -160px;
  padding-right: 10px;
}

section.projects .slick-arrow.slider-nav__next {
  right: -160px;
  padding-left: 10px;
}

section.projects .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;
}

section.projects .slick-dots .slick-active button {
  background: #0C1A22;
}

section.projects .slick-dots button {
  cursor: pointer;
  text-indent: -9999em;
  width: 16px;
  height: 16px;
  border: none;
  background: #C4C4C4;
  margin: 0 8px;
  border-radius: 50%;
}

section.about {
  background: var(--dark-bg-color);
  padding: 85px 0 55px;
  color: var(--color-font-white);
  position: relative;
  overflow: hidden;
}

section.about .section__title {
  color: var(--color-font-white);
}

section.about .about__text {
  margin-bottom: 30px;
}

section.about .about__text p {
  margin-bottom: 20px;
  line-height: 28px;
}

section.about .about__text p.intro {
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 32px;
}

section.about .about__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  font-size: 14px;
  line-height: 20px;
}

section.about .about__file-icon {
  -ms-flex-preferred-size: 48px;
  flex-basis: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 16px;
}

section.about .about__file-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

section.about .about__file-title {
  margin-bottom: 3px;
}

section.about .about__video {
  display: block;
  position: relative;
}

section.about .about__video:hover .about__video-icon {
  opacity: 1;
}

section.about .about__video-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.75;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

section.about .about__video-poster {
  display: block;
  max-width: 100%;
}

section.about .about__director-img {
  display: block;
  max-width: 100%;
  border-radius: 50%;
}

section.about .about__director-name {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

section.about .about__director-name span {
  font-size: 22px;
  font-weight: 400;
  opacity: 0.5;
  display: block;
  line-height: normal;
  margin-top: 15px;
}

section.about .about__director-list {
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}

section.about .about__director-list::before {
  content: "";
  width: 48px;
  height: 38px;
  background: url(../img/k.png) no-repeat;
  position: absolute;
  left: 0px;
  top: 0;
  display: block;
}

section.about .about__director-list::after {
  content: "";
  width: 48px;
  height: 38px;
  background: url(../img/k.png) no-repeat;
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

section.about .about__director-list .slick-track {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

section.about .about__director-list .about__director-item {
  position: relative;
  /*&::before
  		_content: '"'
  		display: block
  		position: absolute
  		font-size: 120px
  		opacity: 0.25
  		line-height: 100px
  		top: -8px
  		left: -4px
  		display: none*/
}

section.about .about__director-list .slick-arrow {
  position: absolute;
  bottom: 0px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  background: #f1f1f1;
  z-index: 5;
}

section.about .about__director-list .slick-arrow.slider-nav__prev {
  left: calc(50% - 65px);
  padding-right: 10px;
}

section.about .about__director-list .slick-arrow.slider-nav__next {
  right: calc(50% - 65px);
  padding-left: 10px;
}

section.news {
  background: var(--white-bg-color);
  padding: 40px 0 70px;
  position: relative;
  overflow: hidden;
}

section.news .triangle__color {
  bottom: auto;
  left: auto;
  top: -150px;
  left: -100px;
}

section.news .section__title {
  margin-bottom: 105px;
}

section.news .news__list-wrap {
  margin: 0 -15px;
}

section.news .news__item {
  margin: 0 15px;
}

section.news .news__image {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

section.news .news__title {
  color: var(--color-font-dark);
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 24px;
  display: block;
}

section.news .news__title:hover {
  color: var(--link);
}

section.news .news__date {
  color: var(--green);
  font-size: 13px;
}

section.news .news__text {
  line-height: 28px;
}

section.news .slick-arrow {
  position: absolute;
  top: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  z-index: 5;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

section.news .slick-arrow svg {
  height: 45px;
  width: auto;
}

section.news .slick-arrow svg path {
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

section.news .slick-arrow:hover svg path {
  fill: var(--green);
}

section.news .slick-arrow.slider-nav__prev {
  left: 20px;
  padding-right: 10px;
}

section.news .slick-arrow.slider-nav__next {
  right: 20px;
  padding-left: 10px;
}

section.news .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;
}

section.news .slick-dots .slick-active button {
  background: #0C1A22;
}

section.news .slick-dots button {
  cursor: pointer;
  text-indent: -9999em;
  width: 16px;
  height: 16px;
  border: none;
  background: #C4C4C4;
  margin: 0 8px;
  border-radius: 50%;
}

section.services {
  background: var(--dark-bg-color);
  padding: 85px 0 55px;
  color: var(--color-font-white);
  position: relative;
  overflow: hidden;
}

section.services .service__link {
  color: #fff;
}

section.services .section__title {
  color: var(--color-font-white);
}

section.services .service__item {
  margin-bottom: 30px;
  background: #14222B;
  padding: 32px;
}

section.services .service__img {
  margin: 8px 0 70px;
}

section.services .service__img img {
  display: block;
  max-width: 100%;
}

section.services .service__title {
  font-size: 28px;
  line-height: 42px;
  margin-bottom: 45px;
}

section.services .service__desc {
  line-height: 28px;
  display: none;
}

section.catalog {
  background: var(--white-bg-color);
  padding: 40px 0 70px;
  position: relative;
  overflow: hidden;
}

section.catalog.catalog__inner {
  overflow: visible;
}

section.catalog.catalog__inner .catalog__item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  _-webkit-box-shadow: none !important;
  _box-shadow: none !important;
  _background: #F8F8F8 !important;
}

section.catalog.catalog__inner .catalog__item span {
  font-weight: 600;
  color: var(--green);
}

section.catalog .about__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  font-size: 14px;
  line-height: 20px;
}

section.catalog .about__file-icon {
  -ms-flex-preferred-size: 48px;
  flex-basis: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 16px;
}

section.catalog .about__file-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

section.catalog .about__file-title {
  margin-bottom: 3px;
}

section.catalog .triangle__color {
  bottom: auto;
  left: auto;
  top: -50px;
  right: -100px;
}

section.catalog .catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 23px;
  border-radius: 12px;
  background: #F8F8F8;
  margin-bottom: 30px;
  color: #2C2D2E;
  line-height: 28px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  border: 1px solid #F8F8F8;
  height: calc(100% - 30px);
}

section.catalog .catalog__item:hover {
  -webkit-box-shadow: 0px 8px 24px 8px rgba(25, 179, 110, 0.3);
  box-shadow: 0px 8px 24px 8px rgba(25, 179, 110, 0.3);
  background: #fff;
  _border-color: var(--green);
}

section.catalog .catalog__item:hover .catalog__image {
  display: none;
}

section.catalog .catalog__item:hover .catalog__image-hover {
  display: block;
}

section.catalog .catalog__img {
  -ms-flex-preferred-size: 105px;
  flex-basis: 105px;
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 35px;
}

section.catalog .catalog__img img {
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}

section.catalog .catalog__image, section.catalog .catalog__image-hover {
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}

section.catalog .catalog__image-hover {
  display: none;
}

section.catalog .catalog__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  text-transform: uppercase;
}

section.catalog .catalog__title span {
  white-space: nowrap;
}

footer {
  padding: 50px 0;
  background: var(--dark-bg-color);
  position: relative;
  overflow: hidden;
  color: var(--color-font-white);
}

footer .footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0;
}

footer .footer__title {
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 32px;
}

footer .footer__contact {
  margin-bottom: 0px;
}

footer .footer__contact:last-child {
  margin-bottom: 0;
}

footer .footer__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

footer .footer__soc .soс__link {
  display: block;
}

footer .footer__soc .soс__link + .soс__link {
  margin-left: 10px;
}

footer .footer__soc img {
  width: 32px;
  display: block;
}

footer .footer__files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

footer .footer__file + .footer__file {
  margin-left: 0px;
}

footer .footer__file-icon {
  -ms-flex-preferred-size: 48px;
  flex-basis: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 16px;
  min-width: 48px;
}

footer .footer__file-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

footer .footer__file-title {
  margin-bottom: 3px;
}

footer .footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .footer-bottom__link {
  color: var(--color-font-white);
}

footer .footer-bottom__link + .footer-bottom__link {
  margin-left: 40px;
}

footer .footer-consurs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .footer-consurs a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

footer .footer-consurs a img {
  width: 50px;
  margin-right: 15px;
}

.page-text header {
  __background: #03253A;
  overflow: visible;
  height: 135px;
  background: #fff;
}

.page-text header .header__bar {
  background: #03253A;
}

.page-text header .triangle__color {
  bottom: auto;
  top: -190px;
  right: 0;
}

.page-text .section__title {
  text-transform: none;
}

.page-project .project__content {
  background: #F9F9F9;
  padding: 15px;
}

.page-project .project__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-project .project__gallery {
  padding-left: 30px;
}

.page-project .project__title {
  position: relative;
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 30px;
}

.page-project .project__title::before {
  content: "";
  background: #21AA61;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: -9999em;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
}

.page-project .project__title::after {
  content: "";
  background: #03253A;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
}

.page-project .project__title span {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
}

.page-project .project__list {
  margin: 0 auto;
}

.page-project .project__list .project__item {
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-project .project__list .project__item.slick-center {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.page-project .project__list .project__image {
  max-width: 100%;
  max-width: 400px;
  cursor: pointer;
}

.page-project .project__list .slick-arrow {
  position: absolute;
  top: 10px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  left: 50%;
  background: #f1f1f1;
  z-index: 2;
}

.page-project .project__list .slick-arrow.slider-nav__next {
  top: auto;
  bottom: 10px;
}

.page-project .project__desc {
  display: none;
  padding: 0;
}

.page-project .project__desc.fancybox-content {
  max-width: 800px;
  padding: 0;
}

.page-project .project__desc .project__image {
  max-width: 400px;
}

.page-project .project__desc .project__desc-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-project .project__desc .project__text {
  padding: 30px;
}

section.content {
  padding: 75px 0;
  background: var(--white-bg-color);
  line-height: 33px;
  position: relative;
  z-index: 5;
}

section.content .content__intro {
  font-size: 28px;
  line-height: 42px;
  margin-bottom: 60px;
}

section.content p {
  margin-bottom: 25px;
}

section.content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section.content ul li {
  position: relative;
  padding-left: 45px;
  line-height: normal;
}

section.content ul li p {
  margin-bottom: 0;
}

section.content ul li p + p {
  margin-top: 25px;
}

section.content ul li + li {
  margin-top: 25px;
}

section.content ul li:hover::before {
  background: #03253a;
}

section.content ul li:hover::after {
  background: var(--green);
}

section.content ul li::before {
  content: "";
  left: 0;
  width: 20px;
  height: 6px;
  margin-left: 0;
  border-radius: 0;
  margin-top: 0;
  -webkit-transform: skewX(330deg);
  transform: skewX(330deg);
  top: 12px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  background: #21AA61;
  display: block;
  position: absolute;
}

section.content ul li::after {
  content: "";
  left: 10px;
  width: 20px;
  height: 6px;
  top: 3px;
  background: #03253a;
  margin-left: 0;
  border-radius: 0;
  margin-top: 0;
  -webkit-transform: skewX(330deg);
  transform: skewX(330deg);
  display: block;
  position: absolute;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

section.content .content__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 20px;
  padding: 40px;
  background: #F8F8F8;
}

section.content .content__file-icon {
  -ms-flex-preferred-size: 48px;
  flex-basis: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 16px;
}

section.content .content__file-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

section.content .content__table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

section.content table {
  width: 100%;
}

section.content table tr:first-child td {
  text-align: center;
}

section.content table td, section.content table th {
  padding: 5px 5px;
  border: 1px solid #ccc;
}

section.content table th {
  text-align: center;
}

section.content table td {
  text-align: center;
}

section.content table td:first-child {
  text-align: center;
}

section.content table td:last-child {
  _text-align: center;
}

.animate__menu #nav__mobile {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.animate__treemenu #nav__treemenu {
  opacity: 1;
  margin-left: 0;
  z-index: 2;
}

.nav__mobile-close {
  display: block;
  position: relative;
  z-index: 2;
}

#nav__mobile-bg {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

#nav__treemenu {
  position: absolute;
  width: 100%;
  top: 110px;
  border-top: 1px solid #DEDEDE;
  opacity: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  margin-left: -25px;
}

#nav__treemenu .container-fluid {
  padding: 0;
}

#nav__treemenu .nav__treemenu__list {
  background: #fff;
  margin: 0;
  padding: 15px;
  list-style: none;
  position: relative;
}

#nav__treemenu .nav__treemenu__list.level__two {
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  margin-left: 25px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

#nav__treemenu .nav__treemenu__list.level__two::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #DEDEDE;
  left: 0;
}

#nav__treemenu .nav__treemenu__list .nav__treemenu__item {
  width: 280px;
}

#nav__treemenu .nav__treemenu__list .nav__treemenu__item:hover > .nav__treemenu__link {
  background: var(--other-accent-light);
  border-radius: 8px;
}

#nav__treemenu .nav__treemenu__list .nav__treemenu__item:hover > .nav__treemenu__link.has__children::after {
  opacity: 1;
}

#nav__treemenu .nav__treemenu__list .nav__treemenu__item:hover .nav__treemenu__list {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}

#nav__treemenu .nav__treemenu__list .nav__treemenu__item .nav__treemenu__link {
  position: relative;
  z-index: 2;
  display: block;
  padding: 16px 12px;
  color: #000;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#nav__treemenu .nav__treemenu__list .nav__treemenu__item .nav__treemenu__link.has__children::after {
  display: block;
  content: "";
  width: 7px;
  height: 12px;
  background: url(../img/icon__arrow-tree.svg) no-repeat;
  margin-top: 1px;
  opacity: 0.5;
}

#nav__treemenu .nav__treemenu__list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background: #fff;
  right: 100%;
  width: 9999px;
  z-index: 0;
}

#nav__mobile {
  background: #fff;
  width: 320px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  position: fixed;
  right: 0;
  top: 0px;
  height: 100%;
  z-index: 5;
  overflow-x: auto;
  padding: 40px;
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#nav__mobile .mobile__nav {
  width: 100%;
}

#nav__mobile .mobile__list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

#nav__mobile .mobile__list .mobile__item {
  margin-bottom: 32px;
}

#nav__mobile .mobile__list .mobile__item.open .mobile__link.has__children:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#nav__mobile .mobile__list .mobile__link {
  font-size: 1.5rem;
  display: block;
  position: relative;
  color: var(--general-black);
  -webkit-transition-duration: 0.25em;
  transition-duration: 0.25em;
}

#nav__mobile .mobile__list .mobile__link:hover {
  color: var(--general-accent);
}

#nav__mobile .mobile__list .mobile__link.has__children:after {
  content: "";
  background: url(../img/arrow.svg) no-repeat 50% 50%;
  height: 47px;
  width: 47px;
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

#nav__mobile .mobile__list .mobile__list-child {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  background: rgba(0, 0, 0, 0.05);
  display: none;
}

#nav__mobile .mobile__list .mobile__list-child .mobile__item-child {
  position: relative;
}

#nav__mobile .mobile__list .mobile__list-child .mobile__item-child.open .mobile__link-child.has__children:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#nav__mobile .mobile__list .mobile__list-child .mobile__item-child .mobile__link-child.has__children:after {
  content: "";
  background: url(../img/arrow.svg) no-repeat 50% 50%;
  height: 47px;
  width: 47px;
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

#nav__mobile .mobile__list .mobile__list-child .mobile__item-child .mobile__link-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px 10px 30px;
}

#nav__mobile .mobile__list .mobile__list-child .mobile__item-child .mobile__link-child img {
  margin-right: 15px;
}

#nav__mobile .mobile__list .mobile__list-child .mobile__list-child {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  background: rgba(0, 0, 0, 0.05);
}

#nav__mobile .mobile__list .mobile__list-child .mobile__list-child .mobile__item-child .mobile__link-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px 10px 50px;
}

#nav__mobile .mobile__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
  width: 100%;
}

#nav__mobile .mobile__info .bar-info__phone {
  color: var(--general-black);
  font-size: 1.375rem;
  margin-bottom: 24px;
}

#nav__mobile .mobile__info .bar-info__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  color: var(--general-white);
  background: var(--general-accent);
  border: 1px solid var(--general-accent);
  border-radius: 25px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  width: 100%;
}

#nav__mobile .mobile__info .bar-info__call:hover {
  background: var(--general-white);
  color: var(--general-accent);
}

.overlay {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 55;
}

.popup__wrap {
  display: none;
  width: 100%;
  max-width: 570px;
  background: var(--general-white);
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 56;
  max-height: 80%;
  overflow-y: auto;
}

.popup__wrap.popup__dark {
  background: var(--bg-dark-light);
  color: #fff;
}

.popup__wrap.popup__dark .popup__close svg path {
  stroke: #fff;
}

.popup__wrap.popup__dark .popup__title {
  color: #fff;
}

.popup__wrap.popup__dark .form__input {
  background: transparent;
  color: #fff;
}

.popup__wrap.popup__dark .form__input::-webkit-input-placeholder {
  color: var(--general-white);
}

.popup__wrap.popup__dark .form__input::-moz-placeholder {
  color: var(--general-white);
}

.popup__wrap.popup__dark .form__input:-ms-input-placeholder {
  color: var(--general-white);
}

.popup__wrap.popup__dark .form__button {
  background: var(--general-white);
  color: var(--bg-dark-light);
}

.popup__wrap.popup__dark .form__checkbox-title {
  color: var(--other-gray-dark);
}

.popup__wrap.popup__dark .form__checkbox-title::before {
  border-color: #fff;
}

.popup__wrap.popup__dark .form__checkbox-title::after {
  background: url(../img/icon__checkbox.svg) no-repeat 50% 50%;
}

.popup__wrap.popup__dark .form__checkbox-title a {
  color: var(--general-white);
}

.popup__wrap .popup__close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--green);
  font-size: 24px;
}

.popup__wrap .popup__title {
  text-align: center;
  font-size: 2rem;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 40px;
}

.popup__wrap .form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.popup__wrap .form__label {
  display: block;
  margin-bottom: 24px;
}

.popup__wrap .form__input {
  height: 60px;
  width: 100%;
  border: 1px solid var(--other-line);
  border-radius: 30px;
  padding: 22px 24px;
  font-family: "Montserrat", sans-serif;
  color: var(--general-gray);
  font-size: 1rem;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.popup__wrap .form__input.error {
  border-color: var(--other-red);
  color: var(--other-red);
}

.popup__wrap .form__input.error::-webkit-input-placeholder {
  color: var(--other-red);
}

.popup__wrap .form__input.error::-moz-placeholder {
  color: var(--other-red);
}

.popup__wrap .form__input.error:-ms-input-placeholder {
  color: var(--other-red);
}

.popup__wrap .form__input:focus {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.popup__wrap .error__label {
  background: var(--other-red);
  line-height: 120%;
  border-radius: 8px;
  padding: 16px 0;
  margin-bottom: 24px;
  color: #fff;
  text-align: center;
  display: none;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.popup__wrap .error__label.visible {
  display: block;
}

.popup__wrap .form__button {
  border: none;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 20px;
}

.popup__wrap .form__button:disabled {
  cursor: default;
  opacity: 0.75;
}

.popup__wrap .form__checkbox {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.popup__wrap .form__checkbox:checked + .form__checkbox-title::after {
  display: block;
}

.popup__wrap .form__check {
  margin-left: 60px;
}

.popup__wrap .form__checkbox-title {
  line-height: 130%;
  font-size: 0.875rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.popup__wrap .form__checkbox-title::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--general-accent);
  display: block;
  border-radius: 3px;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: -22px;
  cursor: pointer;
}

.popup__wrap .form__checkbox-title::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icon__checkbox-d.svg) no-repeat 50% 50%;
  display: none;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: -22px;
  cursor: pointer;
}

.news__inner-list .news__inner-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--green);
}

.news__inner-list .news__inner-img {
  width: 250px;
  margin-right: 30px;
}

.news__inner-list .news__inner-img img {
  display: block;
  width: 100%;
}

.news__inner-list .news__inner-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

.news__inner-list .news__inner-name {
  color: var(--color-font-dark);
  font-weight: 600;
  font-size: 20px;
}

.news__inner-list .news__inner-name:hover {
  color: var(--link);
}

.news__inner-list .news__inner-date {
  opacity: 0.75;
  font-size: 13px;
  line-height: normal;
  margin-bottom: 10px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  padding: 0 15px !important;
  margin-top: 0 !important;
}

.pagination li.active a {
  color: var(--green);
}

.pagination li:before, .pagination li:after {
  display: none !important;
}

.menu__mobile-open {
  position: absolute;
  display: none;
  left: 10px;
  top: 0px;
  display: none;
  padding: 10px;
  width: 50px;
  height: 40px;
}

.menu__mobile-open span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
}

.menu__mobile-open span + span {
  margin-top: 7px;
}

.mobile__nav {
  position: fixed;
  height: 100%;
  width: 260px;
  background: #03253A;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transform: translateX(-310px);
  transform: translateX(-310px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.mobile__nav.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mobile__nav .mobile__menu-close {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #03253A;
  color: #ffffff;
  font-size: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  left: 260px;
}

.mobile__nav .nav__list {
  list-style: none;
  padding: 15px;
  margin: 0;
  overflow-y: auto;
  height: 100%;
}

.mobile__nav .nav__list .nav__link {
  color: #ffffff;
  font-weight: 700;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
}

.mobile__nav .nav__list .nav__item .nav__item {
  padding-left: 15px;
}

.mobile__nav .nav__list .nav__item .nav__item .nav__link {
  font-weight: 400;
  font-size: 14px;
}

.history {
  background: var(--white-bg-color);
  padding: 0 0 45px 0;
  margin-top: -75px;
}

.history .years__nav {
  position: sticky;
  top: 90px;
  float: left;
  z-index: 4;
  overflow-y: hidden;
}

.history .years__nav .years__nav-wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  overflow-x: auto;
  white-space: nowrap;
  overflow-y: hidden;
}

.history .years__nav .years__nav-item {
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: #BEBDC2;
}

.history .years__nav .years__nav-item.active {
  color: var(--green);
}

.history .years__nav .years__nav-item:last-child {
  margin-bottom: 0;
}

.history .years__list .years__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.history .years__list .years__item.active .years__year {
  color: var(--green);
}

.history .years__list .years__name {
  width: 480px;
  -ms-flex-preferred-size: 480px;
  flex-basis: 480px;
  padding-right: 30px;
  border-right: 10px solid var(--green);
  margin-right: 30px;
}

.history .years__list .years__year {
  text-align: right;
  font-weight: 900;
  font-size: 46px;
  line-height: normal;
  margin-bottom: 15px;
  position: relative;
}

.history .years__list .years__year::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  right: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.history .years__list .years__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 30px;
  text-align: center;
}

.history .years__list .years__img .years__img-desc {
  position: absolute;
  color: #fff;
  display: block;
  padding: 50px 10px 10px 10px;
  text-align: center;
  font-size: 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 37, 58, 0)), to(#03253a));
  background: linear-gradient(rgba(3, 37, 58, 0), #03253a);
  bottom: 0;
  left: 0;
  right: 0;
}

.history .years__list .years__img .years__img-img {
  position: relative;
}

.history .years__list .years__img .years__img-img img {
  display: block;
  width: 100%;
  height: auto;
}

.history .years__list .years__img .years__img-img + .years__img-img {
  margin-top: 30px;
}

.history .years__list .years__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  margin-bottom: 30px;
  position: relative;
}

.history .years__list .years__text .years__text-inner {
  background: #F9F9F9;
  padding: 20px;
  position: sticky;
  top: 100px;
}

.history .years__list .years__text .years__text-inner::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: -45px;
  top: 20px;
  _-webkit-transform: translateY(-50%);
  _transform: translateY(-50%);
}

.history .years__list .years__text .years__text-inner p {
  margin-bottom: 15px;
}

.history .years__list .years__text .years__text-inner p:last-child {
  margin-bottom: 0;
}

.page-text .news-filter-wrap {
  left: auto;
  right: 0;
  top: -10px;
}

.page-text .news-filter-wrap select {
  font-family: "Montserrat", sans-serif;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 5px;
}

.page-text .icons__slick {
  padding: 0 60px;
}

.page-text .icons__slick .icons__item {
  padding: 0 15px;
}

.page-text .icons__slick .icons__item img {
  width: 100%;
}

.page-text .icons__slick .slick-arrow {
  position: absolute;
  top: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #f1f1f1;
}

.page-text .icons__slick .slick-arrow.slider-nav__prev {
  left: 0px;
  padding-right: 10px;
}

.page-text .icons__slick .slick-arrow.slider-nav__next {
  right: 0px;
  padding-left: 10px;
}

.page-text .icons__slick .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;
}

.page-text .icons__slick .slick-dots li:before {
  display: none;
  padding-left: 0;
}

.page-text .icons__slick .slick-dots .slick-active button {
  background: #0C1A22;
}

.page-text .icons__slick .slick-dots button {
  cursor: pointer;
  text-indent: -9999em;
  width: 16px;
  height: 16px;
  border: none;
  background: #C4C4C4;
  margin: 0 8px;
  border-radius: 50%;
}

.page-text .one__slick {
  padding: 0 75px;
}

.page-text .one__slick .one__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
}

.page-text .one__slick .one__item .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-text .one__slick .one__img {
  width: 230px;
  margin-right: 30px;
}

.page-text .one__slick .one__img img {
  max-width: 100%;
  border-radius: 50%;
}

.page-text .one__slick .one__desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  padding-left: 30px;
}

.page-text .one__slick .one__title {
  margin-bottom: 24px;
  font-weight: 900;
  font-size: 36px;
  line-height: 42px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.page-text .one__slick .one__intro {
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0.5;
}

.page-text .one__slick .one__text {
  font-weight: 500;
  _font-size: 18px;
  line-height: 20px;
  padding-right: 45px;
  position: relative;
}

.page-text .one__slick .one__text::before {
  content: "";
  width: 48px;
  height: 38px;
  background: url(../img/k.png) no-repeat;
  position: absolute;
  left: -52px;
  top: -18px;
  display: block;
}

.page-text .one__slick .one__text::after {
  content: "";
  width: 48px;
  height: 38px;
  background: url(../img/k.png) no-repeat;
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.page-text .one__slick .one__text p {
  margin-bottom: 20px;
}

.page-text .one__slick .one__text p:last-child {
  margin-bottom: 0;
}

.page-text .one__slick .slick-arrow {
  position: absolute;
  top: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #f1f1f1;
}

.page-text .one__slick .slick-arrow.slider-nav__prev {
  left: 0px;
  padding-right: 10px;
}

.page-text .one__slick .slick-arrow.slider-nav__next {
  right: 0px;
  padding-left: 10px;
}

.page-text .one__slick .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;
}

.page-text .one__slick .slick-dots li:before {
  display: none;
  padding-left: 0;
}

.page-text .one__slick .slick-dots .slick-active button {
  background: #0C1A22;
}

.page-text .one__slick .slick-dots button {
  cursor: pointer;
  text-indent: -9999em;
  width: 16px;
  height: 16px;
  border: none;
  background: #C4C4C4;
  margin: 0 8px;
  border-radius: 50%;
}

.line__green {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green);
}

.form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  _max-width: 600px;
  padding: 20px;
  background: #F9F9F9;
  margin: 0 auto;
}

.form__content .form__info {
  text-align: center;
}

.form__content .form__info .form__error {
  background: red;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 5px;
}

.form__content .form__info .form__sent {
  background: green;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 5px;
}

.form__content .form__content-form {
  width: 100%;
}

.form__content label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
}

.form__content label .form__content-input {
  border: 1px solid #cccccc;
  font-family: "Montserrat", sans-serif;
  padding: 10px;
  font-size: 18px;
  width: 100%;
}

.form__content label.check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.form__content label.check input {
  margin-right: 10px;
}

.form__content button.btn {
  background: var(--green);
  max-width: 180px;
  margin: 0 auto;
  color: #fff;
}

.form__content button.btn[disabled] {
  cursor: default;
  opacity: 0.5;
}

.news-filter-wrap select {
  _display: none;
}

.news-filter-wrap .jqselect {
  margin-left: 30px;
}

.news-filter-wrap .jqselect .jq-selectbox__dropdown {
  background: #ccc;
}

.news-filter-wrap .jqselect .jq-selectbox li:hover {
  background: #fff;
  color: #000;
}

.news-filter-wrap .jqselect .jq-selectbox__select {
  background: #fff;
}

.news-filter-wrap .jqselect li {
  padding: 10px;
  margin: 0;
}

.news-filter-wrap .jqselect li::after {
  display: none;
}

.news-filter-wrap .jqselect li:first-child {
  display: none;
}

.news-filter-wrap .jqselect li::before {
  display: none;
}

.news-filter-wrap .jq-selectbox li:hover {
  background: rgba(0, 0, 0, 0.25);
}

.news-filter-wrap .jq-selectbox__trigger {
  border: none;
}

.paginagiton_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}

/*# sourceMappingURL=main.css.map */
.cookie_notice {
  display: none;
  position: fixed;
  z-index: 9999999;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 15px;
  color: #FFF;
  background: #03253A;
  padding: 10px 20px;
  border-top: 4px solid var(--green);
}

/* Оформление кнопок */
.cookie_btn {
  display: inline-block;
  margin: 10px 6px 4px 6px;
  text-decoration: none;
  position: relative;
  font-size: 13px;
  padding: 4px 12px;
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  background: var(--green);
  border: 2px solid #FFF;
}

.cookie_btn:hover {
  color: #FFF;
}

.cookie_btn:after,
.cookie_btn:before {
  position: absolute;
  height: 2px;
  left: 50%;
  background: #FFF;
  bottom: -6px;
  content: "";
  -webkit-transition: all 280ms ease-in-out;
  transition: all 280ms ease-in-out;
  width: 0;
}

.cookie_btn:before {
  top: -6px;
}

.cookie_btn:hover:after,
.cookie_btn:hover:before {
  width: 100%;
  left: 0;
}

.www {
  display: block;
  margin-top: 10px;
}
.www img {
  width: 120px;
  display: block;
}

.footer-bottom__links {
  padding-left: 15px;
  padding-right: 15px;
}

#catalog__popup .form__content {
  background: transparent;
  padding: 0;
}

.news__inner-list.timeerso .news__inner-item {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 25px;
}
.news__inner-list.timeerso .news__inner-img {
  display: block;
  margin-bottom: 25px;
  margin-right: 0;
  width: 100%;
}
.news__inner-list.timeerso .news__inner-img img {
  display: block;
  width: 100%;
}

.form__success {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  text-align: center;
  z-index: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 18px;
  display: none;
  padding-top: 25px;
  padding-bottom: 25px;
}
.form__success svg {
  width: 64px;
  height: 64px;
  min-height: 64px;
}
.form__success.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}/*# sourceMappingURL=main.css.map */