body {
  margin: 0;
  overflow-x: hidden;
  font-family: Onest;
}
h1, h2, h3, h4, p {
  margin: 0;
}
a {
  text-decoration: none;
  color: unset;
}

.min-w-635 {
  min-width: 635px;
}

.notification {
  position: fixed;
  left: 0;
  bottom: -100px;
  z-index: 41;
  width: 100vw;
  padding: 15px 24px;
  color: white;
  transition: all 350ms;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  text-align: left;
  font-family: Onest;
  box-sizing: border-box;
}
.notification.active {
  bottom: 0;
}
.notification.error {
  background: #CF0000;
}
.notification.success {
  background: #26bb79;
}
.notification.warn {
  background: #d3951e;
}

section.products {
  padding-top: 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: Onest;
}
section.products h2, section.bottom article h2 {
  padding-bottom: 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0em;
  text-align: left;
  color: #333333;
  grid-column: span 4 / span 4;
}
section.products .categories, section.faq .faq-categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 16px;
  margin-top: 4px;
  margin-bottom: 36px;
}
section.products .categories .category, section.faq .faq-categories .faq-category  {
  background: #F2F8FC;
  border: 1px solid #F2F8FC;
  box-sizing: border-box;
  padding: 8px 16px;
  color: #1B1A7E;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 17.85px;
  text-align: left;
  transition: all;
  transition-duration: 350ms;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
section.products .categories .category:not(:last-child), section.faq .faq-categories .faq-category:not(:last-child) {
  margin-right: 16px;
}
section.products .categories .category:hover, section.faq .faq-categories .faq-category:hover {
  border-color: #D0E3F0;
}
section.products .categories .category.active, section.faq .faq-categories .faq-category.active {
  background: #1B1A7E;
  border-color: #1B1A7E !important;
  color: white;
}
.products .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 16px;
}
section.products .navigator {
  margin: 0 auto;
  display: none;
}
.products .product {
  border: 1px solid #D0E3F0;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all;
  transition-duration: 350ms;
  box-shadow: none;
  background: white;
}
section.products .product .new-badge {
  position: absolute;
  z-index: 1;
  left: 11px;
  top: 11px;
  background: #1B1A7E;
  color: white;
  padding: 5px 14px;
  font-family: Onest;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  border-radius: 5px;
}
.products .product .image {
  background: white;
  height: 180px;
  max-height: 180px;
  background-position: center;
  background-size: cover;
}
section.products .product .lines {
  position: absolute;
  top: 96px;
  width: 288px;
  height: 160px;
}
.product h3 {
  z-index: 1;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: #333333;
  padding: 16px 24px 8px;
  margin: 0;
  transition: all;
  transition-duration: 350ms;
}
.product p {
  margin: 0;
  padding: 0 24px;
  z-index: 1;
    font-size: 16px;
  color: #999999;
}
.product:hover, .risks .risk:hover {
  border-color: transparent;
  box-shadow: 0 4px 24px 0 #33333314;
}
.product .button-holder {
  min-height: 85px;
  flex: 1 1;
  display: flex;
  align-items: flex-end;
  padding: 0 24px 16px;
  box-sizing: border-box;
}
.product:hover .button-holder a {
  opacity: 100%;
}
.product:hover h3, .risks .risk:hover h3 {
  color: #1B1A7E;
}
.product .button-holder .product-btn {
  /*opacity: 0;*/
  border: 1px solid #1B1A7E;
  border-radius: 8px;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
  color: #1B1A7E;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  transition: all;
  transition-duration: 350ms;
}
.product .button-holder .product-btn:hover{
  background: #F2F8FC;
}
.product .button-holder .product-btn:active{
  background: #1B1A7E;
  color: white;
}

