/*! Common styles */

body {
  font-family: 'HelveticaNeueCyr', serif;
  font-weight: 300;
  color: #666666;
}

main {
  padding-top: 175px;
}

.container {
  max-width: calc(1440px + 2 * 15px);
  margin: 0 auto;
  padding: 0 15px;
}

th,
td {
  border: 1px solid rgb(0, 0, 0);
}

td {
  padding: 0 10px;
}

table {
  border-collapse: collapse;
}

thead tr {
  background: #F5F8FE;
}


.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  border-radius: 4px;
  width: 280px;
  padding: 10px 15px;
}

.btn:hover,
.bvi-open:hover {
  cursor: pointer;
}

.btn-white {
  color: #273895;
  border: 1px solid #273895;
  transition: 0.3s;
}

.btn-white:hover {
  color: #273EBA;
  border: 1px solid #273EBA;
}


.btn-blue {
  background-color: #273895;
  border: 1px solid #273895;
  color: #fff;
  transition: 0.3s;
}

.btn-blue:hover {
  background-color: #273EBA;
  border: 1px solid #273EBA;
}


.btn-more {
  margin: 0 auto 30px;
}

.buttons {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
}

.buttons__item {
  margin-left: 40px;
}

.section {
  margin-bottom: 120px;
  margin-top: 120px;
}

.section-padding {
  padding-bottom: 120px;
  padding-top: 120px;
}

.section-title {
  font-weight: bold;
  font-size: 32px;
  line-height: 119%;
  color: #323232;
}


.big-title {
  height: 403px;
  display: flex;
  padding-bottom: 48px;
  justify-content: flex-start;
  align-items: flex-end;
  font-weight: bold;
  font-size: 72px;
  line-height: 120%;
  color: #FFFFFF;
}

.bread {
  margin-top: 60px;
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 133%;
  color: #323232;
  display: flex;
  flex-wrap: wrap;
}

.arrow-breadcrumbs {
  height: 10px;
  width: 10px;
  background: url(../images/icons/arrow-breadcrumbs.svg) 50% no-repeat;
  background-size: contain;
  margin-right: 3px;
  margin-left: 10px;
  display: inline-block;
}

.longread {
  font-size: 18px;
  line-height: 167%;
  color: #666666;
}

.arrow-up {
  background: url('../images/icons/up-arrow.svg')no-repeat;
  display: none;
  width: 72px;
  height: 72px;
  content: '';
  transition: 0.3s;
  position: fixed;
  right: 30px;
  bottom: 60px;
  cursor: pointer;
  z-index: 10;
  background-size: contain;
  border: 1px solid #FFFFFF;
  border-radius: 100%;
}

.arrow-up-content {
  border: 1px solid #FFFFFF;
  border-radius: 100%;
  width: 64px;
  height: 64px;
  position: fixed;
  right: 34px;
  bottom: 64px;
}


@media (max-width: 767px) {


  .bread {
    font-size: 14px;
  }

  .arrow-up {
    width: 42px;
    height: 42px;
  }

  .arrow-up-content {
    width: 36px;
    height: 36px;
    right: 33px;
    bottom: 63px;
  }

  .big-title {
    height: 0px;
    padding-bottom: 0px;
  }

  .buttons {
    justify-content: space-between;
  }

  .buttons__item {
    margin-left: 10px;
  }

  .buttons__item:first-child {
    margin-left: 0px;
  }

}

/* Cards Карточки */

.card__item {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  padding: 8px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}


.card__item:hover .card__info,
.card__item:hover .card__title {
  /* cursor: pointer; */
  color: #273895;
}

.card__img {
  height: 296px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  align-self: center;
}

.card__text {
  margin: calc(24px - 8px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 136%;
  color: #323232;
}

.card__info {
  margin-bottom: 12px;
  margin-top: 12px;
  font-size: 18px;
  line-height: 167%;
  color: #666666;
}

.card__link {
  font-size: 18px;
  line-height: 133%;
  color: #273895;
}

.card__date {
  margin-top: auto;
}

.card-btn {
  margin-left: auto;
  margin-bottom: 60px;
}

.longcard__item {
  min-height: 242px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 40px;
}

.longcard__item:hover {
  cursor: pointer;
}

.longcard__item:hover .longcard__title,
.longcard__item:hover .longcard__text {
  color: #273895;
}


.longcard__img {
  height: 162px;
  width: 162px;
  object-fit: contain;
}

.longcard__content {
  margin-left: 40px;
}

.longcard__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 136%;
  color: #323232;
  margin-bottom: 12px;
}

