html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

.scroll-lock {
  overflow: hidden;
}

*:focus {
  outline: 0px auto -webkit-focus-ring-color !important;
  outline: 0 !important;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
}

button:focus {
  outline: 0px auto transparent !important;
}

.fancybox-button:focus-visible {
  outline: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  font-family: "Geologica";
  position: relative;
}

p {
  margin: 0;
  padding: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  display: none;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
width:100%;
}

.wrapper__content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #131621;
}

.main {
  flex-grow: 1;
}

.footer {
  flex-shrink: 0;
}

.btn-accent-blue {
  border-radius: 8px;
  padding: 18px 32px;
  background-color: #0894e7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 107%;
  height: 52px;
  color: #fff;
  font-family: "Geologica";
  cursor: pointer;
}

.btn-accent-blue-invers {
  background: rgba(8, 148, 231, 0.1);
  border-radius: 8px;
  padding: 18px 32px;
  height: 52px;
  display: flex;
  font-family: "Geologica";
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 107%;
  color: #0894e7;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

@media (hover: hover) {
  .btn-accent-blue:hover {
    background: rgba(8, 148, 231, 0.1);
    color: #0894e7;
  }
  .btn-accent-blue-invers:hover {
    color: #fff;
    background-color: #0894e7;
  }
}
/* footer */
.footer {
  padding: 48px 0;
  background-color: #0f111a;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__top-left {
  white-space: nowrap;
}

.footer__logo {
  display: flex;
  margin-bottom: 24px;
}

.footer__wrapper ul li a {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__wrapper ul li + li {
  margin-top: 12px;
}

.footer__wrapper ul li a:hover {
  color: #0894e7;
}

.footer__wrapper a.title {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.footer__wrapper a.title:hover {
  color: #0894e7;
}

.footer__logo img {
  display: block;
  width: 131px;
}

.footer__top-left-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__top-left-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

ul.footer__top-left-links li + li {
  margin-top: 0;
}

.footer__top-mid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__bot {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* footer */
/* benefit */
.benefit {
  background-color: #131621;
  padding: 24px 0;
}

.section__title {
  margin-bottom: 32px;
}

.section__title h2,
.section__title h1 {
  font-weight: 500;
  font-size: 27px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.29;
}

.benefit__list {
  display: grid;
  gap: 16px;
}

.benefit__item {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.benefit__item-img-decor {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.benefit__item-img-decor svg {
  display: block;
}

.benefit__item-img {
  margin-bottom: 20px;
}

.benefit__item-img img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.benefit__item-desc {
  position: relative;
  z-index: 1;
}

.benefit__item-desc .title {
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 20px;
}

.benefit__item-desc .text,
.benefit__item-desc p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  opacity: 0.7;
}

/* benefit */
/*about*/
.about {
  padding: 24px 0;
}

.about__wrapper {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.about__content {
  margin-bottom: 304px;
}

.about__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 117%;
  color: #0894e7;
  border-radius: 4px;
  padding: 4px 6px;
  background: rgba(8, 148, 231, 0.1);
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 12px;
}

.about .section__title {
  margin-bottom: 12px;
}

.about__subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 12px;
}

.about p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.8);
}

.about p + p {
  margin-top: 12px;
}

.about__link {
  margin-top: 32px;
}

.about__img {
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 13%);
}

.about__item-img-decor {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/*about*/
/*partners*/
.partners {
  padding: 24px 0;
}

.partners__title {
  text-align: center;
}

.partners__slider {
  position: relative;
}

.partners__item {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 12px 24px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 10px 30px -10px rgba(8, 148, 231, 0.02);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.partners .swiper-slide {
  height: auto;
}

.partners__item-img {
  margin-bottom: 24px;
  backdrop-filter: blur(96px);
  /*background: rgba(255, 255, 255, 0.1);*/
background: #131621;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 165px;
  height: 100%;
}

.partners__item-img img,
.partners__item-img svg {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.partners p {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
  height: 66px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

.partners__control {
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.partners .swiper-button-next:after,
.partners .swiper-button-prev:after {
  display: none;
}

.partners .swiper-button-next svg,
.partners .swiper-button-prev svg {
  flex-shrink: 0;
  opacity: 1;
  display: block;
  width: 20px;
  height: 20px;
}

@media (hover: hover) {
  .partners .swiper-button-next:hover,
  .partners .swiper-button-prev:hover {
    background-color: #0894e7;
  }
  .partners .swiper-button-next:hover svg path,
  .partners .swiper-button-prev:hover svg path {
    fill: #fff;
  }
}
.partners .swiper-button-next,
.partners .swiper-button-prev {
  opacity: 1;
  position: static;
  margin: 0;
  transform: unset;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  width: 44px;
  height: 44px;
}

#partnersPagination {
  position: static;
  margin: unset;
  padding: 0;
  transform: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 10px;
width: 100px !important;
    margin-left: auto;
    margin-right: auto;

  width: auto !important;
  max-width: none !important;
  overflow: visible !important;
  display: flex !important;
  justify-content: center !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  pointer-events: auto;
}

#partnersPagination .swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  opacity: unset;
flex-shrink:0;
}

#partnersPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0894e7;
  width: 10px;
  height: 10px;
}

/*partners*/
/* products */
.products {
  padding: 48px 0 24px;
}

.products__title {
  text-align: center;
}

.products__slider {
  position: relative;
}

.products__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 12px 24px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 10px 30px -10px rgba(8, 148, 231, 0.02);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.products__item-img {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  /*background: rgba(255, 255, 255, 0.1);*/
background: #131621;
  max-height: 165px;
  height: 100%;
  padding: 22px;
  min-height: 165px;
  position: relative;
  overflow: hidden;
}

.products__item-img .products__item-img-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0;
  height: 0;
}

.products__item-img .products__item-img-decor svg {
  display: block;
  width: 299px;
  height: 189px;
}

.products__item-img img {
  position: relative;
  z-index: 1;
}

.products__item-img img.color {
  display: none;
}

.products__item-img img.muted {
  display: block;
}

@media (hover: hover) {
  .products__item:hover .products__item-img .products__item-img-decor {
    opacity: 1;
    height: 200px;
  }
  .products__item:hover .products__item-img img.color {
    display: block;
  }
  .products__item:hover .products__item-img img.muted {
    display: none;
  }
}
.products__item .title {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.products__item .link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #0894e7;
  margin-top: 16px;
}

.products__control {
  margin: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

#productsPagination {
  position: static;
  margin: 0;
  padding: 0;
  transform: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 10px;
}

#productsPagination .swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

#productsPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #0894e7;
}

.products .swiper-button-next:after,
.products .swiper-button-prev:after {
  display: none;
}

.products .swiper-button-next,
.products .swiper-button-prev {
  position: static;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.05);
}

@media (hover: hover) {
  .products .swiper-button-next:hover,
  .products .swiper-button-prev:hover {
    background-color: #0894e7;
  }
}
/* products */
/*promo*/
/*catalog PO page*/
.catalogpo {
  padding: 32px 0;
}

.catalogpo h1 {
  text-align: left;
}

.catalogpo__wrapper {
  display: grid;
  gap: 16px;
}

/*catalog PO page*/
.promo {
  padding: 100px 0;
  overflow: hidden;
}

.promo .container {
  position: relative;
}

.promo__title-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.promo .container::before {
  content: "";
  position: absolute;
  width: 256px;
  height: 256px;
  display: block;
  left: -50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0894e7;
  border-radius: 50%;
  filter: blur(400px);
  z-index: 0;
}

.promo .container::after {
  content: "";
  position: absolute;
  width: 256px;
  height: 256px;
  display: block;
  right: -50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0894e7;
  border-radius: 50%;
  filter: blur(400px);
  z-index: 0;
}

.promo__slider {
  position: relative;
}

.promo__item-title {
  margin-bottom: 16px;
}

.promo__item-title h2 {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
  display: -webkit-box; 
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  text-overflow: ellipsis;
}

.promo__item-title h2 span {
  color: #0894e7;
}

.promo__item-text,
.promo p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  opacity: 0.8;
  color: #fff;
  display: -webkit-box; 
  -webkit-line-clamp: 5; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  text-overflow: ellipsis;
}

.promo p + p {
  margin-top: 10px;
}

.promo__item-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.promo .btn-accent-blue-invers {
  width: 100%;
}

.promo__item-img {
  display: none;
}

#promoPagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: static;
  height: 10px;
  margin-top: 16px;
}

#promoPagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0;
  padding: 0;
}

#promoPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #0894e7;
}

/*promo*/
/*header*/
.header {
  position: sticky;
  top: 0;
  background-color: #131621;
  z-index: 11;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__wrapper {
  display: flex;
  align-items: center;
  gap: 33px;
  justify-content: space-between;
}

.header .logo img {
  display: block;
}

.header__nav {
  display: none;
}

.header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav-link.active a {
  color: #0894e7;
}

.header__nav-link.active svg path {
  stroke: #0894e7;
}

.header__nav-link.active svg {
  transform: rotate(180deg);
}

.has-submenu.open-sub-menu .submenu {
  display: flex;
}

.header__nav ul li a {
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.header__nav ul.submenu li a {
  font-weight: 400;
  font-size: 16px;
color:#fff;
}

.header__nav ul.submenu {
  margin-top: 16px;
  padding-left: 12px;
  display: none;
}
.header__nav{
  display: none;


}
.header__nav.active {
  display: block;
  position: fixed;
  top: 67px;
  bottom: 0;
height: calc(100vh - 68px);
  background-color: #131620;
  left: 0;
  right: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
  overflow-y: auto;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-btns svg {
  display: block;
}

.header__search-btn {
  cursor: pointer;
}

.header__burger {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #fff;
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}

.header__burger span:nth-child(1) {
  top: 6px;
}

.header__burger span:nth-child(2) {
  top: 12px;
}

.header__burger span:nth-child(3) {
  top: 12px;
}

.header__burger span:nth-child(4) {
  bottom: 6px;
}

.header__burger.active span:nth-child(1) {
  transform: scale(0);
}

.header__burger.active span:nth-child(2) {
  transform: translateX(-50%) rotate(45deg);
}

.header__burger.active span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
}

.header__burger.active span:nth-child(4) {
  transform: scale(0);
}

/*header*/
/*header search*/
.header.search-open .header__wrapper {
  display: none;
}

.header.search-open .header__search {
  display: block;
}

.header__search {
  backdrop-filter: blur(64px);
  position: fixed;
  padding: 16px 40px;
  backdrop-filter: blur(64px);
  background: #131620;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  display: none;
}

.header__search__wrapper {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  display: flex;
}

.header__search__wrapper form {
  position: relative;
  width: 100%;
}

.header__search__wrapper form input {
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 14px 45px;
  background-color: rgba(255, 255, 255, 0.05);
  width: 100%;
  display: block;
  font-family: "Geologica";
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.header__search__wrapper form input::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  font-family: "Geologica";
  color: rgba(255, 255, 255, 0.7);
}

.header__search__wrapper form input::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  font-family: "Geologica";
  color: rgba(255, 255, 255, 0.7);
}

.header__search__wrapper form button[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  background-color: unset;
  border: unset;
  left: 15px;
  cursor: pointer;
}

.header__search__wrapper form button[type=submit] svg {
  display: block;
}

.header__search__wrapper form button[type=reset] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  margin: 0;
  padding: 0;
  background-color: unset;
  border: unset;
  right: 15px;
}

.header__search__wrapper form button[type=reset] svg {
  display: block;
}

/*header search*/
/* catalogNTD page */
.catalogNtd {
  padding: 32px 0 48px;
}

.catalogNtd__top {
  margin-bottom: 32px;
}

.catalogNtd__top-title {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.25;
}

.catalogNtd__top-input input {
  width: 100%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-family: "Geologica";
  font-weight: 300;
  color: rgb(255, 255, 255);
}

.catalogNtd__top-input input::-moz-placeholder {
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.catalogNtd__top-input input::placeholder {
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.catalogNtd__top-input + .catalogNtd__top-input {
  margin-top: 16px;
}

.catalogNtd .btn-accent-blue {
  width: 100%;
  border: unset;
  font-family: "Geologica";
  margin-top: 32px;
}

.catalogNtd__top-img {
  display: none;
}

.catalogNtd__bot .title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 32px;
  color: #fff;
}

.catalogNtd__bot-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalogNtd__bot-links a svg {
  display: none;
  flex-shrink: 0;
  opacity: 0.7;
}

.catalogNtd__bot-links a {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
}

@media (hover: hover) {
  .catalogNtd__bot-links a:hover {
    background: #0894e7;
  }
  .catalogNtd__bot-links a:hover svg {
    opacity: 1;
  }
}
/* catalogNTD page */
/* catalogPO */
.catalogpo-detail {
  padding: 32px 0 48px;
}

.catalogpo-detail__desc {
  margin-bottom: 32px;
}

.catalogpo-detail__desc .title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.catalogpo-detail__desc .text,
.catalogpo-detail__desc p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  opacity: 0.7;
}

.catalogpo-detail__list {
  display: grid;
  gap: 16px;
}

.catalogpo-detail__list-item {
  overflow: hidden;
}

.catalogpo-detail__list-item a {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  position: relative;
}

.catalogpo-detail__list-item a .img {
  position: relative;
  z-index: 1;
}

