
/* Стили для кнопки в header */
#openModal {
    background-color: #928ecc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0;
    font-size: 15px;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
}
/* Стили для кнопки в header */




/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: none;
    display: flex;
    align-items: center;
    align-content: center;
    min-height: 100vh;
}

.modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid #888;
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
}

.modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.modal .close:hover,
.modal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.modal .modal-content h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 30px;
  line-height: 34px;
  letter-spacing: -0.5px;
}

.input-box {
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
}

.input-box input,
.input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 5px;
  background: #f0f1f8;
  padding: 0 20px;
  margin-bottom: 2px;
  font-size: 15px;
}

.input-box label {
  font-size: 14px;
  color: #afafb6;
  padding-left: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.input-box textarea {
  resize: none;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}

.message-box {
  min-height: 110px;
}

.button {
  display: inline-block;
}

.button input[type="submit"] {
  color: #fff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #928ecc;
  outline: none;
  border: none;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.3s;
}

.button input[type="submit"]:hover {
  background: #000;
}
/* Модальное окно */





.open-modal {
  background-color: #928ecc;
  font-family: 'Roboto';
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-out;
  border-radius: 5px;
  margin: 20px 10px 0;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  box-shadow: none;
}
  
.open-modal:hover {
  background-color: #000;
}




/* Hero */
  .hero {
    min-height: 100vh;
    background-size: cover;
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    overflow: hidden;
  }
  
  .hero .container-fluid {
    position: relative;
    z-index: 1;
  }
  
  .hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  }
  
  .hero-cnt {
    position: relative;
    height: 100%;
    z-index: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 200px 61px 88px 0;
  }
  
  .hero-descr {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.5px;
    color: #ffffff;
    max-width: 395px;
    width: 100%;
    padding-top: 10px;
  }
  
  .hero-title {
    max-width: 700px;
    width: 100%;
    margin-bottom: 205px;
  }
  
  .hero-items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: justify;
            justify-content: flex-end;
  }
  
  .hero-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    transition: all 0.3s ease-out;
    padding-right: 20px;
    scroll-behavior: smooth;
  }
  
  .hero-btn i {
    transition: all 0.3s ease-out;
    transition-delay: .15s;
  }
  
  .hero-btn:hover i {
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .hero--interior {
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  .hero--interior:after {
    content: none;
  }
  
  .hero--interior .swiper-pagination.swiper-pagination-bullets {
    bottom: 36px;
    left: 52px;
    right: inherit;
    text-align: left;
  }
  
  .hero--interior .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    margin: 0 9px;
    opacity: 1;
    transition: all 0.3s ease-out;
  }
  
  .hero--interior .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #928ecc;
  }
  
  .hero--interior .swiper-button-next, .hero--interior .swiper-button-prev {
    width: 23px;
    height: 43px;
  }
  
  .hero--interior .swiper-button-next:after, .hero--interior .swiper-button-prev:after {
    content: none;
  }
  
  .hero--interior .swiper-button-next svg line, .hero--interior .swiper-button-prev svg line {
    transition: all 0.3s ease-out;
    stroke: #ffffff;
  }
  
  .hero--interior .swiper-button-next:hover svg line, .hero--interior .swiper-button-prev:hover svg line {
    stroke: #928ecc;
  }
  
  .hero--interior .swiper-button-prev {
    left: 65px;
  }
  
  .hero--interior .swiper-button-next {
    left: 120px;
    right: inherit;
  }
  
  .hero--interior .swiper-button-next {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .hero-slider {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  
  .hero-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  
  .hero-slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }
  
  .hero-slide-1:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  }
  
  .hero-slide-2:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  }
  
  .hero-slide-3:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.23), rgba(0, 0, 0, 0.23));
  }
  
  .hero-slide__cnt {
    padding-top: 110px;
    position: relative;
    z-index: 2;
  }
  
  .hero-slide__title {
    font-size: 90px;
    line-height: 80px;
    color: #ffffff;
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    margin-bottom: 80px;
  }
  
  .hero-slide__info {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .hero-slide__btn {
    margin-right: 83px;
  }
  
  .hero-slide__descr {
    font-size: 15px;
    line-height: 21px;
    color: #ffffff;
    max-width: 330px;
    width: 100%;
  }
  
  .hero-inner {
    padding-bottom: 81px;
    position: relative;
    z-index: 1;
  }
  
  .hero-inner .hero-title {
    font-size: 75px;
    line-height: 75px;
    max-width: none;
    margin-bottom: 32px;
  }
  
  .hero-inner .hero-descr {
    margin-bottom: 204px;
    font-size: 18px;
    line-height: 25px;
    color: #F9F9F9;
  }
  
  .hero-inner .hero-btn:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  
  .hero-inner .hero-btn:hover i {
    -webkit-transform: scale(1) translateY(10px);
            transform: scale(1) translateY(10px);
  }
  
  .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-position: center;
    background-size: cover;
  }
  
  .hero-demo {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .hero-demo .hero-inner {
    padding: 200px 0;
  }
  
  .hero-demo .hero-descr {
    margin-bottom: 0;
  }
  
  .hero-demo .hero-btn {
    position: absolute;
    bottom: 80px;
    right: inherit;
    z-index: 2;
  }
/* Hero */







/* Modal */
  .mfp-iframe-holder .mfp-content {
    max-width: calc(100% - 80px);
  }
/* Modal */




/* Grid */
  .grid-wrap {
    margin: -30px;
  }
  
  .grid-item {
    width: 25%;
    padding: 10px 10px;
  }
  
  .grid-item--width2 {
    width: 50%;
  }
  
  .grid-item--width3 {
    width: 100%;
  }
/* Grid */





 .section {
    padding: 150px 0;
  }
  
  .section--gray {
    background: #F9F9F9;
  }

  .fon-1 {
    background-image: url('fon-pic/fon-01.jpg');
    background-repeat: no-repeat;
    background-color: #F9F9F9; /* Резервный цвет */
    margin: 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  } 

  .fon-2 {
    background-image: url('fon-pic/fon-02.jpg');
    background-repeat: no-repeat;
    background-color: #F9F9F9; /* Резервный цвет */
    margin: 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  } 

  .container-fon {
    background-color: #fff;
    padding: 20px 30px;
  }

  .container-fon .col-xl-6 {
    padding: 20px;
  }

  .container-fon .description-item__title {
    padding-top: 10px;
  }
  
  .container-fon .applications-cnt{
    padding: 20px;
  }

.soft {
   padding: 150px 0 0;
}


.sfery {
   padding: 150px 0;
}





/* Description */
  .description .container-fon {
  padding: 30px 40px;
  }
  
  .description-items--center {
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .description-items--reverse {
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .description-item__info {
    padding-left: 30px !important;
  }
  
  .description-item .title-wrap {
    margin-bottom: 50px;
  }

  .description-item__title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 54px;
    line-height: 58px;
    color: #000000;
    margin-bottom: 40px;
  }
  
  .description-item__title span {
    color: #928ecc;
  }
  
  .description-item__descr {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    max-width: 450px;
    width: 100%;
  }

  .description-common {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    max-width: 500px;
    width: 100%;
    margin-bottom: 50px;
  }
  
  .description-item__img img {
   width: 100%;
  }

  .description-item__img--long {
   width: 100%;
  }
/* Description */







/* Applications-Index */
  .applications {
    padding: 150px 0;
  }

  .applications .container-fon {
  padding: 30px 40px;
  }
  
  .applications-cnt {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  
  .applications-info, .applications-img-wrap {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: flex-start;
    justify-content: center;
    align-content: space-around;
  }
  
  .applications-img {
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    display: flex;
    padding-left: 40px;
  }
  
  .applications-img img {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0;
    transition: all 0.3s ease-out;
  }
  
  .applications-img.active img {
    opacity: 1;
  }

   .applications-title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 54px;
    line-height: 58px;
    color: #000000;
    margin-bottom: 40px;
  }
  
  .applications-list__item {
    border-bottom: 1px solid #000000;
  }
  
  .applications-list__link {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 34px;
    padding: 2px 0;
    letter-spacing: 0.02px;
    text-transform: none;
    color: #000000;
    text-decoration: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    transition: all 0.3s ease-out;
  }
  
  .applications-list__link.active {
    color: #928ecc;
  }
  
  .applications-list__link.active .applications-list__arrow {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  
  .applications-list__arrow {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 25px;
    height: 25px;
    border: none;
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    transition: all 0.3s ease-out;
  }
/* Applications-Index */







/* Project */
  .project {
    padding-top: 150px;
  }

  .project-title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 54px;
    line-height: 58px;
    color: #000000;
    margin-bottom: 40px;
  }
  
  .project .swiper-button-next, .project .swiper-button-prev {
    top: -60px;
    left: inherit;
    width: 18px;
    height: 33px;
  }
  
  .project .swiper-button-next:after, .project .swiper-button-prev:after {
    content: none;
  }
  
  .project .swiper-button-next svg line, .project .swiper-button-prev svg line {
    transition: all 0.3s ease-out;
  }
  
  .project .swiper-button-next:hover svg line, .project .swiper-button-prev:hover svg line {
    stroke: #928ecc;
  }
  
  .project .swiper-button-next {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .project .swiper-container {
    overflow: visible;
  }
  
  .project-slide {
    position: relative;
    overflow: hidden;
  }

  .project-slide:hover .project-slide__hover {
    opacity: 1;
    visibility: visible;
  }
  
  .project-slide__hover {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #F9F9F9;
    border: 1px solid #000000;
    padding: 30px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease-out;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    align-items: flex-end;
  }
  
  .project-slide__img img {
    max-width: 100%;
    width: 100%;
  }
  
  .project-slide__title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.02px;
    text-transform: uppercase;
    color: #000000;
    padding-bottom: 10px;
    border-bottom: 1px solid #000000;
    margin-bottom: 30px;
    max-width: 300px;
    width: 100%;
  }
  
  .project-slide__descr {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    max-width: 300px;
    width: 100%;
  }
  
  .project-slide__info {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  .project-slide__btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #928ecc;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: all 0.3s ease-out;
  }
  
  .project-slide__btn i {
    transition: all 0.3s ease-out;
    transition-delay: .15s;
  }

  .project-slide__btn .bi-arrow-bar-down {
    transition: all 0.3s ease-out;
    transition-delay: .15s;
    color: #fff;
    font-size: 24px;
    padding-top: 6px !important;
  }
  
  .project-slide__btn:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .project-slide__btn:hover i {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
/* Project */




/* Table-step */
  .table-step {
    padding: 150px 0;
  }
  
  .table-title-wrap {
    width: calc(50% - 50px);
    margin-right: 50px;
  }
  
  .table-items {
    padding-top: 5px;
  }
  
  .table-item {
    border-bottom: 1px solid #000000;
  }
  
  .table-item__title {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0.04px;
    text-transform: none;
    color: #000000;
  }
  
  .table-item__toggle {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1px 4px 1px 0;
    cursor: pointer;
  }
  
  .table-item__toggle.active .table-item__arrow {
    background: transparent;
  }
  
  .table-item__toggle.active .table-item__arrow-icon svg {
    -webkit-transform: rotate(180deg) translateY(2px);
            transform: rotate(180deg) translateY(2px);
  }
  
  .table-item__toggle.active .table-item__arrow-icon svg path {
    fill: #000000;
  }
  
  .table-item__arrow {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 25px;
    height: 25px;
    border: none;
    transition: all 0.3s ease-out;
  }
  
  .table-item__arrow svg {
    transition: all 0.3s ease-out;
  }
  
  .table-item__arrow svg path {
    transition: all 0.3s ease-out;
  }
  
  .table-item__cnt {
    padding: 40px 0 38px;
    display: none;
    border-top: 1px solid #000000;
  }
  
  .table-item__cnt.active {
    display: block;
  }
  
  .table-item__inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    -webkit-justify-content: space-between;
        justify-content: space-between;
  }

  .table-item__descr {
    width: 100%;
    padding-left: 0;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
  }

  .po .table-item__descr {
    width: 80%;
    padding-left: 0;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
  }

  .table-support .table-item__descr {
    width: 100%;
    padding-left: 0;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
  }
  
  .table-item__link {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    line-height: 22px;
    color: #928ecc;
    text-decoration: none;
  }
  
  .table-item__link {
    width: 20%;
  }

  .table-item__link i {
    margin-left: 10px;
    transition: all 0.3s ease-out;
  }
  
  .table-item__link:hover i {
    margin-left: 20px;
  }

  table {
    width: 100%;
  }

  .table-item__descr .table td {
    padding: 5px 20px 5px 0;
    width: 50%;
  }
/* Table-step */








/* Accessories */
  .accessories {
    padding: 150px 0;
  }

  .accessories .swiper-button-next, .accessories .swiper-button-prev {
    top: 30px;
    left: inherit;
    width: 18px;
    height: 33px;
  }
  
  .accessories .swiper-button-next:after, .accessories .swiper-button-prev:after {
    content: none;
  }
  
  .accessories .swiper-button-next svg line, .accessories .swiper-button-prev svg line {
    transition: all 0.3s ease-out;
  }
  
  .accessories .swiper-button-next:hover svg line, .accessories .swiper-button-prev:hover svg line {
    stroke: #928ecc;
  }
  
  .accessories .swiper-button-next {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    right: 0;
  }
  
  .accessories .swiper-button-prev {
    right: 45px;
  }
  
  .accessories .swiper-container {
    padding-top: 150px;
    margin-top: -50px;
  }
  
  .accessories-slide__header {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 29px;
  }
  
  .accessories-slide__header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000000;
    bottom: 5px;
  }
  
  .accessories-slide__icon {
    height: 31px;
    margin-top: -8px;
  }
  
  .accessories-slide__icon i {
    width: 37px;
  }
  
  .accessories-slide__title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 22px;
    line-height: 31px;
    letter-spacing: 0.03px;
    text-transform: uppercase;
    color: #000000;
  }
  
  .accessories-slide__descr {
    max-width: 400px;
    width: 100%;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
  }
  
  .accessories-slide__title a {
    text-decoration: none;
    color: #000000;
    transition: color 0.05s ease;
  }

  .accessories-slide__title a:hover {
    color: #928ecc;
  }

  .accessories-slide__img {
    width: 380px;
    height: 380px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 50px;
    border-radius: 0;
  }
  
  .accessories-slide__img img {
    max-width: 100%;
    border-radius: 0;
  }