.faq-question {
  padding: 16px;
  border: 1px solid #D0E3F0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.95px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0px 4px 24px 0px transparent;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: all;
  transition-duration: 350ms;
}
.faq-question:hover, .faq-question:active {
  box-shadow: 0px 4px 24px 0px #33333314;
  border-color: transparent;
}
.faq-question .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question .title svg {
  transition: all 350ms;
  min-width: 36px;
  min-height: 36px;
}
.faq-question.active .title svg {
  rotate: 180deg;
}
.faq-question .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms;
}
.faq-question.active .answer {
  grid-template-rows: 1fr;
}
.faq-question .content {
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.4px;
  text-align: left;
}
.faq-question .content .line {
  border-top: 1px solid #D0E3F0;
  margin-top: 16px;
}
.faq-question .content p {
  padding: 16px 16px 0;
}
.faq-question .content a {
  color: #1B1A7E !important;
}

@media screen and (max-width: 1280px) {
  .top-head {
    margin: 0px 24px;
    width: auto;
  }
  .bottom-head .bottom-items {
    margin: 0px 24px;
    width: auto;
  }
  .bottom-items .header-phone span {
    display: none;
  }
  .bottom-items .header-phone svg {
    margin-right: 0px;
  }

  section.products .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  section.products h2 {
    /*grid-column: span 3 / span 3;*/
  }
  section.products {
    margin: 0px 24px;
    width: auto;
  }
  section.products .product .lines {
    width: 100%;
    height: auto;
    top: max(55px, 17.5%);
  }
  .page-detail {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  section.products .product .lines {
    top: 20%;
  }
}
@media screen and (max-width: 1000px) {
  .bottom-items .navigation a.unimportant {
    display: none;
  }

  section.products .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  section.products .product .lines {
    top: max(49px, 13.5%);
  }
}
@media screen and (max-width: 900px) {
  section.products .product .lines {
    top: 17%;
  }
}

@media screen and (max-width: 800px) {
  .notification {
    padding: 16px;
  }



  section.products {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-top: 50px;
    padding-bottom: 14px;
    width: calc(100vw - 24px);
    margin: 0 16px;
  }
  section.products h2 {
    margin: 0;
    padding-bottom: 0;
  }
  section.products .categories {
    margin-bottom: 12px;
    margin-top: 12px;
  }
  section.products .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    overflow: hidden;
    overflow-x: auto;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  section.products .product {
    width: 288px;
    min-width: 288px;
  }
  section.products .product:not(:first-child) {
    margin-left: 16px;
  }
  section.products .product:hover {
    border-color: #D0E3F0;
    box-shadow: none;
  }
  section.products .product .button-holder .product-btn {
    opacity: 100%;
    background: #1B1A7E;
    color: white;
  }
  section.products .product .lines {
    top: 89px;
  }
  section.products .navigator.active {
    display: flex;
  }
  section.products .navigator svg {
    border-radius: 9999px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: all;
    transition-duration: 350ms;
  }
  section.products .navigator svg path {
    fill: #1B1A7E;
  }
  section.products .navigator svg:active {
    background: #1B1A7E;
  }
  section.products .navigator svg:active path {
    fill: white;
  }
  section.products .navigator svg:first-child {
    margin-right: 24px;
  }

  .breadcrumb .section-item, .breadcrumb-alt .section-item {
    font-size: 12px;
    font-weight: 400;
    line-height: 15.3px;
    text-align: left;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
}
.breadcrumb .section-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
  color: #333333;
  cursor: pointer;
}
.breadcrumb .section-item.active {
  color: #999999;
}
.breadcrumb-alt .section-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
  color: #333333;
  cursor: pointer;
  vertical-align: middle;
  /*display: inline-block;*/
}
.breadcrumb-alt .section-item.active {
  color: #999999;
}
.breadcrumb-alt svg {
  vertical-align: middle;display: inline-block;
}
.breadcrumb-next {
  display: inline-block;
  width: 100%;
  font-family: Onest;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.85px;
  color: #333333;
}
.breadcrumb-next .section-item {
  display: inline;
  position: relative;
}
.breadcrumb-next .section-item.active {
  color: #999999;
}
.breadcrumb-next .section-item:not(:last-child) {
  margin-right: 24px;
}
.breadcrumb-next .section-item:not(:last-child):after {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.4714 7.5286C10.7318 7.78895 10.7318 8.21105 10.4714 8.4714L6.70017 12.2426C6.43982 12.503 6.01771 12.503 5.75736 12.2426C5.49701 11.9823 5.49701 11.5602 5.75736 11.2998L9.05719 8L5.75736 4.70017C5.49701 4.43982 5.49701 4.01771 5.75736 3.75736C6.01771 3.49701 6.43982 3.49701 6.70017 3.75736L10.4714 7.5286Z' fill='%23333333'/%3E%3C/svg%3E");
  bottom: 0;
  position: absolute;
  transform: translate(0, -0.75px);
  margin-left: 4px;
}


