@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap");
:root {
  --white: #fff;
  --gray: #E5E5E5;
  --orange: #fecb26;
  --main: #2a347a;
  --green: #2a3379;
}

/* body */
body {
  font-size: 16px;
  font-family: 'Noto Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  background: #fff;
}

h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: calc(28px + 25 * (100vw / 1920));
  text-transform: uppercase;
  text-shadow: 0 0 21px RGB(255 255 255/27%);
  color: var(--white);
  margin-top: 100px;
  font-weight: 900;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #363A45;
  margin-bottom: 40px;
}

h3{
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
}
h4{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}
h5{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
  font-size: calc(14px + 6 * (100vw / 1920));
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: #2a3379;
}
a:hover {
  color: #7fe2ae;
}
em{
     font-style: italic;
}

/* container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

/* gage */
.page {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

/* btn */
.btn {
  display: inline-block;
  vertical-align: top;
  border: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background .2s linear;
  transition: background .2s linear;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}

.btn-1 {
  background-color: var(--orange);
  -webkit-box-shadow: 0 0 0 0 RGB(252 152 28/50%);
          box-shadow: 0 0 0 0 RGB(252 152 28/50%);
  color: #fff;
  padding: 25px;
  text-transform: uppercase;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
}

.btn-1:hover {
  background-color: #f89335;
  color: #fff;
}

.btn-2 {
  color: #000;
  background: transparent;
  border: 1px solid var(--green);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-2:hover {
  background-color: var(--green);
  color: #fff;
}

.btn-next-offers {
  background-image: url("../img/udastrou/btn-stocks.svg");
  background-size: cover;
  width: 28px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  border: 0;
}

.btn-perv-offers {
  background-image: url("../img/udastrou/btn-stocks.svg");
  background-size: cover;
  width: 28px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  border: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* nav-toggle */
.nav-toggle {
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}

.nav-toggle:focus {
  outline-width: 0;
}

.nav-toggle [class*='bar-'] {
  background: #fff;
  display: block;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .2s ease all;
  transition: .2s ease all;
  border-radius: 8px;
  height: 3px;
  width: 37px;
  margin-bottom: 6px;
}

.nav-toggle .bar-bot {
  margin-bottom: 0;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--green);
  margin: 6px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-9px, -7px);
}

/* spec class */
.db {
  display: block !important;
  margin-bottom: 20px;
}

.no-scroll {
  overflow: hidden !important;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.social a {
  width: 20px;
  height: 20px;
  float: left;
  background: url(../img/icon-social.svg) no-repeat;
}

.social a:hover {
  opacity: 0.6;
}

.social .te {
  background-position: -42px 0;
}

.social .va {
  background-position: -126px 0;
}

.header {
  border-top: 5px solid var(--green);
  background: #F7F7F7;
}

.header .header__inner {
  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;
  padding: 25px 0;
  z-index: 100;
}

.header .header__inner .header__item:nth-child(1) {
  position: relative;
  width: 128px;
}

.header .header__inner .header__item:nth-child(1) .logo {
  position: absolute;
  top: -30px;
  z-index: 10;
}

.header .header__inner .header__item:nth-child(1) .logo img {
  width: 100%;
  height: 100%;
}

.header .header__inner .header__item:nth-child(5) {
  margin-left: 100px;
}

.header .header__inner .header__item:nth-child(6) {
  display: none;
}

.phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.phone a {
  white-space: nowrap;
  font-size: 18px;
  color: #363A45;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.phone a:hover {
  color: var(--green);
}

.phone span {
  white-space: nowrap;
  color: RGB(54 58 69/50%);
  font-size: 14px;
}

.phone::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/phone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

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

.phone .phone__item span {
  text-align: end;
}
.address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.address:before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/bxs_map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 25px;
  height: 40px;
  width: 100%;
}
.email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.email a {
  white-space: nowrap;
  font-size: 18px;
  color: #363A45;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.email a:hover {
  color: var(--green);
}

.email::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/email.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-top: 8px;
}

