:root {
  --white: #fff;
  --gray: #E5E5E5;
  --orange: #FF7A00;
  --main: #F6D797;
}

/* body */
body {
  font-size: 16px;
  font-family: 'Play', sans-serif;
  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-weight: 700;
  font-size: calc(20px + 20 * (100vw / 1920));
  color: #000;
  position: relative;
}

p {
  font-size: 16px;
  line-height: 1.3;
}

a {
  text-decoration: none;
}

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

/* 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: #b0292e;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 42px;
  text-transform: uppercase;
  -webkit-transition: all .3s;
  transition: all .3s;
  max-width: 215px;
  margin-top: 30px;
}

.btn-1:hover {
  opacity: 0.8;
  color: #fff;
}
.btn-2{
  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;
}
.img-spec{
  -webkit-transition: all .3s;
  transition: all .3s;
}
.img-spec:hover{
  opacity: 0.5;
} 

.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);
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 600;
}
.logo img{
    max-width: 85px;
}
.header{
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: #fff;
}
.header__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.header__inner .header__item:nth-child(2){
  display: flex;
  align-items: center;
  gap: 30px;
}
.subnav{
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.subnav li a{
  font-weight: normal !important;
  font-size: 14px !important;
}
.menu__content{
  position: relative;
}
.menu__content .menu__item:nth-child(2){
  display: none;
} 
.menu__content .menu__item:nth-child(3){
  position: absolute;
  top: 60%;
  right: 0;
}
.menu__content .menu__item:nth-child(4){
  position: absolute;
  top: 80%;
  right: 0;
  width: 100%;
  max-width: 360px;
}
.form__search img{
  position: absolute;
  top: -5px;
  right: 0;
}
.form-control{
  border: none;
  border-bottom: 1px solid #253238;
  border-radius: inherit;
  padding: 0;
}
.menu{
  display: none;
}
.open{
  display: block !important;
}



.menu__item  ul{
  display: flex;
  justify-content: space-between;
}
.menu__content{
  padding: 50px 0;
}
.menu__item  ul li a{
  color: #000;
  font-weight: 700;
  font-size: 16px;
  transition: color .2s;
}
.menu__item  ul li a:hover{
  color: #0095e8;
}
.language{
  color: #000;
}
.phone a{
  color: #000;
}
.mail a{
  color: #000;
}

/* intro */
.intro img{
  width: 100%;
}
.intro{
  margin-top: 50px;
  background-position: top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  width: 100%;
  position: relative;
}
.intro::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: RGB(54 58 69/30%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro__content{
  padding-top: 10vh;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 750px;
  z-index: 10;
  color: #fff;
}
.intro__content .title{
  font-size: calc(30px + 34 * (100vw / 1920));
  line-height: 100%;
}
.intro__content .text{
  font-size: calc(16px + 2 * (100vw / 1920));
  line-height: 1.9;
  max-width: 465px;
}

/* introbase */
.introbase img{
  width: 100%;
}
.introbase{
  margin-top: 50px;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  min-height: 28vh;
  width: 100%;
  position: relative;
}
.introbase::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: RGB(54 58 69/30%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.introbase__content{
  padding-top: 10vh;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 10;
  color: #fff;
}
.introbase__content .title{
  font-size: calc(30px + 34 * (100vw / 1920));
  line-height: 100%;
}
/* breadcrumb */
.breadcrumb{
  gap: 5px;
  align-items: center;
}
.breadcrumb .breadcrumb-item a{
  color: #253238;
  opacity: 0.5;
  font-size: 14px;
}
.breadcrumb__item {
  color: #253238;
  opacity: 0.5;
  font-size: 14px;
}
.breadcrumb__separator{
  color: #253238;
  opacity: 0.5;
  font-size: 14px;
}
/* nav-toggle */
.nav-toggle {
  position: relative;
  border: none;
  background: none;
  margin-left: auto;
}

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

.nav-toggle [class*='bar-'] {
  background: var(--white);
  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 {
  margin-bottom: 4px !important;
  margin-top: 4px !important;
}

.bar1, .bar2, .bar3 {
  width: 24px;
  height: 2px;
  background-color: #000;
  margin: 4px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

.change .bar2 {
  opacity: 0;
}

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

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

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

.social {
  display: flex;
  gap: 30px;
}

.social a {
  width: 25px;
  height: 25px;
}

.social a:hover {
  opacity: 0.6;
}

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

.social .va {
  background-position: -126px 0;
}
/* number */
.about__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.about__inner .about__item:nth-child(2){
  display: flex;
  gap: 50px;
}
.about__inner .about__item:nth-child(1) .text{
  margin-top: 20px;
}
.about__item .number{
  text-align: center;
  margin-top: 20px;
}
.about__item .number .title{
  font-size: 64px;
  display: flex;
  align-items: center;
  line-height: 100%;
}
.about__item .number .title span{
  font-size: 16px;
}
.about__item .number .text{
  white-space: nowrap;
}
.about__img{
  width: 100%;
  max-width: 660px;
}
/* advantages */
.advantages__inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.advantages__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
/* services */

.services{
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  min-height: 75vh;
  width: 100%;
  position: relative;
}
.services::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: RGB(54 58 69/30%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services__content h2{
  color: #fff;
  text-transform:inherit;
}
.services__content .text{
  color: #fff;
  max-width: 465px;
}
.services__content .services__text{
  color: #fff;
}
.services__inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.services__item{
  display: flex;
  gap: 25px;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2.5px);
  background-repeat: 3px;
  padding: 30px 20px;
  transition: all .3s;
  flex-direction: column;
}
.services__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__item:hover{
 background: rgb(129 129 129 / 40%);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

svg path {
  fill:inherit;
  stroke:inherit;
  stroke-width:inherit;
}
.icon-serv2:hover{
  fill:red;
}
/* projects */
.projects{
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  position: relative;
}
.projects::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: RGB(54 58 69/30%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.white{
  color: #fff;
}
.projects__inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.projects__item{
  color: #fff;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2.5px);
  border-radius: 3px;
  display: flex;
flex-direction: column;
height: 100%;
}
.projects__item .btn{
  color: #fff;
  border-bottom: 1px solid;
  padding: 0;
  border-radius: inherit;
  padding-bottom: 5px;
  max-width: 95px;
  position: relative;
  margin-top: auto;
}
.projects__item .btn:hover{
  opacity: 0.8;
}
.projects__item img{
  border-radius: 3px;
  object-fit: cover;
  width: 100%;
  min-height: 210px;
}
.projects__content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  height: 100%;
}
.projects__inner a:hover{
  color: #fff;
}
.projectsall .projects__item .projects__btn::after{
    border-left: 10px solid #000 !important;
}
.projects__btn::after{
    content: '';
    position: absolute;
    right: -32px;
    bottom: 12px;
    border: 6px solid transparent;
    border-left: 10px solid #fff;
}
/* callback */

.callback__inner{
  display: flex;
  justify-content: space-between;
}
.callback__inner .callback__item .title{
  font-size: calc(20px + 20 * (100vw / 1920));
  font-weight: 700;
  color: #253238;
  white-space: nowrap;
}
.callback__inner .callback__item:nth-child(1){
  width: 100%;
  max-width: 490px;
  margin-right: 38px;
}
.callback__inner .callback__item:nth-child(2){
  width: 100%;
  max-width: 368px;
  margin-right: 75px;
  margin-top: 85px;
}
.callback__inner .callback__item:nth-child(3){
  width: 100%;
  max-width: 440px;
}
.ajax_form .form-group input{
  background: transparent;
  border: transparent;
  border-bottom: 1px solid #253238;
  width: 100%;
  padding-bottom: 10px;
  color: rgba(37, 50, 56, 0.301);
}
.callback__form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.callback__item .contacts .phone, .adress, .email{
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.contain{
  display: flex;
  gap: 5px;
}
.contacts .email .text a{
  color: #000;
}
.label--inline{
  font-size: 10px;
  white-space: nowrap;
}
.footer{
  margin-top: auto;
  background: #253238;
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom .cop{
  font-size: 15px;
  color: #fff;
}
.footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__item ul{
  display: flex;
  gap: 50px;
}
.footer__item ul li a{
  color: #fff;
  transition: color .3s;
}
.footer__item ul li a:hover{
  color: #b0292e;
}
.bw__block{
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.bw__block a{
  color: #fff;
  font-size: 13px;
}
.bw__text{
  display: flex;
  gap: 10px;
}
#yt-widget .yt-wrapper_align_right{
  display: none !important;
}
#yt-widget .yt-button_type_left{
  display: none !important;
}
#yt-widget .yt-button:active{
  background: transparent !important;
}
#yt-widget .yt-button{
  border: transparent !important;
}
.service-nav {
  background: #fff;
  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;
  margin-right: 30px;

  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.service-nav li.level-1 > a:hover{
  color: #000;
}
.service-nav li.level-2:hover{
  background: rgba(255, 255, 255, 0.2);
}
.service-nav li a {
  display: block;
  color: #000;
}
.service-nav a {
  color: #000;
  transition: .2s all;
}
/* Заголовок H2 */
.about__item h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ae2327;
    display: inline-block;
    letter-spacing: -0.3px;
}

/* Абзацы */
.about__item p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

/* Списки UL (маркированные) */
.about__item ul {
    margin: 20px 0 25px 20px;
    padding-left: 10px;
    list-style: none;
}

.about__item ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
    color: #444;
}

/* Кастомный маркер для UL */
.about__item ul li::before {
    content: "✓";
    color: #ae2327;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Списки OL (нумерованные) */
.about__item ol {
    margin: 20px 0 25px 20px;
    padding-left: 20px;
    list-style: none;
    counter-reset: custom-counter;
}

.about__item ol li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
    color: #444;
    counter-increment: custom-counter;
}

/* Кастомная нумерация для OL */
.about__item ol li::before {
    content: counter(custom-counter);
    background: #1a3a5f;
    color: white;
    font-weight: bold;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}

/* Жирный текст внутри */
.about__item strong,
.about__item b {
    color: #1a3a5f;
    font-weight: 700;
}

/* Ссылки (если будут) */
.about__item a {
    color: #ae2327;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about__item a:hover {
    color: #e07c00;
    text-decoration: underline;
}

/* Адаптив для планшетов */
@media (max-width: 768px) {
    .about__item {
        padding: 25px 20px;
    }
    
    .about__item h2 {
        font-size: 28px;
    }
    
    .about__item p,
    .about__item ul li,
    .about__item ol li {
        font-size: 15px;
    }
}

/* Адаптив для телефонов */
@media (max-width: 480px) {
    .about__item {
        padding: 20px 15px;
    }
    
    .about__item h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about__item p {
        text-align: left;
        font-size: 14px;
    }
    
    .about__item ul li,
    .about__item ol li {
        font-size: 14px;
    }
    
    .about__item ul li::before {
        font-size: 14px;
    }
    
    .about__item ol li::before {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}

/* Дополнительно: стили для выделения важной информации */
.about__item .highlight {
    background: #fff8e7;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 500;
}

/* Стили для списков внутри абзацев (если есть) */
.about__item p + ul,
.about__item p + ol {
    margin-top: -10px;
}
.service-nav li.parent span.toggler {
  display: block;
  position: absolute;
  text-align: center;
  width: 30px;
  height: 30px;
  right: 5px;
  top: -4px;
  cursor: pointer;
  background: url(/assets/img/web/1.png) 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: #000;
}
.menu__content .menu__item:nth-child(5){
  display: none;
}

.information__inner {
  max-width: 1047px;
}
.information__title {
  margin-bottom: 36px;
}
.information__button {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  border-bottom: 1px solid currentColor;
  user-select: none;
}
.information__item[open] .information__button {
  color: #b0292e;
}
.information__button svg {
  margin-left: 16px;
  flex-shrink: 0;
  fill: currentColor;
}
.information__item[open] .information__button svg {
  transform: rotate(180deg);
}
.information__list {
  max-width: 756px;
  margin-left: auto;
}
.information__list-item {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  position: relative;
}
.information__list-item b {
  font-weight: bold;
}
.information__list-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 1px;
  background-color: currentColor;
}

.technic__inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.technic__item{
  display: flex;
  flex-direction: column;
}
.technic__content{
  padding: 20px;
  border: 1px solid #25323838;
  border-top: 0;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.technic__item img{
  width: 100%;
  height: auto;
}
.technic__content .title{
  font-size: 14px;
  max-width: 225px;
  text-align: left;
}
.technic__content .desc span{
  font-weight: 600;
  font-size: 31px;
}
/* nav-about */
.nav-about__inner{
  margin-top: 50px;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  min-height: 20vh;
  width: 100%;
  position: relative;
}
.nav-about__inner::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: RGB(54 58 69/85%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.nav-about__content ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-about__content ul li a{
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  transition: color .3s;
}
.nav-about__content ul li a:hover{
  color: #b0292e;
}
.navigation{
  border-bottom: 1px solid  #253238;
}
.navigation__inner ul{
  display: flex;
  padding: 20px 0;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.navigation__inner ul li a{
  color: #000;
  transition: color .3s;
  font-size: 14px;
}
.navigation__inner ul li a:hover{
  color: #b0292e;
}
@media not all and (min-width: 768px) {
  .information__button {
      font-size: 34px;
  }
}
.technical-base__title {
  margin-bottom: 50px;
}
.technical-base__lead {
  margin-bottom: 50px;
}
.technical-base__grid {
  display: flex;
  position: relative;
}
.technical-base__list {
  margin-top: -20px;
  width: 55.1%;
}
.technical-base__item {
  scroll-margin-top: 70px;
}
.technical-base__item + .technical-base__item {
  border-top: 1px solid currentColor;
}
.technical-base__button {
  all: unset;
  display: block;
  width: 100%;
  color: inherit;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: color 200ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.technical-base__item.active .technical-base__button {
  color: #b0292e;
}
.technical-base__button svg {
  margin-left: 16px;
  flex-shrink: 0;
  fill: currentColor;
}
.technical-base__item.active .technical-base__button svg {
  transform: rotate(180deg);
}
.technical-base__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: auto;
  display: none;

}
.technical-base__item.active .technical-base__img {
  color: #b0292e;
  display: block;
}
/* guide */

.guide__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.guide__item{
  border: 1px solid #00000017;
  border-radius: 3px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
}
.guide__content {
  padding: 20px;
}
.guide__content .title{
  font-weight: 600;
}
.guide__item .info{
  display: flex;
  gap: 20px;
}
.guide__item .info a{ 
  font-size: 15px;
  color: #253238;
  transition: color .3s;
}
.guide__item .info a:hover{
  color: #b0292e;
}
.guide__img img{
  width: 100%;
  height: 100%;
}

.projectsall::before{
  background: #fff !important;
}
.projectsall .projects__item{
  color: #000 !important;
}
.projectsall h2{
  color: #000 !important;
}
.projectsall .projects__item .btn{
  color: #000;
  border-bottom: 1px solid #000;
  margin-top: auto;
}
.projectsall .projects__item .btn:hover{
  color: #b0292e;
  border-bottom: 1px solid #b0292e;
}
/* staff */

.staff__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}
.number__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.number__inner .number1{
  font-weight: 600;
  font-size: 64px;
}
/* license */
.license__item{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.license__description{
  display: flex;
  flex-direction: column;
}
.license__name{
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
.license__description .number{
  font-weight: 600;
  font-size: 40px;
  display: flex;
  flex-direction: column;
}
.license__description .number span{
  font-size: 16px;
  font-weight: normal;
}
.license .desc{
  max-width: 550px;
}
/* documents */
.documents__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 270px;
    margin-top: 10px;
}
.documents__inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.documents__item > img{
  width: 100%;
}
/* image */
.image img{
  width: 100%;
}
/* project */
.project__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}
.project__item:nth-child(2){
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.project__item img{
  width: 100%;
}
strong{
  font-weight: 600;
}
.project__item ul li{
  list-style: disc;
}
.project__item ul{
  margin-left: 30px;
}
.project__item{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.project__item:nth-child(1){
  max-width: 500px;
}
.ending, .customer, .objects{
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}

.project__item .name{
  color: rgba(37, 50, 56, 0.5);
  margin-bottom: 20px;
}
.beginning span{
  color: rgba(37, 50, 56, 0.5);
}
.ending span{
  color: rgba(37, 50, 56, 0.5);
}
.projects__content-slider .projects__time, .projects__text{
  color: #000;
  text-align: left;
}
.projects__content-slider{
  align-items: flex-start;
}
.projects__content-slider .projects__btn{
  color: #000;
}
/* contacts */
.contacts__inner{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts__item{
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
.contacts__item .phone a{
  color: #000;
  transition: color .3s;
}
.contacts__item .phone a:hover{
  color: #b0292e;
}
.contacts__item .email a{
  color: #000;
  transition: color .3s;
}
.contacts__item .email a:hover{
  color: #b0292e;
}
.information__button-vacancy{
  font-size: 24px;
}
.salary{
  font-size: 14px;
  margin-left: auto;
  margin-right: 50px;
}
.salary span{
  color: #253238;
  font-weight: normal;
}
.salary-mob{
  display: none;
}
.post ul li{
  list-style: disc;
}
.post ul{
  margin-left: 30px;
}
.information__list-item .name{
  color: rgba(37, 50, 56, 0.5);
  font-size: 14px;
  margin-bottom: 10px;
}
.information__list-item{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.salary-mob, .experience, .post, .requirements{
  border-bottom: 1px solid  #253238;
  padding-bottom: 20px;
}
.chart .name{
  margin: 0;
}
.offer .name{
  margin: 0;
}
.place .name{
  margin: 0;
}
.navigation__inner-activity ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.activity__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.activity__inner img{
  width: 100%;
}
.activity__content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.activity__content img{
  width: 100%;
}
.activity__title{
  font-weight: normal;
}
.information__button-activity{
  font-size: 16px;
}
.license__description-сonstruction{
  font-size: 24px;
  font-weight: 600;
}
.activity__content .item{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.advantages__inner-service{
  grid-template-columns: 1fr 1fr;
}
.advantages__inner-service .advantages__item{
  display: flex;
  flex-direction: inherit;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.electrical__content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.information__button-electrical{
  font-size: 24px;
}
.information__list ul li{
  list-style: disc;
}
.information__list ul{
  margin-left: 30px;
}
.electrical-service__inner .inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.electrical-service__inner .inner .item {
  background:  #D9D9D9;
  max-width: 205px;
  max-height: 335px;
}
.electrical-service__inner .inner .item .title{
  padding: 20px;
  max-width: 150px;
  font-weight: 600;
}
.electrical-service__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.electrical-service h2{
  font-weight: normal;
  font-size: calc(20px + 11 * (100vw / 1920));
}



table, th,  td{
  border: 1px solid grey !important;
}
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;
}
tbody{
  width: 100%;
}
tr th, tr td{
  flex: 1 1;
  padding: 5px;
  height: auto !important;
  border: 1px;
}
tr th p, tr td p{
  word-break:break-all;
}
table p{
  margin-bottom: 0 !important;
  word-break:break-all;
}
tr th strong, tr td strong{
  font-weight: 600;
}

.suppliers__img img{
    width: 100%;
    height: 100%;
}
.suppliers__item{
    display: grid;
    grid-template-columns: 320px 2fr 1fr;
    gap: 30px;
}
.suppliers__inner{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.suppliers__item .item span{
    font-size: 12px;
    opacity: 0.7;
}
.suppliers__item .item .btn{
    margin-top: 0;
}

@media not all and (min-width: 768px) {
  .technical-base__list {
      width: auto;
  }
  .technical-base__img {
      width: 100%;
      max-width: 400px;
      position: static;
      margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .technical-base__button svg {
      display: none;
  }
}

@media (max-width: 1050px) {
  .menu__content .menu__item:nth-child(4){
    max-width: 280px;
  }
}
@media (max-width: 1024px) {
  tr th, tr td{
    display: flex;
  }
  .electrical-service__inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .electrical__content{
    grid-template-columns: 1fr;
  }
  .activity__inner, .activity__content{
    grid-template-columns: 1fr;
  }
  .navigation__inner-activity ul{
    grid-template-columns: 1fr;
  }
  .project__inner{
    grid-template-columns: 1fr;
  }
  .advantages__inner{
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .documents__inner{
    grid-template-columns: 1fr 1fr;
  }
  .license__item{
    grid-template-columns: 1fr;
  }
  .staff__inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .guide__inner{
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 20px;
  }
  .menu__content .menu__item:nth-child(1){
    display: none;
  }
  .menu__content .menu__item:nth-child(2){
    display: block;
  }
  .menu__item ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap:20px;
  }
  .menu__content{
    display: flex;
    flex-direction: column;
    gap:20px;
  }
  .menu__content .menu__item:nth-child(4){
    max-width: 100%;
    order: 3;
    position: inherit;
  }
  .menu__content .menu__item:nth-child(3){
    order: 4;
    position: inherit;
  }
  .header__item .mail{
    display: none;
  } 
  .header__item .phone{
    display: none;
  }
  .header__item .language{
    display: none;
  }
  .menu__content .menu__item:nth-child(5){
    display: block;
  }
  .about__inner{
    grid-template-columns: 1fr;
  }
  .services__inner{
    grid-template-columns: 1fr 1fr;
  }
  .projects__inner{
    grid-template-columns: 1fr 1fr;
  }
  .callback__inner{
    flex-direction: column;
    gap: 50px;
  }
  .callback__inner .callback__item:nth-child(2){
    margin-top: 0;
  }
  .callback__inner .callback__item .text{
    font-size: 15px;
  }
  .footer__inner{
    flex-direction: column;
    gap: 20px;
  }
  .footer__item ul{
    flex-direction: column;
    gap: 20px;
  }
  .footer__inner{
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .technic__inner{
    grid-template-columns: 1fr 1fr;
  }
}



@media (max-width: 768px) {
  .electrical-service__inner .inner{
    grid-template-columns: 1fr 1fr;
  }
  .salary{
    display: none;
  }
  .salary-mob{
    display: block;
  }
  .guide__item .info{
    flex-direction: column;
  }
  .navigation__inner ul{
    flex-direction: column;
  }
  .nav-about__inner{
    min-height: 30vh;
  }
  .nav-about__content{
    justify-content: center;
    gap: 10px;
  }
  .services__inner{
    grid-template-columns: 1fr;
  }
  .technic__inner{
    grid-template-columns: 1fr;
  }
  .footer__bottom{
    flex-direction: column;
    gap: 10px;
  }
  .electrical-service h2{
    font-size: calc(20px + 14 * ((100vw - 320px) / (1280 - 320)));
  }
  .intro__content .title{
    font-size: calc(30px + 34 * ((100vw - 320px) / (1280 - 320)));
  }
  .intro__content .text {
    font-size: calc(14px + 2 * ((100vw - 320px) / (1280 - 320)));
    line-height: 1.3;
  }
  .introbase__content .title{
    font-size: calc(30px + 34 * ((100vw - 320px) / (1280 - 320)));
  }
  .introbase__content .text {
    font-size: calc(14px + 2 * ((100vw - 320px) / (1280 - 320)));
    line-height: 1.3;
  }
  h2{
    font-size: calc(20px + 20 * ((100vw - 320px) / (1280 - 320)));
  }
  .callback__inner .callback__item .title{
    font-size: calc(20px + 20 * ((100vw - 320px) / (1280 - 320)));
  }
  .number__inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .guide__item{
    grid-template-columns: 1fr;
  }
  .documents__inner{
    grid-template-columns: 1fr;
  }
  .documents__bottom {
    max-width: 100%;
  }
}
@media (max-width: 465px) {
  .electrical-service__inner .inner{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .advantages__inner-service .advantages__item{
    flex-direction: column;
  }
  .electrical-service__inner .inner .item{
    max-width: 100%;
    max-height: 100%;
  }
  .electrical-service__inner .inner img{
    width: 100%;
  }
  .advantages__inner{
    grid-template-columns: 1fr;
  }
  .advantages__item .title{
    max-width: 300px;
  }
  .about__inner{
    gap:15px;
  }
  .about__inner .about__item:nth-child(2){
    flex-direction: column;
    gap: 0;
  }
  .about__item .number{
    max-width: 150px;
  }
  .projects__inner{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  .intro__content{
    gap:15px;
  }
  .intro{
    min-height: 60vh;
  }
  .introbase{
    min-height: 20vh;
  }
}

