@font-face {
    font-family: 'Commissioner-Medium';
    src: url('fonts/commissioner-medium.woff2') format('woff2'),
         url('fonts/commissioner-medium.woff') format('woff');
    font-display: swap;
  }
  @font-face {
    font-family: 'Commissioner-Regular';
    src: url('fonts/commissioner-regular.woff2') format('woff2'),
         url('fonts/commissioner-regular.woff') format('woff');
    font-display: swap;
  }
  @font-face {
    font-family: 'Commissioner-Light';
    src: url('fonts/commissioner-light.woff2') format('woff2'),
         url('fonts/commissioner-light.woff') format('woff');
    font-display: swap;
  }
  body {
    font-family: 'Commissioner-Medium';
    padding: 0;
    margin: 0;
    background: #121212;
    color: #000000;
  }
  .container {
    max-width: 1170px;
  }
  .d-flex {
    display: flex;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .space-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .align-center {
    align-items: center;
  }
  .flex-end {
    align-items: flex-end;
  }
  .align-top {
    align-items: top;
  }
  p {
    margin-bottom: 0;
  }
  a {
      outline: none;
  }
  a:hover {
    text-decoration: none;
  }
  .red {
    color: #FF481E;
  }
  .bold {
    font-weight: 700;
  }
  .header {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 0px 0px 30px 30px;
  }
  .header-top {
    padding: 25px 0;
  }
  .select {
    position: relative;
    display: block;
    width: 90px;
    margin-left: 25px;
  }
  .select__head {
    width: 100%;
    max-width: 100%;
    border: 1px solid #F1F1F1;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Commissioner-Regular';
    font-size: 12px;
    line-height: 17px;
    color: rgba(66, 67, 72, 0.8);
    cursor: pointer;
  }
  .select__head::after {
    width: 10px;
    height: 6px;
    background: #FFF url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.50495 5.78413L0.205241 1.25827C-0.0684138 0.970375 -0.0684138 0.503596 0.205241 0.215836C0.478652 -0.0719461 0.922098 -0.071946 1.19549 0.215837L5.00007 4.22052L8.80452 0.215953C9.07805 -0.0718292 9.52145 -0.0718292 9.79486 0.215953C10.0684 0.503736 10.0684 0.970492 9.79486 1.25839L5.49508 5.78425C5.35831 5.92814 5.17925 6 5.00009 6C4.82085 6 4.64165 5.928 4.50495 5.78413Z' fill='%23ED266A'/%3E%3C/svg%3E%0A") no-repeat center / cover;
    position: absolute;
    right: 10px;
    bottom: 50%;
    transform: translateY(50%);
    content: '';
    display: block;
    transition: .2s ease-in;
  }
  .select__head.open::after {
    transform: translateY(50%) rotate(180deg);
  }
  .select__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 5px;
    margin-top: 5px;
    max-height: 205px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    margin: 0;
    padding: 0;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
  }
  .select__list::-webkit-scrollbar {
    width: 7px;
    background-color: #F8F9FA;
    padding: 5px;
  }
  .select__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #D9D9D9;
  }
  .select__list .select__item {
    position: relative;
    border-top: 1px solid #f1f1f1;
    padding: 7px 10px;
    cursor: pointer;
    list-style-type: none;
  }
  .select__list .select__link {
    font-family: 'Commissioner-Regular';
    font-size: 12px;
    color: #424348;
  }
  .select__list .select__item:first-child {
    border-top: 1px solid transparent;
  }
  .select__list .select__item:hover {
    background-color: rgba(224, 229, 231, 0.5);
  }
  .header-top__phone {
    width: 200px;
  }
  .header-top__phone-link {
    display: block;
    color: #000000;
    font-size: 18px;
    line-height: 18px;
    transition: ease .3s;
  }
  .header-top__phone-link:hover {
    color: #FF481E;
  }
  .link-support {
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    padding-bottom: 1px;
    color: rgba(255, 72, 30, .75);
    border-bottom: 1px dashed rgba(255, 72, 30, .2);
    transition: ease .3s;
  }
  .link-support:hover {
    border-bottom: 1px dashed #FF481E;
    color: #FF481E;
  }
  .header-top__navhide {
    position: relative;
  }
  .header-top__navhide:hover .header-top__hidemenu {
    opacity: 1;
    visibility: visible;
  }
  .header-top__hidemenu {
    position: absolute;
    top: 30px;
    left: 0;
    display: inline-block;
    width: 155px;
    padding: 5px 10px 8px;
    border: 1px solid #f1f1f1;
    background: #fff;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: ease .3s;
  }
  .header-top__hidemenu ul {
    display: inline-block;
    padding: 0;
    margin: 0;
  }
  .header-top__hidemenu ul li {
    list-style: none;
    display: inline-block;
  }
  .header-top__hidemenu-item a {
    font-family: 'Commissioner-Light';
    color: #000000;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 2px;
    transition: ease .3s;
  }
  .header-top__hidemenu-item a:hover {
    color: #FF481E;
  }
  .header-top__messages {
    padding: 0 25px 0 15px;
  }
  .header-top__icon {
    display: inline-block;
    margin-right: 5px;
  }
  .header-top__icon:last-child {
    margin-right: 0;
  }
  .header .btn {
    height: 55px;
    font-size: 13px;
    max-width: 100%;
    width: auto;
  }
  .btn:hover {
    background: #FF481E;
    color: #fff;
  }
  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 330px;
    height: 85px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
    background: #FF481E;
    color: #fff;
    border: 1px solid #FF481E;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: ease .3s;
  }
  .btn:hover {
    background: #C42500;
    border: 1px solid #C42500;
  }
  .btn:focus {
    box-shadow: none;
  }
  .btn-anim {
    display: block;
    position: absolute;
    height: 200px;
    width: 200px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    transform: scale(0);
    z-index: 20;
  }
  .btn-animat {
    animation: btn-animation 5s ease-out infinite;
    animation-delay: 1s;
  }
  .btn .btn-anim.btn-animat {
    opacity: 1;
  }
  @-webkit-keyframes btn-animation {
    15% {
      opacity: 0;
      -webkit-transform: scale(2.5);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(2.5);
    }
  }
  @-moz-keyframes btn-animation {
    15% {
      opacity: 0;
      -moz-transform: scale(2.5);
    }
    100% {
      opacity: 0;
      -moz-transform: scale(2.5);
    }
  }
  @keyframes btn-animation {
    15% {
      opacity: 0;
      transform: scale(2.5);
    }
    100% {
      opacity: 0;
      transform: scale(2.5);
    }
  }
  .btn-box {
    position: relative;
    overflow: hidden;
  }
  .btn-box .btn-anim {
    left: 50px;
  }
  .modal .btn-box .btn-anim {
    left: 100px;
  }
  .header-bottom {
    border-top: 1px solid #F1F1F1;
  }
  .header-bottom__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .header-bottom__item {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    height: 70px;
    list-style: none;
    border-right: 1px solid #F1F1F1;
  }
  .header-bottom__item:last-child {
    border-right: 1px solid transparent;
  }
  .header-bottom__item a {
    display: inline-block;
    font-family: 'Commissioner-Medium';
    font-size: 12px;
    line-height: 20px;
    color: #000000;
    letter-spacing: 0.085em;
    position: relative;
    padding: 15px 0;
    min-width: 160px;
    overflow: hidden;
  }
  .header-bottom__item a::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    background: #FF481E;
    transition: ease .5s;
  }
  .header-bottom__item a:hover::before {
    width: 80%;
  }
  #menu__toggle, .menu__btn, .header-mobile {
    display: none;
  }
  .main-one {
    position: relative;
    z-index: 1;
  }
  .main-bg {
    padding: 100px 0 150px;
    position: relative;
    z-index: 1;
  }
  .main-bg::before {
    content: '';
    position: absolute;
    top: 295px;
    left: 0;
    width: 560px;
    height: 725px;
    background-image: url("data:image/svg+xml,%3Csvg width='287' height='408' viewBox='0 0 287 408' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M-197.246 394.13C-201.172 355.776 -193.149 317.682 -174.426 282.213C-123.248 185.265 -0.460587 147.284 96.4286 198.431C174.413 239.598 212.005 322.937 199.437 403.984L285.444 407.057C295.867 261.384 223.761 117.497 86.6978 45.1425C-99.9912 -53.409 -327.509 16.9675 -424.872 201.404C-456.077 260.519 -469.493 326.001 -468.463 387.015L-197.246 394.13Z' fill='url(%23paint0_linear_1_7)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1_7' x1='-549.004' y1='287.36' x2='285.148' y2='177.129' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.484374' stop-color='%23FF481E'/%3E%3Cstop offset='1' stop-color='%23FF481E' stop-opacity='0.06'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    z-index: 1;
  }
  .main-bg::after {
    content: '';
    position: absolute;
    top: -160px;
    right: 0;
    width: 560px;
    height: 725px;
    background-image: url("data:image/svg+xml,%3Csvg width='578' height='458' viewBox='0 0 578 458' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.3' d='M474.333 41.2643C486.677 77.7898 487.313 116.714 476.933 155.455C448.559 261.346 337.271 325.643 231.443 297.287C146.265 274.463 91.1067 201.553 85.3641 119.738L0.82207 135.839C23.0058 280.19 125.261 404.474 274.968 444.588C478.88 499.226 685.091 380.087 739.07 178.636C756.371 114.068 754.911 47.2416 740.359 -12.0204L474.333 41.2643Z' fill='url(%23paint0_linear_1_8)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1_8' x1='841.018' y1='67.2632' x2='52.1648' y2='359.962' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.484374' stop-color='%23FF481E'/%3E%3Cstop offset='1' stop-color='%23FF481E' stop-opacity='0.06'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    z-index: 1;
  }
  .black-bg {
    background: #000;
  }
  .main-title p, .categoriy h1 {
    font-family: 'Commissioner-Medium';
    font-size: 40px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .main-desc p {
    font-family: 'Commissioner-Medium';
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .main-desc {
    display: flex;
    justify-content: flex-end;
    margin-top: 175px;
    margin-left: auto;
    margin-right: 100px;
    max-width: 640px;
    width: 100%;
  }
  .main .swiper-button-next, .main .swiper-button-prev {
    width: 90px;
    height: 90px;
  }
  .main .swiper-button-prev {
    left: 11%;
  }
  .main .swiper-button-next {
    right: 11%;
  }
  .main-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 88%;
    max-width: 1170px;
    width: 100%;
    z-index: 3;
  }
  .main-item {
    width: 19%;
    height: 164px;
    padding: 20px 15px;
    background: #E1E4E9;
    position: relative;
    z-index: 5;
    border-radius: 15px;
    transition: ease .3s;
  }
  .main-item:hover {
    background: #fff;
  }
  .main-item__icon {
    display: block;
    text-align: right;
  }
  .main-item__link {
    display: inline-block;
    transition: ease .3s;
  }
  .main-item:hover .main-item__link {
    transform: rotate(45deg);
  }
  .main-item__title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Commissioner-Medium';
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.085em;
    color: #000000;
  }
  .gos {
    padding: 180px 0 100px;
    background: url(./img/bg-gos.png) no-repeat;
    background-position: 0 180px;
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: hidden;
  }
  .light-bg h2, .light-bg .block-title p {
    color: #000;
  }
  .gos-title h2 {
    max-width: 500px;
    width: 100%;
  }
  .gos-title p {
    max-width: 500px;
    width: 100%;
  }
  h2 {
    font-family: 'Commissioner-Medium';
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .block-title p {
    font-family: 'Commissioner-Light';
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
  }
  .block-title-bottom h2 {
    margin-bottom: 22px;
  }
  .gos-block {
    margin-top: 120px;
    position: relative;
  }
  .gos-content__box {
    width: 430px;
    margin-bottom: 75px;
    position: relative;
  }
  .gos-content__box:first-child, .gos-content__box:nth-child(3) {
    margin-right: 120px;
  }
  .gos-content__box:last-child {
    margin-bottom: 0;
  }
  .gos-content__box::before {
    content: '';
    position: absolute;
    left: -33px;
    top: -12px;
    width: 28px;
    height: 4px;
    background: #FF481E;
    transform: rotate(-45deg);
  }
  .gos-content__box-pict {
      width: 500px;
  }
  .gos-content__box-pict::before {
      content: none;
  }
  .gos-content__box-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: center;
  }
  .gos-content__box-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 150px;
      height: 60px;
      margin: 0 25px 25px 0;
  }
  .gos-content__box-logo:nth-child(3), .gos-content__box-logo:nth-child(6), .gos-content__box-logo:last-child {
      margin-right: 0;
  }
  .gos-content__box-logo:nth-child(4), .gos-content__box-logo:nth-child(5), .gos-content__box-logo:nth-child(6) {
      margin-bottom: 0;
  }
  .gos-content__box-logo img {
      display: block;
      margin: auto;
      max-width: 150px;
      max-height: 60px;
      width: auto;
      height: auto;
  }
  .gos-content__name {
    font-family: 'Commissioner-Regular';
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #131313;
    margin-bottom: 22px;
  }
  .gos-content__desc {
    font-family: 'Commissioner-Light';
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #131313;
    margin-bottom: 0;
  }
  .podbor {
    padding: 120px 0;
    position: relative;
  }
  .podbor .block-title p {
    max-width: 600px;
    width: 100%;
  }
  .podbor-wrap {
    margin-top: 70px;
  }
  .podbor-title__one {
    max-width: 900px;
    width: 100%;
  }
  .podbor-title, .sending-title, .box-title, .transport-title {
    font-family: 'Commissioner-Medium';
    font-size: 34px;
    line-height: 50px;
    letter-spacing: 0.05em;
    color: #000000;
    margin-bottom: 20px;
  }
  .podbor-desc {
    font-family: 'Commissioner-Light';
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #000000;
    margin-bottom: 50px;
  }
  .podbor-video {
    width: 100%;
    height: 470px;
    margin-top: 70px;
    border-radius: 15px;
    overflow: hidden;
    transition: ease .3s;
  }
  .podbor-video__wrap, .demo-video__wrap {
    position: relative;
    height: 100%;
  }
  .podbor-video__content, .demo-video__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .podbor-video a, .demo-video a {
    display: inline-block;
    border-radius: 50%;
    animation: 4s shadowPulse infinite linear;
    -webkit-animation: 4s shadowPulse infinite linear;
  }
  .podbor-video img, .demo-video img {
    width: 100%;
    transform-origin: center;
    animation: grow 9000ms infinite linear alternate;
    -webkit-animation: grow 9000ms infinite linear alternate;
  }
  .podbor-video a circle, .podbor-video a svg, .demo-video a circle, .demo-video a svg {
    transition: ease .3s;
  }
  .podbor-video circle, .demo-video circle {
    fill: #C42500;
  }
  .podbor-video:hover circle, .demo-video:hover circle {
    fill: #FF481E;
  }
  .podbor-video:hover a svg, .demo-video:hover a svg {
    transform: scale(1.1);
  }
  .catalog {
    padding: 120px 0;
    background: url(/assets/tmp/img/bg-catalog.png) no-repeat center top;
    background-size: auto;
  }
  .catalog-btn__top {
    margin-top: 40px;
  }
  .catalog-wrap {
    margin-top: 70px;
    margin-bottom: 100px;
  }
  .catalog .block-title p {
    max-width: 340px;
  }
  .catalog .main-item {
    height: auto;
  }
  .catalog .main-item__title {
    position: static;
    display: inline-block;
    margin: 10px 0 20px;
  }
  .catalog .main-item__desc {
    display: inline-block;
    font-family: 'Commissioner-Light';
    font-size: 14px;
    line-height: 20px;
    color: #131313;
  }
  .catalog-title .btn {
    margin-top: 40px;
  }
  .catalog-title .block-title p {
    max-width: 550px;
  }
  .catalog-slider {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
  }
  .catalog-item {
    width: 100%;
    height: 465px;
    padding: 40px 35px 35px;
    position: relative;
    background: #0a0a0b;
    border-radius: 15px;
    overflow: hidden;
    transition: ease .3s;
  }
  .catalog-item:hover .catalog-pict img {
    transform: scale(1.1);
  }
  .catalog-content {
    position: relative;
    z-index: 1;
  }
  .catalog-name {
    font-family: 'Commissioner-Medium';
    font-size: 34px;
    line-height: 50px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 20px;
  }
  .catalog-name span {
      display: inline-block;
      font-size: 28px;
      line-height: 38px;
  }
  .catalog-desc {
    font-family: 'Commissioner-Light';
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    width: 220px;
    margin-bottom: 15px;
  }
  .catalog-delivery {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    width: 150px;
  }
  .categoriy-text {
    display: inline-block;
    font-family: 'Commissioner-Light';
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: -20px;
    color: #fff;
  }
  .catalog-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 295px;
    position: absolute;
    bottom: 35px;
    left: 35px;
    z-index: 1;
  }
  .catalog-link .btn {
    display: flex;
  }
  .catalog-price {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 135px;
    color: #fff;
    height: 53px;
    padding: 0 15px;
    background: #21C98D;
    opacity: .85;
    border-radius: 5px;
  }
  .catalog-price__amount {
    display: block;
    font-family: 'Commissioner-Medium';
    font-size: 17px;
    line-height: 17px;
    letter-spacing: -.33px;
    white-space: nowrap;
  }
  .catalog-price__desc {
    display: block;
    font-family: 'Commissioner-Regular';
    font-size: 13px;
    line-height: 13px;
    margin-top: -17px;
  }
  .catalog-link .btn {
    font-family: 'Commissioner-Regular';
    width: 150px;
    height: 53px;
    font-size: 15px;
    line-height: 17px;
  }
  .btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Commissioner-Regular';
    font-size: 14px;
    color: #fff;
    background: #21C98D;
    border: 1px solid #21C98D;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    opacity: .85;
    transition: ease .3s;
  }
  .btn-link:hover {
    color: #fff;
    opacity: 1;
    text-decoration: none;
  }
  .btn-zakaz {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Commissioner-Regular';
    font-size: 14px;
    color: #fff;
    color: rgba(255,255,255, .85);
    border: 1px solid rgba(255,255,255, .5);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: ease .3s;
  }
  .btn-zakaz:hover {
    color: rgba(255,255,255, 1);
    border: 1px solid rgba(255,255,255, 1);
    background: rgba(255,255,255, .05);
    text-decoration: none;
  }
  .catalog-link .btn,.catalog-link .btn-link, .catalog-link .btn-zakaz {
    width: 135px;
  }
  .catalog-pict {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .catalog-pict__box {
    height: auto;
    width: 100%;
  }
  .catalog-pict img {
    width: 100%;
    transition: ease .3s;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 70px;
    height: 70px;
    top: 60%;
    border-radius: 50%;
    transition: ease .3s;
    outline: none;
  }
  .swiper-button-prev:after, .swiper-button-next:after {
    content: none;
  }
  .swiper-button-prev:hover, .swiper-button-next:hover {
    background: #fff;
  }
  .swiper-button-prev:hover path, .swiper-button-next:hover path {
    stroke: #FF481E;
    fill: #FF481E;
  }
  .swiper-button-next path, .swiper-button-prev path {
    transition: ease .3s;
  }
  .catalog-offer {
    margin-top: 70px;
  }
  .catalog-offer__text p {
    font-family: 'Commissioner-Medium';
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 20px;
  }
  .btn-dowload {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 80px;
    margin-left: auto;
    font-family: 'Commissioner-Medium';
    font-size: 14px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255, .85);
    border: 1px solid rgba(255,255,255, .5);
    border-radius: 5px;
    transition: ease .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  .btn-dowload:hover {
    color: rgba(255,255,255, 1);
    border: 1px solid rgba(255,255,255, 1);
    background: rgba(255,255,255, .05);
  }
  .categoriy {
    padding: 30px 0 100px;
  }
  .categoriy-wrap {
    margin-top: 50px;
  }
  .categoriy-block .main-title {
    margin-top: 55px;
  }
  .categoriy-wrap .catalog-item {
    width: 32%;
    margin-right: 22px;
    margin-bottom: 22px;
  }
  .categoriy-wrap .catalog-item:nth-child(3n) {
      margin-right: 0;
  }
  .transport {
    padding: 120px 0;
    background: url(/assets/tmp/img/bg-transport.png) no-repeat center;
  }
  .transport-title__number {
    position: absolute;
    left: 0;
    top: 5px;
    font-family: 'Commissioner-Medium';
    font-size: 40px;
    line-height: 40px;
    color: #fff;
  }
  .transport-title__list {
    margin-bottom: 0;
  }
  .transport-title__list li {
    list-style: none;
    font-family: 'Commissioner-Light';
    font-size: 22px;
    line-height: 30px;
    color: #f1f1f1;
    padding-left: 70px;
    margin-bottom: 30px;
    position: relative;
  }
  .transport-title__list li:last-child {
    margin-bottom: 0;
  }
  .transport-title__list li .bold {
    font-family: 'Commissioner-Medium';
    font-weight: 400;
    color: #fff;
  }
  .transport-bottom {
    margin-top: 100px;
  }
  .transport-title {
    color: #fff;
  }
  .transport-bottom__one {
    max-width: 700px;
    width: 100%;
  }
  .transport-desc {
    font-family: 'Commissioner-Light';
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 0;
  }
  .transport-bottom__day {
    font-family: 'Commissioner-Medium';
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    margin: 28px 0 20px;
    position: relative;
  }
  .transport-bottom__day::before {
    content: '';
    position: absolute;
    left: -33px;
    top: -12px;
    width: 28px;
    height: 4px;
    background: #FF481E;
    transform: rotate(-45deg);
  }
  .demo {
    padding: 120px 0;
  }
  .demo-wrap {
    margin: 70px 0 0;
  }
  .demo-text {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .demo-text p {
    font-family: 'Commissioner-Light';
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #E1E4E9;
    max-width: 380px;
    width: 100%;
  }
  .demo-video {
    width: 100%;
    height: 480px;
    background: #3E3E3E;
    border-radius: 15px;
    overflow: hidden;
  }
  @keyframes shadowPulse {
    0%, to {box-shadow:0 0 10px #FF481E;}
    25%, 75% {box-shadow:0 0 25px #FF481E;}
    50% {box-shadow:0 0 10px #FF481E;}
  }
  @keyframes grow {
      0% {
          transform: scale(1);
      }
      100% {
          transform: scale(1.25);
    }
  }
  .demo-form {
    display: block;
    margin: auto;
    width: 900px;
    background: #fff;
    padding: 125px 100px 0;
    border-radius: 30px;
  }
  .demo-title {
    font-family: 'Commissioner-Medium';
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 40px;
  }
  .form-input {
    width: 350px;
    height: 88px;
    padding: 0 25px;
    border: 1px solid #B6B6B6;
    border-radius: 7px;
    font-family: 'Commissioner-Light';
    font-size: 18px;
    line-height: 26px;
    align-items: center;
    letter-spacing: 0.02em;
    color: #000000;
    outline: none;
    transition: ease .3s;
  }
  .form-textarea {
    width: 100%;
    padding: 20px 25px;
    margin-bottom: 5px;
    border: 1px solid #B6B6B6;
    border-radius: 7px;
    font-family: 'Commissioner-Light';
    font-size: 18px;
    line-height: 26px;
    align-items: center;
    letter-spacing: 0.02em;
    color: #000000;
    outline: none;
    transition: ease .3s;
    resize: none;
  }
  ::placeholder {
    text-align: center;
  }
  .demo-form .btn {
    width: 350px;
    height: 88px;
    margin: 30px auto 0;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
  input[type="submit"] {
    white-space: normal;
  }
  .demo-confid {
    margin: 30px auto 0;
    max-width: 400px;
    width: 100%;
  }
  .confid-text {
    font-family: 'Commissioner-Light';
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #2F2F2F;
  }
  .confid-link {
    color: #2F2F2F;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    transition: ease .3s;
  }
  .confid-link:hover {
    border-bottom: 1px solid transparent;
    color: #FF481E;
  }
  .tender {
    padding: 125px 0 0;
  }
  .training {
    padding: 200px 0 140px;
    position: relative;
  }
  .tender-content {
    max-width: 580px;
    width: 100%;
  }
  .tender-content__btn {
    margin-top: 40px;
  }
  .tender-content__btn .btn {
    width: 300px;
  }
  .tender-content__btn p {
    font-family: 'Commissioner-Light';
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 0;
    max-width: 250px;
  }
  .training-circle {
    position: absolute;
    top: 125px;
    right: 40px;
    width: 420px;
    height: 420px;
    padding: 80px 50px;
    background: #FF481E;
    border-radius: 50%;
    text-align: center;
  }
  .training-circle__text {
    font-size: 34px;
    line-height: 42px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
  }
  .training-circle__number {
    font-family: 'Commissioner-Medium';
    font-size: 85px;
    line-height: 100px;
    color: #FFFFFF;
  }
  .training-circle__desc {
    font-family: 'Commissioner-Light';
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 0;
  }
  .training-wrap {
    margin-top: 90px;
  }
  .training-item {
    width: 32.5%;
    padding: 20px 45px 40px 40px;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
  }
  .training-item:first-child {
    border: 1px solid #999;
  }
  .training-item:first-child .training-number {
    color: #999;
  }
  .training-item:nth-child(2) {
    border: 1px solid #cecece;
  }
  .training-item:nth-child(2) .training-number {
    color: #cecece;
  }
  .training-number {
    display: block;
    text-align: right;
    font-family: 'Commissioner-Medium';
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 10px;
  }
  .training-name {
    font-family: 'Commissioner-Medium';
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 25px;
  }
  .training-text {
    font-family: 'Commissioner-Light';
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
  }
  .box {
    padding: 120px 0;
  }
  .box .block-title p {
    max-width: 550px;
    width: 100%;
  }
  .box-block {
    margin-top: 80px;
  }
  .box-wrap {
    margin-top: 70px;
  }
  .box-item {
    padding: 20px 40px 40px;
    background: #D9D9D9;
    border-radius: 30px;
    position: relative;
  }
  .box-one {
    background: url(./img/bg-box-one.png) no-repeat center;
    background-size: 120%;
    width: 700px;
    height: 480px;
    transition: ease .3s;
  }
  .box-one:hover {
    background-size: 125%;
  }
  .box-item__text {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: 400px;
  }
  .box-item__text p {
    font-family: 'Commissioner-Light';
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #fff;
  }
  .box-item__name {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
  }
  .box-two {
    background: url(./img/bg-box-two.png) no-repeat center;
    background-size: 125%;
    width: 420px;
    height: 230px;
    transition: ease .3s;
  }
  .box-two:hover {
    background-size: 135%;
  }
  .box-two .box-item__desc {
    font-family: 'Commissioner-Light';
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #fff;
    margin-top: 50px;
    text-align: right;
  }
  .box-three {
    background: url(./img/bg-box-three.png) no-repeat center;
    background-size: 125%;
    width: 420px;
    height: 230px;
    margin-top: 20px;
    transition: ease .3s;
  }
  .box-three:hover {
    background-size: 135%;
  }
  .dark-bg {
    background: #121212;
  }
  .light-bg {
    background: #fff;
    color: #000;
    border-radius: 30px;
  }
  .zamena {
    padding: 120px 0;
    background-image: url(./img/bg-zamena.png);
    background-position: 30% 0px;
    background-size: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  .zamena-wrap {
    margin-top: 70px;
    width: 100%;
  }
  .zamena-wrap-two {
    margin-top: 30px;
  }
  .zamena-item {
    width: 32%;
  }
  .zamena-name {
    font-family: 'Commissioner-Medium';
    font-size: 30px;
    line-height: 44px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin: 45px 0 35px;
  }
  .zamena-desc {
    font-family: 'Commissioner-Light';
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
  }
  .zamena-btn .btn {
    max-width: 400px;
    margin: 60px auto 0;
  }
  .cons {
    background: url(./img/bg-cons.png) no-repeat bottom;
    background-size: contain;
    padding: 120px 0;
  }
  .cons-top {
    margin-top: 0;
  }
  .cons .block-title p {
    font-size: 26px;
    line-height: 34px;
  }
  .cons-desc {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
  }
  .cons-form {
    margin: 70px auto 0;
    text-align: center;
  }
  .cons-form form {
    max-width: 700px;
    width: 100%;
    margin: 40px auto 0;
  }
  .cons-form .form-input {
    background: rgba( 255, 255, 255, .05);
  }
  .cons-form .form-input:focus {
    background: rgba(0, 0, 0, .3);
    color: #fff;
    border: 1px solid #FF481E;
  }
  .cons-form .btn {
    width: 350px;
    height: 88px;
    margin: 30px auto 0;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
  .cons-confid {
    margin: 30px auto 0;
    max-width: 400px;
    width: 100%;
  }
  .cons-form .confid-text,.cons-form .confid-link {
    color: #fff;
    opacity: 0.7;
  }
  .page-text {
      margin-top: 50px;
  }
  .page-text p {
      color: #fff;
      font-family: 'Commissioner-Regular';
      font-size: 18px;
      line-height: 26px;
      margin-bottom: 15px;
  }
  .footer {
    padding: 80px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.27);
  }
  .footer-item:first-child {
    margin-right: 80px;
  }
  .footer-logo {
    margin-bottom: 27px;
  }
  .footer-worklink {
    display: inline-block;
    font-family: 'Commissioner-Light';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    border-bottom: 1px solid #555;
    opacity: .8;
    margin-bottom: 8px;
    transition: ease .3s;
  }
  .footer-worklink:hover {
    opacity: 1;
    color: #fff;
    border-bottom: 1px solid transparent;
  }
  .footer-text {
    font-family: 'Commissioner-Light';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    opacity: .8;
  }
  .footer-defend {
    padding-top: 10px;
  }
  .footer-defend:nth-child(2) {
      max-width: 450px;
      text-align: center;
  }
  .footer-defend:last-child {
      text-align: right;
  }
  .footer-name {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.105em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
  }
  .footer-item ul {
    padding: 0;
    margin: 0;
  }
  .footer-item li {
    list-style: none;
    margin-bottom: 8px;
  }
  .footer-item li a {
    font-family: 'Commissioner-Light';
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    opacity: .8;
    transition: ease .3s;
  }
  .footer-item li a:hover {
    opacity: 1;
  }
  .footer-phone a {
    display: inline-block;
    font-family: 'Commissioner-Light';
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: ease .3s;
  }
  .footer-phone a:hover {
    color: #FF481E;
  }
  .footer-mess {
    justify-content: flex-end;
    margin: 17px 0;
  }
  .footer-item:first-child .footer-item__box {
    text-align: left;
  }
  .footer-mess a {
    display: inline-block;
    margin-right: 20px;
  }
  .footer-mess a:last-child {
    margin-right: 0;
  }
  .footer-devlink {
    display: inline-block;
    letter-spacing: 1px;
    color: #fff;
    opacity: 1;
    margin-left: 5px;
    border-bottom: 1px solid #333;
    transition: ease .3s;
  }
  .footer-devlink:hover {
    color: #FF481E;
    border-bottom: 1px solid #FF481E;
  }
  .footer-devtext {
    font-family: 'Commissioner-Light';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #fff;
    opacity: .8;
  }
  .footer-bottom {
    padding: 15px 0 0;
  }
  .footer-item__box {
    text-align: right;
  }
  .main-product {
    padding: 30px 0 0;
    overflow: hidden;
  }
  .main-product__breadcrumbs ul {
    display: flex;
    padding: 0;
    margin: 0;
  }
  .main-product__breadcrumbs li {
    position: relative;
    list-style: none;
    padding-right: 40px;
  }
  .main-product__breadcrumbs li::before {
    content: '/';
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0.7;
  }
  .main-product__breadcrumbs li:last-child:before {
    content: '';
  }
  .main-product__breadcrumbs li a, .main-product__breadcrumbs li {
    font-family: 'Commissioner-Medium';
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.08em;
    padding-bottom: 2px;
    color: #FFFFFF;
    border-bottom: 1px solid transparent;
    transition: ease .3s;
  }
  .main-product__breadcrumbs li:last-child {
    opacity: 0.7;
    padding-right: 0;
  }
  .main-product__breadcrumbs li a:hover {
    border-bottom: 1px solid #FF481E;
    color: #FF481E;
  }
  .main-product__content {
    height: 650px;
    position: relative;
  }
  .main-product__text {
    max-width: 650px;
    width: 100%;
    padding: 90px 0 50px;
  }
  .main-product__text h1 {
    font-family: 'Commissioner-Medium';
    font-size: 70px;
    line-height: 90px;
    color: #fff;
    margin-bottom: 25px;
  }
  .main-product__text h1 span {
    display: inline-block;
    font-size: 50px;
    line-height: 60px;
  }
  .main-product__desc {
    font-family: 'Commissioner-Regular';
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
  }
  .main-product__pict {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    width: 500px;
    height: 750px;
    margin-right: -15px;
  }
  .main-product__pict img {
      width: 100%;
  }
  .specification {
    padding: 120px 0;
  }
  .specification-slider {
    width: 500px;
    overflow: hidden;
  }
  .specification .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
  .specification .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .specification .swiper-slide {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: ease .3s;
  }
  .specification .mySwiper2 {
    height: auto;
    width: 100%;
  }
  .specification .mySwiper {
    height: auto;
    box-sizing: border-box;
    padding: 10px 0 0;
  }
  .specification-scroll {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }
  .specification-scroll__pict img {
      height: 35px;
  }
  .specification .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.8;
    cursor: pointer;
    transition: ease .3s;
  }
  .specification .mySwiper .swiper-slide:hover {
    opacity: 1;
  }
  .specification .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
  }
  .mySwiper2 .swiper-slide {
    border-radius: 15px;
    height: auto;
  }
  .mySwiper2 .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
  }
  .specification-content {
    position: sticky;
    align-self: flex-start;
    top: 10px;
    width: 550px;
  }
  .specification-desc {
    margin: 30px 0 25px;
    font-size: 22px;
    line-height: 28px;
  }
  .specification-text {
    font-family: 'Commissioner-Light';
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
  }
  .specification-price {
    margin-top: 25px;
  }
  .specification-price__amount {
    font-size: 22px;
    line-height: 28px;
    color: #FF481E;
    margin-bottom: 5px;
  }
  .specification-price__amount span {
    display: inline-block;
    padding-left: 10px;
    letter-spacing: -.33px;
  }
  .specification-price__desc {
    font-family: 'Commissioner-Light';
    font-size: 14px;
    line-height: 18px;
    color: #FF481E;
  }
  .specification-link {
    display: inline-block;
    font-family: 'Commissioner-Light';
    font-size: 16px;
    line-height: 24px;
    color: #FF481E;
    width: 300px;
    margin-top: 16px;
  }
  .specification-link span {
    display: inline;
    border-bottom: 1px solid #FF481E;
    transition: ease .3s;
  }
  .specification-link:hover span {
    border-bottom: 1px solid #ffcfc4;
    color: #C42500;
  }
  .specification-items {
    margin-bottom: 40px;
  }
  .specification-item  {
    margin-top: 25px;
  }
  .specification-item__text {
    padding-left: 15px;
  }
  .specification-item__text p {
    font-family: 'Commissioner-Light';
    font-size: 16px;
    line-height: 22px;
    color: #000000;
  }
  .info {
    padding: 80px 0 0;
  }
  .info-block {
    border: 1px solid #FFFFFF;
    border-radius: 30px;
  }
  .info .nav-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    border-radius: 30px;
    overflow: hidden;
  }
  .info .nav-link {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 46px;
    color: #fff;
    border: none;
    border-radius: 30px;
    transition: ease .3s;
  }
  .info .nav-link:hover {
    background: rgba(255,255,255, .05);
  }
  .info .nav-link.active {
    background: #fff;
  }
  .info .tab-content {
    background: linear-gradient(90deg, #040405 0%, rgba(0, 0, 0, 0) 70%);
    min-height: 500px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
  }
  .info .tab-pane {
    padding: 70px 50px 40px;
  }
  .info-text {
    width: 550px;
  }
  .info-wrap h3 {
    font-family: 'Commissioner-Medium';
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 40px;
  }
  .info-wrap ul {
    padding: 0;
    margin: 0;
  }
  .info-wrap li {
    list-style: none;
    font-family: 'Commissioner-Regular';
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    padding-left: 17px;
    margin-bottom: 20px;
    position: relative;
  }
  .info-wrap li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
  }
  .info-wrap p {
    font-family: 'Commissioner-Regular';
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
  }
  .info-wrap table {
      width: auto !important;
      border: none !important;
      margin: 0 auto 25px !important;
  }
  .info-wrap table tr {
      background: #0a0a0b;
  }
  .info-wrap table tr:nth-child(even) {
      background: transparent;
  }
  .info-wrap table tr td {
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      padding: 15px 30px;
      border: none !important;
  }
  .info-wrap table tr td:last-child {
      font-family: 'Commissioner-Medium';
      width: 20% !important;
      text-align: right;
      border-radius: 0 15px 15px 0 !important;
  }
  .info-wrap table tr td:first-child {
      font-family: 'Commissioner-Regular';
      width: 80% !important;
      border-radius: 15px 0 0 15px !important;
  }
  .info-offer {
    padding: 90px 0 0;
  }
  .info-offer__name {
    font-family: 'Commissioner-Medium';
    font-size: 40px;
    line-height: 58px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 30px;
  }
  .info-offer__desc {
    font-family: 'Commissioner-Light';
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    max-width: 400px;
  }
  .info__offer__phone {
    display: block;
    font-family: 'Commissioner-Medium';
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 25px;
    transition: ease .3s;
  }
  .info__offer__phone:hover {
    color: #FF481E;
  }
  .catalog-slider-top {
    margin-top: 55px;
  }
  .catalog-bottom {
    padding-bottom: 0;
    background: none;
  }
  .functional {
    padding: 130px 0;
    min-height: 500px;
    background: #000;
  }
  .functional .block-title {
    max-width: 600px;
    width: 100%;
  }
  .functional-one {
    margin-top: 90px;
  }
  .functional-pict {
    width: 100%;
    height: 400px;
  }
  .f-left .block-title {
    margin-left: auto;
  }
  .f-width {
    padding-bottom: 0 !important;
  }
  .f-width .block-title {
    margin: auto;
    text-align: center;
  }
  .functional-mobpict {
    display: none;
  }
  .question {
    padding: 90px 0;
    background: url(/assets/tmp/img/bg-question.png) no-repeat right top;
    background-size: 42%;
  }
  .question-block {
    margin-top: 55px;
    padding: 0 100px;
  }
  .question .card {
    border: none;
    border-bottom: 1px solid #D8D8D8 !important;
    border-radius: 0;
  }
  .question .card-header {
    padding: 25px 15px;
    background: transparent;
    border: none;
  }
  .question .accordion-button {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    font-family: 'Commissioner-Regular';
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    overflow-anchor: none;
    position: relative;
  }
  [data-toggle="collapse"].accordion-button:after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF481E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
  }
  [data-toggle="collapse"].collapsed.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111111'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
  }
  .question .card-body {
    padding: 0 15px 40px;
  }
  .question .card-body p {
    font-family: 'Commissioner-Regular';
    font-size: 16px;
    line-height: 24px;
  }
  .modal-dialog {
    max-width: 580px;
  }
  .modal-close {
    cursor: pointer;
  }
  .modal-close svg path, .modal-close svg {
    transition: ease .3s;
  }
  .modal-close:hover svg:hover {
    transform: scale(1.2);
  }
  .modal-close:hover svg path {
    fill: #FF481E;
  }
  .modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 25px 20px;
    border-bottom: 1px solid transparent;
  }
  .modal-content {
    border: 1px solid transparent;
    padding-bottom: 50px;
    border-radius: 30px;
  }
  .modal-form {
    max-width: 450px;
    width: 100%;
    margin: auto;
  }
  .modal-title {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0.01em;
    margin-bottom: 25px;
  }
  .modal-content .group-form {
    width: 400px;
    margin: auto;
  }
  .modal-content .form-input {
    margin-bottom: 10px;
    width: 100%;
  }
  .modal-content .form-input:focus, .demo-form .form-input:focus {
    background: #f9f9f9;
    border: 1px solid #FF481E;
  }
  .modal-content .btn {
    width: 100%;
    max-width: 400px;
  }
  button.iti__selected-country {
      outline: none;
  }
  .iti__selected-country {
      height: 87px;
  }
  @media (max-width: 1300px) {
    .main .swiper-button-next {
      right: 15px;
    }
    .main .swiper-button-prev {
      left: 15px;
    }
    .gos-block {
      margin-left: 30px;
    }
    .training {
      padding: 130px 0;
    }
    .training-circle {
      width: 350px;
      height: 350px;
      padding: 40px 50px;
    }
    .training-wrap {
      margin-top: 60px;
    }
  }
  @media (max-width: 1200px) {
    .header-bottom__item {
      padding: 0 10px;
    }
    .header-bottom__item a {
      font-size: 10.5px;
      line-height: 16px;
    }
    .main-desc {
      margin-right: 70px;
      margin-top: 150px;
    }
    .main-wrap {
      padding: 0 15px;
    }
    .main-item__title {
      font-size: 12px;
      line-height: 20px;
    }
    .main-product__text {
        max-width: 600px;
    }
    h2 {
      font-size: 36px;
      line-height: 54px;
    }
    .podbor-title, .sending-title, .box-title, .catalog-name {
      font-size: 30px;
      line-height: 40px;
    }
    .catalog-name span {
        font-size: 24px;
        line-height: 32px;
    }
    .gos h2 {
      width: 60%;
    }
    .gos .block-title p {
      width: 38%;
    }
    .gos-content__box {
      width: 360px;
    }
    .gos-content__box-pict {
      max-width: 430px;
      width: 100%;
    }
    .gos-content__box-logo {
        width: 115px;
    }
    .gos-content__box-logo img {
        max-width: 115px;
    }
    .catalog .block-title {
      flex-wrap: wrap;
    }
    .catalog .block-title h2 {
      margin-bottom: 22px;
    }
    .catalog .block-title p {
      max-width: 100%;
    }
    .catalog .main-item {
      width: 32%;
    }
    .catalog .main-item:nth-child(2) {
      margin: 0 2%;
    }
    .catalog .main-item:nth-child(4) {
      margin-right: 2%;
    }
    .catalog .main-item:nth-child(4), .catalog .main-item:nth-child(5) {
      margin-top: 2%;
    }
    .catalog-wrap {
      justify-content: center;
    }
    .catalog-title__one {
      margin-bottom: 40px;
    }
    .catalog-link {
      left: 25px;
      max-width: 275px;
    }
    .catalog-link .btn,.catalog-link .btn-link, .catalog-link .btn-zakaz {
      width: 125px;
    }
    .catalog-link .btn-zakaz {
        padding: 15px 25px;
    }
    .catalog-offer__text p {
      font-size: 36px;
      line-height: 54px;
    }
    .podbor, .catalog, .transport, .training, .box, .zamena, .cons, .functional {
      padding: 100px 0;
    }
    .podbor-video {
      height: 350px;
    }
    .catalog-item {
      overflow: hidden;
      padding: 40px 25px 35px;
    }
    .catalog-pict img {
      display: block;
      margin: auto;
      height: 465px;
      width: auto;
    }
    .categoriy-wrap .catalog-item {
      width: 31%;
      margin-right: 30px;
      margin-bottom: 30px;
    }
    .demo {
      padding: 100px 0;
    }
    .demo-form {
      padding-top: 100px;
      height: auto;
    }
    .demo-video {
      height: 370px;
    }
    .tender {
      padding-top: 100px;
    }
    .tender-pict {
      width: 370px;
    }
    .tender-pict img {
      width: 100%;
    }
    .tender-content {
      max-width: 540px;
    }
    .tender-content__btn p {
      padding-left: 15px;
    }
    .training .block-title {
      width: 70%;
    }
    .training h2 br {
      display: none;
    }
    .training-circle {
      width: 330px;
      height: 330px;
      padding: 43px;
      top: 280px;
      right: 10px;
    }
    .training-circle__text {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 10px;
    }
    .training-item {
      padding: 20px 20px 30px;
    }
    .box-wrap {
        justify-content: center;
    }
    .box-one {
      width: 590px;
      height: 380px;
      margin-right: 20px;
    }
    .box-two, .box-three {
      width: 330px;
      height: 180px;
    }
    .box-two .box-item__desc {
      margin-top: 30px;
      font-size: 18px;
      line-height: 26px;
    }
    .zamena-name {
      font-size: 26px;
      line-height: 34px;
    }
    .footer-logo svg {
      width: 230px;
    }
    .footer-phone {
      text-align: right;
    }
    .footer-item:first-child {
      margin-right: 30px;
    }
    .specification-slider, .specification-content {
      width: 450px;
    }
    .info .nav-link {
      padding: 25px 26px;
    }
    .info .tab-pane {
      padding: 50px 20px 20px;
    }
    .info__offer__phone {
      font-size: 26px;
      line-height: 34px;
    }
    .specification {
      padding: 100px 0;
    }
    .main-product__content {
      min-height: 420px;
      height: auto;
    }
    .main-product__pict {
      width: 350px;
      height: 500px;
      top: auto;
      bottom: 0;
    }
    .main-product__pict img {
      width: 100%;
    }
  }
  @media (max-width: 992px) {
    .header-mobile, .header-mobile .header-top__phone {
      display: block;
    }
    .header-mobile .header-top__phone {
      margin: 0;
    }
    .header-mobile .header-top__list {
      margin: 0 0 20px;
      padding: 0;
    }
    .header-mobile .header-top__phone {
      width: auto;
    }
    .header-mobile .header-top__phone-link {
      font-size: 28px;
      line-height: 36px;
      margin-bottom: 5px;
    }
    .header-mobile .link-support {
      font-size: 16px;
      line-height: 24px;
    }
    .header-mobile .header-top__action {
      margin-right: 0;
      width: auto;
    }
    .header-mobile .header-top__messages {
      display: block;
      padding: 25px 0 20px;
      text-align: left;
    }
    .header-mobile .btn {
      width: 250px;
      height: 70px;
      font-size: 15px;
      line-height: 23px;
    }
    .header-mobile .header-top__icon svg {
      width: 45px;
      height: 45px;
    }
    #menu__toggle {
      opacity: 0;
    }
    #menu__toggle:checked ~ .menu__btn > span {
      transform: rotate(45deg);
    }
    #menu__toggle:checked ~ .menu__btn > span::before {
      top: 0;
      transform: rotate(0);
    }
    #menu__toggle:checked ~ .menu__btn > span::after {
      top: 0;
      transform: rotate(90deg);
    }
    #menu__toggle:checked ~ .header-mobile__menu {
      visibility: visible;
      left: 0;
    }
    .menu__btn {
      display: flex;
      align-items: center;
      position: fixed;
      top: 30px;
      right: 15px;
      width: 26px;
      height: 26px;
      cursor: pointer;
      z-index: 11;
      margin-bottom: 0;
    }
    .menu__btn > span,
    .menu__btn > span::before,
    .menu__btn > span::after {
      display: block;
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #FF481E;
      z-index: 20;
      transition-duration: .25s;
    }
    .menu__btn > span::before {
      content: '';
      top: -9px;
    }
    .menu__btn > span::after {
      content: '';
      top: 9px;
    }
    .header-mobile__menu {
      display: block;
      position: fixed;
      visibility: hidden;
      top: 0;
      left: -100%;
      width: 300px;
      height: 100%;
      margin: 0;
      padding: 30px 20px;
      list-style: none;
      background-color: #fff;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
      transition-duration: .25s;
      z-index: 11;
    }
    .header-top {
      padding: 20px 0;
    }
    .header-bottom, .header-top__messages, .header-top__menu {
      display: none;
    }
    .header-top__action {
      margin-right: 100px;
    }
    .header-top__list {
      flex-wrap: wrap;
    }
    .header-top__item {
      width: 100%;
      list-style: none;
      margin-bottom: 7px;
    }
    .header-top__item a {
      font-family: 'Commissioner-Light';
      font-size: 18px;
      line-height: 26px;
      color: #000000;
      padding-bottom: 2px;
      transition: ease .3s;
    }
    .header-top__item a:hover {
      color: #FF481E;
    }
    .main-bg {
      padding: 70px 0 200px;
    }
    .main-bg::after {
      width: 460px;
      height: 625px;
      top: -230px;
    }
    .main .swiper-button-prev, .main .swiper-button-next {
      top: 70%;
    }
    .main .swiper-button-next, .main .swiper-button-prev {
      width: 70px;
      height: 70px;
    }
    .main-desc {
      margin-top: 50px;
    }
    .main-desc p {
      font-size: 26px;
      line-height: 34px
    }
    .main-wrap {
      flex-wrap: wrap;
      justify-content: center;
      z-index: 1;
    }
    .main-item {
      width: 31%;
      margin-bottom: 15px;
      z-index: 0;
    }
    .main-item:nth-child(2) {
      margin: 0 15px;
    }
    .main-item:nth-child(4) {
      margin-right: 15px;
    }
    .main-item__title {
      width: auto;
      right: 20px;
    }
    .main-product__text {
        padding: 90px 0;
    }
    .main-wrap {
      top: 86%;
    }
    .block-title {
      flex-wrap: wrap;
    }
    .block-title p, .transport-desc {
      font-size: 20px;
      line-height: 28px;
    }
    h2 {
      margin-bottom: 22px;
    }
    .gos {
      padding: 330px 0 100px;
      background-position: center;
    }
    .gos .container {
      position: static;
    }
    .gos-bg {
      z-index: 0;
    }
    .gos h2 {
      width: 100%;
    }
    .gos .block-title p {
      width: 100%;
    }
    .gos-content__box:first-child, .gos-content__box {
      width: 40%;
    }
    .gos-content__box:nth-child(3) {
        margin-bottom: 0;
    }
    .gos-content__box-logo {
        height: auto;
    }
    .gos-content__box-logo:nth-child(2), .gos-content__box-logo:nth-child(4), .gos-content__box-logo:nth-child(6) {
        margin-right: 0;
    }
    .gos-content__box-logo:nth-child(3), .gos-content__box-logo:nth-child(5) {
        margin-right: 25px;
    }
    .gos-content__box-logo:nth-child(4) {
        margin-bottom: 25px;
    }
    .gos-info {
      position: static;
      margin-top: 45px;
    }
    .gos-info__pict img {
      display: none;
    }
    .gos-info {
      margin-top: 20px;
    }
    .gos-info__text p {
      text-align: left;
    }
    .podbor .block-title p {
      text-align: left;
    }
    .podbor-video {
      height: 290px;
    }
    .podbor-content {
      width: 100%;
    }
    .btn-dowload {
      width: 300px;
    }
    .catalog-wrap .main-item {
      z-index: 0;
    }
    .categoriy {
        padding: 30px 0;
    }
    .categoriy-wrap .catalog-item {
        width: 48%;
        margin-right: 25px;
    }
    .categoriy-wrap .catalog-item:nth-child(2n) {
        margin-right: 0;
    }
    .categoriy-wrap .catalog-item:nth-child(3n) {
        margin-right: 30px;
    }
    .catalog-pict img {
        height: 580px;
    }
    .podbor-title__one {
      margin-bottom: 40px;
    }
    .transport-title__two {
      margin-top: 40px;
    }
    .transport-title__list {
      padding-left: 0;
    }
    .transport-bottom {
      flex-wrap: wrap;
      margin-top: 70px;
    }
    .transport-bottom__two {
      margin: 30px 0 0 30px;
    }
    .demo-wrap {
      flex-wrap: wrap;
    }
    .demo-text p {
      margin: 0 0 50px;
    }
    .demo-video {
      margin: auto;
      height: 300px;
    }
    .demo-form {
      width: 100%;
      padding: 100px 30px 0;
    }
    .demo-form__wrap .group-form {
      width: 48%;
    }
    .demo-form__wrap .group-form .form-input {
      width: 100%;
    }
    .tender-content {
      max-width: 420px;
      margin-left: 40px;
    }
    .zamena {
      overflow: hidden;
    }
    .training-circle {
      top: 70px;
      width: 260px;
      height: 260px;
      padding: 25px 30px;
    }
    .training-circle__number {
      font-size: 60px;
      line-height: 60px;
    }
    .training-circle__text {
      font-size: 24px;
      line-height: 32px;
    }
    .training-circle__desc {
      font-size: 16px;
      line-height: 24px;
    }
    .training-item {
      width: 32%;
      padding: 25px 15px 25px 15px;
    }
    .training-name {
      font-size: 20px;
      line-height: 28px;
    }
    .box-one {
      width: 450px;
      height: 290px;
    }
    .box-two, .box-three {
      width: 260px;
      height: 135px;
      padding: 15px 25px 20px;
    }
    .box-item__name, .box-item__text p, .world-text p, .cons-desc {
      font-size: 18px;
      line-height: 26px;
    }
    .box-two .box-item__desc {
      font-size: 16px;
      line-height: 24px;
      margin-top: 15px;
    }
    .zamena-name {
      font-size: 20px;
      line-height: 28px;
      margin: 30px 0 20px;
    }
    .zamena-desc {
      font-size: 16px;
      line-height: 24px;
    }
    .cons .block-title p {
      font-size: 22px;
      line-height: 30px;
    }
    .footer-wrap {
      flex-wrap: wrap;
    }
    .footer-item:first-child {
      margin-right: 0;
    }
    .footer-item {
      width: 48%;
    }
    .footer-item:nth-child(2) .footer-name {
      margin-top: 25px;
    }
    .footer-item:nth-child(3), .footer-item:last-child {
      margin-top: 50px;
    }
    .main-product__content {
      height: 100%;
    }
    .main-product__text h1 {
      font-size: 60px;
      line-height: 80px;
    }
    .main-product__pict {
      height: auto;
      position: static;
      margin-left: auto;
      margin-right: auto;
    }
    .specification-wrap {
      flex-wrap: wrap;
      justify-content: center;
      max-width: 600px;
      width: 100%;
      margin: auto;
    }
    .specification-content {
      margin-top: 10px;
    }
    .specification-desc {
      margin: 20px 0 15px;
    }
    .info .nav-link {
      font-size: 14px;
      line-height: 20px;
      padding: 25px 19px;
    }
    .info .tab-pane {
      background: none !important;
    }
    .info-offer {
      padding-top: 50px;
    }
    .functional-one {
      margin-top: 50px;
    }
    .info-offer__name {
      font-size: 28px;
      line-height: 40px;
      margin-bottom: 25px;
    }
    .info-offer__desc {
      font-size: 18px;
      line-height: 26px;
    }
    .info__offer__phone {
      font-size: 24px;
      line-height: 30px;
    }
    .info-wrap table tr td {
        padding: 15px;
    }
    .question-block {
      padding: 0 25px;
    }
    .page-text {
        padding-bottom: 30px;
    }
  }
  @media (max-width: 768px) {
    .header-top .btn, .header-top__phone, .header-top__action {
      display: none !important;
    }
    .header-top__lang {
      margin: auto;
    }
    .header-mobile .header-top__action, .header-mobile .header-top__phone {
      display: block !important;
    }
    .header-top__phone {
      margin: 0 10px 0 20px;
      width: auto;
    }
    .header-top__action {
      margin-right: 70px;
    }
    .main-title p, .categoriy h1 {
      font-size: 30px;
      line-height: 40px;
    }
    .main-desc p {
      font-size: 26px;
      line-height: 36px;
    }
    .main-bg {
      padding: 70px 0 220px;
    }
    .main-bg::after {
      width: 300px;
      height: 455px;
      top: -260px;
      background-size: cover;
    }
    .main-item:nth-child(2) {
      margin-right: 0;
      width: 64.9%;
    }
    .main-item:nth-child(4) {
      margin: 0 15px;
    }
    h2, .catalog-offer__text p, .transport-title, .transport-bottom__day {
      font-size: 26px;
      line-height: 36px;
    }
    .gos {
      background-position: 50% 35%;
      padding-bottom: 70px;
    }
    .gos-content {
      justify-content: space-between;
    }
    .gos-content__box:first-child, .gos-content__box:nth-child(3) {
      margin-right: 0;
    }
    .gos-content__box:first-child, .gos-content__box {
      width: 45%;
    }
    .gos-block {
      margin-top: 70px;
    }
    .gos-content__name, .podbor-desc {
      font-size: 20px;
      line-height: 28px;
    }
    .gos-content__box {
      margin-bottom: 50px;
    }
    .podbor, .catalog, .transport, .training, .box, .zamena, .cons {
      padding: 70px 0;
    }
    .podbor-video p, .training-text {
      font-size: 18px;
      line-height: 26px;
    }
    .podbor-title, .box-title, .catalog-name, .demo-title, .training-name, .catalog-name span {
      font-size: 24px;
      line-height: 32px;
    }
    .catalog-wrap {
      margin: 50px 0 70px;
    }
    .catalog-item, .categoriy-wrap .catalog-item {
      max-width: 360px;
      width: 100%;
      margin: auto;
    }
    .catalog .main-item {
      width: 48%;
    }
    .catalog .main-item:nth-child(2) {
      margin: 0 0 0 4%;
    }
    .catalog .main-item:nth-child(4), .catalog .main-item:nth-child(5) {
      margin-top: 4%;
    }
    .catalog .main-item:nth-child(4) {
      margin-right: 0;
      margin-left: 4%;
    }
    .catalog .main-item:nth-child(5) {
      margin-bottom: 0;
    }
    .catalog-name, .catalog-desc, .catalog-delivery {
        color: #ccc;
        transition: ease .3s;
  }
    .catalog-item:hover .catalog-name, .catalog-item:hover .catalog-desc, .catalog-item:hover .catalog-delivery {
        color: #fff;
    }
    .btn-link {
        margin: 0;
    }
    .categoriy-wrap .catalog-item {
        margin-bottom: 25px;
    }
    .categoriy-wrap .catalog-item:last-child {
        margin-bottom: 0;
    }
    .categoriy-wrap .catalog-item:nth-child(2n) {
        margin-right: auto;
    }
    .categoriy-wrap .catalog-item:nth-child(3n) {
        margin-right: auto;
    }
    .catalog-pict img {
        height: 465px;
    }
    .catalog-offer {
      flex-wrap: wrap;
    }
    .catalog-offer__text {
      width: 100%;
      margin-bottom: 35px;
    }
    .catalog-offer {
      margin-top: 50px;
    }
    .podbor-video__content svg, .demo-video__content svg {
      width: 70px;
      height: 70px;
    }
    .demo {
      padding: 70px 0 0;
    }
    .demo-form {
      padding: 70px 20px;
      height: auto;
    }
    .demo-wrap {
      margin-top: 50px;
    }
    .demo-video {
      height: 220px;
    }
    .demo-form__wrap {
      flex-wrap: wrap;
    }
    .demo-form__wrap .group-form, .cons-form__wrap .group-form {
      max-width: 400px;
      width: 100%;
      margin: 0 auto 14px;
    }
    .demo-form .btn, .cons-form__wrap .form-input, .cons-form .btn {
      width: 100%;
      max-width: 400px;
    }
    .demo-confid {
      margin-top: 15px;
    }
    .podbor-video {
      margin-top: 50px;
      height: 220px;
    }
    .demo-text {
      top: 20px;
      left: 20px;
    }
    .demo-text p {
      font-size: 16px;
      line-height: 24px;
    }
    .training-circle {
      position: static;
      margin: 0 auto 50px;
      transform: none !important;
    }
    .training .block-title {
      max-width: 560px;
      width: 100%;
    }
    .training-wrap {
      flex-wrap: wrap;
      margin-top: 50px;
    }
    .training-item {
      width: 400px;
      margin: 0 auto;
      height: auto;
      padding: 25px 20px 35px;
    }
    .training-item:nth-child(2) {
      margin-right: auto;
      margin: 30px auto;
    }
    .transport-title__two {
      margin-top: 30px;
    }
    .transport-title__number {
      font-size: 30px;
      line-height: 40px;
      top: 3px;
    }
    .transport-title__list li {
      font-size: 18px;
      line-height: 26px;
      padding-left: 60px;
    }
    .transport-bottom__day {
      margin: 10px 0 10px;
    }
    .tender {
      padding-top: 70px;
    }
    .tender-wrap {
      flex-wrap: wrap;
    }
    .tender-pict {
      width: 320px;
      margin: auto;
    }
    .tender-content {
      margin: 50px auto 0;
    }
    .tender-content__btn p {
      font-size: 14px;
      line-height: 20px;
      padding: 12px 0 0;
    }
    .tender-content__btn {
      flex-wrap: wrap;
    }
    .box-block {
      margin-top: 0;
    }
    .box-wrap {
      max-width: 400px;
      width: 100%;
      margin: 50px auto 0;
    }
    .box-title {
      text-align: left;
    }
    .box-one {
      max-width: 400px;
      width: 100%;
      height: 250px;
      margin-bottom: 20px;
      margin-right: 0;
    }
    .box-item__column {
      max-width: 400px;
      width: 100%;
    }
    .box-item__text {
      left: 25px;
      bottom: 25px;
      width: 100%;
      max-width: 350px;
    }
    .box-item__text p {
      font-size: 16px;
      line-height: 22px;
    }
    .box-two, .box-three {
      max-width: 400px;
      width: auto;
      height: 220px;
    }
    .box-two .box-item__desc {
      margin-top: 80px;
    }
    .zamena-wrap {
      flex-wrap: wrap;
      margin-top: 50px;
    }
    .zamena-wrap-two {
      margin-top: 0;
    }
    .zamena-wrap-two .zamena-item:first-child {
      display: none;
    }
    .zamena-item {
      max-width: 400px;
      width: 100%;
      margin: 0 auto 30px;
    }
    .zamena-item:last-child {
      margin-bottom: 0;
    }
    .zamena-name {
      font-size: 22px;
      line-height: 30px;
    }
    .zamena-desc {
      font-size: 18px;
      line-height: 26px;
    }
    .zamena-btn .btn {
      line-height: 26px;
    }
    .cons {
      margin-top: 0;
    }
    .cons-form {
      margin-top: 40px;
    }
    .cons-desc br {
      display: none;
    }
    .cons-form__wrap {
      flex-wrap: wrap;
    }
    .footer-bottom {
      padding-top: 0;
      flex-wrap: wrap;
      justify-content: center;
    }
    .footer-defend:nth-child(2) {
        max-width: 550px;
    }
    .footer-logo svg {
      width: 180px;
    }
    .footer-phone a {
      font-size: 24px;
      line-height: 32px;
    }
    .modal-title {
      font-size: 24px;
      line-height: 32px;
    }
    .main-product__text h1, .main-product__text h1 span {
      font-size: 40px;
      line-height: 58px;
      margin-bottom: 15px;
    }
    .main-product__content {
      max-width: 360px;
      min-height: auto;
    }
    .main-product__text {
      padding-top: 70px;
    }
    .specification-desc{
      font-size: 18px;
      line-height: 24px;
    }
    .specification-price__amount {
      font-size: 20px;
      line-height: 26px;
    }
    .functional {
      background-image: none !important;
      position: relative;
      padding-bottom: 0 !important;
      min-height: auto;
    }
    .functional-pict {
      display: none;
    }
    .functional-mobpict {
      display: block;
      height: 350px;
      overflow: hidden;
    }
    .functional-mobpict img {
      content-visibility: auto;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
    }
    .main-product__desc {
      font-size: 18px;
      line-height: 30px;
    }
    .info .nav-tabs {
      justify-content: center;
    }
    .info .tab-pane {
      padding: 35px 20px 20px;
    }
    .info .nav-link {
      font-size: 13px;
      line-height: 18px;
      padding: 15px 13px;
    }
    .info-text h3, .info-wrap h3 {
      font-size: 20px;
      line-height: 30px;
      margin-bottom: 25px;
    }
    .info-text {
      width: 100%;
    }
    .info-offer {
      flex-wrap: wrap;
    }
    .info__offer__action {
      margin-top: 30px;
    }
    .info-wrap table tr td {
        font-size: 14px;
        line-height: 22px;
    }
    .info-wrap table tr td:first-child {
        padding-right: 0px;
    }
    .question {
      padding: 80px 0;
    }
    .question-block {
      margin-top: 10px;
    }
    .cons-top {
      padding-top: 30px;
    }
  }
  @media (max-width: 576px) {
    .menu__btn {
      top: 28px;
    }
    .header-logo img {
      width: 130px;
    }
    .main-bg {
      padding: 50px 0 125px;
      height: 435px;
    }
    .main-desc p {
      font-size: 18px;
      line-height: 26px;
    }
    .main-bg::after {
      width: 250px;
      height: 300px;
      top: -180px;
    }
    .main-bg::before {
      width: 120px;
      height: 170px;
      top: 264px;
      background-size: cover;
    }
    .main-item {
      width: 100%;
      max-width: 400px;
      min-height: 90px;
      height: auto;
      padding: 20px 15px;
      margin: 0 auto 15px;
    }
    .main-item:nth-child(2), .main-item:nth-child(4) {
      width: 100%;
      margin: 0 auto 15px;
    }
    .main-item__title {
      position: static;
      width: 80%;
      font-size: 16px;
      line-height: 24px;
    }
    .main-wrap {
      position: static;
      transform: none;
      margin: 0 auto;
      padding: 0 0 45px;
    }
    .main .swiper-button-prev, .main .swiper-button-next {
      top: 80%;
    }
    .main-product__text h1 span {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 0;
    }
    .product-bg {
        background-image: none !important;
        background: linear-gradient(90deg, #171A21 92.23%, rgba(23, 26, 33, 0) 104.66%);
    }
    .block-title {
      text-align: center;
    }
    .zamena .block-title p {
        width: 100%;
    }
    .gos {
      padding: 60px 0;
    }
    .gos-bg {
      background-position: 0% 100%;
      background-size: 50%;
      height: 100%;
      width: 646px;
    }
    .gos-block {
      margin: 55px 0 0 0;
    }
    .gos-content__box-wrap {
        justify-content: space-between;
    }
    .gos-content__box:first-child, .gos-content__box {
      max-width: 400px;
      width: 100%;
      margin-left: 30px;
    }
    .gos-content__box:first-child {
        margin-bottom: 55px;
        order: 2;
    }
    .gos-content__box:nth-child(2) {
        order: 1;
    }
    .gos-content__box:nth-child(3) {
        order: 3;
        margin-bottom: 55px;
    }
    .gos-content__box:nth-child(4) {
        order: 4;
    }
    .gos-content__box-pict {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
    .gos-content__box-logo img {
        max-height: 50px;
    }
    .gos-content__btn {
      margin-top: 55px;
    }
    .podbor, .catalog, .training, .box, .transport {
      padding: 60px 0;
    }
    .podbor-wrap {
      margin-top: 50px;
    }
    .podbor-desc {
      margin-bottom: 35px;
    }
    .podbor-video {
      max-width: 300px;
      width: 100%;
      height: auto;
      margin: 50px auto 0;
      border-radius: 15px;
    }
    .podbor-video__wrap, .demo-video__wrap {
      overflow: hidden;
      height: auto;
      border-radius: 15px;
    }
    .podbor-video__content svg, .demo-video__content svg {
      width: 70px;
      height: 70px;
    }
    .catalog .main-item {
      width: 100%;
      max-width: 400px;
    }
    .catalog-wrap {
      margin: 50px 0 55px;
    }
    .catalog-btn__top .btn {
      margin: auto;
    }
    .catalog .block-title, .podbor .block-title {
      justify-content: center;
    }
    .catalog-title__one h2, .podbor .block-title p {
      text-align: center;
    }
    .catalog-title__one .btn {
      margin: auto;
    }
    .catalog .main-item:nth-child(2), .catalog .main-item:nth-child(4), .catalog .main-item:nth-child(5) {
      margin: 0 auto 15px;
    }
    .categoriy {
        padding-bottom: 0;
    }
    .page-text {
        padding-bottom: 60px;
    }
    .catalog-slider, .catalog-offer {
      margin-top: 55px;
    }
    .catalog-offer__text p {
      font-size: 22px;
      line-height: 32px;
      text-align: center;
    }
    .btn-dowload {
      margin: auto;
    }
    .sending-circle {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      padding: 30px;
      bottom: -120px;
      right: 0;
    }
    .sending-circle p {
      text-align: center;
    }
    .transport {
       background-position: left center;
    }
    .demo {
      padding: 60px 0;
    }
    .demo-wrap {
      margin: 50px 0 55px;
    }
    .demo-video {
      max-width: 400px;
      width: 100%;
      height: auto;
    }
    .demo-text {
      left: 10px;
      top: 10px;
    }
    .demo-text p {
      font-size: 13px;
      line-height: 20px;
    }
    .demo-video__content {
      bottom: 30px
    }
    .catalog br, .demo-title br, .demo .block-title br, .training .block-title p br, .box .block-title p br, .box-title br, .world .block-title p br, .cons .block-title p br {
      display: none;
    }
    .demo-form {
      padding: 0 15px;
    }
    .transport-title__list {
      text-align: left;
    }
    .tender-pict {
      width: 240px;
    }
    .tender-content {
      margin-top: 30px;
      text-align: center;
    }
    .tender-content__btn {
      justify-content: center;
    }
    .training h2, .training-name {
      font-size: 22px;
      line-height: 32px;
    }
    .training-wrap, .box-block, .zamena-wrap {
      margin-top: 50px;
    }
    .zamena-wrap-two {
      margin: 0;
    }
    .zamena-name {
      margin: 20px 0 15px;
    }
    .transport-title__list li {
      margin-bottom: 20px;
    }
    .transport-bottom {
      margin-top: 55px;
    }
    .box-wrap, .cons-form {
      margin-top: 30px;
    }
    .box-item__text {
      font-size: 16px;
      line-height: 24px;
      width: auto;
      padding-right: 25px;
    }
    .box-two, .box-three {
      height: 200px;
    }
    .zamena {
      padding: 60px 0 0;
    }
    .zamena-btn .btn {
      margin: 40px auto 60px;
    }
    .world {
      padding: 80px 0;
    }
    .cons {
      padding: 60px 0;
    }
    .cons .block-title p {
      font-size: 20px;
      line-height: 28px;
    }
    .cons-confid {
      margin-top: 15px;
    }
    .footer {
      padding: 60px 0;
    }
    .footer-wrap {
      justify-content: center;
      align-items: start;
    }
    .footer-item:first-child {
      width: 100%;
      text-align: center;
    }
    .footer-logo {
      margin-bottom: 20px;
    }
    .footer-item:first-child .footer-item__box, .footer-phone, .footer-item__box {
      text-align: center;
    }
    .footer-item:nth-child(3) {
      margin-top: 0;
    }
    .footer-item:nth-child(2) .footer-name, .footer-item:nth-child(3) .footer-name {
      margin-top: 30px;
      margin-bottom: 15px;
    }
    .footer-item:nth-child(2), .footer-item:nth-child(3) {
      width: 150px;
      margin: 0 auto;
    }
    .footer-item:nth-child(2) {
      margin-left: 30px;
    }
    .footer-item:last-child {
      width: 100%;
      margin-top: 30px;
      text-align: center;
    }
    .footer-name {
      font-size: 14px;
      line-height: 22px;
    }
    .footer-item li {
      margin-bottom: 5px;
    }
    .footer-item li a {
      font-size: 16px;
      line-height: 22px;
    }
    .footer-mess {
      justify-content: center;
      margin: 15px auto;
    }
    .modal-form {
      max-width: 400px;
      padding: 0 25px;
    }
    .modal-title {
      font-size: 20px;
      line-height: 28px;
    }
    .modal-content .group-form {
      width: 100%;
    }
    .main-product__breadcrumbs ul {
      flex-wrap: wrap;
    }
    .main-product__breadcrumbs li {
      padding-right: 30px;
      padding-bottom: 6px;
    }
    .main-product__breadcrumbs li::before {
      right: 10px;
    }
    .main-product__text {
      padding: 40px 0 60px;
    }
    .main-product__pict {
      max-width: 400px;
      width: 100%;
    }
    .specification {
      padding: 60px 0;
    }
    .specification-items {
      flex-wrap: wrap;
    }
    .info .nav-link {
      padding: 20px 13px;
    }
    .info-offer__name br, .question h2 br {
      display: none;
    }
    .categoriy-block .main-title {
        margin-top: 40px;
    }
    .categoriy-wrap, .page-text {
        margin-top: 35px;
    }
    .main-title h1 span {
        display: inline-block;
    }
    .catalog-bottom {
      padding-bottom: 0;
    }
    .question {
        padding: 80px 0 60px;
    }
    .question .accordion-button {
        font-size: 18px;
        line-height: 26px;
    }
    .question .card-header {
        padding: 12px 0;
    }
    .question .card-body {
        padding: 0 0 25px;
    }
    .question-block {
      padding: 0;
    }
    .mySwiper2 .swiper-slide {
      height: auto;
    }
    .info {
        padding: 60px 0 0;
    }
    .info .nav-item {
        width: 50%;
        text-align: center;
    }
    .info .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        padding: 10px;
    }
    .info-wrap table tr td:first-child {
        width: 75% !important;
    }
    .info-wrap table tr td:last-child {
        width: 25% !important;
    }
    .cons-top {
        padding-top: 60px;
    }
  }
  @media (max-width: 400px) {
    .demo-title {
      font-size: 22px;
      line-height: 30px;
    }
    .box-one {
      height: 235px;
    }
    .box-two, .box-three {
      height: 190px;
    }
    .box-two .box-item__desc {
      margin-top: 60px;
    }
    .world h2 {
      font-size: 26px;
      line-height: 34px;
    }
  }