/* Accessories */






/* gallery */
.gallery {
  padding: 0;
}
.gallery-items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}
.gallery .grid-item {
 width: 25%;
 padding: 10px;
 margin: 0;
}
.gallery-item__img {
margin: 0;
}
.gallery-item__img img {
    max-width: 100%;
    width: 100%;
}
/* gallery */




/* Contact */
  .contact {
    padding: 150px 0;
  }
  
  .contact-title-wrap {
    margin-bottom: 65px;
  }
  
  .contact-items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  
  .contact-item {
    width: 40%;
  }

  .map-item {
    width: 60%;
  }

  .map, .map-item {
  padding: 0 !important;
  margin: 0 !important;
  }

  .map-item iframe {
  height: 580px;
  }

  .contact-cnt .title-wrap {
    margin-bottom: 115px;
  }
  
  .contact-info {
    padding-top: 15px;
  }
  
  .contact-info__phone {
    margin-bottom: 80px;
  }
  
  .contact-info__phone-link {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 32px;
    line-height: 21px;
    text-align: left;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease-out;
  }
  
  .contact-info__phone-link:hover {
    color: #928ecc;
  }
  
  .contact-info__addr {
    max-width: 400px;
    width: 100%;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  .contact-info__addr-link {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease-out;
  }
  
  .contact-info__social-item img {
    width: 40px;
  }

  .contact-info__addr-link span {
    color: #928ecc;
  }
  
  .contact-info__addr-link:hover {
    color: #928ecc;
  }
  
  .contact-info__title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    max-width: 400px;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
  }
  
  .contact-info__title a {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease-out;
  }
  
  .contact-info__title a:hover {
    color: #928ecc;
  }
  
  .contact-info__item {
    margin-bottom: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .contact-info__item:last-child {
    margin-bottom: 0;
  }
  
  .contact-info__social {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 20px;
  }
  
  .contact-info__social-item {
    margin-right: 10px;
  }
  
  .contact-info__social-item:last-child {
    margin-right: 0;
  }
  
  .contact-info__social-link svg path {
    transition: all 0.3s ease-out;
  }
  
  .contact-info__social-link:hover svg path {
    fill: #928ecc;
  }
  
  .contact-form__title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 26px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 30px;
  }
  
  .contact-form__title span {
    color: #928ecc;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form .form-group:last-child {
    margin-bottom: 0;
  }
  
  .contact-form .form-group-items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -15px 30px;
  }
  
  .contact-form .form-group-items .form-group {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  
  .contact-form textarea.form-control {
    height: 100px;
  }
  
  .contact-form__btn {
    color: #fff;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: none;
    background-color: #928ecc;
    transition: background-color 0.3s ease;
    border-radius: 5px !important;
    padding: 15px 30px;
  }

  .contact-form__btn:hover {
    color: #fff;
    background-color: #000000;
  }
/* Contact */






/* Details - Planing-step */
  .details {
    padding: 150px 0 0;
  }

  .planing-step__items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 -62px;
  }

   .planing-step {
    counter-increment: step;
    position: relative;
    margin-bottom: 150px;
  }
  
  .planing-step:last-child {
    padding-bottom: 0;
  }
  
  .planing-step--mb {
    margin-bottom: 200px;
  }
  
  .planing-step__items--styled .planing-step__descr {
    margin: auto 0 !important;
  }
  
  .planing-step__item {
    width: calc(50% - 124px);
    margin: 0 62px;
  }

  .planing-items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 -61px 70px;
    counter-reset: title;
  }
  
  .planing-item {
    width: calc(30% - 122px);
    padding: 0 20px 80px;
  }

  .momenty .planing-item {
    width: 30%;
    margin: 0 20px 0;
  }

  .momenty .planing-item__descr {
    max-width: 400px;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  .planing-item__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.05px;
    text-transform: none;
    color: #000000;
    position: relative;
    counter-increment: title;
    padding-bottom: 12px;
  }
  
  .planing-item__title:after {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    margin: auto;
    background: #000000;
  }
  
  .planing-item__descr {
    max-width: 270px;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  .planing-step__descr {
    margin-bottom: 90px;
    line-height: 24px;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
  }

  .planing-step__item .title {
    display: inline-block;
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    color: #000000;
    padding-bottom: 10px;
    max-width: 400px;
}

.planing-step__item .title-wrap {
    margin-bottom: 50px;
  }
  
.planing-step__info-img {
    width: 100%;
    margin-left: 65px;
  }

  .planing-step__item-img {
    position: absolute;
    right: 0;
    bottom: 10px;
  }
/* Details - Planing-step */








/* tag */
  .blog-tag {
    margin-bottom: 0;
  }

  .blog-tag .title-wrap {
    margin-bottom: 0;
  }

  .blog-tag__item {
    color: #000000;
    margin-right: 15px;
  }

  .blog-tag .title {
    text-transform: none;
    font-size: 20px;
  }
  
  .blog-tag__link {
    font-size: 15px;
    line-height: 26px;
    color: #000000;
    transition: all 0.3s ease-out;
    text-decoration: none;
  }
  
  .blog-tag__link:hover {
    color: #928ecc;
  }
  
  .blog-tag {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
    line-height: 26px;
  }

  .blog-tag__list {
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
    margin-left: 30px;
  }
/* tag */









/* Applications-page */
  .applications {
    padding: 150px 0;
  }

  .applications-txt {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 100px;
    max-width: 820px;
  }

  .applications .grid-item {
    margin: 0 0 40px;
  }

  .applications-listing {
    margin: 0 auto;
  }

  .applications-listing__item {
    position: relative;
    width: 100%;
  }
  .applications-listing__item .applications-hover {
    max-width: 35%;
    left: inherit;
    padding: 46px 0 31px 39px;
    opacity: 1;
    visibility: visible;
  }
  
  .applications-listing__item .applications-hover__header {
    margin-bottom: 20px;
  }
  
  .applications-listing__img {
    position: relative;
    padding-top: 39%;
    width: 65%;
  }
  
  .applications-listing__img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }

  .applications-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #F9F9F9;
    border: 1px solid #000000;
    padding: 46px 39px 37px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
  }
  
  .applications-hover__info {
    width: 100%;
  }
  
  .applications-hover__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 16px;
    border-bottom: 1px solid #000000;
    margin-bottom: 57px;
  }
  
  .applications-hover__title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    letter-spacing: 0.02px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    max-width: 300px;
  }
  
  .applications-hover__tag {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.03px;
    text-transform: none;
    color: #000000;
  }

  .applications-hover__tag a {
    font-size: 14px;
  }

  .applications-hover__tag .bi-arrow-right-short {
    transition: transform 0.3s ease;
    transform: translateX(0);
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
  }

  .applications-hover__tag .download__link:hover .bi-arrow-right-short {
  transform: translateX(10px) !important;
}

  .applications-hover__descr {
    max-width: 330px;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.03px;
  }
   
  .table-item__applications .table-applications .name {
    background-color: #f8f8f8;
    font-size: 20px;
    padding: 10px;
    text-align: left;
  }

  .table-item__applications .table-applications .zero {
    background-color: transparent;
    padding: 30px;
  }

  .table-item__applications .table-applications .name-1 {
    width: 40%;
    padding: 10px;
    text-align: left;
  }

  .table-item__applications .table-applications .name-2 {
    width: 15%;
    padding: 10px;
    text-align: center;
  }

  .table-item__applications .table-applications .bi-x {
    font-size: 22px;
    font-weight: 500;
    color: #ff9393;
  }

  .table-item__applications .table-applications .bi-check2 {
    font-size: 22px;
    font-weight: 500;
    color: #32ca58;
  }

  .table-item__applications .table-applications .name-3 {
    font-size: 16px;
    font-weight: 400;
    padding: 10px;
    text-align: left;
    color: #767676;
  }

  .table-item__applications .table-applications .name-model {
    font-weight: 500;
  }