.hidden {
  display: none;
}
.grid {
  display: grid;
}
.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}
.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}
.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}
.columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr))
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}


.new-year-banner {
  background-image: url(/bitrix/templates/2100/img/banner-background.png) !important;
  background-size: cover !important;
}



  .checkout-banner {
    position: fixed;
    display: none;
    flex-direction: column;
    right: 20px;
    bottom: 20px;
    background: #1B1A7E;
    border-radius: 16px;
    color: white;
    padding: 24px 32px;
    box-sizing: border-box;
    z-index: 301;
  }
  .checkout-banner.active {
    display: flex;
  }
  .checkout-banner .header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: -8px;
    margin-right: -16px;
  }
  .checkout-banner .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    margin-top: 10px;
  }
  .checkout-banner .actions button {
    font-family: Onest;
    font-weight: 500;
    font-size: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    padding: 10px;
    cursor: pointer;
    transition: 350ms all;
  }
  .checkout-banner .actions button.accept-button {
    color: white;
    background: #BEB400;
  }
  .checkout-banner .actions button.accept-button:hover, .checkout-banner .actions button.accept-button:active {
    background: #ABA200;
  }
  .checkout-banner .actions button.cancel-button:hover, .checkout-banner .actions button.cancel-button:active {
    opacity: .8;
  }
  .checkout-banner .header svg {
    cursor: pointer;
  }
  .checkout-banner label {
    font-family: Onest;
    font-size: 20px;
    font-weight: 700;
    line-height: 25.5px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
  .checkout-banner p {
    font-family: Onest;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 8px;
  }
  .checkout-banner a {
    background: #BEB400;
    width: 100%;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    padding: 16px;
    margin-top: 16px;
    font-family: Onest;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    box-sizing: border-box;
  }

  @media screen and (max-width: 800px) {
    .checkout-banner {
      width: 100%;
      right: 0;
      bottom: 0;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      padding: 8px 16px;
    }
    .checkout-banner .header {
      margin: 0;
      margin-right: -8px;
    }
    .checkout-banner .actions {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      row-gap: 16px;
      margin-top: 24px;
      margin-bottom: 16px;
    }
    .checkout-banner .actions button {
      padding: 14px;
    }
    .checkout-banner label, .checkout-banner p {
      text-align: left;
    }
    .checkout-banner a {
      margin-bottom: 8px;
    }
  }

.cookie {
  position: fixed;
  z-index: 4;
  left: 0;
  bottom: 0;
  padding: 15px 0;
  background: #F2F8FC;
  width: 100%;
  display: none;
}
.cookie.active {
  display: block;
}
.cookie .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
}
.cookie .content p {
  font-family: Onest;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #333333;
}
.cookie .content p a {
  cursor: pointer;
  color: #1B1A7E;
  text-decoration: underline;
}
.cookie .content button {
  background: #1B1A7E;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 9999px;
  font-family: Onest;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 13px 29px;
}

@media screen and (max-width: 1280px) {
  .cookie .content {
    margin-left: 24px;
    margin-right: 24px;
    width: auto;
  }
}
@media screen and (max-width: 800px) {
  .cookie .content {
    margin-left: 16px;
    margin-right: 16px;
  }
  .cookie .content {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
  .cookie .content p {
    font-size: 16px;
  }
  .cookie .content button {
    font-size: 16px;
    padding: 11px 29px;
  }
}