.catalogpo-detail__list-item a .img img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.catalogpo-detail__list-item a .title {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.catalogpo-detail__list-item-decor {
  display: block;
  opacity: 0;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(45px);
}

@media (hover: hover) {
  .catalogpo-detail__list-item a:hover .catalogpo-detail__list-item-decor {
    opacity: 1;
  }
}
/* catalogPO */
/* catalog page */
.catalog {
  padding: 32px 0 32px;
}

.catalog__controls {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.catalog__controls-sort {
  width: 100%;
  position: relative;
}

.catalog__controls-sort-btn {
  display: flex;
  width: 100%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
}

.catalog__controls-sort-btn svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.catalog__controls-sort-btn.active svg {
  transform: translateY(-50%) rotate(180deg);
}

.catalog__controls-sort-input-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.catalog__controls-sort-btn span {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
}

.catalog__controls-sort-list {
  display: none;
  position: absolute;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  margin: 0;
  background: rgba(255, 255, 255, 0.01);
  z-index: 10;
  backdrop-filter: blur(48px);
  top: 60px;
  width: 100%;
}

.catalog__controls-sort-list.active {
  display: flex;
}

.catalog__controls-sort-item {
  font-weight: 300;
  font-size: 14px;
  padding: 8px;
  display: flex;
  border-radius: 8px;
  width: 100%;
  color: #fff;
  cursor: pointer;
}

.catalog__controls-sort-item.active {
  background: rgba(8, 148, 231, 0.1);
  color: #0894e7;
}

@media (hover: hover) {
  .catalog__controls-sort-item:hover {
    background: rgba(8, 148, 231, 0.1);
    color: #0894e7;
  }
}
.catalog__controls-view {
  display: none;
  align-items: center;
  gap: 12px;
}

.catalog__controls-view .list {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
  width: 52px;
  height: 52px;
  border-radius: 8px;
  padding: 14px;
}

.catalog__controls-view .tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
  width: 52px;
  height: 52px;
  border-radius: 8px;
  padding: 14px;
}

.catalog__controls-view div {
  cursor: pointer;
}

.catalog__controls-view div.active {
  background-color: #0894e7;
}

.catalog__controls-view div.active svg {
  opacity: 1;
}

@media (hover: hover) {
  .catalog__controls-view div:hover {
    background-color: #0894e7;
  }
  .catalog__controls-view div:hover svg {
    opacity: 1;
  }
}
.catalog__controls-view .list svg {
  display: block;
  opacity: 0.3;
}

.catalog__controls-view .tile svg {
  display: block;
  opacity: 0.3;
}

.info-mess {
  padding-bottom: 48px;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
  opacity: 0.7;
}

.info-mess .container {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
}

.catalog__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.catalog__pagination .pagination-item.current {
  background-color: #0894e7;
}

.catalog__list {
  display: grid;
  gap: 12px;
}

.catalog__item {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  position: relative;
}

.catalog__item-img-decor {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.catalog__item-img-decor svg {
  filter: blur(128px);
  width: 253px;
  height: 119px;
}

.catalog__list.list .catalog__item-img-decor {
  left: unset;
  right: -60px;
  top: 50%;
  bottom: unset;
  transform: translateY(-50%);
}

.catalog__list.list .catalog__item-img-decor svg {
  filter: blur(33px);
  width: 153px;
  height: 220px;
}

@media (hover: hover) {
  .catalog__item:hover .catalog__item-img-decor {
    opacity: 1;
  }
}
.catalog__item-img {
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-top: -16px;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.catalog__item-img img {
  display: block;
  width: 190px;
  height: 190px;
object-fit:contain;
}

.catalog__item-img::before {
  content: "";
  width: 46px;
  height: 46px;
  background-image: url(./../img/icon/daf-img.svg);
  display: none;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.catalog__item-img:has(img:not([src]))::after,
.catalog__item-img:has(img[src=""])::after,
.catalog__item-img:has(img[src=null])::after,
.catalog__item-img:has(img.error)::after {
  display: block;
}

.catalog__item-img:has(img:not([src]))::before,
.catalog__item-img:has(img[src=""])::before,
.catalog__item-img:has(img[src=null])::before,
.catalog__item-img:has(img.error)::before,
.catalog__item-img:has(img[src^=http]:not([src*=".jpg"]):not([src*=".png"]))::before {
  display: block;
}

img:not([src]),
img[src=""],
img[src=null],
img[src^=http]:not([src*=".jpg"]):not([src*=".png"]):not([src*=".gif"]):not([src*=".webp"]) {
  opacity: 0;
}

.catalog__item-desc,
.catalog__item-desc .link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog__item-desc .label {
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
display: block;
padding:unset;
text-align:left;
border-radius:0;
}

.catalog__item-desc .name {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.price-wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.price-wrap .piece {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.price-wrap .price {
  font-weight: 600;
  font-size: 24px;
  color: #56ba00;
  line-height: 42px;
}

.catalog__item .catalog__item-addCard {
  margin-top: auto;
}

/* catalog page */
/* catalogDetail page */
.card__detail {
  padding: 32px 0;
}

.card__detail-top {
  margin-bottom: 32px;
}

.card__detail-bot {
  position: relative;
}

.card__detail-tabs-btn {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  height: 52px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  cursor: pointer;
}

.card__detail-tabs-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 20px;
  height: 20px;
  background-image: url("./../img/icon/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card__detail-tabs-btn.active:after {
  transform: translateY(-50%) rotate(180deg);
}

.card__detail__tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: absolute;
  flex-direction: column;
  z-index: 10;
  backdrop-filter: blur(48px);
  top: 55px;
  gap: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  -o-border-image: initial;
     border-image: initial;
  border-radius: 12px;
  padding: 8px;
  margin: 0px;
  background: rgba(255, 255, 255, 0.01);
  transform: scaleY(0);
  transform-origin: left top;
}

.card__detail__tabs.active {
  transform: scaleY(1);
}

.card__detail-tab {
  font-weight: 300;
  font-size: 14px;
  padding: 8px;
  display: flex;
  border-radius: 8px;
  width: 100%;
  color: #fff;
  cursor: pointer;
}

.card__detail-tab.active {
  background: rgba(8, 148, 231, 0.1);
  color: #0894e7;
}

@media (hover: hover) {
  .card__detail-tab:hover {
    background: rgba(8, 148, 231, 0.1);
    color: #0894e7;
  }
}
.card__detail-content-item.active {
  display: block;
}

.card__detail-content-item {
  display: none;
}

.card__detail-content-item h2 {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.card__detail-content-item p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

.card__detail-content-item p a {
  color: #0894e7;
  text-decoration: underline;
}

.card__detail-content-item a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  padding: 10px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
}

@media (hover: hover) {
  .card__detail-content-item a:hover {
    background: rgba(8, 148, 231, 0.1);
    color: #0894e7;
  }
}
.card__detail-content-item a + a {
  margin-top: 10px;
}

.card__detail-content-item a img {
  display: block;
  width: 40px;
  height: 40px;
}

.card__detail-content-item .line + .line {
  margin-top: 32px;
}

.card__detail-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card__detail-slider {
  order: 0;
}

.card__detail-info {
  order: 2;
}

.card__detail-info .label {
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
    display: block;
    padding: unset;
    text-align: left;
    border-radius: 0;
}

.card__detail-info .name {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.card__detail-info .subtitle {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}

.card__detail-info .text,
.card__detail-info p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
}

.price-block {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.05);
}
.catalog__item .btn-accent-blue.in-cart{
background: rgba(8, 148, 231, 0.1);
color: #0894E7;
}
.price-block-price {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.price-block-price .piece {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.price-block-price .price {
  font-weight: 600;
  font-size: 24px;
  color: #56ba00;
  line-height: 42px;
}

.price-block .input-group {
  border-radius: 8px;
  padding: 0px 12px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-block .input-group .btn {
  border: unset;
  border-radius: 8px;
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.price-block .input-group input {
  font-family: "Geologica";
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 107%;
  color: #fff;
  background-color: transparent;
  border: unset;
  width: 100%;
}

.inBascket {
  margin-top: 20px;
  width: 100%;
}

.fast-buy {
  margin-top: 20px;
}

.price-block-info {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  padding: 14px 16px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.price-block__decor-line {
  margin: 20px 0;
  display: block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
}

.card__detail-slider {
  position: relative;
}

#cardDetailSlider2 {
  position: relative;
  margin-bottom: 12px;
}

#cardDetailSlider .swiper-slide.swiper-slide-thumb-active .cardDetailSlider__item {
  background: rgba(8, 148, 231, 0.1);
}

.cardDetailSlider__item {
  border-radius: 8px;
  width: 71px;
  height: 71px;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.cardDetailSlider__item img {
  display: block;
  width: 100%;
}

.cardDetailSlider2__item {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cardDetailSlider2__item img {
  display: block;
  width: 100%;
}

/* catalogDetail page */
/*media*/
@media (min-width: 640px) {
  .benefit {
    padding: 48px 0;
  }
  .benefit__item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .benefit__item-img img {
    width: 120px;
    height: 120px;
  }
  .benefit__item-img-decor {
    left: 0;
    top: 50%;
  }
  .section__title h2,
  .section__title h1 {
    font-size: 32px;
  }
  .catalogpo__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .catalogpo-detail__desc {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
  }
  .catalogpo-detail__list {
    grid-template-columns: 1fr 1fr;
  }
  .catalogpo-detail__list a {
    height: 100%;
  }
  .card__detail-top {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card__detail-slider {
    min-width: 1px;
    max-width: 304px;
  }
  .price-block {
    flex-shrink: 0;
    flex-grow: 1;
  }
  .cardDetailSlider2__item img {
    max-width: 304px;
  }
}
@media (min-width: 700px) {
  .footer__top {
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
  }
  .footer__bot {
    flex-direction: row;
    justify-content: space-between;
  }
  .about {
    padding: 48px 0;
  }
  .about__wrapper {
    padding: 32px;
  }
  .about__link {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__content {
    margin-bottom: 27px;
  }
  .about__img {
    display: none;
  }
  .about__item-img-decor {
    bottom: -112px;
  }
  .about__item-img-decor svg {
    width: 500px;
    height: 120px;
  }
  .partners__title {
    text-align: left;
  }
  .partners__control {
    position: absolute;
    right: 0;
    top: -32px;
    margin: 0;
    transform: translateY(-44px);
  }
  #partnersPagination {
    margin-top: 32px;
  }
  .products__control,
  #productsPagination {
    display: none;
  }
  .products {
    padding: 48px 0px;
  }
  .products__title {
    text-align: left;
  }
  .products .swiper-wrapper {
    box-sizing: border-box;
    transform: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .promo__item-content {
    max-width: 452px;
  }
  .promo__item-btns {
    flex-direction: row;
  }
  .promo__item-btns .btn-accent-blue,
  .promo__item-btns .btn-accent-blue-invers {
    width: -moz-fit-content;
    width: fit-content;
  }
  .promo__item-title h2 {
    font-size: 32px;
  }
  .promo__item-img {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -60px;
  }
  .promo__item-img img {
    display: block;
    width: 427px;
    height: 378px;
  }
  .promo__item {
    /*padding: 70px 0 90px;*/
  }
  .promo {
    padding-top: 50px;
    padding-bottom: 24px;
  }
  .catalogpo {
    padding: 32px 0 48px;
  }
  .catalogNtd__top form {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
  }
  .catalogNtd__top-title {
    font-size: 20px;
  }
  .catalogNtd__bot {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
  }
  .catalogNtd__bot .title {
    font-size: 20px;
  }
  .catalogNtd__bot-links a {
    font-size: 14px;
  }
  .catalogNtd__bot-links a svg {
    display: block;
  }
  .catalog__controls-view {
    display: flex;
  }
  .catalog__controls-sort {
    max-width: 600px;
  }
  .catalog__controls {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.05);
  }
  .catalog__list {
    grid-template-columns: 1fr 1fr;
  }
  .catalog__list.list {
    grid-template-columns: 1fr;
  }
  .catalog__list.list .catalog__item {
    flex-direction: row;
    padding: 24px;
  }
  .catalog__list.list .catalog__item-img {
    margin-bottom: -24px;
    margin-left: -24px;
    margin-top: -24px;
    margin-right: 24px;
  }
  .catalog__list.list .catalog__item-desc .name {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .catalog__list.list .price-wrap {
    flex-direction: row-reverse;
    justify-content: start;
    margin-bottom: 4px;
  }
  .catalog__list.list .catalog__item .catalog__item-addCard {
    width: -moz-fit-content;
    width: fit-content;
  }
  .catalog__list.list .catalog__item-img img {
    display: block;
    width: 90px;
    height: 90px;
  }
  .card__detail-tabs-btn {
    display: none;
  }
  .card__detail__tabs {
    display: flex;
    transform: unset;
    position: static;
    flex-direction: row;
    width: 100%;
    backdrop-filter: unset;
    border: unset;
    gap: unset;
    border-radius: unset;
    padding: 0;
    background: unset;
    transform-origin: unset;
    margin-bottom: 32px;
  }
  .card__detail-bot {
    max-width: 845px;
  }
  .card__detail-tab {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: unset;
    padding: 0;
    width: unset;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
  }
  .card__detail-tab.active {
    background: unset;
    color: #0894e7;
    border-bottom: 2px solid #0894e7;
  }
  @keyframes showContent {
    0% {
      margin-left: 0;
      opacity: 0;
    }
    50% {
      margin-left: 5px;
      opacity: 0.5;
    }
    100% {
      margin-left: 0;
      opacity: 1;
    }
  }
  .card__detail-content-item.active {
    animation: showContent 0.5s ease;
  }
}
@media (min-width: 1020px) {
  .footer__top-mid {
    flex-direction: row;
    gap: 82px;
  }
  .footer__item ul {
    -moz-column-count: 2;
         column-count: 2;
    gap: 32px;
  }
  .benefit__list {
    grid-template-columns: 1fr 1fr;
  }
  .section__title h2,
  .section__title h1 {
    font-size: 36px;
  }
  .about__wrapper {
    padding: 48px;
  }
  .about__content {
    margin: 0;
    max-width: 555px;
  }
  .about__img {
    display: block;
    right: 0;
    top: 50%;
    left: unset;
    bottom: unset;
    transform: translateY(-50%);
  }
  .about__img img {
    width: 508px;
    height: 508px;
  }
  .about__item-img-decor {
    bottom: -380px;
  }
  .about__item-img-decor svg {
    width: 300px;
    height: 300px;
  }
  .products .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .products__item-img img {
    width: 100%;
  }
  .products__item .title {
    margin-top: auto;
  }
  .products__item {
    height: 100%;
  }
  .promo__item-title h2 {
    font-size: 36px;
  }
  .promo__item-img {
    right: 0;
  }
  .promo__item-img img {
    width: 617px;
    height: 570px;
  }
  .promo .swiper {
    overflow: visible;
  }
  .promo .swiper-slide {
    opacity: 0;
  }
  .promo .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
  .header__burger {
    display: none;
  }
  .header__nav {
    display: block;
  }
  .header__nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .header__nav ul li a {
    font-size: 16px;
    font-weight: 400;
  }
  .header__nav-link {
    gap: 4px;
  }
  .header__nav-link svg {
    width: 12px;
    height: 12px;
  }
  .has-submenu:hover .submenu {
    display: flex;
    position: absolute;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    background: rgba(255, 255, 255, 0.01);
    z-index: 10;
    backdrop-filter: blur(48px);
    top: 75px;
  }
  .has-submenu:hover .header__nav-link a {
    color: #0894e7;
  }
  .has-submenu:hover .header__nav-link svg path {
    stroke: #0894e7;
  }
  .submenu::before {
    content: "";
    position: absolute;
    top: -36px;
    left: 0;
    width: 100%;
    height: 36px;
    background: transparent;
  }
  .has-submenu:hover .submenu a {
    font-weight: 300;
    font-size: 14px;
    padding: 8px;
    display: flex;
    border-radius: 8px;
    width: 100%;
  }
  .has-submenu:hover .submenu a:hover {
    background: rgba(8, 148, 231, 0.1);
    color: #0894e7;
  }
  .catalogpo__wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .catalogNtd__top {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .catalogNtd__top-img {
    display: block;
  }
  .catalogNtd__top-img img {
    display: block;
  }
  .catalogNtd__top form {
    padding: unset;
    border: unset;
    border-radius: 0;
    background-color: unset;
    max-width: 568px;
    width: 100%;
    flex-shrink: 0;
  }
  .catalogpo-detail__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .catalog__list.list .catalog__item-img {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
padding:10px;
  }
  .catalog__list.list .catalog__item-img img {
    width: 90px;
    height: 90px;
  }
  .catalog__list.list .catalog__item {
    padding: 0;
  }
  .catalog__list.list .catalog__item-desc {
    padding: 4px 24px 0px 0;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .catalog__list.list .catalog__item .catalog__item-addCard {
    margin: 0;
    flex-shrink: 0;
  }
  .card__detail-top {
    flex-wrap: nowrap;
    gap: 32px;
  }
  .card__detail-slider {
    width: 280px;
    flex-shrink: 0;
    order: 0;
  }
  .card__detail-info {
    width: 100%;
    order: 1;
  }
  .price-block {
    order: 2;
    height: 100%;
  }
  .cardDetailSlider__item {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1200px) {
  .catalog__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1260px) {
  .catalogNtd__top-img {
    padding-right: 100px;
  }
}
/*white theme*/
.wrapper__content.wrapper__content--wh {
  background: #f5f5f5;
}

.wrapper__content.wrapper__content--wh .header {
  border-bottom: 1px solid rgba(19, 22, 32, 0.05);
  backdrop-filter: blur(64px);
  background: #fff;
}

.wrapper__content.wrapper__content--wh .header__burger span {
  background-color: #131620;
}

.wrapper__content.wrapper__content--wh .header__nav ul li a {
  color: #131620;
}

.wrapper__content.wrapper__content--wh .header__nav .header__nav-link svg path {
  fill: #131620;
}

.wrapper__content.wrapper__content--wh .header-btns svg path {
  stroke: #131620;
}

.wrapper__content.wrapper__content--wh .has-submenu:hover .header__nav-link svg path {
  stroke: #131620;
}

.wrapper__content.wrapper__content--wh .has-submenu:hover .submenu {
  backdrop-filter: blur(48px);
  background: #fff;
  /*border: 1px solid rgba(255, 255, 255, 0.05);*/
}

.wrapper__content.wrapper__content--wh .section__title h2,
.wrapper__content.wrapper__content--wh .section__title h1 {
  color: #131620;
}
.wrapper__content.wrapper__content--wh .header__nav{
background-color: #fff;
}
.wrapper__content.wrapper__content--wh .header__nav-link.active a{
color:#0894e7;
}
/*white theme*/
/*page ntd detail*/
.ntd-doc {
  padding-top: 48px;
  padding-bottom: 48px;
}

.ntd-doc__top {
  margin-bottom: 32px;
}

.ntd-doc__top .img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.ntd-doc__top .img img {
  border-radius: 16px;
  display: block;
  width: 100%;
}

.ntd-doc__title {
  margin-bottom: 16px;
}

.ntd-doc__title h1 {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #131620;
  line-height: 1.25;
}

.ntd-doc__top .content .desc__list li + li {
  margin-top: 16px;
}

.ntd-doc__top .content .desc__list .title,
.ntd-doc__top .content .desc__list .span {
  font-weight: 600;
  font-size: 16px;
  color: #131620;
  margin-bottom: 4px;
}

.ntd-doc__top .content .desc__list .title .text,
.ntd-doc__top .content .desc__list p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
}

.ntd-doc__sticky-block {
  display: none;
}

@media (min-width: 640px) {
  .ntd-doc__top {
    display: flex;
    align-items: start;
    gap: 32px;
  }
  .ntd-doc__top .img {
    flex-shrink: 0;
    max-width: 280px;
  }
  .ntd-doc__title h1 {
    font-size: 32px;
  }
  .ntd-doc__top .content .desc__list li {
    display: flex;
    align-items: start;
    gap: 8px;
  }
  .ntd-doc__top .content .desc__list li:last-child {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .ntd-doc__sticky-block {
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 12px;
    flex-direction: column;
    flex-shrink: 0;
    width: 300px;
    background: #fff;
    position: sticky;
    top: 72px;
    right: 0;
  }
  .ntd-doc__wrapper {
    display: flex;
    gap: 32px;
    align-items: start;
  }
  .ntd-doc__sticky-block .get-doc {
    background: #0894e7;
    border-radius: 8px;
    padding: 18px 32px;
    height: 52px;
    font-weight: 600;
    font-size: 15px;
    line-height: 107%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .ntd-doc__sticky-block .buy-doc {
    background: #56ba00;
    border-radius: 8px;
    padding: 18px 32px;
    height: 52px;
    font-weight: 600;
    font-size: 15px;
    line-height: 107%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.ntd-doc__class {
  margin-bottom: 32px;
}

.ntd-doc__class .subtitle,
.ntd-doc__refers .subtitle,
.ntd-doc__referensedby .subtitle,
.ntd-doc__atention .subtitle {
  margin-bottom: 16px;
}

.ntd-doc__class .subtitle h2,
.ntd-doc__refers .subtitle h2,
.ntd-doc__referensedby .subtitle h2,
.ntd-doc__atention .subtitle h2 {
  font-weight: 600;
  font-size: 20px;
  color: #131620;
}

.ntd-doc__class ul li {
  border-radius: 12px;
  padding: 16px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ntd-doc__class ul li + li {
  margin-top: 8px;
}

.ntd-doc__class ul li .label {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #0894e7;
  max-width: 80%;
}

.ntd-doc__class ul li .name {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #131620;
  max-width: 80%;
}

.ntd-doc__refers {
  margin-bottom: 32px;
}

.ntd-doc__refers ul li,
.ntd-doc__referensedby ul li,
.ntd-doc__atention ul li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  padding: 16px;
  background-color: #fff;
}

.ntd-doc__refers ul li + li {
  margin-top: 16px;
}

.ntd-doc__refers ul li a,
.ntd-doc__referensedby ul li a,
.ntd-doc__atention ul li a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #0894e7;
}

.ntd-doc__refers ul li .text,
.ntd-doc__referensedby ul li .text,
.ntd-doc__atention ul li p {
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #131620;
  opacity: 0.7;
}

.ntd-doc__referensedby {
  margin-bottom: 32px;
}

.ntd-doc__referensedby ul li + li {
  margin-top: 16px;
}

.ntd-doc__atention {
  margin-bottom: 32px;
}

.ntd-doc__atention ul {
  margin-bottom: 32px;
}

.ntd-doc__atention ul li + li {
  margin-top: 16px;
}

.ntd-doc__atention ul li p.error {
  color: #df3a44;
}

.ntd-doc__atention ul li p.green {
  color: #56ba00;
}

.ntd-doc__atention p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #131620;
}

.ntd-doc__atention p + p {
  margin-top: 10px;
}

@media (min-width: 640px) {
  .ntd-doc__class ul li {
    flex-wrap: nowrap;
  }
  .ntd-doc__class ul li .name {
    max-width: 315px;
    margin-left: auto;
  }
  .ntd-doc__class ul li .label {
    max-width: 100%;
  }
  .ntd-doc__refers ul li,
  .ntd-doc__referensedby ul li,
  .ntd-doc__atention ul li {
    flex-direction: row;
    align-items: start;
  }
  .ntd-doc__refers ul li a,
  .ntd-doc__referensedby ul li a,
  .ntd-doc__atention ul li a {
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
  }
}
@media (min-width: 1200px) {
  .ntd-doc__class ul li .name {
    max-width: 375px;
  }
}
.ntd-doc__search-doc {
  margin-bottom: 32px;
  background-color: #fff;
  margin-left: -20px;
  margin-right: -20px;
}

.ntd-doc__search-doc .catalogNtd__top {
  padding: 32px 20px;
}

.ntd-doc__search-doc .catalogNtd__top-title {
  color: #131620;
  font-size: 20px;
}

.ntd-doc__search-doc .btn-accent-blue {
  width: 100%;
  margin-top: 32px;
  border: unset;
}

.ntd-doc__search-doc .catalogNtd__top-input input::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
}

.ntd-doc__search-doc .catalogNtd__top-input input::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
}

.ntd-doc__search-doc .catalogNtd__top-input input {
  border: 1px solid rgba(19, 22, 32, 0.05);
  border-radius: 8px;
  padding: 15px;
  background: rgba(19, 22, 32, 0.05);
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
}

.ntd-doc__search-doc .catalogNtd__top-img {
  display: none;
}

.timetoswith {
  border: 1px solid rgba(19, 22, 32, 0.05);
  border-radius: 20px;
  padding: 24px;
  background: #131620;
  margin-bottom: 32px;
  overflow: hidden;
}

.timetoswith__title {
  margin-bottom: 16px;
}

.timetoswith__title h2 {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
}

.timetoswith__title h2 span {
  color: #0894e7;
}

.timetoswith .text,
.timetoswith p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  opacity: 0.8;
  color: #fff;
}

.timetoswith .btn-accent-blue {
  margin-top: 24px;
}

.timetoswith__img {
  display: none;
}

@media (min-width: 640px) {
  .ntd-doc__search-doc {
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
  }
  .ntd-doc__search-doc .catalogNtd__top {
    overflow: hidden;
    border: 1px solid rgba(19, 22, 32, 0.05);
    border-radius: 20px;
    padding: 32px;
  }
  .timetoswith {
    border: 1px solid rgba(19, 22, 32, 0.05);
    border-radius: 20px;
    padding: 32px;
    position: relative;
  }
  .timetoswitch__content {
    max-width: 452px;
  }
  .timetoswith .btn-accent-blue {
    width: -moz-fit-content;
    width: fit-content;
  }
  .timetoswith__img {
    display: block;
    position: absolute;
    right: -27px;
    bottom: 0;
  }
  .timetoswith__img img {
    display: block;
    width: 300px;
  }
}
@media (min-width: 1024px) {
  .ntd-doc__search-doc .catalogNtd__top form {
    max-width: 100%;
  }
  .timetoswith__title h2 {
    font-size: 36px;
  }
  .timetoswith__img img {
    width: 422px;
  }
  .timetoswith__img {
    display: block;
    position: absolute;
    right: -33px;
    bottom: -23px;
  }
}
.ntd-doc__form {
  background-color: #fff;
  margin-left: -20px;
  margin-right: -20px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.ntd-doc__form form {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 32px;
}

.ntd-doc__form p {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #131620;
  opacity: 0.7;
}

.ntd-doc__form-title {
  margin-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;
}

.ntd-doc__form-title h2 {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #131620;
  line-height: 1.25;
}

.ntd-doc__form .call__line {
  width: 100%;
  margin-bottom: 16px;
}

.ntd-doc__form .call__input {
  margin-bottom: 16px;
  width: 100%;
  position: relative;
}

.ntd-doc__form .call__input label.error,
.call__popup .call__input label.error {
  color: red;
  font-size: 12px;
  bottom: -18px;
  left: 0;
  position: absolute;
}

.ntd-doc__form .call__input textarea {
  font-family: "Geologica";
  width: 100%;
  border: 1px solid rgba(19, 22, 33, 0.05);
  border-radius: 8px;
  padding: 16px;
  background: rgba(19, 22, 33, 0.05);
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
  width: 100%;
  height: 150px;
  resize: none;
}

.ntd-doc__form .call__input input {
  font-family: "Geologica";
  width: 100%;
  border: 1px solid rgba(19, 22, 33, 0.05);
  border-radius: 8px;
  padding: 16px;
  height: 52px;
  background: rgba(19, 22, 33, 0.05);
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
}

.ntd-doc__form .call__input input::-moz-placeholder, .ntd-doc__form .call__input textarea::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
  font-family: "Geologica";
}

.ntd-doc__form .call__input input::placeholder,
.ntd-doc__form .call__input textarea::placeholder {
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
  font-family: "Geologica";
}

/*form check*/
.ntd-doc__form .form-check {
  margin-top: 32px;
  position: relative;
}

.ntd-doc__form .form-check label.error,
.call__popup .form-check label.error {
  position: absolute;
  color: red;
  left: 0;
  bottom: -18px;
  font-size: 12px;
}

.ntd-doc__form .form-check input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.ntd-doc__form .form-check .checkmark {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(19, 22, 32, 0.7);
  flex-shrink: 0;
}

.ntd-doc__form .form-check input:checked ~ label .checkmark {
  background-color: #0894e7;
  border: 1px solid #0894e7;
}

.label-approve {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/*form check*/
.ntd-doc__form .btn-accent-blue {
  width: 100%;
  border: unset;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .ntd-doc__form .call__line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ntd-doc__form .call__input {
    margin: 0;
  }
  .ntd-doc__form {
    margin: 0;
    border: 1px solid rgba(19, 22, 32, 0.05);
    border-radius: 20px;
    padding: 32px;
  }
  .ntd-doc__form form {
    padding: 0;
  }
  .ntd-doc__form-title {
    padding: 0;
  }
  .ntd-doc__form p {
    padding: 0;
  }
  .ntd-doc__form-title h2 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .ntd-doc__form-title h2 {
    font-size: 36px;
  }
  .ntd-doc__form .call__input textarea {
    margin-top: 8px;
  }
}
.call__popup {
  display: none;
}

.call__popup p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #131620;
  opacity: 0.7;
}

.call__popup-title {
  margin-bottom: 8px;
}

.call__popup-title h2 {
  font-weight: 600;
  font-size: 20px;
  color: #131620;
  line-height: 1.25;
}

.call__popup form {
  margin: 24px 0;
}

.call__popup .call__line {
  margin-bottom: 16px;
}

.call__popup form .call__input {
  margin-bottom: 16px;
  position: relative;
}

.call__popup form .call__input input {
  border: 1px solid rgba(19, 22, 33, 0.05);
  border-radius: 8px;
  padding: 16px;
  height: 52px;
  background: rgba(19, 22, 33, 0.05);
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
  width: 100%;
  font-family: "Geologica";
}

.call__popup form .call__input input::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
  font-family: "Geologica";
}

.call__popup form .call__input input::placeholder {
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
  font-family: "Geologica";
}

.call__popup form .call__input textarea {
  border: 1px solid rgba(19, 22, 33, 0.05);
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  height: 150px;
  background: rgba(19, 22, 33, 0.05);
  font-family: "Geologica";
  resize: none;
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
}

.call__popup form .call__input textarea::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
  font-family: "Geologica";
}

.call__popup form .call__input textarea::placeholder {
  font-weight: 300;
  font-size: 16px;
  color: rgba(19, 22, 33, 0.7);
  font-family: "Geologica";
}

.call__popup.fancybox__content {
  padding: 32px 20px;
}

.call__popup.fancybox__content .f-button.is-close-btn {
  top: 32px;
  right: 20px;
  background: rgba(19, 22, 32, 0.05);
  border-radius: 8px;
  padding: 4px;
  width: 28px;
  height: 28px;
}

.call__popup.fancybox__content .f-button.is-close-btn svg {
  stroke: #000;
}

/*form check*/
.call__popup .form-check {
  margin-top: 32px;
  position: relative;
}

.call__popup .form-check input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.call__popup .form-check .checkmark {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(19, 22, 32, 0.7);
  flex-shrink: 0;
}

.call__popup .form-check input:checked ~ label .checkmark {
  background-color: #0894e7;
  border: 1px solid #0894e7;
}

.label-approve {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/*form check*/
.call__popup .btn-accent-blue {
  font-family: "Geologica";
  border: unset;
  width: 100%;
  margin: 24px 0;
}

.call__popup form .subtext {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
  opacity: 1;
}

.call__popup-bot {
  padding-top: 24px;
  border-top: 1px solid rgba(19, 22, 32, 0.05);
}

.call__popup-bot p {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: #131620;
}

.call__popup-bot .buy-doc {
  font-weight: 600;
  font-size: 15px;
  line-height: 107%;
  color: #fff;
  background: #56ba00;
  border-radius: 8px;
  padding: 18px 32px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

@media (min-width: 700px) {
  .call__popup .call__line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .call__popup form .call__input {
    margin-bottom: 0;
  }
  .call__popup.fancybox__content {
    max-width: 720px;
    border-radius: 20px;
    padding: 32px;
  }
}
/*page ntd detail*/
/*page faq*/
.faq {
  padding: 32px 0;
}

.faq .container {
  overflow: hidden;
}

.faq__title {
  text-align: center;
}

.faq__tabs-wrapper {
  position: relative;
}

.faqDropdown__btn {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.faqDropdown__btn::after {
  position: absolute;
  content: "";
  background-image: url("./../img/icon/arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 20px;
  height: 20px;
}

.faqDropdown__btn.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq__tabs {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  margin: 0;
  background: rgba(255, 255, 255, 0.01);
  z-index: 10;
  backdrop-filter: blur(48px);
  top: 75px;
}

.faq__tabs.active {
  display: flex;
}

.faq__tabs-item {
  cursor: pointer;
  font-weight: 300;
  font-size: 16px;
  padding: 8px;
  display: flex;
  border-radius: 8px;
  width: 100%;
  color: #fff;
}

.faq__tabs-item:hover {
  background: rgba(8, 148, 231, 0.1);
  color: #0894e7;
}

.faq__tabs-item.active {
  background: rgba(8, 148, 231, 0.1);
  color: #0894e7;
}

.faq__content-item {
  display: none;
}

.faq__content-item.active {
  display: block;
  animation: rightToLeft 0.5s ease;
}

@keyframes rightToLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.faq__content-box {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq__content-box + .faq__content-box {
  margin-top: 32px;
}

.faq__content-title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  line-height: 1.25;
}

.faq__content-title svg {
  flex-shrink: 0;
  transform: rotate(180deg);
}

.faq__content-box.active .faq__content-title {
  margin-bottom: 24px;
}

.faq__content-box.active .faq__content-title svg {
  transform: rotate(0deg);
}

.faq__content-desc {
  display: none;
}

.faq__content-box.active .faq__content-desc {
  display: block;
}

.faq__content-desc p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
}

.faq__content-desc p + p {
  margin-top: 10px;
}

.faq__content-desc a {
  color: #0894e7;
}

@media (min-width: 700px) {
  .faq {
    padding: 48px 0;
  }
  .faqDropdown__btn {
    display: none;
  }
  .faq__tabs {
    display: flex;
    position: static;
    margin-bottom: 32px;
    flex-direction: row;
    justify-content: center;
    border: unset;
    padding: 0;
    background-color: unset;
    gap: 0;
  }
  .faq__tabs-item {
    color: #fff;
    text-align: center;
    justify-content: center;
    padding: 20px 24px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: unset;
    font-weight: 600;
    font-size: 14px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .faq__tabs-item:hover {
    background: unset;
    border-bottom: 2px solid #0894e7;
  }
  .faq__tabs-item.active {
    background: unset;
    border-bottom: 2px solid #0894e7;
  }
  .faq__content-title {
    cursor: pointer;
  }
}
/*page faq*/
/*page reviews*/
.reviews {
  padding: 32px 0;
}

.reviews__title {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__title h1 {
  line-height: 1.25;
}

.reviews__title span {
  display: inline-block;
  line-height: 1.25;
  font-size: 20px;
  color: rgba(19, 22, 32, 0.7);
  margin-top: 4px;
}

.reviews__counter {
  display: inline;
  line-height: 1.25;
  font-weight: 600;
}

.reviews__slider {
  position: relative;
}

.reviews__item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 10px 30px -10px rgba(8, 148, 231, 0.02);
  background: #fff;
}

.reviews__item-top {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 16px;
}

.reviews__person-img {
  border-radius: 16px;
}

.reviews__person-img img {
  display: block;
  border-radius: 16px;
  width: 48px;
  height: 48px;
object-fit:cover;
}

.reviews__person-desc .name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.reviews__person-desc .spec {
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
}

.reviews__person-company {
  margin-left: auto;
  display: none;
}

.reviews__item-content {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reviews__item-content p {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}

.reviews__item-content p + p {
  margin-top: 10px;
}

.reviews__item-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.read-more {
  width: 100%;
}

#reviewsPagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: unset;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  height: 10px;
  width: 100px !important;
}

#reviewsPagination .swiper-pagination-bullet {
  margin: 0;
  background: rgba(19, 22, 32, 0.15);
  width: 8px;
  height: 8px;
  opacity: 1;
}

#reviewsPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #0894e7;
}

.reviews__control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.reviews__control svg {
  flex-shrink: 0;
}

.reviews__control .swiper-button-next,
.reviews__control .swiper-button-prev {
  position: static;
  margin: 0;
  transform: unset;
  border: 1px solid rgba(19, 22, 32, 0.05);
  border-radius: 8px;
  padding: 12px;
  width: 44px;
  height: 44px;
  background: rgba(19, 22, 32, 0.05);
}

.reviews__control .swiper-button-next::after,
.reviews__control .swiper-button-prev::after {
  display: none;
}

.reviews__item.read-item .reviews__item-content {
  display: block;
}

/*update*/

.reviews-box {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.reviews__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.wrapper__content.wrapper__content--wh .reviews__pagination .pagination-item{
  background: rgba(8, 148, 231, 0.1);
  color: #0894e7;
cursor:pointer;
}
.reviews__pagination .pagination-item:hover{

  background-color: #0894e7;
  color: #fff;
}
.reviews__pagination .pagination-item.current{
background-color: #0894e7;
color: #fff;
}
/*update*/

@media (min-width: 700px) {

  .reviews__title span {
    font-size: 24px;
  }
  .reviews__item {
    padding: 24px;
  }
  .reviews__person-img img {
    width: 80px;
    height: 80px;
  }
  .reviews__person-desc .name {
    font-size: 20px;
  }
  .reviews__person-desc .spec {
    font-size: 16px;
  }
  .reviews__item-btns {
    flex-direction: row;
  }
  .reviews__item-btns a {
    flex: 1 1 50%;
  }
  .reviews__item-content p {
    font-size: 16px;
  }
  .reviews {
    position: relative;
  }
  .reviews__control {
    position: absolute;
    top: -72px;
    margin: 0;
    right: 0;
  }
  .reviews__person-company {
    display: block;
  }
}
@media(min-width:1024px){
    .reviews-box {
        grid-template-columns: 1fr 1fr;
    }
}
/*page reviews*/
/*page about*/
.sertif {
  padding: 32px 0;
}

.sertif__title {
  text-align: center;
}

.sertif__slider {
  position: relative;
}

.sertif__item {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 10px 30px -10px rgba(8, 148, 231, 0.02);
cursor:pointer;
}

.sertif__item img {
  display: block;
  width: 100%;
}

.sertif__control .swiper-button-next:after,
.sertif__control .swiper-button-prev:after {
  display: none;
}

.sertif__control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.sertif__control .swiper-button-next,
.sertif__control .swiper-button-prev {
  position: static;
  margin: 0;
  padding: 0;
  transform: unset;
  background: rgba(19, 22, 32, 0.05);
  border: 1px solid rgba(19, 22, 32, 0.05);
  border-radius: 8px;
  padding: 12px;
  width: 44px;
  height: 44px;
}

.sertif__control .swiper-button-next svg path,
.sertif__control .swiper-button-prev svg path {
  fill: #131620;
}

.sertif__slider .swiper-pagination {
  position: static;
  margin: 0;
  padding: 0;
  transform: unset;
  margin-top: 32px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sertif__slider .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background: rgba(19, 22, 32, 0.15);
  width: 8px;
  height: 8px;
  opacity: 1;
}

.sertif__slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #0894e7;
}

@media (min-width: 700px) {
  .sertif__title {
    text-align: left;
  }
  .sertif__control {
    margin: 0;
    position: absolute;
    right: 0;
    top: -80px;
  }
}
.company {
  padding: 32px 0;
}

.company__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.company__title {
  margin-bottom: 24px;
}

.company__title h1 {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #131620;
}

.subtitle {
  font-weight: 600;
  font-size: 24px;
  color: #131620;
  margin-bottom: 12px;
}

.company__content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #131620;
}

.company__content p + p {
  margin-top: 10px;
}

.company__img {
  margin: 24px 0;
}

.company__img img {
  display: block;
  width: 100%;
}

.company__rekviz {
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 10px 30px -10px rgba(8, 148, 231, 0.02);
  background: #fff;
}

.company__rekviz ul {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company__rekviz ul li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.company__rekviz ul li span {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
}

.company__rekviz ul li p {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #131620;
}

.company__rekviz ul li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #131620;
}

@media (hover: hover) {
  .company__rekviz ul li a:hover {
    color: #0894e7;
  }
}
@media (min-width: 700px) {
  .company__title h1 {
    font-size: 32px;
  }
  .company__title {
    margin-bottom: 32px;
  }
  .company__img {
    margin: 32px 0;
  }
  .company__rekviz {
    border-radius: 16px;
    padding: 24px;
  }
  .company__rekviz .subtitle {
    margin-bottom: 24px;
  }
}
@media (min-width: 900px) {
  .company__wrapper {
    flex-direction: row;
  }
  .company__rekviz {
    width: 400px;
    flex-shrink: 0;
    height: 100%;
    position: sticky;
    top: 70px;
    right: 0;
  }
  .company__title h1 {
    font-size: 36px;
  }
  .company,
  .sertif,
  .wrapper__content.wrapper__content--wh .partners {
    padding-bottom: 48px;
  }
}
.wrapper__content.wrapper__content--wh .partners .swiper-button-next,
.wrapper__content.wrapper__content--wh .partners .swiper-button-prev {
  transform: unset;
  background: rgba(19, 22, 32, 0.05);
  border: 1px solid rgba(19, 22, 32, 0.05);
  border-radius: 8px;
  padding: 12px;
  width: 44px;
  height: 44px;
}

.wrapper__content.wrapper__content--wh .partners .swiper-button-next svg path,
.wrapper__content.wrapper__content--wh .partners .swiper-button-prev svg path {
  fill: #131620;
}

.wrapper__content.wrapper__content--wh .partners__item {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 10px 30px -10px rgba(8, 148, 231, 0.02);
  background: #fff;
}

.wrapper__content.wrapper__content--wh .partners p {
  color: #131620;
}

.wrapper__content.wrapper__content--wh .partners__item-img {
  mix-blend-mode: difference;
}

/*page about*/
/*page contacts*/
.contacts {
  padding-top: 32px;
}

.contacts__header {
  margin-bottom: 16px;
}

.contacts__title {
  margin-bottom: 32px;
}

.contacts__box {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 10px 30px -10px rgba(8, 148, 231, 0.02);
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.contacts__box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacts__box ul li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contacts__box ul li span {
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
}

.contacts__box ul li a {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #131620;
}

.contacts__map .container {
  padding-left: 0;
  padding-right: 0;
}

[class*=ground-pane] {
  filter: grayscale(1);
}

@media (min-width: 700px) {
  .contacts {
    padding: 32px 0 48px;
  }
  .contacts__box {
    border-radius: 16px;
    padding: 24px;
  }
  .contacts__box ul {
    flex-direction: row;
    gap: 32px;
  }
  .contacts__box ul li:nth-child(1),
  .contacts__box ul li:nth-child(2) {
    flex-shrink: 0;
  }
  .contacts__box ul li span,
  .contacts__box ul li a {
    font-size: 16px;
  }
  .contacts__map .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  #contactsMap {
    border-radius: 16px;
    height: 480px !important;
    overflow: hidden;
  }
}
.contacts .company__rekviz {
  width: 100%;
  margin-top: 24px;
}

/*page contacts*/

/*page papers*/
.paper {
  padding: 32px 0;
}

.paper__list {
  display: grid;
  gap: 24px;
}
.paper__item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mouseHover {
  position: relative;
}
.mouseHover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(8, 148, 231, 0.35),
    transparent 30%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  color: rgb(8, 148, 231);
z-index:20;
}

.mouseHover:hover::before {
  opacity: 1;
}
.paper__item-img {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}
.paper__item-img img {
  border-radius: 16px 16px 0 0;
  display: block;
  width: 100%;
}
.paper__item-decs {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.paper__item-decs .date {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.paper__item-decs .title {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.paper__item-decs .link {
  font-weight: 600;
  font-size: 14px;
  color: #0894e7;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
@media (min-width: 700px) {
  .paper__list {
    grid-template-columns: 1fr 1fr;
  }
  .paper {
    padding: 32px 0 48px;
  }
}
@media (min-width: 1024px) {
  .paper__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/*page papers*/
/*page papersDetail*/
.paperDetail {
  padding: 32px 0;
}

.paperDetail__content {
  padding-bottom: 32px;
}
.paperDetail__content-date {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(19, 22, 32, 0.7);
  margin-bottom: 12px;
}

.paperDetail__content-title h1 {
  font-weight: 600;
}
.paperDetail__content-img {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
}
.paperDetail__content-img img {
  display: block;
  width: 100%;
  border-radius: 16px;
}
.paperDetail__content-subtitle,
.paperDetail__content h2 {
  font-weight: 600;
  font-size: 20px;
  color: #131620;
  margin-bottom: 16px;
}
.paperDetail__content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #131620;
}
.paperDetail__content p + p {
  margin-top: 10px;
}
.paperDetail__content p b {
  font-weight: 600;
}
.paperDetail__slider {
  padding-top: 32px;
  position: relative;
}
.paperDetail__slider-title {
  text-align: center;
}

.wrapper__content.wrapper__content--wh .paper__item {
  background-color: #fff;
}
.wrapper__content.wrapper__content--wh .paper__item .date {
  color: rgba(19, 22, 32, 0.7);
}
.wrapper__content.wrapper__content--wh .paper__item .title {
  color: #131620;
}

.paperDetail__slider .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  transform: unset;
  margin-top: 32px;
  height: 10px;
  gap: 12px;
}
.paperDetail__slider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: rgba(19, 22, 32, 0.15);
  opacity: 1;
  margin: 0;
}
.paperDetail__slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #0894e7;
}
.paperDetail__control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.paperDetail__slider .swiper-button-next:after,
.paperDetail__slider .swiper-button-prev:after {
  display: none;
}
.paperDetail__slider .swiper-button-next,
.paperDetail__slider .swiper-button-prev {
  position: static;
  margin: 0;
  padding: 0;
  transform: unset;

  background: rgba(19, 22, 32, 0.05);
  border: 1px solid rgba(19, 22, 32, 0.05);
  border-radius: 8px;
  padding: 12px;
  width: 44px;
  height: 44px;
}
.paperDetail__slider .swiper-slide {
  height: auto;
}
.paperDetail__slider .swiper-slide .paper__item {
  height: 100%;
}
@media (min-width: 700px) {
  .paperDetail__slider-title {
    text-align: left;
  }
  .paperDetail__control {
    position: absolute;
    right: 0;
    margin: 0;
    top: 32px;
    transform: unset;
  }
  .paperDetail {
    padding-bottom: 48px;
  }
  .paperDetail__content-title h1 {
    font-size: 24px;
  }
  .paperDetail__content {
    max-width: 800px;
    margin: 0 auto;
  }
}
/*page papersDetail*/

.products__item-img .products__item-img-decor{
display:none;
}
.products.products-index .title,.products.products-index .link,.partners.partners-index p{
display:none;
}
.products.products-index .products__item-img,.partners.partners-index .partners__item-img{
margin-bottom:0;
}
.ntd-doc__class ul li .name a{
word-break: break-word;
}


.wrapper__content.wrapper__content--wh .header__nav ul li a:hover{
color:#0894e7;
}
.wrapper__content.wrapper__content--wh .header__nav  .has-submenu:hover .header__nav-link a{
color:#0894e7;
}
.wrapper__content.wrapper__content--wh .header__nav  .has-submenu:hover .header__nav-link svg path{
stroke:#0894e7;
}


/*search page*/
.search-page{
color:#fff;
}
.search-page .formSearch {
margin:20px 0;
display: flex;
    gap: 10px;
    align-items: center;
}
.search-page .formSearch input[type="text"]{
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
height: 52px;
background: rgba(255,255,255,0.05);
font-weight: 300;
font-size: 15px;
color: rgba(255,255,255,0.70);
 font-family: "Geologica";
}
.search-page .formSearch input[type="submit"]{
 font-family: "Geologica";
border-radius: 8px;
padding: 18px 32px;
width: fit-content;
height: 52px;
background:#0894E7;
border:unset;
font-weight: 600;
font-size: 15px;
line-height: 107%;
margin:unset;
color:#fff;
}
.search-page .formSearch select{
 font-family: "Geologica";
}

.search-page .formSearch .select2-container--default .select2-selection--single .select2-selection__rendered {
font-size: 15px;
color: rgba(255,255,255,0.70);
 font-family: "Geologica";

    padding: 0;
    width: fit-content;
}
.search-page .formSearch .select2-container--default .select2-selection--single {
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
padding-right: 52px;
height: 52px;
background: rgba(255,255,255,0.05);
font-weight: 300;
width: fit-content;
display: flex;
    justify-content: center;
    align-items: center;
}
.search-page .formSearch .select2.select2-container.select2-container--default{
width: fit-content!important;
}
.search-page .formSearch .select2-container--default .select2-selection--single .select2-selection__arrow{
top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 26px;
}
.search-page .formSearch .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: unset;
    border-style: unset;
    border-width: unset;
    height: 24px;
    left: unset;
    margin-left: 0;
    margin-top: 0;
    position: unset;
    top: 50%;
    width: 24px;
    background-image: url('/local/templates/nrmsoft/img/icon/arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}
 .select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
height:100%;
    overflow-y: auto;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: unset;
    color: white;
font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #fff;
background: rgba(8, 148, 231, 0.1);
        color: #0894e7;
}
.select2-container--default .select2-results>.select2-results__options{
background: #131620;
}

/*search page*/

/*authorization*/
.autoriz-section,.auth-good{
color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px;
padding: 20px;
    max-width: 480px;
    backdrop-filter: blur(128px);
    background: rgba(19, 22, 33, 0.8);
}
.auth-good{
flex-direction:column;
gap:16px;
}
.auth-good p{
text-align:center;
}
.auth-good p:nth-child(1){
font-size:22px;
line-height:1.25;
}
.auth-good p a{
color:#0894E7;
}
.autoriz-section .bx-auth-note{
font-weight: 600;
font-size: 20px;
margin-bottom:24px;
}
.autoriz-section table.bx-auth-table{
width:100%;
}
.autoriz-section .bx-auth-table tbody tr{
display:grid;
gap:8px;
}
.autoriz-section .bx-auth-table tbody tr td label{
padding-left:30px;
position:relative;
cursor:pointer;
}
.autoriz-section .bx-auth-table tbody tr td label::before{
content:"";
position:absolute;
left:0;
top:50%;
transform:translateY(-50%);
border: 1.20px solid rgba(255,255,255,0.05);
border-radius: 6px;
width: 24px;
height: 24px;
background: rgba(255,255,255,0.05);
}
.autoriz-section .bx-auth-table tbody tr:nth-child(3) td input{
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.autoriz-section .bx-auth-table tbody tr:nth-child(3) td input:checked+label::before{
background: #0894E7;
background-image:url('/local/templates/nrmsoft/img/icon/approve.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.autoriz-section .bx-auth-table tbody tr+tr{
margin-top:20px;
}
.autoriz-section .bx-auth-table tbody td.bx-auth-label{
font-weight: 500;
font-size: 14px;
text-align:left;
    height: auto;
    display: block;
    line-height: 1.25;
color: rgba(255,255,255,0.70);
}
.autoriz-section .bx-auth-table tbody .form-control{
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
width: 100%;
height: 52px;
 font-family: "Geologica";
background: rgba(255,255,255,0.05);
font-weight: 300;
font-size: 16px;
color: rgba(255,255,255,0.70);
}
.autoriz-section .bx-auth-table tbody input[type="submit"]{
border-radius: 8px;
padding: 18px 32px;
width: 100%;
height: 52px;
background: #0894E7;
    display: flex;
    justify-content: center;
    align-items: center;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color:#fff;
 font-family: "Geologica";
padding:10px;
border:unset;
cursor:pointer;
margin-bottom:24px;
}
.autoriz-section .bx-auth-table tbody input[type="submit"]:hover{
background: rgba(8, 148, 231, 0.1);
    color: #0894e7;
}
.autoriz-section .bx-auth form noindex{
text-align:center;
display:block;
}
.autoriz-section .bx-auth form noindex+noindex{
margin-top:16px;

}
.autoriz-section .bx-auth form noindex p{
display:block;
}
.autoriz-section .bx-auth form noindex p a{

font-size: 16px;
line-height: 140%;
text-decoration: underline;
text-decoration-skip-ink: none;
text-align: right;
color:#0894E7;
}
.autoriz-section .bx-auth form noindex p+p{
margin-top:10px;
}

@media(min-width:700px){
	.autoriz-section{
border-radius: 24px;
padding: 32px;
}
	.autoriz-section .bx-auth-note{
font-size: 24px;
margin-bottom:32px;
}
}
.regist-section{
color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px;
padding: 20px;
    max-width: 820px;
    backdrop-filter: blur(128px);
    background: rgba(19, 22, 33, 0.8);
}
.regist-section .bx-auth{
width:100%;
}
.regist-section .bx-auth .data-table thead b{
font-weight: 600;
font-size: 24px;
color: #fff;
margin-bottom:24px;
    display: block;
}

.regist-section .bx-auth form .data-table{
display:flex;
width:100%;
flex-direction: column;
}
.regist-section .bx-auth form .data-table tfoot input[type="submit"],.forgotPass form input[type="submit"]{
border-radius: 8px;
padding: 18px 32px;
background: #0894E7;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color:#fff;
 font-family: "Geologica";
border:unset;
width:100%;
margin: 24px 0;
cursor:pointer;
}
.regist-section .bx-auth form .data-table tfoot td{
width:100%;
}
.regist-section .bx-auth form .data-table tfoot{
display:flex;
width:100%;
}
.regist-section .bx-auth form .data-table tfoot tr{
display:flex;
width:100%;
flex-direction: column;
}
.regist-section .bx-auth form .data-table tbody{
display:grid;
grid-template-columns:1fr;
gap:20px;
}
.regist-section .bx-auth form .data-table tbody tr{
display:grid;
gap:8px;
}
.regist-section .bx-auth form .data-table tbody tr td:nth-child(1){
font-weight: 500;
font-size: 14px;
color: rgba(255,255,255,0.7);
}
.regist-section .bx-auth form .data-table tbody tr td:nth-child(1) span,.regist-section .bx-auth p span{
color: #df3a44;
}
.regist-section .bx-auth form .data-table tbody tr td:nth-child(2) input,.forgotPass form div input{
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
width: 100%;
height: 52px;
background: rgba(255,255,255,0.05);
font-weight: 300;
font-size: 15px;
color: rgba(255,255,255,0.7);
 font-family: "Geologica";
}
.regist-section .bx-auth p{
font-weight: 300;
font-size: 16px;
line-height: 140%;
color: rgba(255,255,255,0.7)
}
.regist-section .bx-auth p a,.forgotPass div p a{
font-weight: 300;
font-size: 16px;
line-height: 140%;
text-decoration: underline;
text-decoration-skip-ink: none;
text-align: right;
color:#0894E7;
display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0;
}
.regist-section .bx-auth p span{}
@media(min-width:700px){
	.regist-section .bx-auth form .data-table tbody{
grid-template-columns:1fr 1fr;
}
	.regist-section{
max-width:678px;
}
}
@media(min-width:1000px){
	.regist-section{
max-width:820px;
}
}
/*authorization*/
/*forgotpass*/
.forgotPass{
color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px;
padding: 20px;
    max-width: 480px;
    backdrop-filter: blur(128px);
    background: rgba(19, 22, 33, 0.8);
}
.forgotPass form{
display:flex;
flex-direction:column;
width:100%;
}
.forgotPass form p{
font-weight: 600;
font-size: 20px;
color:#fff;
margin-bottom:24px;
}
.forgotPass form div input{
margin:8px 0;
}
/*forgotpass*/
.catalog-block-header{
max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
border:unset;
font-weight: 600;
font-size: 20px;
color:#fff;
position:relative;
}

.catalog-block-header::after{
    content: "";
    width: calc(100% - 290px);
    display: inline-block;
    height: 1px;
    background-color: rgba(255,255,255,0.05);
    position: absolute;
    left: 270px;
    top: 50%;
    transform: translateY(-50%);
}
@media(min-width:640px){
div[data-entity="parent-container"] .catalogpo-detail__title h1{
font-size:24px;
}
	.catalog-block-header{
font-size:28px;
}
	.catalog-block-header::after{
    width: calc(100% - 390px);
    left: 370px;
}
}
.main .row{
margin-left:0;
margin-right:0;
}
.main .row .col-xs-12{
padding-left:0;
padding-right:0;
}
.ntd-doc__form form{
opacity:1!important;
pointer-events: all!important;
}

/*personal*/
.personal-start .bx_page{
display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 60px auto;
    color: #fff;
}
.personal-start .bx_page p{
font-size:18px;
line-height:1.25;
margin-bottom:32px;
}
@media(min-width:700px){
.personal-start .bx_page p{
font-size:24px;
}
}

.personal-start__control{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
.personal-start__control div{
display: flex;
    flex-direction: column;
    align-items: center;
width: 100%;
    text-align: center;
}
.personal-start__control div h2{
font-size:18px;
color:#0894E7;
margin-bottom:16px;
}
.personal-start__control div a:hover{
color:#0894E7;
transform:scale(1.08);
}
@media(min-width:900px){
	.personal-start__control{
flex-direction:row;
}
}
/*personal*/
/*personal profile*/
.bx-auth-profile{
color: #fff;
    display: flex;
    justify-content: center;
flex-direction:column;
width:100%;
    align-items: center;
    margin: 50px auto;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px;
padding: 20px;
    max-width: 820px;
    backdrop-filter: blur(128px);
    background: rgba(19, 22, 33, 0.8);
}
.bx-auth-profile form{
display:flex;
flex-direction:column;
width:100%;
}

.bx-auth-profile form #user_div_reg{

}
.bx-auth-profile form .profile-table tbody{
display:grid;
grid-template-columns:1fr;
gap:16px;
}
.bx-auth-profile form .profile-table tbody tr{
display: flex;
    flex-direction: column;
gap:8px;
}
.bx-auth-profile form .profile-table tbody tr td:nth-child(1){
font-weight: 500;
font-size: 14px;
color:rgba(255,255,255,0.7);
line-height:1.25;
}
.bx-auth-profile form .profile-table tbody tr td:nth-child(2) input{
font-weight: 300;
font-size: 16px;
color:rgba(255,255,255,0.7);
line-height:1.25;
font-family: "Geologica";
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
width: 100%;
height: 52px;
background: rgba(255,255,255,0.05);
}
.bx-auth-profile form .profile-table tbody tr td{
width:100%;
}
.bx-auth-profile form .profile-table tbody tr td img.calendar-icon{
width: 30px;
    height: 30px;
box-sizing: border-box;
display:block;
}
.bx-auth-profile form .profile-table tbody tr td:nth-child(2) textarea{
font-weight: 300;
font-size: 16px;
color:rgba(255,255,255,0.7);
line-height:1.25;
font-family: "Geologica";
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
width: 100%;
height: 100px;
background: rgba(255,255,255,0.05);
resize:none;

}
.bx-auth-profile form p:nth-last-child(2){

}
.bx-auth-profile form p:nth-last-child(1){
margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
flex-direction:column;
}
.bx-auth-profile form p:nth-last-child(1) input[type="submit"]{
background: #0894E7;
border-radius: 8px;
padding: 18px 32px;
width: 100%;
height: 52px;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color: #fff;
font-family: "Geologica";
border:unset;
cursor:pointer;
}
.bx-auth-profile form p:nth-last-child(1) input[type="submit"]:hover{
background: rgba(8, 148, 231, 0.1);
color: #0894E7;
}
.bx-auth-profile form p:nth-last-child(1) input[type="reset"]{
background: rgba(8, 148, 231, 0.1);
border-radius: 8px;
padding: 18px 32px;
width: 100%;
height: 52px;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color: #0894E7;
font-family: "Geologica";
border:unset;
cursor:pointer;
}
.bx-auth-profile form p:nth-last-child(1) input[type="reset"]:hover{
color: #fff;
background: #0894E7;
}

.bx-auth-profile .soc-serv-title{
background:unset;
margin:16px 0; 
    width: 100%;
    text-align: center;
display:none;
}
.bx-auth-profile .soc-serv-accounts{
display:none;
}
.bx-auth-profile form .profile-table tbody tr td:nth-child(2) .select2-container{
width:100%!important;
}
.bx-auth-profile form .profile-table tbody tr td:nth-child(2) .select2-container--default .select2-selection--single{
font-weight: 300;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.25;
    font-family: "Geologica";
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
display: flex;
    align-items: center;
}
.bx-auth-profile form .profile-table tbody tr td:nth-child(2) .select2-container--default .select2-selection--single .select2-selection__arrow{
top: 50%;
    transform: translateY(-50%);
right:16px;
}
.bx-auth-profile form .profile-table tbody tr td:nth-child(2) .select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container .select2-results__option{
font-weight: 300;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.25;
    font-family: "Geologica";
}
.select2-container--default .select2-results__option--selected{
 background: unset;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
text-align:left;
}
.select2-container--default .select2-dropdown{
 background: unset;
border-radius: 8px;
border: unset;
}
@media(min-width:700px){
	.bx-auth-profile form p:nth-last-child(1){
flex-direction:row;
}
.bx-auth-profile form .profile-table tbody {
    grid-template-columns: 1fr 1fr;
}
}
/*https://nrmsoft.tw1.ru/personal/subscribe/*/
.main .subscription{
color: #fff;
    display: flex;
    justify-content: center;
flex-direction:column;
width:100%;
    align-items: center;
    margin: 50px auto;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px;
padding: 20px;
    max-width: 820px;
    backdrop-filter: blur(128px);
    background: rgba(19, 22, 33, 0.8);
}
.main .subscription-utility{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.main .subscription-utility p{
color:rgba(255,255,255,0.7);
}
.main .subscription-utility input[type="text"]{
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
width: 100%;
height: 52px;
background: rgba(255,255,255,0.05);
font-weight: 300;
font-size: 16px;
color: rgba(255,255,255,0.7);
    font-family: "Geologica";
}
.main .subscription-utility input[type="submit"]{

background: #0894E7;
border-radius: 8px;
padding: 18px 32px;
width: 100%;
height: 52px;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color: #fff;
font-family: "Geologica";
border:unset;
cursor:pointer;
}
.main .subscription-utility input[type="submit"]:hover{
background: rgba(8, 148, 231, 0.1);
color: #0894E7;
}
.main .subscription-title-inner{
border:unset;
border-radius: unset;
padding: 0px;
background: unset;
margin-bottom:16px;
font-weight: 600;
font-size: 20px;
}
.main div.subscription-form{
border: unset;
border-radius: 16px;
padding: 0px;
background: unset;
}
.main .subscription form{
border: 1px solid rgba(255,255,255,0.05);
border-radius: 16px;
padding: 10px;
background: rgba(255,255,255,0.05);
width:100%;
}
.main .subscription form:nth-child(2){
border: unset;
border-radius: unset;
padding: unset;
margin-top:16px;
background: unset;
}
.main .subscription-form tbody tr{
display:flex;
align-items:start;
gap:8px;
flex-direction:column;
}
.main .subscription-form tbody tr .field-name{
flex-shrink:0;
padding: 0;
    text-align: left;
font-weight: 600;
font-size: 20px;
color:#fff;
    width: fit-content;
}
.main .subscription-form tbody tr .field-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main .subscription-title-inner{

}
.main input.subscription-email{
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
width: fit-content;
height: 52px;
background: rgba(255,255,255,0.05);
font-weight: 300;
font-size: 16px;
color: #fff;
font-family: "Geologica";
}
.main .subscription div.subscription-format{

}
.main div.subscription-notes{
margin:0;
}
.main .subscription-buttons input[type="submit"]{
border-radius: 8px;
padding: 18px 32px;
height: 52px;
background: #0894E7;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color:#fff;
font-family: "Geologica";
border:unset;
width: 100%;
cursor:pointer;
}
.main .subscription-buttons input[type="submit"]:hover{
background: rgba(8, 148, 231, 0.1);
color: #0894E7;
}
/*.subscription .subscription-format label{
display:inline-block;
padding-left:26px;
position:relative;
}
.subscription .subscription-format label::before{
content:'';
position:absolute;
width:18px;
height:18px;
left:0;
top:50%;
transform:translateY(-50%);
border-radius:50%;

 border:1.13px solid rgba(255,255,255,0.05);
}
.subscription .subscription-format label::after{
content:'';
position:absolute;
width:9px;
height:9px;
background-color:#0894E7;
opacity:0;
left:0;
top:50%;
transform:translateY(-50%);
border-radius:50%;
}
.subscription .subscription-format input:checked ~ label::before{

 border:1.13px solid #0894E7;
}
.subscription .subscription-format input:checked ~ label::after{
opacity:1;
}*/
/*https://nrmsoft.tw1.ru/personal/subscribe/*/

/*personal order*/
.personal-order{
color: #fff;
    display: flex;
    justify-content: center;
flex-direction:column;
width:100%;
    align-items: center;
    margin: 50px auto;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px;
padding: 20px;
    max-width: 820px;
    backdrop-filter: blur(128px);
    background: rgba(19, 22, 33, 0.8);
}
.personal-order h3{
margin-bottom:24px;
font-weight: 500;
font-size: 28px;
letter-spacing: -0.01em;
color: #fff;
}
.personal-order .sale-order-history-link{
width:100%;
margin:0 auto;
text-align:center;
color:#0894E7;
font-weight: 600;
font-size: 16px;
line-height: 140%;
padding:10px;
font-family: "Geologica";
}

.personal-order .sale-order-title{
margin:24px auto;
color:#fff;
font-family: "Geologica";
text-align: center;
}
.personal-order .sale-order-list-container{
margin:0;
padding:0;
border: 1px solid rgba(255,255,255,0.05);
border-radius: 12px;
padding: 15px;
background: rgba(255,255,255,0.05);
}
.personal-order .sale-order-list-title,.personal-order .sale-order-list-accomplished-title{
font-family: "Geologica";
}
.personal-order .sale-order-list-title-container{
background:unset;
margin-bottom:10px;
}
.personal-order .sale-order-list-title{
margin:0;
background:unset;
color:#fff;
font-size:18px;
}
.personal-order .sale-order-list-inner-container{
margin:0;
background:unset;
padding:0;
border:unset;
}
.personal-order .sale-order-list-inner-title-line-item{
font-family: "Geologica";
}
.personal-order .sale-order-list-payment-title,.personal-order .sale-order-list-shipment-title{
font-family: "Geologica";
color: #fff;
    margin-bottom: 10px;
}
.personal-order .sale-order-list-payment-check, .personal-order .sale-order-list-payment-price{
font-family: "Geologica";
}
.personal-order .sale-order-list-status-alert,
.personal-order .sale-order-payment-change-status-alert,
.personal-order .sale-order-detail-payment-options-methods-info-title-status-alert{
border-radius: 8px;
background: rgba(235, 69, 54, 0.1);
padding: 18px 32px;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color: #eb4536;border:unset;
margin: 10px 0;
font-family: "Geologica";
}
.personal-order .sale-order-list-change-payment,
.personal-order .sale-order-detail-about-order-inner-container-list-item-link{
font-family: "Geologica";
color:#0894E7;
}
.personal-order .sale-order-list-status-restricted,.personal-order .sale-order-list-status-alert,.personal-order .sale-order-list-status-success{
font-family: "Geologica";
}
.personal-order .sale-order-list-button-container{
width:100%;
}
.personal-order .sale-order-list-button{
font-family: "Geologica";
border-radius: 8px;
padding: 18px 32px;
display: flex;
    justify-content: center;
    align-items: center;
background: #0894E7;
width:100%;
max-width:100%;
    margin-top: 10px;
}
.personal-order .sale-order-list-inner-row-body{
display:flex;
flex-direction:column;
}
.personal-order .sale-order-list-button:hover{
background: rgba(8, 148, 231, 0.1);color: #0894E7;
}
.personal-order .sale-order-list-shipment-status-item{
font-family: "Geologica";
}
.personal-order .sale-order-list-shipment-status-block{
font-family: "Geologica";
font-weight: 600;
font-size: 15px;
line-height: 107%;
color: #0894E7;
background: rgba(8, 148, 231, 0.1);
border-radius: 8px;
padding: 10px;
border:unset;
}
.personal-order .sale-order-list-shipment-item{
font-family: "Geologica";
}
.personal-order .sale-order-list-about-link{
font-family: "Geologica";
}
.personal-order .sale-order-list-repeat-link{
font-family: "Geologica";
}
.personal-order .sale-order-list-cancel-link,.personal-order h3{
font-family: "Geologica";
}
.personal-order .sale-order-payment-change-payment-title,
.personal-order .sale-order-payment-change-payment-title-element,
.personal-order .sale-order-payment-change-payment-element,.personal-order .sale-order-payment-change-payment-number{
color:#fff;
font-family: "Geologica";
}
.personal-order .sale-order-list-cancel-payment{
font-family: "Geologica";
    color: #eb4536;
}
.personal-order .sale-order-detail-title-element{
color:#fff;
font-family: "Geologica";
}
.personal-order .sale-order-detail-back-to-list-link-up:hover,
.personal-order .sale-order-detail-back-to-list-link-down:hover{
color:#0894E7;
}
.personal-order .container-fluid.sale-order-detail{
padding:0;
}
.personal-order .sale-order-detail-general{
padding:0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
}
.personal-order .sale-order-detail-general-head{
background:unset;
}
.personal-order .sale-order-detail-general-item{
margin:0;
font-family: "Geologica";
}
.personal-order .sale-order-list-about-link,.personal-order .sale-order-list-repeat-link{
color:#0894E7;
}
.personal-order .sale-order-detail-about-order-container{
border:1px solid rgba(255,255,255,0.05);
border-radius:16px;
padding: 8px !important;
}
.personal-order .sale-order-detail-order-section{
border:1px solid rgba(255,255,255,0.05);
border-radius:16px;
padding: 8px !important;
}
.personal-order .sale-order-detail-payment-options-order-content-title{
float:unset;
}
.personal-order .sale-order-detail-payment-options-inner-container{
border:1px solid rgba(255,255,255,0.05);
border-radius:16px;
}
.personal-order div.sale-order-detail-payment-options-methods,.personal-order div.sale-order-detail-payment-options-shipment{
border-color:rgba(255,255,255,0.05);
}
.personal-order div.payment-options-methods-row::before,.personal-order div.payment-options-methods-row::after{
background:rgba(255,255,255,0.05);
}
.personal-order .sale-order-detail-about-order-title,
.personal-order .sale-order-detail-about-order-title,.personal-order .sale-order-detail-payment-options-title,
.personal-order .sale-order-detail-payment-options-shipment-composition-title, 
.personal-order .sale-order-detail-payment-options-order-content-title,.personal-order .sale-order-detail-payment-options-order-content-title{
background:unset;
}
.personal-order .sale-order-detail-about-order-inner-container-name-detail, .personal-order .sale-order-detail-about-order-inner-container-status-detail, 
.personal-order .sale-order-detail-about-order-inner-container-price-detail,.personal-order .sale-order-detail-about-order-inner-container-status-title,
.personal-order .sale-order-detail-about-order-inner-container-price-title,
.personal-order .sale-order-detail-about-order-inner-container-list-item-element,.personal-order .sale-order-detail-order-item-td-title{
font-family: "Geologica";
color:rgba(255,255,255,0.7);
}
.personal-order .sale-order-list-repeat-link:before{
background-image:url('/local/templates/nrmsoft/img/icon/icon-repeat.svg');
}
.personal-order .sale-order-detail-about-order-inner-container-repeat-button,
.personal-order .btn-theme.sale-order-detail-payment-options-methods-button-element{
font-family: "Geologica";
background: #56ba00;
border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    line-height: 1;
}
.personal-order .sale-order-detail-about-order-inner-container-repeat-cancel{
font-family: "Geologica";
color: #eb4536;
}
.personal-order .sale-order-detail-about-order-inner-container-name-read-more,.personal-order .sale-order-detail-payment-options-methods-info-change-link,
.personal-order .sale-order-detail-show-link,.personal-order .sale-order-detail-about-order-inner-container-name-read-less,
.personal-order .sale-order-detail-hide-link{
border-bottom: 1px dashed #0894E7;
}
.personal-order .sale-order-detail-about-order-inner-container-name-read-more:hover,.personal-order .sale-order-detail-payment-options-methods-info-change-link:hover,
.personal-order .sale-order-detail-show-link:hover,.personal-order .sale-order-detail-about-order-inner-container-name-read-less:hover,
.personal-order .sale-order-detail-hide-link:hover,.personal-order .sale-order-detail-order-item-title a:hover,.personal-order .sale-order-list-about-link:hover,
.personal-order .sale-order-list-cancel-link:hover{
color:#0894E7;
}
.personal-order .sale-order-detail-about-order-inner-container{
border:unset;
}
.personal-order .sale-order-detail-about-order-inner-container-details-title,
.personal-order .sale-order-detail-about-order-inner-container-list-item,.personal-order .sale-order-detail-payment-options-info-order-number,
.personal-order .sale-order-detail-payment-options-info-total-price,.personal-order .sale-order-detail-methods-title,
.personal-order .sale-order-detail-sum-name,.personal-order .sale-order-detail-sum-number,.personal-order .sale-order-detail-payment-options-methods-info-change-link,
.personal-order .sale-order-detail-payment-options-methods-shipment-list-item-title,.personal-order .sale-order-detail-payment-options-methods-shipment-list-item,
.personal-order .sale-order-detail-payment-options-methods-shipment-list-item,.personal-order .sale-order-detail-show-link,
.personal-order .sale-order-detail-about-order-inner-container-name-read-less,.personal-order .sale-order-detail-hide-link,
.personal-order .sale-order-detail-total-payment-list-left-item,.personal-order .sale-order-detail-total-payment-list-right-item{
font-family: "Geologica";
color:#fff;
}
.personal-order .sale-order-detail-payment-options-methods-shipment-list-item-title{

}

/*personal order*/
/*personal profile*/
.catalogpo-detail__desc{
color:#fff;
}
.catalogpo-detail__list{
margin-bottom:32px;
}

/*update catalog ntd detail*/
.ntd-doc__tab-box {
  margin-bottom: 24px;
}
.ntd-doc__tabs {
  display: flex;
flex-direction:column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.ntd-doc__tab {
  border-bottom: 1px solid #131620;
  padding: 10px;
cursor: pointer;
width:100%;
}
.ntd-doc-static{
width:100%;
}
.ntd-doc__tab.active,.ntd-doc__tab:hover {
  color:#0894e7;
  border-bottom: 1px solid #0894e7;
}
.ntd-doc__class ul li .label{
    max-width: 100%;
    word-break: break-word;
}
.ntd-doc__tabs-content-item {
  display: none;
}
.ntd-doc__tabs-content-item.active {
  display: block;
  animation: showContent .3s ease;
}
@media(min-width:769px){
	.ntd-doc__tab{

    display: flex;
    justify-content: center;
    align-items: center;
        position: relative;
}
	.ntd-doc__tabs{
    flex-direction: row;
        position: relative;
align-items: stretch;
}


}
/*update catalog ntd detail*/

.bx-sbb-empty-cart-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    box-sizing: border-box;
}
.bx-sbb-empty-cart-image{
flex-shrink:0;
background-image:url('/local/templates/nrmsoft/img/icon/bascket-icon-black.svg')
}
.bx-sbb-empty-cart-text,.bx-sbb-empty-cart-desc{
color:#fff;
}
.bx-sbb-empty-cart-desc a:hover{
color:#0894E7;
}
.sale-order-list-inner-row-template{
color:#000;
}
/*update basket*/
.bx-basket .basket-checkout-container,.bx-basket .basket-items-list-header,
.bx-basket .basket-items-list-wrapper{
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.05);
}
.bx-basket .basket-checkout-block-total-title,.bx-basket .has-feedback .form-control:placeholder{
font-family: "Geologica";
color:rgba(255,255,255,0.7);
}
.bx-basket .basket-item-price-title,
.bx-basket .basket-item-amount-field-description,.bx-basket .basket-item-property-custom-name,
.bx-basket .basket-item-property-custom-value,.bx-basket .basket-checkout-block-total-title{
font-family: "Geologica";
color:rgba(255,255,255,0.7);

}
.bx-basket .basket-checkout-block-total-description,.bx-basket .basket-coupon-block-total-price-current,
.bx-basket .basket-items-list-header-filter-item.active,
.bx-basket .basket-item-price-current-text,.bx-basket .basket-item-info-name-link span{
font-family: "Geologica";
color:#fff;
}
.bx-basket .basket-item-info-name-link:hover span{
color:#0894E7;
}
.bx-basket .basket-btn-checkout{
border-radius: 8px;
font-family: "Geologica";
background-color: #0894E7!important;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color:#fff;
border:unset;
}
.bx-basket .basket-btn-checkout:hover{
background-color: rgba(8, 148, 231, 0.1)!important;
color: #0894E7!important;
}
.bx-basket .basket-btn-checkout:focus{
outline:unset!important;
}
.bx-basket .has-feedback .form-control,.bx-basket .basket-item-amount-filed{
font-family: "Geologica";
color:#000;
}
.bx-basket .has-feedback .form-control:focus{
border-color: #0894E7;
}
.bx-basket .basket-checkout-container{
margin-bottom:0;
}
.bx-basket .basket-checkout-container.basket-checkout-container-fixed,.bx-basket .basket-items-list-header.basket-items-list-header-fixed{
backdrop-filter: blur(48px);
background: rgba(255, 255, 255, 0.01);
}
.bx-basket .form.has-feedback input{
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
font-family: "Geologica";
background: rgba(255,255,255,0.05);
font-weight: 300;
font-size: 15px;
color: rgba(255,255,255,0.7);
}
.bx-basket .basket-item-block-amount .basket-item-amount-btn-minus,.bx-basket .basket-item-block-amount .basket-item-amount-btn-plus{
border-radius: 8px;
padding: 6px;
width: 28px;
height: 28px;
background: rgba(255,255,255,0.05);
}
.bx-basket .basket-item-block-amount .basket-item-amount-btn-minus::after,.bx-basket .basket-item-block-amount .basket-item-amount-btn-plus::after{
background: rgba(255,255,255,1);
}
.bx-basket .basket-item-block-amount{
border-radius: 8px;
padding: 12px;
background: rgba(255,255,255,0.05);
}
.bx-basket .basket-item-amount-filed-block input{
background: unset;
border:unset;
font-weight: 600;
font-size: 16px;
line-height: 107%;
color: #fff;
font-family: "Geologica";
}
@media(min-width:992px){
.bx-basket .basket-item-block-amount{
margin-left:4px;
margin-right:4px;
}
}
@media(max-width:991px){
	.bx-basket .basket-item-block-amount{
width:fit-content;
margin:0 auto;
}
}
/*update basket*/
p font.notetext{
    max-width: 480px;
    text-align: center;
    display: block;
    margin: 20px auto;
}
/*change pass*/
.change-pass{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 20px;
    max-width: 480px;
    backdrop-filter: blur(128px);
    background: rgba(19, 22, 33, 0.8);
}
.change-pass .starrequired{
color:#eb4536;
}
.change-pass p +p{
margin-top:16px;
}
.change-pass .bx-auth{
display:block;
width:100%;
}
.change-pass form{
margin-bottom:24px;
}
.change-pass form thead{
margin-bottom:24px;
text-align:center;
display: block;
}
.change-pass form thead tr {
display:grid;
}
.change-pass form thead tr td b{
margin:0 auto;
font-size:24px;
}
.change-pass form tbody{
display: grid;
    gap: 16px;
}
.change-pass form tbody tr{
display: grid;
    gap: 8px;
}
.change-pass form tbody tr td input{
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 16px;
width: 100%;
height: 52px;
background: rgba(255,255,255,0.05);
font-weight: 300;
font-size: 15px;
color: #fff;
font-family: "Geologica";
}
.change-pass form table{
display: flex;
    flex-direction: column;
}
.change-pass form input[name="change_pwd"]{
border-radius: 8px;
padding: 18px 32px;
width: 100%;
height: 52px;
background: #0894E7;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color: #fff;
font-family: "Geologica";
border:unset;
cursor:pointer;
}
.change-pass form input[name="change_pwd"]:hover{
background: rgba(8, 148, 231, 0.1);
color: #0894E7;
}
.change-pass form tfoot tr{
display:grid;
margin-top:16px;
}
.change-pass p a{
text-align:center;
color:#0894E7;
width:100%;
display: flex;
    margin: 0 auto;
    justify-content: center;
}
/*change pass*/

/*update input group*/
.catalog__item .quantity{
border-radius: 8px;
    padding: 0px 12px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
margin-bottom:20px;
}
.catalog__item .quantity .quantity-button{
border: unset;
    border-radius: 8px;
    padding: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
border:1px solid rgba(255, 255, 255, 0.05);
color:#fff;
    cursor: pointer;
flex-shrink:0;
line-height:28px;
}
.catalog__item .quantity .quantity-button:active{
border:1px solid #0894E7;

transform:scale(0.88);
}
.catalog__item .quantity .quantity-button:hover{
 background-color: #0894E7;
}
.catalog__item .quantity .quantity-button:focus{
outline:none!important;
}
.catalog__item .quantity .quantity-input{
    font-family: "Geologica";
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    line-height: 107%;
    color: #fff;
    background-color: transparent;
    border: unset;
    width: 100%;
}
/*update input group*/

/*order product form*/
form[name="ORDER_FORM"]{
max-width:1230px;
margin:24px auto;
width:100%;

}
.wrapper__content.wrapper__content--wh form[name="ORDER_FORM"] .bx-soa-cart-total{
background: #fff;
border-radius: 16px;
padding: 16px;
border-color:rgba(255,255,255,0.05);
}
form[name="ORDER_FORM"] .bx-soa-cart-total{
background: rgba(255,255,255,0.05);
border-radius: 16px;
padding: 16px;
border-color:rgba(255,255,255,0.05);
}
form[name="ORDER_FORM"] .bx-soa-cart-total{
background: rgba(255,255,255,0.05);
border-radius: 16px;
padding: 16px;
border-color:rgba(255,255,255,0.05);
}
.bx-soa-cart-total .bx-soa-cart-total-line:first-child .bx-soa-cart-t,.bx-soa-cart-total .bx-soa-cart-total-line:first-child .bx-soa-cart-d,
.bx-soa-cart-t,.bx-soa-cart-total .bx-soa-cart-total-line-total .bx-soa-cart-d{
color:#fff;
}
.wrapper__content.wrapper__content--wh .bx-soa-cart-total .bx-soa-cart-total-line:first-child .bx-soa-cart-t,
.wrapper__content.wrapper__content--wh .bx-soa-cart-total .bx-soa-cart-total-line:first-child .bx-soa-cart-d,
.wrapper__content.wrapper__content--wh .bx-soa-cart-t,
.wrapper__content.wrapper__content--wh .bx-soa-cart-total .bx-soa-cart-total-line-total .bx-soa-cart-d{
color:#000;
}
form[name="ORDER_FORM"] .alert-warning{
border-radius: 16px;
}
form[name="ORDER_FORM"] .bx-soa-cart-total-line{
font-size:16px;
}
form[name="ORDER_FORM"] .bx-soa-price-free{
color:#56BA00;
}
form[name="ORDER_FORM"] .btn-order-save,form[name="ORDER_FORM"] .bx-soa-more-btn a,
form[name="ORDER_FORM"] .pull-right{
border-radius: 8px;
padding: 18px 32px;
width: 100%;
height: 52px;
background: #0894E7;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color: #fff;
}
form[name="ORDER_FORM"] .bx-soa-more-btn{
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
padding: 0 15px !important;
}
form[name="ORDER_FORM"] .bx-soa-cart-total.bx-soa-cart-total-fixed{
top:70px;
}
.wrapper__content.wrapper__content--wh form[name="ORDER_FORM"] .bx-soa-section.bx-selected,.wrapper__content.wrapper__content--wh form[name="ORDER_FORM"] .bx-soa-section{

border-radius: 16px;
overflow: hidden;
}
form[name="ORDER_FORM"] .bx-soa-section.bx-selected, form[name="ORDER_FORM"] .bx-soa-section{
background: rgba(255,255,255,0.05);

border-radius: 16px;
overflow: hidden;
}
form[name="ORDER_FORM"] .bx-soa-section .bx-soa-section-content.container-fluid strong{
padding-left:15px;
color:#fff;
}
.wrapper__content.wrapper__content--wh form[name="ORDER_FORM"] .bx-soa-section .bx-soa-section-content.container-fluid strong{
padding-left:15px;
color:#000;
}
.wrapper__content.wrapper__content--wh form[name="ORDER_FORM"] .bx-soa-section-title{
color: #131620;
  font-family: "Geologica";
}
form[name="ORDER_FORM"] .bx-soa-section-title{
color: #fff;
  font-family: "Geologica";
}
.bx-soa-item-title a,.bx-soa-item-td-text span{
color:#fff;
}
.wrapper__content.wrapper__content--wh .bx-soa-item-title a,.wrapper__content.wrapper__content--wh .bx-soa-item-td-text span{
color:#000;
}
form[name="ORDER_FORM"] .bx-soa-tooltip.bx-soa-tooltip-danger .tooltip-inner{
background: rgba(235, 69, 54, 0.1);color: #eb4536;
font-family: "Geologica";
border-radius: 8px;max-width: 100%;
padding:8px;
font-size:16px;
}
form[name="ORDER_FORM"] .has-error .form-control{
border-color: #eb4536;
border-radius: 8px
}
.wrapper__content.wrapper__content--wh .bx-soa .form-group .bx-soa-custom-label,
.wrapper__content.wrapper__content--wh .bx-soa .form-group .bx-soa-customer-label{
color:#000;
}
.bx-soa .form-group .bx-soa-custom-label,.bx-soa .form-group .bx-soa-customer-label{
color:#fff;
}
.wrapper__content.wrapper__content--wh form[name="ORDER_FORM"] .form-control{
border: 1px solid rgba(19, 22, 32, 0.05);
border-radius: 8px;
padding: 15px;
font-family: "Geologica";
height: 52px;
background: rgba(19, 22, 32, 0.05);
font-weight: 300;
font-size: 16px;
line-height: 140%;
color: rgba(19, 22, 32, 1);
}
.wrapper__content.wrapper__content--wh form[name="ORDER_FORM"] .form-control:placeholder{
font-family: "Geologica";
font-weight: 300;
font-size: 16px;
line-height: 140%;
color: rgba(19, 22, 32, 0.7);
}
form[name="ORDER_FORM"] .form-control{
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 8px;
padding: 15px;
font-family: "Geologica";
height: 52px;
background: rgba(255, 255, 255, 0.05);
font-weight: 300;
font-size: 16px;
line-height: 140%;
color: rgba(255, 255, 255, 0.7);
}
 form[name="ORDER_FORM"] .form-control:placeholder{
font-family: "Geologica";
font-weight: 300;
font-size: 16px;
line-height: 140%;
color:rgba(255, 255, 255, 0.7);
}
form[name="ORDER_FORM"] .bx-soa-section-content{
padding-left:0;
padding-right:0;
}
.wrapper__content.wrapper__content--wh form[name="ORDER_FORM"] .bx-soa-editstep{
margin-right:15px;
color:#000;
}
form[name="ORDER_FORM"] .bx-soa-editstep{
margin-right:15px;
color:#fff;
}
form[name="ORDER_FORM"] .bx-soa-item-table .bx-soa-item-tr{
padding-left:15px;
padding-right:15px;
}
form[name="ORDER_FORM"] .bx-soa-section-title-container{
background-color:unset;
}
form[name="ORDER_FORM"] textarea.form-control.bx-soa-customer-textarea{
resize:none;
height:110px;
}
form[name="ORDER_FORM"] .bx-soa-item-title a:hover{
color:#0894E7;
}
form[name="ORDER_FORM"] .bx-soa-customer{
display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media(min-width:700px){
form[name="ORDER_FORM"] .bx-soa-customer{
    grid-template-columns: 1fr 1fr;
}
form[name="ORDER_FORM"] .bx-soa-customer-field:nth-child(1){
grid-column:2 span;
}
}
.logout-acc{
background: rgba(235, 69, 54, 0.1);
border-radius: 8px;
padding: 18px 32px;
width: fit-content;
height: 52px;
font-weight: 600;
font-size: 15px;
line-height: 107%;
color: #eb4536;
align-self:center;
margin-top: 36px;
}
.logout-acc:hover{
background-color: #eb4536;
color: #fff;
}
.sale_order_full_table{
max-width:1240px;
margin:20px auto;
padding:0 20px;
    display: block;

}
.sale_order_full_table div{
width:100%!important;
}
.sale_order_full_table a{
color:#0894E7;
}
.wrapper__content.wrapper__content--wh .sale_order_full_table{
color:#000;
}
.sale_order_full_table{
color:#fff;
}
.sale_order_full_table{
color:#fff;
}
.wrapper__content.wrapper__content--wh .sale_order_full_table{
color:#000;
}
.wrapper__content.wrapper__content--wh .sale_order_full_table tr:nth-child(2){
color:#000;
}
.sale_order_full_table tr:nth-child(2){
color:#000;
}
/*order product form*/
.bx-basket .basket-items-list-wrapper{
/*max-width:1240px;
width:100%;
margin:0 auto;
padding:0 20px;*/
}
.bx-basket .basket-checkout-container.basket-checkout-container-fixed{
/*top:67px;*/
}
@media(min-width:992px){
	form[name="ORDER_FORM"] .bx-soa-item-table{
padding-left:15px;
padding-right:15px;
}
}
.notFound {
  padding: 60px 0 128px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.notFound__title {
  font-weight: 500;
  font-size: 96px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
}
.notFound__text {
  opacity: 0.7;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}
@media (min-width: 700px) {
  .notFound__title {
    font-size: 128px;
  }
  .notFound__text {
    font-size: 24px;
  }
}


.catalog__item {
  position: relative;
}
.catalog__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(8, 148, 231, 0.35),
    transparent 27%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  color: rgb(8, 148, 231);
z-index:20;
}
.catalog__list.list .catalog__item::before{
  background: radial-gradient(
    circle at var(--mouse-x, 30%) var(--mouse-y, 30%),
    rgba(8, 148, 231, 0.35),
    transparent 13%
  );
}
.catalog__item:hover .catalog__item-img-decor{
display:none;
}
.catalog__item:hover::before {
  opacity: 1;
}
/*update partners on wh theme*/
.wrapper__content.wrapper__content--wh .partners__item{
background: #0f111a;
}
.wrapper__content.wrapper__content--wh .partners__item .partners__item-img{
mix-blend-mode:unset;
}
.wrapper__content.wrapper__content--wh #partnersPagination .swiper-pagination-bullet{
background: rgba(19, 22, 32, 0.15);
}
.wrapper__content.wrapper__content--wh #partnersPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0894e7;
}
/*update partners on wh theme*/

/*update promo banner*/
@media(min-width:700px){
.promo__item{
display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
	.promo__item-img{
position:static;
transform:unset;
max-width: 500px;
        max-height: 420px;
width:100%;
}
    .promo__item-img img {
        display: block;
        width: 100%;
max-width:300px;
        height: 100%;
    }
}
@media(min-width:1024px){
	.promo__item-img img{
max-width:500px;
        max-height: 420px;
}
}
/*update promo banner*/
/*update img on catalog PO*/
.products__item-img{
max-height:190px;
}
@media (min-width: 1020px) {
    .products__item-img img {
object-fit: contain;
        width: 190px;
        height: 190px;
    }
}
@media (min-width: 1020px) {
    .promo .swiper-slide {

        margin-top: auto;
        margin-bottom: auto;
    }
}
.personal-order .sale-order-payment-change-pp{
color:#000;
width:600px;
}
.personal-order .sale-order-detail-payment-options-methods-info{
width:100%;
overflow-x: auto;
}
.header__nav li.item-selected a,.wrapper__content.wrapper__content--wh .header__nav ul li.item-selected .header__nav-link a{
color:#0894E7;
}

/*breadcrumb*/
.breadcrumbs {
   /* margin-top: 32px;*/
}
.breadcrumbs ul{
display: flex;
    gap: 4px;
    flex-wrap: wrap;
align-items:center;
    margin-top: 32px;
}
.wrapper__content.wrapper__content--wh .breadcrumbs ul li{
font-weight: 300;
font-size: 16px;
line-height: 140%;
color: rgba(19, 22, 32, 0.4);
font-family: "Geologica";
padding-right:17px;
    position: relative;
}
.breadcrumbs ul li{
color: rgba(255, 255, 255, 0.4);
padding-right:17px;
    position: relative;
}
.breadcrumbs ul li:last-child{
padding-right:0;
}
.wrapper__content.wrapper__content--wh .breadcrumbs ul li:last-child a{
color: rgba(19, 22, 32, 0.7);
}
.breadcrumbs ul li:last-child a{
color: rgba(255, 255, 255, 0.7);
}
.wrapper__content.wrapper__content--wh .breadcrumbs ul li:not(:last-child)::before {
    content: "/";
    position: absolute;
    width: 12px;
    height: 12px;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
}
.breadcrumbs ul li:not(:last-child)::before {
    content: "/";
    position: absolute;
    width: 12px;
    height: 12px;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
}
.breadcrumbs ul li a:hover{
color:#0894E7;
}
@media(min-width:700px){
.breadcrumbs {
   /* margin-top: 48px;*/
}
	.breadcrumbs ul{
 margin-top: 48px;
}
}
.wrapper__content.wrapper__content--wh .header__basket-count{
color:#0894E7;
    width: 12px;
    height: 12px;
    background: rgba(8, 148, 231, 0.1);
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 16px;
}
/*breadcrumb*/
.bx-basket .basket-item-image{
max-width:90px;
}
/*# sourceMappingURL=style.css.map */