/* Applications-page */





/* Useful */
 .useful {
    padding: 50px 0 0 !important;
  }
  
  .useful .title-wrap {
    margin-bottom: 70px;
  }
  
  .useful-items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  
  .useful-item {
    width: 25%;
    position: relative;
    overflow: hidden;
  }

  .useful-item:hover .useful-item__cnt {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
  
  .useful-item__img {
    position: relative;
    padding-top: 115%;
  }
  
  .useful-item__img img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }
  
  .useful-item__cnt {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: #F9F9F9;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 52px 40px 39px;
    opacity: 0;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
    visibility: hidden;
    transition: all 0.3s ease-out;
  }

  .useful-item__title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    color: #928ecc;
    margin-bottom: 57px;
  }
  
  .useful-item__descr {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    max-width: 330px;
    width: 100%;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  .download__link {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    text-decoration: none;
    transition: color 0.3s ease-out;
  }

  .download__link:hover {
    color: #928ecc;
  }









/* support */
.support {
    padding: 150px 0;
}

.support-txt {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 100px;
    max-width: 820px;
}

.support .grid-item {
    padding: 15px 0px;
}

.support-listing {
    margin: 0 auto;
}

.support-listing__item {
    position: relative;
    width: 100%;
}

.support-listing__item .support-hover {
    max-width: 35%;
    left: inherit;
    padding: 46px 0 31px 39px;
    opacity: 1;
    visibility: visible;
}
  
.support-listing__item .support-hover__header {
    margin-bottom: 20px;
}
  
.support-listing__img {
    position: relative;
    padding-top: 39%;
    width: 65%;
}

.support-listing__img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.support-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #F9F9F9;
    border: 1px solid #000000;
    padding: 46px 39px 37px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}
  
