@import url(../fonts/fonts.css);
@import url(header.css);
html { font-size: 14px; }

body { -webkit-box-sizing: border-box; box-sizing: border-box; font-family: "Inter"; color: #000; margin: 0; padding: 0; }

a, a:hover { text-decoration: none; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; cursor: pointer; }

a { color: #034693; font-weight: 500; }

a:hover { color: #0066db; }

h1, h2, h3, h4, p, ul, ol { margin: 0; }

ul, ol { list-style: none; margin: 0; padding: 0; }

img { width: 100%; }

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

.indent-180 { margin-top: 180px; }

.indent-custom { margin-top: 130px; padding-top: 50px; }

.indent-xlarge { margin-top: 80px; }

.indent-large { margin-top: 60px; }

.indent-medium { margin-top: 40px; }

.indent-small { margin-top: 30px; }

.indent-xsmall { margin-top: 20px; }

.padding-180 { padding: 180px 0; }

.padding-b180 { padding-bottom: 180px; }

.padding-100 { padding: 100px 0; }

.padding-90 { padding: 90px 0; }

.title.large { font-size: 68px; font-weight: 600; color: #090909; }

.title.medium { font-weight: 500; font-size: 32px; color: #034693; }

.title.small { font-weight: 500; font-size: 24px; line-height: 1.33; color: #333333; }

.title.xsmall { font-weight: 500; font-size: 18px; line-height: 1.33; color: #090909; }

.centered { text-align: center; margin-left: auto; margin-right: auto; }

.bg-lightblue { background: rgba(3, 70, 147, 0.1); }

.btn-main { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; padding: 20px 0; width: 206px; font-size: 18px; color: #F8F8F8; font-weight: 500; background: #034693; border: 3px solid #034693; -webkit-transition: .5s; -o-transition: .5s; transition: .5s; cursor: pointer; }

.btn-main i { margin-right: 10px; }

.btn-main:hover { background: #F8F8F8; color: #034693; }

.btn-main.white { background: #F8F8F8; color: #034693; }

.btn-main.white:hover { color: #F8F8F8; background: #034693; }

.text { font-size: 16px; color: #333; }

p.blue { color: #034693; }

.img-container, .text-container { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin: 0 auto 20px; }

.default-list li { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 10px; padding-left: 15px; }

.default-list li:before { content: '\2022'; margin-right: 15px; color: #034693; }

ol.default-list { counter-reset: list; }

ol.default-list li:before { counter-increment: list; content: counter(list) "."; font-weight: 600; min-width: 30px; }

.mobile-menu {  
  background-color: #034693;
  position: fixed;
  right: -200px;
  top: 0px;
  height: 100%;
  width: 200px;
  z-index: 10009;
  transition: 0.4s linear;
  display: block;
  overflow-y: scroll;
  border-left: 3px solid #034693;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu .logo{
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu .logo img{
	width: auto;
	height: 100%;
}

.mobile-menu li {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mobile-menu li a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 40px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 5px 5px 10px;
  font-size: 12px;
  font-style: normal;
}

.mobile-menu .deeper > a,
.mobile-menu .deeper > span {
  padding-right: 15px;
  width: 80%;
}
.mobile-menu .nav-child img{
  width: 20px;
  margin-right: 10px;
}

.mobile-menu li .list-btn {
  width: 20%;
  height: 40px;
  top: 0;
  right: 0;
  border-bottom: none;  
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.mobile-menu .list-btn:before,
.mobile-menu .list-btn:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 6px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(45deg);
}

.mobile-menu .list-btn:after
 {
  transform: translate(2px, -50%) rotate(-45deg);
}
.mobile-menu .list-btn.open:before, .mobile-menu .list-btn.open:before{
  transform: translate(-2px, -50%) rotate(-45deg);
} 

.mobile-menu .list-btn.open:after, .mobile-menu .list-btn.open:after{
  transform: translate(2px, -50%) rotate(45deg);
}

.mobile-menu .nav-child {
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  width: 100%;
}

.mobile-menu .nav-child li.deeper .list-btn {
  width: 20%;
}
.mobile-menu .list-btn:hover i,
.mobile-menu .list-btn.open i {
  background-color: #00a8e7;
}

/*===================================*/
.main-slider .swiper-slide { padding: 10% 0; background-repeat: no-repeat; background-size: cover; background-position: center; color: #F8F8F8; }

.main-slider .swiper-slide .text { color: #F8F8F8; }

.main-slider .swiper-slide .container { width: auto; }

.main-slider .swiper-slide.slide1 { background-image: url(../../../images/ISRZ_1.jpg); }

.main-slider .title { font-size: 64px; font-weight: 600; max-width: 690px; }

.main-about .flex { -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }

.main-about .flex li { width: 45%; padding-right: 30px; margin-bottom: 20px; }

.main-about .flex li i { font-size: 50px; color: #034693; }

.main-about .flex li .text { font-weight: 500; margin-top: 15px; }

.main-about .img-container { -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; }

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

.main-gallery .swiper-slide { height: 450px !important; }

.main-gallery .swiper-slide { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; height: 100%; cursor: pointer; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }

.main-gallery .swiper-slide .sigFreeThumb { width: -webkit-calc(50% - 1px); width: calc(50% - 1px); height: -webkit-calc(33.3% - 1px); height: calc(33.3% - 1px); }

.main-gallery .swiper-slide .sigFreeThumb img { width: 100% !important; height: 100% !important; background-size: cover; background-repeat: no-repeat; }

.main-gallery .swiper-slide:nth-of-type(odd) .sigFreeThumb:first-of-type, .main-gallery .swiper-slide:nth-of-type(even) .sigFreeThumb:last-of-type { padding: 1px; width: -webkit-calc(100% - 2px); width: calc(100% - 2px); height: -webkit-calc(66.7% - 2px); height: calc(66.7% - 2px); }

.swiper-navigation { width: 58px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }

.swiper-navigation .swiper-button-next, .swiper-navigation .swiper-button-prev { font-weight: 700; cursor: pointer; }

.tabs-main-info .tabs-item a { margin-right: 80px; font-size: 24px; font-weight: 500; color: #5E5E5E; }

.tabs-main-info .tabs-item a:hover { color: #034693; }

.tabs-main-info .tabs-item.active a { color: #034693; text-decoration: underline; }

.main-sertificates .img-container { width: 20%; padding: 15px; }

.main-reviews .swiper-slide { background: #F0F2F4; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; height: auto; }

.main-reviews .swiper-slide .img-container { border-left: 2px solid #034693; padding-left: 15px; margin: 30px 30px 15px 20px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; }

.main-reviews .swiper-slide .caption { font-weight: 500; font-size: 18px; color: #034693; margin: 15px 30px 40px 20px; }

.main-contacts { position: relative; }

.main-contacts .container { padding: 5% 15px; }

.main-contacts .map { position: absolute; top: 0; right: 0; width: 56%; max-width: 1200px; height: 75%;}

.main-contacts .map iframe{ width: 100%; height: 100%; border: none;}

.main-contacts .links a { display: block; font-weight: 500; font-size: 18px; color: #090909; margin-bottom: 15px; }

.main-contacts .links li { margin-bottom: 15px; }

.main-contacts .links li:before { font-size: 25px; color: #034693; margin-right: 15px; }

.category.news .news-item { margin-bottom: 30px; max-height: 275px; min-height: 275px; overflow-y: auto;}

.category.news .news-item .news-item-left { width: 280px; flex-shrink: 0; background: url(../../../images/logo.png) no-repeat center/30% #F8F8F8;}

.category.news .news-item .news-item-image, .category.news .news-item .news-item-image a { height: calc(100% - 3px); }

.category.news .news-item .news-item-image img { -o-object-fit: cover; object-fit: cover; height: 100%; }

.category.news .news-item .news-item-right { padding: 35px 30px 35px 20px; background: #F8F8F8; font-size: 14px; line-height: 1.5; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; height: calc(100% - 3px); min-width: calc(100% - 280px);}

.category.news .news-item .news-item-introtext { -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }

.category.news .pagination-list { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; }

.category.news .pagination-list a, .category.news .pagination-list span { padding: 7.5px; font-weight: 500; font-size: 14px; color: #ACACAC; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; }

.category.news .pagination-list span { cursor: not-allowed; }

.category.news .pagination-list a:hover, .category.news .pagination-list span.active {color: #034693; }

.news-article { font-size: 14px; line-height: 1.4; }

.news-article .img-box{overflow: hidden; display: inline-block; margin: 10px auto; max-width: 410px; max-height: 275px;}

.news-article .img-box.vid{position: relative;}
.news-article .img-box.vid:before{content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; background: url(/images/play.svg) no-repeat center rgba(0, 0, 0, .7);}

.news-article .img-box img{object-fit: cover;}

.publication-date { font-size: 12px; }

.publication-date:before {display: table; content: ''; clear: both; }

.pager.pagenav { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; font-size: 16px; margin-top: 30px; }

.main-news .col-12 { margin-bottom: 30px; }

.main-news .item { background: #F8F8F8; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; }

.main-news .item:hover { -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2); box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2); }

.main-news .newsflash-image { min-width: 45%; }

.main-news .newsflash-image img { height: 100%; -o-object-fit: cover; object-fit: cover; }

.main-news .text-container { padding: 35px 30px 35px 20px; font-size: 14px; line-height: 1.5; color: #333333; }

.main-news .text-container .title { margin-bottom: 20px; }

.page .page-header { position: relative; }

.page .page-header .item-image {width: 100%; height: 600px; margin: 0}

.page .page-header .item-image img { height: 100%; -o-object-fit: cover; object-fit: cover; }

.page .page-header .container { position: absolute; left: 0; right: 0; bottom: 0; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; }

.page .page-header .page-title { height: 250px; width: 100%; max-width: 640px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background: rgba(3, 70, 147, 0.8); color: #fff; padding-left: 40px; }

.history-slider .pagination { position: absolute; left: 0; bottom: 0; width: 180px; height: 69px; background: #F0F2F4; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; z-index: 5; }

.history-slider .swiper-pagination { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-weight: 500; font-size: 14px; color: #2F2F30; }

.history-slider .swiper-pagination span { margin: 0 5px; }

.history-slider .swiper-pagination-current { font-weight: 500; font-size: 32px; color: #034693; }

.history-slider .swiper-button-prev, .history-slider .swiper-button-next { position: absolute; top: -webkit-calc(50% - 5px); top: calc(50% - 5px); font-size: 18px; line-height: 1; font-weight: 700; color: #034693; z-index: 10; cursor: pointer; }

.history-slider .swiper-button-prev { left: 30px; }

.history-slider .swiper-button-next { right: 30px; }

.history-slider .pagination .swiper-button-disabled { color: #ACACAC; }

.quality-control .img-container { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }

.quality-control .img-container img { width: 45%; }

.accordion .question { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; padding: 50px 30px; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; background: #F0F2F4; }

.accordion .question i { color: #034693; font-size: 24px; }

.accordion .answer { display: none; padding: 10px 30px 50px; background: #F0F2F4; }

.page-technical .answer .col-12 { margin-bottom: 30px; }

.page-technical .answer .title.xsmall { margin-bottom: 15px; }

.page-repair .text-container .text { max-width: 420px; line-height: 1.75; }

.question .title:before { margin-right: 15px; }

.answer .default-list { font-size: 18px; }

.inner-page { padding: 120px 0; }

.title-box { margin-bottom: 40px; font-size: 12px; }

.caption { color: #034693; padding: 5px 0px; }

.box { margin-bottom: 40px; }

.box:last-child { margin-bottom: 0; }

.box .title { margin-bottom: 10px; }

.box .text { padding: 5px 0; }

.form-box { padding: 20px 0 10px; }

.form-container { margin-bottom: 25px; padding: 25px 0 15px; border-top: 1px solid #034693; }

.form-group { margin-bottom: 15px; }

.form-group:last-child { margin-bottom: 0; }

.label { display: block; color: #034693; font-size: 16px; line-height: 18px; padding: 4px 0; }

.input { height: 45px; border: 1px solid #ACACAC; width: 100%; max-width: 635px; padding: 4px 10px; font-size: 16px; line-height: 18px; }

.input:focus { border-color: #034693; }

.input_textarea { height: 90px; min-height: 45px; max-height: 180px; resize: vertical; }

.input_textarea_min { height: 45px; }

.nav-box__row { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }

.nav-box__item { -webkit-box-flex: 0; -webkit-flex: 0 0 25%; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; border: 1px solid rgba(248, 248, 248, 0.5); overflow: hidden; min-height: 370px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-sizing: border-box; box-sizing: border-box; }

.nav-box__item-content { -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; color: #F8F8F8; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; padding: 50px 30px 30px; -webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s; }

.nav-box__item-content:hover { background: rgba(3, 70, 147, 0.8); }

.nav-box__item-content:hover .nav-box__block { max-height: 100%; }

.nav-box__item-content:hover .nav-box__link { opacity: 1; -webkit-transition: all .7s .3s; -o-transition: all .7s .3s; transition: all .7s .3s; }

.nav-box__item-link { color: #F8F8F8; font-size: 16px; line-height: 20px; margin-bottom: 14px; }

.nav-box__item-link:hover { color: #F8F8F8; opacity: .8; }

.nav-box__item-link:last-child { margin-bottom: 0; }

.nav-box__title { font-size: 24px; line-height: 34px; color: #F8F8F8; font-weight: 500; padding-bottom: 20px; display: block; }

.nav-box__title:hover { color: #F8F8F8; }

.nav-box__list { padding: 0 0 75px; }

.nav-box__link { color: #F8F8F8; font-weight: 600; font-size: 16px; line-height: 18px; display: inline-block; text-decoration: none; border-bottom: 1px solid #F8F8F8; opacity: 0; -webkit-transition: all .1s .3s; -o-transition: all .1s .3s; transition: all .1s .3s; }

.nav-box__block { max-height: 0; overflow: hidden; -webkit-transition: all .7s; -o-transition: all .7s; transition: all .7s; }

.stud-center-section { padding-bottom: 180px; }

.stud-center-section .answer .title.xsmall { margin-bottom: 15px; }

.stud-center-section .answer .col-12 { margin-bottom: 30px; }

.index-main-section { background: url(/images/ISRZ_1.jpg) no-repeat center/cover; }

.table { display: table; width: 100%; }

.table__row { display: table-row; }

.table__cell { display: table-cell; padding: 3px 10px; vertical-align: middle; padding: 40px 10px; }

.table__head { display: table-header-group; font-weight: bold; color: #333333; font-weight: 500; font-size: 32px; line-height: 39px; }

.table__head .table__cell { padding: 30px 10px; border-bottom: 2px solid #090909; }

.table__footer { background-color: #EEE; display: table-footer-group; font-weight: bold; }

.table__body { display: table-row-group; }

.stud-center__table .table__cell:nth-child(1) { min-width: 115px; }

.stud-center__table .table__body .table__cell { border-bottom: 1px solid #090909; }

.stud-center__table .table__body .table__cell:nth-child(1) { text-align: center; font-size: 24px; line-height: 34px; }

.stud-center__table .table__body .table__cell:nth-child(2) { font-weight: 500; font-size: 24px; line-height: 34px; }

.stud-center__table .table__body .table__cell:nth-child(3) { font-size: 16px; line-height: 24px; }

.stud-center__table .table__body .table__cell:nth-child(4) { font-size: 16px; line-height: 24px; }

.contact-item { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; color: #090909; font-size: 18px; line-height: 22px; margin-bottom: 20px; }

.contact-item i { -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; margin-right: 15px; font-size: 22px; color: #034693; }

.contact-item a { color: #090909; display: block; }

.contact-item a:hover { color: #034693; }

.social { max-width: 250px; }

.social__icons { margin-bottom: 10px; }

.social__icons a { margin-right: 20px; font-size: 40px; color: #034693; }

.social__icons a:hover { color: #fff; }

.social__text { font-size: 16px; line-height: 20px; -webkit-text-decoration-line: underline; text-decoration-line: underline; color: #5E5E5E; }

.pagenavcounter{text-align: center; font-size: 14px;}

.article-index{margin: 20px auto 100px;}

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

.nav-stacked{	
	display: flex;
	justify-content: center;
	align-items: stretch;
}

.navs a, .nav-stacked a{
	font-size: 16px;
	min-height: 34px;
	min-width: 34px;
	padding: 0 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
	background: #034693;
	color: #fff;
	border: 2px solid #034693;
	transition: 0.5s;
}


.navs a:hover, .nav-stacked a:hover{
	background: #fff;
	color: #034693;
}

.nav-stacked .active a{
	background-color: #8B9FB5;
	pointer-events: none;
	border-color: #8B9FB5;
}

.nav-stacked li:first-child, .nav-stacked li:first-child a{
	font-size: 0.01px;
	height: 100%;
}

.nav-stacked li:first-child a:before{
	font-size: 16px;
	line-height: 16px;
	content: '1';
}

.works-table{
	width: 100%;
	max-width: 1000px;
	border: 1px solid #034693;
	border-collapse: collapse;
	font-size: 14px;
	overflow-x: scroll;
	margin: 0 auto;
}

.works-table thead{
	background: #034693;
	color: #fff;
}

.works-table th{
	padding: 15px 5px;
}

.works-table td{
	padding: 5px;
}

.works-table td:not(:first-child) {
	text-align: center;
}

.works-table tr:nth-of-type(even){
	background: rgba(3, 70, 147, 0.2);
}

.bureau-page .page-title.title{
	font-size: 50px;
}

.body-404 .body-wrapper{
	display: flex;
	flex-direction: column;
}

.content-404{
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../../../images/bg-404.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 15px;
  height: 600px;
}

.content-404 .text-container{
	align-items: flex-start;
}

.content-404 .oops{
	font-weight: 600;
	font-size: 45px;
	line-height: 1.22;
	color: #034693;	
}

.content-404 .note{
	font-size: 16px;
	line-height: 1.75;
	color: #333333;
	max-width: 400px;
}

.chzn-container {
  width: 70px !important;
}

.chzn-container-single {
  background-color: rgba(3, 70, 147, 0.95) !important;
}
.chzn-container-single .chzn-single {
  background: rgba(3, 70, 147, 0.95) !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.chzn-container-single.chzn-with-drop .chzn-single {
  background-color: #F2F2F2 !important;

  color: rgba(3, 70, 147, 0.95) !important;
}

.chzn-container .chzn-results li.active-result {
  box-sizing: border-box;
}

.chzn-container .chzn-results li.highlighted {
  background: #E5ECF4 !important;
  border-top: .5px solid #14549E !important;
  border-bottom: .5px solid #14549E !important;
  color: #000 !important;
}

.chzn-container-single .chzn-drop {
  border-radius: 0 !important; 
}

.chzn-container .chzn-drop {
  border: none !important;
  box-shadow: none !important;
}

/* Styling scrollbars for Chrome/Edge/Safari */
::-webkit-scrollbar {
    width: 6px;               /* width of the entire scrollbar */
}
::-webkit-scrollbar-track {
    background: #999;        /* color of the tracking area */
}
::-webkit-scrollbar-thumb {
    background-color: rgba(3, 70, 147, 0.85);    /* color of the scroll thumb */
    border-radius: 3px;       /* roundness of the scroll thumb */
    border: 1px solid #999;  /* creates padding around scroll thumb */
}
.chosen-container{
  min-width: 64px;
}
/* Styling scrollbars for Firefox */
html, body, div, * {
    scrollbar-width: thin;          /* "auto" or "thin"  */
    scrollbar-color: rgba(3, 70, 147, 0.85) #999;   /* scroll thumb & track */
}

/*===================================*/
@media (min-width: 1200px) { .container { max-width: 1280px; } }

@media screen and (max-width: 1200px) { .indent-xlarge { margin-top: 60px; }
  .indent-large { margin-top: 50px; }
  .indent-medium { margin-top: 35px; }
  .indent-small { margin-top: 25px; }
  .indent-xsmall { margin-top: 15px; }
  .padding-180 { padding: 150px 0; }
  .padding-b180 { padding-bottom: 150px; }
  .padding-100 { padding: 80px 0; }
  .padding-90 { padding: 60px 0; }
  .nav-box__title { font-size: 18px; line-height: 20px; } 
  .category.news .news-item .news-item-left { min-width: 230px;}
}

@media screen and (max-width: 992px) { html { font-size: 8.3px; }
  .title.large { font-size: 48px; }
  .nav-box__item { -webkit-box-flex: 0; -webkit-flex: 0 0 50%; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }
  .indent-180 { margin-top: 120px; }
  .padding-180 { padding: 120px 0; }
  .padding-b180 { padding-bottom: 120px; }
  .padding-100 { padding: 60px 0; }
  .padding-90 { padding: 50px 0; }
  .main-slider .title { font-size: 48px; }
  .main-about .img-container { display: none; }
  .nav-box__item-content { background: rgba(3, 70, 147, 0.8); display: block; padding: 20px 15px 0px; }
  .nav-box__block { max-height: 100%; padding-bottom: 20px; }
  .nav-box__link { opacity: 1; }
  .nav-box__item { min-height: 0; }
  .table__head { font-size: 22px; line-height: 26px; }
  .table__cell { padding: 30px 6px; }
  .stud-center__table .table__cell:nth-child(1) { min-width: 85px; }
  .stud-center__table .table__body .table__cell:nth-child(1), .stud-center__table .table__body .table__cell:nth-child(2) { font-size: 20px; line-height: 24px; }
  .stud-center__table .table__body .table__cell:nth-child(3), .stud-center__table .table__body .table__cell:nth-child(4) { font-size: 14px; line-height: 18px; }
  .footer .container { -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .footer .logo { -webkit-box-ordinal-group: 2; -webkit-order: 1; -ms-flex-order: 1; order: 1; padding: 10px 0; }
  .footer .contacts { -webkit-box-ordinal-group: 4; -webkit-order: 3; -ms-flex-order: 3; order: 3; padding: 10px 0; }
  .footer .social { -webkit-box-ordinal-group: 3; -webkit-order: 2; -ms-flex-order: 2; order: 2; padding: 10px 0; }
  .footer .links { -webkit-box-ordinal-group: 5; -webkit-order: 4; -ms-flex-order: 4; order: 4; padding: 10px 0; }
  .footer .logo.white { -webkit-box-ordinal-group: 6; -webkit-order: 5; -ms-flex-order: 5; order: 5; padding: 10px 0; } }

@media screen and (max-width: 768px) { html { font-size: 8px; }
  .indent-large { margin-top: 30px; }
  .indent-medium { margin-top: 25px; }
  .indent-small { margin-top: 20px; }
  .indent-xsmall { margin-top: 10px; }
  .main-about .flex li { width: 50%; }
  .main-sertificates .img-container { width: 50%; }
  .main-contacts .map { position: static; width: 100%; height: 300px;}
  .stud-center__table .table__cell:nth-child(1) { display: none; }
  .stud-center__table .table__head { display: none; }
  .stud-center__table .table__row { display: block; border-bottom: 1px solid #090909; padding: 10px 0px 15px; }
  .stud-center__table .table__cell { display: block; padding: 10px 0px; border: none; }
  .stud-center__table .table__body .table__cell:nth-child(3) { color: #034693; }
  .stud-center__table .table__body .table__cell:nth-child(3), .stud-center__table .table__body .table__cell:nth-child(4) { padding-left: 15px; }
  .stud-center__table .table__body .table__cell { border: none; }
  .nav-stacked{flex-wrap: wrap;}
  .content-404 .text-container{order: 2; text-align: center; align-items: center; margin-top: 30px;}
  .category.news .news-item .news-item-right{height: auto;}
  .news-article .img-box{display: block; width: 100%}
  }

@media screen and (max-width: 576px) { html { font-size: 6px; }
  .title.large { font-size: 36px; }
  .title.medium { font-size: 26px; }
  .title.small { font-size: 20px; }
  .indent-180 { margin-top: 80px; }
  .padding-180 { padding: 80px 0; }
  .padding-b180 { padding-bottom: 80px; }
  .padding-100 { padding: 40px 0; }
  .padding-90 { padding: 30px 0; }
  .accordion .question, .accordion .answer { padding: 30px 15px 15px; }
  .main-slider .title { font-size: 36px; }
  .main-about .flex li { width: 100%; }
  .main-sertificates .img-container { width: 100%; }
  .tabs-main-info .tabs-item a { margin-right: 30px; font-size: 16px; }
  .main-news .item { -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .main-news .newsflash-image { width: 100%; }
  .page .page-header .container { top: 0; }
  .page .page-header .page-title { padding: 15px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; font-size: 48px; text-align: center; }
  .history-slider .pagination { display: none; }
  .nav-box__row { display: block; }
  .nav-box__item { -webkit-box-flex: 1; -webkit-flex: 1 1 100%; -ms-flex: 1 1 100%; flex: 1 1 100%; max-width: 100%; }
  .nav-box__item-link { font-size: 13px; line-height: 16px; margin-bottom: 16px; } 
  .category.news .news-item { flex-wrap: wrap; max-height: 100%;}
  .category.news .news-item .news-item-left { min-width: 100%; background: none; max-height: 400px;}
  .category.news .news-item .news-item-right {min-width: 100%;}
}

@media screen and (max-width: 400px) { .title.large { font-size: 30px; }
  .title.medium { font-size: 24px; }
  .page .page-header .page-title { font-size: 40px; }
  .question .title:before { margin-right: 7px; }
  .works-table{font-size: 12px;}
  .works-table td, .works-table th{padding: 5px 2px;}
  
}