.longcard__text {
  font-size: 18px;
  line-height: 167%;
  color: #666666;
}

@media (max-width: 767px) {
  .longcard__item {
    padding: 15px;
    min-height: 180px;
  }

  .longcard__img {
    height: 120px;
    width: 120px;
  }


  .longcard__content {
    margin-left: 15px;
  }


  .longcard__title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .longcard__text {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .longcard__item {
    flex-direction: column;
    padding: 15px;
    min-height: 180px;
  }

  .longcard__img {
    height: 160px;
    width: 160px;
    margin-bottom: 20px;
  }


  .longcard__content {
    margin-left: 15px;
  }


  .longcard__title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .longcard__text {
    font-size: 16px;
  }
}

.longcard-detail a {
  color: #273895;
  text-decoration: underline;
}

.longcard-detail__main {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  padding: 40px;
}

.longcard-detail__title {
  margin-bottom: 40px;
}

.longcard-detail__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.longcard-detail__text {
  width: 62%;
}

.longcard-detail__descr p {
  margin-top: 40px;
}

.longcard-detail__descr p:first-child {
  margin-top: 0px;
}

.longcard-detail__descr ul {
  margin-left: 17px;
  margin-top: 12px;
}

.longcard-detail__descr ul li {
  list-style-type: disc;
}


.longcard-detail__img {
  width: 32%;
  padding-left: 15px;
  object-fit: contain;
  object-position: center;
}

.longcard-detail__subtitle {
  margin-top: 40px;
  font-weight: bold;
  font-size: 22px;
  line-height: 136%;
  color: #323232;
}

.longcard-detail__link {
  margin-top: 4px;
  font-weight: 300;
  font-size: 18px;
  line-height: 167%;
  color: #273895;
}

.longcard-detail__licences {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.longcard-detail__licences img {
  margin-right: 30px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 15px;
}

@media (max-width: 1200px) {

  .longcard-detail__img {
    width: 32vw;
    height: 100%;
  }
}

@media (max-width: 768px) {

  .longcard-detail__text {
    width: 100%;
  }

  .longcard-detail__img {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .longcard-detail__top {
    flex-direction: column-reverse;
  }

  .longcard-detail__main {
    padding: 20px;
  }
}

@media (max-width: 575px) {

  .longcard-detail__img {
    width: 100%;
  }

  .longcard-detail__licences {
    flex-direction: column;
  }

  .longcard-detail__licences img {
    margin-right: 0;
  }
}

/* Media запросы */

@media (max-width: 767px) {
  /* .big-title {
    font-size: 42px;
    height: 240px;
  } */

  .section-padding {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .section {
    margin-bottom: 60px;
    margin-top: 60px;
  }

  .news-detail .section-title {
    font-size: 24px;
  }

  main {
    padding-top: 64px;
  }


  .bread {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}


@media (max-width: 424px) {
  /* .big-title {
    height: 120px;
  } */
}

/*! Header *---------------------------------------------------------*/

.header {
  color: #323232;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.15));
  background: #fff;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
}

.header-mob,
.menu-mob {
  display: none;
}

.header-top {
  height: 40px;
  background: #F5F8FE;
  font-size: 18px;
  line-height: 100%;
}

.header-top__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header-top__city {
  display: flex;
  margin-right: auto;
  margin-left: 36px;
  position: relative;
}

.header-top__city:before {
  content: '';
  position: absolute;
  left: -27px;
  top: -5px;
  height: 24px;
  width: 17px;
  background: url(../images/icons/header-geo.svg) 50% no-repeat;
  background-size: contain;
}

.header-top span {
  margin-left: 8px;
  font-weight: bold;
}

.header-top a {
  margin-left: 25px;
  transition: 0.3s;
}


.header-top a:hover {
  opacity: 0.5;
}

.header-top__call {
  font-weight: bold;
}

.header-top__phone {
  display: flex;
  /* margin-right: 76px; */
}

.header-top__lang {
  font-weight: bold;
  position: relative;
  text-decoration: underline;
  margin-left: 30px;
}

.header-top__lang:before {
  content: '';
  position: absolute;
  left: -32px;
  top: -5px;
  height: 22.5px;
  width: 22.5px;
  background: url(../images/icons/header-lang.svg) 50% no-repeat;
  background-size: contain;
}


.header-main {
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.header__btn {
  border-radius: 4px;
}


.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.header-bottom a {
  transition: 0.3s;
}

.header-bottom a:hover {
  opacity: 0.5;
}

.header__menu {
  width: 800px;
}

.menu {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.menu li {
  position: relative;
}

.menu__item {
  padding-right: 15px;

}

.header-bottom .submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: -15px;
  background: #fff;
  z-index: 10;
  transition: 0.3s ease-in-out;
}

.header-bottom .submenu li {
  margin: 20px 15px;
  white-space: nowrap;
}

ul li:hover .submenu {
  visibility: visible;
  opacity: 1;
}

.header__icons {
  display: flex;
  align-items: center;
}

.header-icon {
  margin-left: 20px;
}

@media (max-width: 992px) {
  .menu {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .header {
    height: 64px;
  }

  .header-top,
  .header-main {
    display: none;
  }

  .header-mob {
    z-index: 15;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  }

  .menu-mob {
    display: flex;
    flex-direction: column;
    transform: translateY(-120vh);
    transition: 0.5s;
    background: #fff;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .menu-visible {
    transform: translateY(0);
    z-index: 12;
  }

  .menu-mob .menu-mob__icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
  }

  .menu-mob .header-top__lang {
    margin-left: 32px;
  }

  .menu-mob .menu li {
    margin-bottom: 20px;
    position: relative;
  }

  .menu-mob .menu__item {
    position: relative;

  }

  .menu-mob .menu__item:after {
    margin-bottom: 20px;
    position: absolute;
    content: '';
    right: -10px;
    top: 4px;
    height: 6.84px;
    width: 12px;
    background: url(../images/icons/arrow-open.svg) 50% no-repeat;
    background-size: contain;
  }

  .menu-mob .menu__item:last-child:after {
    height: 0;
  }

  .mobile-menu li {
    margin-bottom: 20px;
  }

  .mobile-menu li .submenu {
    margin-top: 20px;
    margin-left: 20px;
  }

  .opened-menu {
    color: #273895;
  }

  .opened-menu:after {
    transform: rotate(180deg);

  }

  .menu-mob .menu {
    display: flex;
    flex-direction: column;
  }


  .header-mob__search {
    width: 100%;
    position: relative;
    height: 40px;
    width: 290px;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-left: 10px;
  }


  .header-mob__search:after {
    position: absolute;
    content: '';
    right: 6px;
    top: 6px;
    height: 24px;
    width: 24px;
    background: url(../images/icons/header-search.svg) 50% no-repeat;
    background-size: contain;
  }


  .menu-mob .header-top__text {
    margin-bottom: 4px;
  }

  .menu-mob .header-top__call {
    font-size: 20px;
    line-height: 24px;
    color: #273895;
    margin-bottom: 20px;
  }

  /* .arrow-up {
    display: none !important;
  } */

}

/*! Search *---------------------------------------------------------*/

.search-suggest {
  height: 40px;
  width: 278px;
  margin-bottom: 20px;
  padding-left: 10px;
  border: 1px solid #273895;
  border-radius: 2px;
}



/*! Main *---------------------------------------------------------*/

.main {
  overflow: hidden;
}


.main-wo__img {
  object-fit: cover;
  object-position: top center;
  height: 300px;
  width: 100%;
}

.main__content {
  flex: 0 0 100%;
  display: flex;
}

.main__container {
  display: flex;
  align-items: center;
}

.main__body {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}

.main__logo {
  max-width: 100%;
  max-height: 40px;
  margin-bottom: 40px;
}

.main__text {
  /* min-width: 455px; */
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 167%;
}

.main__image img {
  display: none;
}

@media (min-width: 767px) {
  .main {
    display: flex;
  }

  .main-wo__img {
    display: none;
  }

  .main__body {
    width: 40%;
    padding-right: 60px;
  }

  .main__image {
    /* отнимаем сумму двух паддингов контейнера и прибавляем один*/
    flex: 0 0 calc(((100vw - 30px) * 0.6) + 15px);
    transform: translate(-100%, 0px);
    position: relative;
    /* меняем паддинг чтобы высота картинки на стала как на макете */
    padding: 0 0 33.6% 0;
  }

  .main__image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* медиа - Величина контейнера */
@media (min-width: 1470px) {
  .main__image {
    /* flex: 0 0 calc(100vw - (((100vw - 1440px) / 2) + ((1440px - 30px) * 0.4) + 15px)); */
    flex: 0 0 calc(50vw - (0.4 - 0.5) * (1470px - 30px));
  }
}



/*! Blocks *---------------------------------------------------------*/

.blocks {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blocks__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 32%;
}

.blocks__img {
  width: 100%;
  height: 65%;
  object-fit: cover;
  object-position: center center;
}

.blocks__link {
  margin-top: 24px;
}

.blocks__logo {}

@media (max-width: 767px) {
  .blocks__item {
    flex: 0 1 48%;
    margin-bottom: 40px;
  }

}

@media (max-width: 479px) {
  .blocks__item {
    flex: 0 1 100%;
  }

}

/*! History *---------------------------------------------------------*/

.history__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.history__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 48%;
}

.history__text {
  font-size: 18px;
  line-height: 167%;
  color: #666666;
}

.history__img {
  width: 48%;
  object-fit: cover;
  object-position: center left;
}

.history {
  background: #F5F8FE;
}


.history__numbers {
  display: flex;
  justify-content: space-between;
}

.history__item {
  border-left: 1px solid #BFBFBF;
  padding-left: 20px;
  margin-right: 20px;
}

.history__number {
  font-weight: bold;
  font-size: 72px;
  line-height: 120%;
  color: #273895;
}

.history__info {
  font-size: 18px;
  line-height: 133%;
  color: #666666;
  /* Для переноса слов */
  max-width: 152px;
}

@media (max-width: 1199px) {
  .history__numbers {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .history__item {
    flex: 1 0 30%;
    justify-content: center;
    margin-bottom: 20px;
  }

  .history__number {
    font-size: 60px;
    white-space: nowrap;
  }

}

@media (max-width: 767px) {
  .history__number {
    font-size: 40px;
  }

  .history__wrapper {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .history__text {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .history__content {
    margin-bottom: 40px;
  }

  .history__content,
  .history__img {
    width: 100%;
  }


}


@media (max-width: 430px) {
  .history__item {
    flex: 1 0 80%;
  }
}


/*! Information *---------------------------------------------------------*/

.information__top {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.information__showall {
  font-weight: bold;
  font-size: 20px;
  line-height: 120%;
  color: #273895;
  transition: 0.3s;
}


.information__showall:hover,
.information__showall-bottom:hover {
  opacity: 0.5;
}

.information__showall-bottom {
  display: none;
  font-weight: bold;
  font-size: 20px;
  line-height: 120%;
  color: #273895;
  transition: 0.3s;
  position: relative;
}

.information__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(346px, 1fr));
  column-gap: 30px;
}

.information__wrapper .card__item {
  margin-bottom: 40px;
}


.bground-information {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), url('../images/bg-stati.jpg');
}


.more {
  color: #273895;
  transition: 0.3s;
}

.more:hover {
  opacity: 0.5;
}

@media (max-width: 574px) {
  .information__showall {
    display: none;
  }

  .information__showall-bottom {
    display: block;
  }

  .information__wrapper .card__item {
    flex: 0 1 48%;
    box-shadow: none;
    padding: 0px;
    position: relative;
  }

  .information__wrapper .card__item:before,
  .information.information__showall-bottom:before {
    margin-bottom: 20px;
    position: absolute;
    content: '';
    right: 0;
    left: 0;
    top: -20px;
    height: 1px;
    background: #E6E6E6;
  }

  .information__wrapper .card__img {
    display: none;
  }

  .information__wrapper .card__text {
    margin: 0;
  }
}

@media (max-width: 375px) {
  .information__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
}


/*! PAGE About *---------------------------------------------------------*/

.bground {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bground-about {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), url('../images/big-title-img1.jpg');
}


/* about__tabs - контейнер общий
tabs__items - контейнер с табами
content_tabs - контейнер со страницами
ссылкам и страничкам класс не задаем, пользуемся вложенностью */

.about .tabs__items {
  border-radius: 8px;
}

.tabs__items {
  display: flex;
  justify-content: space-around;
  border: 1px solid #E6E6E6;

}

.tabs__items a {
  flex-shrink: 1;
  flex-grow: 1;
  font-size: 18px;
  line-height: 24px;
  color: #323232;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 78px;
  padding: 27px 15px;
  border-right: 1px solid #E6E6E6;
  transition: 0.3s;
  text-align: center;
}


.tabs__items a:last-child {
  border-right: none;
}

.tabs__items a:hover {
  background-color: #273EBA;
  color: #fff;
}

.tabs__items a:last-child:hover {
  border-radius: 0 8px 8px 0;
}

.tabs__items a:first-child:hover {
  border-radius: 8px 0 0 8px;
}

.about__tabs {
  margin-top: 40px;
}

.about__tabs .tabs__items .active_tabs:first-child {
  border-radius: 8px 0 0 8px;
}

.about__tabs .tabs__items .active_tabs:last-child {
  border-radius: 0 8px 8px 0;
}

.content_tabs div[data-item*=content_tabs] {
  display: none;
}

.content_tabs div[data-item*=content_tabs].active_tabs {
  display: block;
  /* clear: both; */
  /* width: 100%; */
}

.tabs__items .active_tabs {
  background-color: #273895;
  color: #fff;
  transition: 0.3s;
}

.content_tabs {
  font-size: 18px;
  line-height: 167%;
  color: #666666;
}

.about__bg {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about__bg:first-child {
  padding-top: 60px;
}

.about__bg:nth-child(even) {
  background: #F5F8FE;
}


.about__bg:nth-child(even) .about__wrapper {
  flex-direction: row-reverse;
}


.about__wrapper {
  display: flex;
  justify-content: space-between;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48%;
}


.about__title {
  font-weight: bold;
  font-size: 32px;
  line-height: 120%;
  color: #323232;
  margin-bottom: 40px;
}

.about__info {
  font-size: 18px;
  line-height: 167%;
  color: #666666;
}

.about__info p {
  margin-bottom: 20px;
}

.about__info p:last-child {
  margin-bottom: 0;
}

.about__img {
  width: 48%;
  object-fit: cover;
}

@media (max-width: 1365px) {
  .tabs__items {
    flex-wrap: wrap;
  }

  .tabs__items a {
    flex: 1 1 33%;
    padding: 12px;
    border-bottom: 1px solid #E6E6E6;
  }

  .tabs__items a:last-child:hover {
    border-radius: 0 0 8px 0;
  }

  .tabs__items a:first-child:hover {
    border-radius: 8px 0 0 0;
  }

  .about__tabs .tabs__items .active_tabs:first-child {
    border-radius: 8px 0 0 0;
  }

  .about__tabs .tabs__items .active_tabs:last-child {
    border-radius: 0 0 8px 0;
  }

  .tabs__items a:nth-child(3):hover {
    border-radius: 0 8px 0 0;
  }

  .about__tabs .tabs__items .active_tabs:nth-child(3) {
    border-radius: 0 8px 0 0;
  }

  .tabs__items a:nth-child(4):hover {
    border-radius: 0 0 0 8px;
  }

  .about__tabs .tabs__items .active_tabs:nth-child(4) {
    border-radius: 0 0 0 8px;
  }
}

@media (max-width: 767px) {
  .tabs__items a {
    min-height: 72px;
    font-size: 16px;
  }

  .about__wrapper,
  .about__bg:nth-child(even) .about__wrapper {
    flex-direction: column;
  }

  .about__bg {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .about__bg .about__content,
  .about__bg .about__img {
    width: 100%;
  }

  .about__info {
    margin-bottom: 40px;
  }

  .bground {
    display: none;
  }
}

@media (max-width: 574px) {
  .tabs__items {
    flex-wrap: wrap;
  }

  .tabs__items a {
    flex: 1 1 100%;
    min-height: 50px;
  }

  .tabs__items a:last-child:hover {
    border-radius: 0 0 8px 8px;
  }

  .tabs__items a:first-child:hover {
    border-radius: 8px 8px 0 0;
  }

  .about__tabs .tabs__items .active_tabs:first-child {
    border-radius: 8px 8px 0 0;
  }

  .about__tabs .tabs__items .active_tabs:last-child {
    border-radius: 0 0 8px 8px;
  }


  .tabs__items a:nth-child(3):hover {
    border-radius: 0;
  }

  .about__tabs .tabs__items .active_tabs:nth-child(3) {
    border-radius: 0;
  }

  .tabs__items a:nth-child(4):hover {
    border-radius: 0;
  }

  .about__tabs .tabs__items .active_tabs:nth-child(4) {
    border-radius: 0;
  }
}

/*! Licences *---------------------------------------------------------*/

.licences {
  font-size: 18px;
  line-height: 167%;
  margin-top: 60px;
}

.licences__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 136%;
  color: #323232;
  margin-bottom: 40px;
}

.licences__info {
  color: #666666;
  margin-bottom: 60px;
  margin-top: 60px;
}

.licences__text {
  margin-bottom: 30px;
}

.licences__links {
  display: flex;
  flex-direction: column;

  margin-bottom: 60px;
}

.licences__link {
  font-weight: bold;
  margin-bottom: 30px;
  color: #273895;
  transition: 0.3s;
}

.licences__link:hover {
  opacity: 0.5;
}

.licences__subinfo {
  font-size: 18px;
  color: #666666;
}

/*! Partners *---------------------------------------------------------*/

.partners__wrapper {
  margin-top: 40px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 20px;
}

.partner__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  height: 220px;
}

.partner__img {
  width: 100%;
  object-fit: contain;
}

/*! Production *---------------------------------------------------------*/

.bground-production {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), url('../images/bg-production.jpg');
}

.production__tabs {
  margin-top: 40px;
}

.production__tabs .tabs__items a {
  padding: 25px 84px;
}

.production__tabs .tabs__items a:hover {
  border-radius: 0;
}

.production__wrapper {
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-gap: 40px;
}


@media (max-width: 575px) {
  .production__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .production__tabs .tabs__items a {
    padding: 25px;
  }
}


/*! Monograph *---------------------------------------------------------*/

.bground-monograph {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), url('../images/science-bg.jpg');
}

.monograph__wrapper {
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-gap: 40px;
}

@media (max-width: 575px) {
  .monograph__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

}


/*! News *---------------------------------------------------------*/

.news__wrapper {
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(346px, 1fr));
  row-gap: 60px;
  column-gap: 30px;
}



.news-detail__top {
  display: flex;
  justify-content: space-between;
}

.news-detail__text {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 167%;
  color: #666666;
}

.news-detail__date {
  font-size: 16px;
  line-height: 125%;
}

@media (max-width: 767px) {
  .news-detail__top {
    flex-direction: column-reverse;
  }

  .news-detail__date {
    margin-bottom: 20px;
  }
}


/*! Contacts *---------------------------------------------------------*/

.contacts__wrapper {
  margin-top: 40px;
  display: flex;
  font-size: 18px;
  line-height: 167%;
  color: #666666;
}

.contacts__column:first-child {
  margin-right: 250px;
}

.contacts__item {
  margin-bottom: 40px;
}

.contacts__item:last-child {
  margin-bottom: 0px;
}

.contacts__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 136%;
  color: #323232;
}

.contacts__link {
  display: block;
  color: #273895;
}

.contacts-map {
  margin-top: 20px;
}

.contacts-map__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hidemap,
.showmap {
  font-weight: bold;
  font-size: 20px;
  line-height: 120%;
  color: #273895;
}

.map {
  height: 640px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contacts-spoilers {
  /* display: flex; */
  display: none;
  flex-direction: column;
  margin-bottom: 120px;
}

.contacts-spoiler__item {
  width: 100%;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  margin-bottom: 16px;
}

.contacts-spoiler__img {
  width: 400px;
}

.contacts-spoiler__img img {
  width: 100%;
}

.contacts-spoiler__main {
  cursor: pointer;
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 30px;
}

.contacts-spoiler__logo {
  width: 162px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  margin-right: 60px;
}

.contacts-spoiler__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 136%;
  color: #323232;
}

.contacts-spoiler__btn {
  margin-left: auto;
  transition: 0.3s;
}

.contacts-spoiler__btn-opened {
  transform: scaleY(-1);

}

.contacts-spoiler__hide {
  border-top: 1px solid #E6E6E6;
  padding: 40px;
  display: flex;
  justify-content: space-between;
}

.contacts-spoiler__hide .contacts__column:first-child {
  margin-right: 15px;
}

.contacts__icons {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

.contacts__social {
  margin-right: 20px;
}

.contacts__social-img img {
  height: 100%;
  object-fit: contain;
}


@media (max-width: 991px) {
  .contacts__column:first-child {
    margin-right: 15px;
    margin-bottom: 20px;
  }

  .contacts-spoiler__hide {
    flex-wrap: wrap;
  }

  .contacts__wrapper {
    flex-wrap: wrap;
  }

  .contacts__column {
    flex: 1 1 48%;
  }

  .contacts-spoiler__img {
    flex: 1 1 48%;
    margin-top: 20px;
  }

  .map {
    height: 400px;
  }

  .contacts-spoiler__logo {
    width: 20%;
    margin-right: 15px;
  }

  .hidemap,
  .showmap {
    font-size: 16px;
  }
}

@media (max-width: 574px) {
  .contacts__column {
    flex: 1 0 100%;
  }

  .map {
    height: 240px;
  }

  .contacts-spoiler__main,
  .contacts-spoiler__hide {
    padding: 15px;
  }

  .contacts-spoiler__title {
    font-size: 14px;
  }

  .hidemap,
  .showmap {
    font-size: 14px;
  }
}

/*! Proizvodstvo *---------------------------------------------------------*/

.proizv__text {
  font-size: 18px;
  line-height: 167%;
  letter-spacing: 0.02em;
  color: #666666;
  margin-top: 60px;
}

.proizv__text p {
  margin-bottom: 30px;
}


.bground-proizv {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), url('../images/bg-proizv.jpg');
}

/*! Slider *----------------------------------------------------------------------------------------------*/

.slider-arrows__right {
  background: url('../images/icons/arrow-right.svg')no-repeat 100%;
  right: -36px;
}

.slider-arrows__left {
  background: url('../images/icons/arrow-left.svg')no-repeat 50%;
  left: -36px;
}

.slider-arrows__right,
.slider-arrows__left {
  background-size: contain;
  width: 25.6px;
  height: 44.8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 0.3s
}

.slider-arrows__right:hover,
.slider-arrows__left:hover {
  cursor: pointer;
}

.slider-dots {
  position: absolute;
  bottom: -41px;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
}

.slider-dots li {
  width: 80px;
  height: 7px;
  margin: 0 15px;
  background: linear-gradient(91.78deg, #FF5858 -17.33%, #F09819 86.78%);
  opacity: 0.5;
  transition: 0.3s;
}

.slider-dots li button {
  font-size: 0
}

.slider-dots .slick-active {
  background: linear-gradient(91.78deg, #FF5858 -17.33%, #F09819 86.78%);
  opacity: 1;
}

.slider-dots li:hover {
  cursor: pointer;
  background-position: 0 50%
}

.slider-pr {
  margin-bottom: 120px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.slide-pr {
  height: 300px;
  object-fit: cover;
}


@media (max-width: 1550px) {
  .slider-pr {
    width: 95%;
    margin: 40px auto;
  }
}

@media (max-width: 992px) {
  .slider-pr {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .slide-pr {
    width: 100%;
  }
}


.slick-list {
  margin-right: -30px !important;
}

@media (max-width: 1540px) {
  .slick-list {
    margin-right: 0px !important;
  }
}

.slider-dots {
  position: absolute;
  bottom: -20px;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
}

.slider-dots li {
  width: 6px;
  height: 6px;
  background: #C4C4C4;
  border-radius: 5px;
  margin: 0 15px;
}

.slider-dots li button {
  font-size: 0
}

.slider-dots .slick-active {
  background: #273895;
}

.slider-dots li:hover {
  cursor: pointer;
  background-position: 0 50%
}


/*! Footer *---------------------------------------------------------*/

.footer {
  background: #273895;
  color: #fff;
}

.footer__wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
}

.footer-top,
.footer-main,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  margin-right: auto;
}

.logo__img {
  width: 100%;
}

.footer-top__eye {
  display: flex;
  justify-content: flex-end;
}

.footer-top__text {
  text-align: end;
  font-weight: bold;
  font-size: 20px;
  line-height: 120%;
}

.footer-icon__img {
  margin-left: 12px;
}

.sep {
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-main {
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-main a {
  transition: 0.3s;
}

.footer-main a:hover {
  opacity: 0.5;
}

.footer-main__item {
  padding-right: 15px;
  flex: 1 1 18%;
  min-width: 200px;
  font-size: 20px;
  display: flex;
  flex-direction: column;
}

.footer-main__title {
  font-weight: bold;
  line-height: 120%;
  margin-bottom: 20px;
}

.footer-main__link {
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 20px;
}

.footer-contacts__title {
  margin-bottom: 4px;
}

.footer-contacts__icons {
  display: flex;
}

.footer-social {
  margin-right: 20px;
}

.footer-bottom__text {
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__logo-IR {
  margin-left: 15px;
}

.footer__logo-IR img {
  margin-top: 20px;
  width: 100%;
}

.polit {
  font-size: 16px;
  line-height: 125%;
}

.polit:hover {
  cursor: pointer;
}

@media (max-width: 767px) {

  .footer__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

}

@media (max-width: 574px) {

  .footer-main__item {
    margin-bottom: 24px;
  }

}

@media (max-width: 460px) {

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-top__eye {
    justify-content: start;
    margin-top: 20px;
  }

  .footer-top__text {
    text-align: start;
  }


  .footer__logo-IR {
    margin-left: 0;
  }

}

.dnone {
  display: none !important;
}

/* FOS */



.fos-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.301);
  z-index: 100;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.fos-popup-visible {
  display: flex;
}

.fos-form {
  background: #FFFFFF;
  padding: 41px 45px 47px;
  max-width: 500px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.fos-close {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #333333;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}

.fos-block_title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #323232;
  margin-bottom: 48px;
}

.fos-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #555555;
}

.fos-text .polit {
  font-size: 16px;
  line-height: 20px;
  color: #273EBA;
}

.fos-name,
.fos-number {
  border: 1px solid #C0C0C0;
  width: 100%;
  height: 60px;
  font-size: 18px;
  line-height: 135%;
  padding: 20px;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 20px;
  color: #333333;
}

.fos-name::placeholder,
.fos-number::placeholder {
  font-size: 18px;
  line-height: 21px;
  color: #9F9F9F;
}


.fos-btn {
  margin-top: 32px;
  font-size: 18px;
  line-height: 135%;
  color: #FFFFFF;
  background: #273895;
  padding: 23px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #273895;
  text-align: center;
}

.fos-btn:hover {
  background: #FFFFFF;
  color: #273895;
  border: 1px solid #273895;
}

.fos-popup .fos-btn:hover {
  color: #273895;
  background: #ffffff;
}

.fos-message {
  font-weight: bold;
  color: #333333;
  padding: 10px;
  background: #fff;
  font-size: 18px;
}

.label {
  display: flex;
  justify-content: space-between;
  margin-top: 39px;
}

.checkbox {
  display: none;
}

.checkstyle {
  display: flex;
  width: 18px;
  height: 18px;
  border: 1px solid #A8A8A8;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
  padding-right: 16px;
}

/* Нужна иконка галочки */

.checkstyle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 12px;
  height: 10px;
  background: url('../images/icons/check.svg')no-repeat;
  opacity: 0;
  transition: 0.3s;
}

.checkbox:checked+.checkstyle:before {
  opacity: 1;
}

.check-text {
  font-size: 14px;
  line-height: 150%;
  color: #111111;
  cursor: pointer;
}






/* Polit */



.polit-popup {
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.301);
  z-index: 100;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.polit-block {
  max-width: 1440px;
  background: #fff;
  overflow-y: auto;
  height: 100%;
  position: relative;
  padding-bottom: 30px;
}

.polit-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #000;
  transition: 0.3s;
}

.polit-close:hover {
  opacity: 0.5;
}


.polit-popup__content {
  padding: 5%;
  padding-top: 60px;
  height: 100%;
  overflow-y: auto;
}

.polit-popup__title {
  margin-bottom: 20px;
  font-size: 25px;
  text-align: center;
}

.polit-block::-webkit-scrollbar {
  display: none;
}

.polit {
  text-decoration: underline;
}

.polit-popup__text {
  line-height: 125%;
}

.polit-popup__text p {
  margin-bottom: 10px;
}