.navigation .navigation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          gap:5px;
}

.navigation .navigation__inner .navigation__item:nth-child(1) {
  margin-left: 154px;
}

.navigation .navigation__inner .navigation__item:nth-child(2) {
  margin-left: auto;
  margin-top: 20px;
}

.navigation .navigation__inner .navigation__item nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: 20px;
}
.navigation .navigation__inner .navigation__item nav > ul li {
  position:relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.navigation .navigation__inner .navigation__item nav > ul li a:hover {
  background: RGB(0 198 94/50%);
}

.navigation .navigation__inner .navigation__item nav > ul li.active a {
  border-top: solid 3px  #2a3379;
  background: RGB(0 198 94/50%);
  color: #000;
}

.navigation .navigation__inner .navigation__item nav > ul li a {
  padding: 20px;
  color: #000;
  font-size: 14px;
  white-space: nowrap;
}
.navigation .navigation__inner .navigation__item nav > ul li a:hover{
    color: #fff;
}
.intro{
    margin-top: 11px;
}
.intro .intro__item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 58vh;
  z-index: -1;
  position: relative;
}

.intro .intro__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: RGB(54 58 69/50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro .intro__item .intro__content {
  padding-top: 70px;
}

.intro .intro__item .intro__content .title {
  font-size: calc(17px + 23 * (100vw / 1920));
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 1100px;
}

.btns {
  margin-top: -55px;
}

.btns .btns__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.btns .btns__inner .btns__item {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 200px;
  width: 100%;
}

.btns .btns__inner .btns__item .title a{
  color: #363A45;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: all .3s;
}
.btns .btns__inner .btns__item .title a:hover{
   color: var(--green);
}

.btns .btns__inner .btns__item .desc {
  font-size: 14px;
  color: #000;
  margin-top: 10px;
}

.btns .btns__inner .btns__item .btns__link {
  margin-top: auto;
}

.btns .btns__inner .btns__item .btns__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: var(--green);
}

.btns .btns__inner .btns__item .btns__link a:hover {
  opacity: .6;
}

.btns .btns__inner .btns__item .btns__link img {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btns .btns__inner .btns__item .btns__link img:hover {
  opacity: .6;
}
.menulvl ul li a{
    font-size: calc(14px + 6 * (100vw / 1920));
}
.menulvl ul li{
     list-style-type:none;
}
  .content__inner tr th, .content__inner tr td{
           font-size: calc(14px + 6 * (100vw / 1920));
  }
  .content__inner ul li{
        font-size: calc(14px + 6 * (100vw / 1920));
        list-style-type:disc;
        margin-left: 5px;
  }
  .content__inner ol ul li{
        font-size: calc(14px + 6 * (100vw / 1920));
                list-style-type:disc;
  }
    .content__inner ol li{
        font-size: calc(14px + 6 * (100vw / 1920));
                list-style-type:disc;
  }
  .content__inner ul li strong{
        font-weight: 600;
  }
.news .news__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 768px 370px;
      grid-template-columns: 768px 370px;
  gap: 25px;
}

.news .news__inner .news__item {
  width: 100%;
  padding: 30px;
  background: #FEFEFE;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}

.news .news__inner .news__item .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  height: 100%;
  max-width: 375px;
}

.news .news__inner .news__item .left .data {
  color: #363A45;
  font-size: 14px;
  font-weight: 700;
}

.news .news__inner .news__item .left .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.news .news__inner .news__item .left .desc {
  color: #363A45;
  font-size: 14px;
  line-height: 1.2;
}

.news .news__inner .news__item .left .news__btn {
  margin-top: auto;
}

.news .news__inner .news__item .right {
  max-width: 240px;
  max-height: 240px;
}

.news .news__inner .news__item .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news .news__inner .news__item:nth-child(1n) {
  max-width: 768px;
}

.news .news__inner .news__item:nth-child(2n) {
  max-width: 370px;
}