.support-hover__info {
    width: 100%;
}
  
.support-hover__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 16px;
    border-bottom: 1px solid #000000;
    margin-bottom: 57px;
}
  
.support-hover__title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    letter-spacing: 0.02px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    max-width: 300px;
}
  
.support-hover__tag {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.03px;
    text-transform: none;
    color: #000000;
}

.support-hover__tag a {
    font-size: 14px;
}

.support-hover__tag .bi-arrow-right-short {
    transition: transform 0.3s ease;
    transform: translateX(0);
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
}

.support-hover__tag .download__link:hover .bi-arrow-right-short {
  transform: translateX(10px) !important;
}

.support-hover__descr {
    max-width: 330px;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.03px;
}

.support .table-item__descr ul {
    margin: 20px 0px;
}
/* support */








/* Single */
  .single-block {
    padding-top: 80px;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
  }
  
  .single-block:first-child {
    padding-top: 150px;
  }
  
  .single-txt {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 100px;
    text-align: justify;
  }
  
  .single-p {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 0 !important;
  }

  .single-txt p {
    margin-bottom: 23px;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    letter-spacing: 0px;
  }
  
  .single-txt ul {
    margin-left: 20px;
    margin-bottom: 26px;
  }

  .single-txt-1 {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 120px;
    text-align: left !important;
  }
  
  .single-title {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 37px;
    line-height: 48px;
    color: #000000;
    margin-bottom: 62px;
  }

  .single-img img {
    width: 100%;
  }
  
  .single-block--pt {
    padding-top: 90px;
  }
  
  .single-gallery {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
  }
  
  .single-gallery__item {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  
  .single-gallery__item img {
    max-width: 100%;
  }
  
  .single-gallery__item .single-img {
    margin-bottom: 30px;
  }
  
  .single-gallery__item .single-img:last-child {
    margin-bottom: 0;
  }

  .single-subtitle {
     font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    line-height: 35px;
    color: #000000;
    margin-bottom: 54px;
  }

  .single h5 {
     font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 20px;
  }
  
/* Single */






/* Portfolio */
   .portfolio {
    padding: 150px 0;
  }
  
  .portfolio-page .footer {
    border-top: 0;
  }
  
  .portfolio-grid {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: -30px;
  }
  
  .portfolio-grid__item {
    width: calc(33.333% - 60px);
    margin: 30px;
  }
/* Portfolio */






/* Accessories-catalog */
   .accessories-catalog {
    padding: 150px 0;
  }
  
  .accessories-catalog-page .footer {
    border-top: 0;
  }
  
  .accessories-catalog-grid {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: -30px;
  }
  
  .accessories-catalog-grid__item {
    width: calc(33.333% - 60px);
    margin: 30px;
  }
/* Accessories-catalog */





/* Pages */
  .pages {
    position: relative;
    counter-increment: section;
  }
  
  .pages:before {
    content: counters(section, ".", decimal-leading-zero);
    position: absolute;
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    font-size: 400px;
    line-height: 400px;
    right: -30px;
    top: 50px;
    color: rgba(0, 0, 0, 0.05);
  }
  
  .pages-page {
    counter-reset: section;
  }
  
  .pages-page .footer {
    display: none;
  }
  
  .pages-page .header-phone {
    display: none;
  }
  
  .pages-page .header-social {
    display: none;
  }
  
  .pages-items {
    margin: 0 -30px -80px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  
  .pages-item {
    margin: 0 30px 80px;
  }
  
  .pages-link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    transition: all 0.3s ease-out;
    margin-bottom: 44px;
  }
  
  .pages-link:last-child {
    margin-bottom: 0;
  }
  
  .pages-link:hover {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  
  .pages-link picture {
    margin-bottom: 43px;
    width: 100%;
  }
  
  .pages-link img {
    width: 100%;
  }
  
  .pages-link h3 {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.03px;
    text-transform: uppercase;
    color: #000000;
  }
  
  .pages--main {
    background: #F9F9F9;
    padding: 205px 60px;
  }
  
  .pages--main .title-wrap {
    margin-bottom: 108px;
  }
  
  .pages--main .pages-item {
    width: calc(50% - 60px);
  }
  
  .pages--inner {
    background: #928ecc;
    padding: 202px 60px 290px;
  }
  
  .pages--inner .title-wrap {
    margin-bottom: 105px;
  }
  
  .pages--inner .pages-items {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .pages--inner .pages-item {
    width: calc(25% - 60px);
  }
/* Pages */