.news .news__inner .news__item:nth-child(2n) .right {
  display: none;
}

.news .news__bottom {
  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;
  text-transform: uppercase;
}
.pagination__block{
    display: flex;
    justify-content: center;
}
.page-item.active .page-link{
    background-color: #2a3379;
    border-color: #2a3379;
}
.page-link{
    color: #2a3379;
}
.thumb-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  height: 0;
  overflow: hidden;
}

.thumb-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}

.link .link__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}

.footer {
  border-top: 5px solid var(--green);
  background: #F7F7F7;
  margin-top: auto;
}
.footer__nav ul{
    display: flex;
    justify-content: space-between;
}
.footer-nav-block{
    display: flex;
    flex-direction: column;
    max-width: 165px;
}
.footer-nav-block h4{
    margin-bottom: 40px;
}
.footer-nav-block ul{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.footer-nav-block ul li a{
    color: #000;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    transition: color .3s;
}
.footer-nav-block ul li a:hover{
    color: var(--green);
}
.footer .footer__inner {
  margin: 20px 0;
}

.footer .footer__inner .top .footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.footer .footer__inner .top .footer__item .logo {
  max-width: 85px;
}

.footer .footer__inner .top .footer__item .logo img {
  width: 100%;
  height: 100%;
}

.footer .footer__inner .top .footer__item .title {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2;
  color: #363A45;
}

.footer .footer__inner .top .footer__item .title span {
  font-weight: 700;
}

.footer .footer__inner .center {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 185px;
      grid-template-columns: 1fr 185px;
      gap:75px;
}

.footer .footer__inner .center .footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer .footer__inner .center .footer__item .item .phone {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.footer .footer__inner .bottom .footer__item .text {
  line-height: 1.2;
  font-size: 12px;
  color: #363A45;
}

.mobail {
  position: relative;
  top: 0;
  z-index: -1;
}

.mobail .mobail__inner {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  width: 100%;
  background: #f7f7f7;
  opacity: 0;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  border-bottom: 3px solid #2a3379;
}

.mobail .mobail__inner .mobail__content {
  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 0;
  gap: 40px;
}
.mobail .mobail__inner .mobail__content .mobail__item{
    padding: 0 20px;
}
.mobail .mobail__inner .mobail__content .mobail__item:nth-child(1){
    padding: 0 !important;
}
.mobail .mobail__inner .mobail__content .mobail__item nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.mobail .mobail__inner .mobail__content .mobail__item nav ul li {
  text-align: center;
}

.mobail .mobail__inner .mobail__content .mobail__item nav ul li a {
  color: #000;
  font-weight: 500;
}

.mobail .mobail__inner .mobail__content .mobail__item nav ul li:hover {
  color: var(--green);
}

.mobail .mobail__inner .mobail__content .mobail__item .phone {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.open {
  opacity: 1 !important;
  -webkit-transform: translateY(0%) !important;
  transform: translateY(0%) !important;
  overflow-y: auto !important;
  max-height: calc(100vh - 134px) !important;
}
/* ec */
.ec-message{
    background-color: rgb(0 198 94 / 46%) !important;
    min-height: 20px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
}
.ec-antispam{
    display: none;
}
.message-title p{
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.2;
    font-size: 20px;
    padding-left: 10px;
}
.content__inner p{
    line-height: 1.5;
    color: #000;
    margin-bottom: 10px;
}
.ec-message p:last-child{
    margin-bottom: 0;
    font-size: 15px;
    margin-top: 15px;
}
.ec-message__reply{
    background: #fff;
    padding: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}
.content__inner p strong{
    font-weight: 600;
}
.alert-success{
    color: #000;
    background-color: #7fe2ae;
    border-color: #7fe2ae;
}
/* breadcrumb */
.breadcrumb{
    display: flex;
    align-items: center;
}
.breadcrumb__item{
    margin: 0 1rem;
}
.breadcrumb-item a{
    font-size: 15px;
    line-height: 155.8%;
    color: #000;
    text-decoration: none;

    transition: color .2s linear;

    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;

    margin: 0 1rem;
}
.breadcrumb-item a:hover{
    color: var(--green);
    text-decoration: none;
}
/* gallery */
.gallery__inner{
    display: flex;
    gap:20px;
    flex-wrap:wrap;
}
.gallery__item{
    width: 250px;
    height: 250px;
}
.gallery__item img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}
/* sbunav */
.sub-menu-caption:hover .nav__link {
    background-color: #3137C9;
    text-decoration: none;
}
.subnav{
    position: absolute;
    top: 180%;
    left: 0;
    z-index: 1000;
    display: none !important;
    float: left;
    min-width: 100px;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    padding: 15px;
    column-gap: 1em;
    column-width: auto;
    -moz-column-gap: 1em;
    -webkit-column-gap: 1em;
    border-top: 1px solid var(--green);
    -webkit-box-shadow: 0 4px 14px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 4px 14px 0 rgb(0 0 0 / 20%);
}
.subnav > ul{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.subnav li a{
    padding: 0 !important;
    background: none !important;
}
.subnav li.active a{
    border-top:none !important;
}
.subnav li a{
    border-top:none !important;
}
.subnav li a:hover{
    color: var(--green) !important;
}
.navigation .navigation__inner .navigation__item nav > ul li:hover > .subnav {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
}
.has-subnav {
    padding-right: 0;
}
.subnav_active{
    display: block;
}


.service-nav {
  background: var(--green);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}
.service-nav > ul {
  border: solid 1px rgba(255,255,255,0.1);
}
.service-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-nav li.level-1 {
  border-bottom: solid 1px rgba(255,255,255,0.1);
}
.service-nav li {
  position: relative;
}
.service-nav li.level-1 > a {
  display: block;
  padding: 15px;
  margin-right: 30px;

  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}
.service-nav li.level-1 > a:hover{
  color: #fff;
}
.service-nav li.level-2:hover{
  background: rgba(255, 255, 255, 0.2);
}
.service-nav li a {
  display: block;
  color: #fff;
}
.service-nav a {
  color: #FFF;
  transition: .2s all;
}
.service-nav li.parent span.toggler {
  display: block;
  position: absolute;
  text-align: center;
  width: 30px;
  height: 30px;
  right: 5px;
  top: 10px;
  cursor: pointer;
  background: url(/assets/img/web/toggler-arr.svg) center 5px no-repeat;
}
.service-nav ul ul {
  display: none;
}
.service-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-nav li.level-2 {
  padding-left: 15px;
}
.service-nav li.level-2 > a {
  padding: 10px 15px;
  margin-right: 30px;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}
#map{
    width: 100%;
    height: 800px;
}
.map{
  margin-top:50px;
}

.content__inner p{
    line-height: 1.5;
    margin-bottom: 1em;
}
.content__inner p strong{
    font-weight: 600;
}
.content__inner p img{
    margin: 1rem 0;
    max-width: 100%;
    height: 100%;
}
.content__inner table, .content__inner th, .content__inner td{
    border: 1px solid grey !important;
}
.content__inner table{
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: fixed;
    margin-bottom: 1.25em;
    width: 100% !important;
    max-width: 100% !important;
    border-spacing: 0;
    border: 1px;
    overflow-x: auto;
    
}
.content__inner tbody{
    width: 100%;
}
.content__inner tr{
    justify-content: space-between;
    width: 100% !important;
    height: auto !important;
}
.content__inner tr th, .content__inner tr td{
    flex: 1 1;
    padding: 1rem !important;
    vertical-align: baseline;
    height: auto !important;
    border: 1px;
}
.content__inner tr th p, .content__inner tr td p{
    word-break:break-all;
}
.content__inner table p{
    margin-bottom: 0 !important;
    word-break:break-all;
}
.content__inner tr th strong, .content__inner tr td strong{
    font-weight: 600;
}



@media (max-width: 1250px) {
  .news .news__inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .news .news__inner .news__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .news .news__inner .news__item:nth-child(1n), .news .news__inner .news__item:nth-child(2n) {
    max-width: 100%;
  }
  .news .news__inner .news__item:nth-child(1n) .right, .news .news__inner .news__item:nth-child(2n) .right {
    display: block;
  }
}

@media (max-width: 1200px) {
  .header {
    position: fixed;
    width: 100%;
    z-index: 1;
  }
  .content {
      padding-top: 35px;
  }
  .breadcrumb{
      padding-top: 20px;
  }
  .header .header__inner {
    padding: 5px 0;
  }
  .header .header__inner .header__item:nth-child(1) .logo {
    position: relative;
    top: 0;
    max-width: 90px;
  }
  .header .header__inner .header__item:nth-child(2), .header .header__inner .header__item:nth-child(3), .header .header__inner .header__item:nth-child(4) {
    display: none;
  }
  .header .header__inner .header__item:nth-child(6) {
    display: block;
  }
  .header .header__inner .header__item:nth-child(5) {
    margin-left: auto;
    margin-right: 20px;
  }
  .navigation .navigation__inner .navigation__item:nth-child(1) {
    margin-left: 0;
  }
  .footer .footer__inner .center{
      gap:25px;
  }
}

@media (max-width: 1024px) {
  .footer .footer__inner .center{
      grid-template-columns:1fr;
  }
  .navigation {
    display: none;
  }
  .intro {
    margin-top: 90px;
  }
  .intro .intro__item .intro__content .title {
    text-align: center;
  }
  .btns .btns__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media (max-width: 900px) {
   .footer__nav ul{
       flex-direction: column;
   }
   .footer-nav-block h4{
       margin-bottom: 15px;
   }
   .ul-footer{
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
   }
}

@media (max-width: 768px) {
    .map{
      margin-top:90px;
    }
  .footer .footer__inner .center {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .intro .intro__item {
    min-height: 45vh;
  }
  .intro .intro__item .intro__content .title {
    font-size: calc(17px + 23 * ((100vw - 320px) / (1280 - 320)));
  }
  .menulvl ul li a{
     font-size: calc(14px + 6 * ((100vw - 320px) / (1280 - 320)));;
  }
  .content__inner tr th, .content__inner tr td{
       font-size: calc(14px + 6 * ((100vw - 320px) / (1280 - 320)));;
  }
    .content__inner ul li{
       font-size: calc(14px + 6 * ((100vw - 320px) / (1280 - 320)));;
  }
  .content__inner ol ul li{
       font-size: calc(14px + 6 * ((100vw - 320px) / (1280 - 320)));;
  }
    .content__inner ol li{
       font-size: calc(14px + 6 * ((100vw - 320px) / (1280 - 320)));;
  }
  .btns .btns__inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .btns .btns__inner .btns__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: revert;
            flex-direction: revert;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 100%;
  }
  .btns .btns__inner .btns__item .btns__link {
    margin-top: 0;
  }
  .news .news__inner .news__item:nth-child(1n) .right, .news .news__inner .news__item:nth-child(2n) .right {
    display: none;
  }
  .news .news__inner .news__item:nth-child(1n) .left, .news .news__inner .news__item:nth-child(2n) .left {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
    .content__inner ul li{
        margin-left: 20px;
    }
   .ul-footer{
        grid-template-columns: 1fr 1fr;
   }
   .news .news__inner .news__item .left .title{
       font-size: 16px;
       line-height: 1.3;
   }
}
@media (max-width: 425px) {
    .gallery__inner{
        justify-content: center;
    }    
  .intro .intro__item {
    min-height: 35vh;
  }
  .btns .btns__inner .btns__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .btns .btns__inner .btns__item .btns__link {
    margin-top: 10px;
  }
}



/*# sourceMappingURL=main.css.map */