@charset "UTF-8";
/** THEME COLOURS */
:root {
  --theme-color-main: #C3161A;
  --theme-color-second: #0D0802;
  --white-color: #ffffff;
  --bg: #EFF6FA;
  --color-black-deep: #0D0802;
  --color-gray-medium: #747474;
  --color-black: #000000;
  --color-red-accent: #C3161A;
  --color-blue: #0878BE;
  --color-blue-dark: #09202F;
  --color-gray-light: #C6C6C6;
  --color-gray-steel: #64727A; }

/** MEDIA BREAKPOINTS */
html {
  font-size: 16px;
  background: var(--bg);
  scroll-behavior: smooth; }
  @media (min-width: 992px) {
    html, html * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    html::-webkit-scrollbar,
    html *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    html::-webkit-scrollbar-button,
    html *::-webkit-scrollbar-button {
      display: none; }
    html::-webkit-scrollbar-track,
    html *::-webkit-scrollbar-track {
      background: #e7e7e7; }
    html::-webkit-scrollbar-track-piece,
    html *::-webkit-scrollbar-track-piece {
      background: #e7e7e7; }
    html::-webkit-scrollbar-thumb,
    html *::-webkit-scrollbar-thumb {
      background: #c3161a;
      border-radius: 99px; }
    html::-webkit-scrollbar-corner,
    html *::-webkit-scrollbar-corner {
      background: #e7e7e7; } }

body {
  background: var(--bg);
  color: var(--color-black-deep);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "FixelDisplay", sans-serif; }
  body * {
    text-underline-offset: 3px;
    text-decoration-thickness: 1px; }

body.catalog-opened {
  overflow: hidden;
  margin-right: var(--scrollbar-width); }
  body.catalog-opened .header-menu-mobile {
    z-index: 1000; }
  body.catalog-opened .catalog-drop {
    opacity: 1;
    pointer-events: initial;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    @media (max-width: 991.98px) {
      body.catalog-opened .catalog-drop {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0); } }

body.menu-opened {
  overflow: hidden; }
  body.menu-opened #page-header .header-top::after {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  body.menu-opened #page-header .header-menu-mobile {
    pointer-events: initial;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: visible; }

body.filter-mobile-active {
  overflow: hidden; }
  body.filter-mobile-active .category-page-aside {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
    opacity: 1; }
  body.filter-mobile-active #page-footer,
  body.filter-mobile-active #page-header {
    z-index: 20; }

*::after,
*::before {
  pointer-events: none; }

picture {
  display: block; }

img {
  max-width: 100%;
  height: auto; }

figure.media {
  display: block; }

svg.hidden {
  display: block;
  width: 0 !important;
  height: 0 !important; }

.icon,
svg.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor; }

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-webkit-autofill:active, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus, select:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important; }

a,
[js-href] {
  text-decoration: none;
  cursor: pointer; }
  a, a:hover, a:active, a:focus,
  [js-href],
  [js-href]:hover,
  [js-href]:active,
  [js-href]:focus {
    outline: none; }
  @media (any-hover: hover) {
    a:hover,
    [js-href]:hover {
      text-decoration: underline; } }
  a:focus,
  [js-href]:focus {
    text-decoration: underline; }

.clearfix {
  clear: both; }

.clear-after:after {
  content: "";
  display: block;
  clear: both; }

body {
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  body #page-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }

#page-header {
  position: relative;
  z-index: 35; }

#page-content {
  position: relative;
  z-index: 25;
  padding-bottom: 50px; }
  #page-content:after {
    content: "";
    clear: both; }

#page-footer {
  position: relative;
  z-index: 30; }

section.section-block {
  position: relative;
  z-index: 3; }

a.phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 3px; }
  a.phone .quote {
    font-weight: 500; }

[js-copy-text] {
  position: relative;
  cursor: pointer; }

.fnx-tooltip {
  --br: 4px;
  --bg: white;
  display: none;
  position: absolute;
  z-index: 99;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: var(--br);
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  padding: 4px 15px;
  margin-bottom: 10px;
  font-size: 12px;
  pointer-events: none; }
  .fnx-tooltip:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--bg);
    border-radius: var(--br); }
  .fnx-tooltip:after {
    content: "";
    position: absolute;
    z-index: -2;
    bottom: -6px;
    left: 50%;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg) translateX(-50%);
        -ms-transform: rotate(45deg) translateX(-50%);
            transform: rotate(45deg) translateX(-50%);
    background: var(--bg);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); }

.status-mark {
  position: relative;
  padding-left: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .status-mark:before {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 100%;
    background: #000000; }
  .status-mark-green:before {
    background: #2ed513; }
  .status-mark-green-dark:before {
    background: #02351c; }
  .status-mark-yellow:before {
    background: #deab3b; }
  .status-mark-orange:before {
    background: #ff7a00; }
  .status-mark-gray:before {
    background: #d3d3d3; }
  .status-mark-red:before {
    background: #b80c09; }
  .status-mark-blue:before {
    background: #1b52c7; }

.block-wrapper {
  overflow: hidden;
  margin-bottom: 48px; }

.highlight {
  color: var(--color-red-accent); }

.text-decoration {
  color: var(--color-red-accent); }

.swiper-style {
  position: relative;
  z-index: 1;
  overflow: visible; }
  .swiper-style:not(.swiper-initialized) .swiper-button-next, .swiper-style:not(.swiper-initialized) .swiper-button-prev {
    display: none; }
  .swiper-style .swiper-slide {
    opacity: 1;
    height: auto !important; }
    .swiper-style .swiper-slide:not(.swiper-slide-visible) {
      opacity: 0;
      pointer-events: none;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }

.swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 2px;
  position: static !important;
  margin: 20px auto 0;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important; }
  .swiper-pagination .swiper-pagination-bullet {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 8px;
    min-width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white-color);
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (max-width: 991.98px) {
      .swiper-pagination .swiper-pagination-bullet {
        background: #BCD2E0; } }
    .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: var(--color-red-accent) !important; }
  .swiper-pagination.swiper-pagination-bullets-dynamic {
    --swiper-pagination-bottom: 0;
    -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important; }
    .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      -webkit-transform: scale(1) !important;
          -ms-transform: scale(1) !important;
              transform: scale(1) !important;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.3s ease-in-out !important;
      transition: all 0.3s ease-in-out !important;
      border-radius: 50%; }
      .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
        opacity: 1 !important;
        visibility: visible;
        width: 8px;
        background: var(--white-color); }
        @media (max-width: 991.98px) {
          .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
            background: #BCD2E0; } }
      .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: var(--color-red-accent) !important; }
      .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev, .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-prev {
        opacity: 0 !important; }

.swiper-button-next,
.swiper-button-prev {
  margin: 0 !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 44% !important;
  width: 40px !important;
  height: 40px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  background: var(--color-black-deep);
  border: none;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .swiper-button-next:hover, .swiper-button-next:focus,
  .swiper-button-prev:hover,
  .swiper-button-prev:focus {
    color: var(--white-color);
    background: var(--color-red-accent); }
    .swiper-button-next:hover .ic, .swiper-button-next:focus .ic,
    .swiper-button-prev:hover .ic,
    .swiper-button-prev:focus .ic {
      color: var(--white-color); }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none; }
  .swiper-button-next .icon,
  .swiper-button-next .ic,
  .swiper-button-prev .icon,
  .swiper-button-prev .ic {
    width: 16px;
    height: 16px;
    color: var(--white-color);
    -webkit-transition: color .3s ease, -webkit-transform .3s ease;
    transition: color .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, color .3s ease;
    transition: transform .3s ease, color .3s ease, -webkit-transform .3s ease; }
  .swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    background-color: #cccccc;
    border: 1px solid #cccccc; }

.swiper-button-prev {
  left: -20px !important; }
  @media (any-hover: hover) {
    .swiper-button-prev:hover .ic, .swiper-button-prev:hover .icon {
      -webkit-transform: translateX(-2px);
          -ms-transform: translateX(-2px);
              transform: translateX(-2px); } }

.swiper-button-next {
  right: -20px !important; }
  @media (any-hover: hover) {
    .swiper-button-next:hover .ic, .swiper-button-next:hover .icon {
      -webkit-transform: translateX(2px);
          -ms-transform: translateX(2px);
              transform: translateX(2px); } }

.section-main {
  overflow: hidden; }

#page-content.page-regular {
  background: var(--white-color); }
  #page-content.page-regular:has(.register-today) {
    padding-bottom: 0; }

.swiper-watch-progress:has(.swiper-pagination-lock) {
  padding-bottom: 0 !important; }

.swiper-watch-progress.swiper-watch-progress {
  overflow: visible !important; }
  .swiper-watch-progress.swiper-watch-progress .swiper-slide {
    opacity: 1;
    height: auto !important; }
    .swiper-watch-progress.swiper-watch-progress .swiper-slide:not(.swiper-slide-visible) {
      opacity: 0;
      pointer-events: none;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }

.section-page-gallery {
  padding: 60px 0;
  overflow: hidden; }
  .section-page-gallery img {
    border-radius: 24px; }

html {
  scroll-padding-top: 20px; }

#page-header {
  position: sticky;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (min-width: 992px) {
    #page-header.sticky-header {
      -webkit-transform: translateY(-52px);
          -ms-transform: translateY(-52px);
              transform: translateY(-52px);
      -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
              box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }
      #page-header.sticky-header.header-scroll {
        -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
                transform: translateY(-100%); } }
  @media (max-width: 991.98px) {
    #page-header {
      overflow: hidden; }
      #page-header.sticky-header {
        -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }
        #page-header.sticky-header.header-scroll {
          -webkit-transform: translateY(-100%);
              -ms-transform: translateY(-100%);
                  transform: translateY(-100%); } }
  #page-header .header-top {
    width: 100%;
    background: var(--bg); }
    @media (max-width: 991.98px) {
      #page-header .header-top {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 100svh;
        padding: 72px 0 24px;
        background: var(--white-color);
        opacity: 0;
        -webkit-transform: translateX(100%);
            -ms-transform: translateX(100%);
                transform: translateX(100%);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        overflow: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .menu-opened #page-header .header-top {
          -webkit-transform: translateX(0);
              -ms-transform: translateX(0);
                  transform: translateX(0);
          opacity: 1; }
          .menu-opened #page-header .header-top::after {
            -webkit-transform: translateX(0);
                -ms-transform: translateX(0);
                    transform: translateX(0); } }
    #page-header .header-top > .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-top: 10px;
      padding-bottom: 10px;
      gap: 10px; }
      @media (max-width: 991.98px) {
        #page-header .header-top > .container {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          padding-top: 16px;
          padding-bottom: 0;
          row-gap: 16px;
          -webkit-box-flex: 1;
              -ms-flex-positive: 1;
                  flex-grow: 1; } }
  .menu-opened #page-header .btn-program {
    display: none; }
  @media (max-width: 991.98px) {
    #page-header .header-languages {
      width: 100%; } }
  @media (max-width: 991.98px) {
    #page-header .header-languages .nav-languages-dropdown-wrap {
      display: none; } }
  @media (min-width: 992px) {
    #page-header .header-languages .nav-languages-inline-wrap {
      display: none; } }
  #page-header .header-bottom {
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      #page-header .header-bottom {
        position: relative;
        z-index: 101;
        background-color: var(--white-color); } }
    #page-header .header-bottom > .container {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-top: 20px;
      padding-bottom: 20px;
      gap: 16px; }
      @media (max-width: 991.98px) {
        #page-header .header-bottom > .container {
          gap: 8px;
          padding-top: 14px;
          padding-bottom: 14px; } }
    @media (max-width: 991.98px) {
      #page-header .header-bottom .header-btn {
        padding: 4px;
        width: 44px;
        height: 44px;
        min-height: 44px;
        background: var(--white-color);
        -webkit-box-shadow: 0 0 0 1px var(--color-red-accent);
                box-shadow: 0 0 0 1px var(--color-red-accent);
        color: var(--color-red-accent); }
        #page-header .header-bottom .header-btn .icon {
          width: 24px;
          height: 24px; } }
  @media (max-width: 991.98px) and (max-width: 991.98px) {
    #page-header .header-bottom .header-btn .btn-text {
      display: none; } }
    @media (max-width: 991.98px) {
        #page-header .header-bottom .header-btn:hover, #page-header .header-bottom .header-btn:focus {
          background: var(--white-color);
          color: var(--color-red-accent); } }
  #page-header .logo-wrap {
    position: relative;
    z-index: 1001;
    max-width: 327px;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (max-width: 1199.98px) {
      #page-header .logo-wrap {
        margin-right: auto;
        max-width: 260px; } }
    @media (max-width: 991.98px) {
      #page-header .logo-wrap {
        max-width: 220px; } }
    @media (max-width: 768px) {
      #page-header .logo-wrap {
        max-width: 78px; } }
    #page-header .logo-wrap img {
      width: 100%; }
  #page-header .header-callback-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px; }
    @media (min-width: 992px) {
      #page-header .header-callback-actions {
        margin-left: auto; } }
    @media (max-width: 991.98px) {
      #page-header .header-callback-actions {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 12px; } }
    #page-header .header-callback-actions .contacts-info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px; }
      #page-header .header-callback-actions .contacts-info .ic {
        color: var(--color-gray-steel);
        width: 24px;
        height: 24px; }
    #page-header .header-callback-actions .info-content a {
      color: var(--color-black);
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      text-decoration: none;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      #page-header .header-callback-actions .info-content a .sup, #page-header .header-callback-actions .info-content a .quote, #page-header .header-callback-actions .info-content a .nums {
        font-weight: 600; }
      @media (pointer: fine) {
        #page-header .header-callback-actions .info-content a:hover {
          color: var(--color-red-accent); } }
      @media (max-width: 991.98px) {
        #page-header .header-callback-actions .info-content a {
          font-size: 16px;
          line-height: 1.5; } }
  #page-header .header-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
    @media (max-width: 991.98px) {
      #page-header .header-actions {
        margin-top: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%; } }
  #page-header .socials-wrap {
    margin: 0; }
    @media (max-width: 991.98px) {
      #page-header .socials-wrap {
        margin-top: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%; } }
  @media (any-hover: hover) {
    #page-header .zakaz-link:hover img {
      -webkit-filter: grayscale(0);
              filter: grayscale(0); } }
  #page-header .zakaz-link img {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%); }
  #page-header .header-btn {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (min-width: 992px) {
      #page-header .header-btn .icon {
        display: none; } }
    @media (max-width: 991.98px) {
      #page-header .header-btn {
        width: 100%; } }

.header-menu-mobile {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
  visibility: hidden;
  scrollbar-color: var(--theme-color-main) var(--bg);
  scrollbar-width: thin; }
  @media (min-width: 992px) {
    .header-menu-mobile {
      display: none; } }
  .header-menu-mobile .header-menu-mobile-wrap {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    height: 100%;
    padding: 100px 16px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
    overflow-y: auto;
    overflow-x: hidden; }
  .header-menu-mobile .header-contacts {
    margin-top: auto; }
  .header-menu-mobile::-webkit-scrollbar {
    width: 4px;
    border-radius: 2px;
    background-color: #eaeaea; }
  .header-menu-mobile::-webkit-scrollbar-button {
    width: 0;
    height: 0; }
  .header-menu-mobile::-webkit-scrollbar-track {
    background: #eaeaea; }
  .header-menu-mobile::-webkit-scrollbar-track-piece {
    background: #eaeaea; }
  .header-menu-mobile::-webkit-scrollbar-thumb {
    background: var(--theme-color-main);
    border-radius: 4px; }

.hamburger {
  position: relative;
  z-index: 102;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100px;
  border: none;
  background: var(--color-red-accent);
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (min-width: 992px) {
    .hamburger {
      display: none; } }
  .hamburger:hover .hamburger-line, .hamburger:focus .hamburger-line {
    background-color: var(--white); }
  .menu-opened .hamburger .hamburger-line, .hamburger.trigger-active .hamburger-line {
    background: var(--white);
    height: 2px; }
    .menu-opened .hamburger .hamburger-line:nth-child(3n + 1), .hamburger.trigger-active .hamburger-line:nth-child(3n + 1) {
      -webkit-transform: translateY(7px) rotate(-45deg);
          -ms-transform: translateY(7px) rotate(-45deg);
              transform: translateY(7px) rotate(-45deg); }
    .menu-opened .hamburger .hamburger-line:nth-child(3n + 2), .hamburger.trigger-active .hamburger-line:nth-child(3n + 2) {
      opacity: 0;
      left: 100%; }
    .menu-opened .hamburger .hamburger-line:nth-child(3n + 3), .hamburger.trigger-active .hamburger-line:nth-child(3n + 3) {
      -webkit-transform: translateY(-7px) rotate(45deg);
          -ms-transform: translateY(-7px) rotate(45deg);
              transform: translateY(-7px) rotate(45deg); }
  .hamburger .hamburger-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 20px;
    height: 20px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .hamburger .hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 0.2em;
    background-color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .hamburger .hamburger-line:nth-child(3n + 1) {
      top: 2px; }
    .hamburger .hamburger-line:nth-child(3n + 2) {
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    .hamburger .hamburger-line:nth-child(3n + 3) {
      bottom: 2px; }

.catalog-drop {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999999;
  width: auto;
  padding: 20px 0;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (min-width: 992px) {
    .catalog-drop {
      -webkit-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
              transform: translateY(-10px);
      -webkit-box-shadow: 0 0 16px 6px rgba(0, 0, 0, 0.1);
              box-shadow: 0 0 16px 6px rgba(0, 0, 0, 0.1); } }
  @media (max-width: 991.98px) {
    .catalog-drop {
      -webkit-transform: translateX(100%);
          -ms-transform: translateX(100%);
              transform: translateX(100%);
      padding: 20px;
      width: 100%;
      height: 100dvh;
      top: 0;
      left: 0;
      overflow-y: auto; } }
  .catalog-drop ul, .catalog-drop li {
    padding: 0;
    margin: 0;
    list-style: none; }
  .catalog-drop .catalog-drop-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 8px;
    padding-bottom: 16px;
    background: white;
    border-bottom: 1px solid; }
    .catalog-drop .catalog-drop-top:not(:last-child) {
      margin-bottom: 16px; }
    @media (min-width: 992px) {
      .catalog-drop .catalog-drop-top {
        display: none; } }
  .catalog-drop .catalog-drop-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700; }
  .catalog-drop .nav-catalog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .catalog-drop .catalog-drop-item {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 1199.98px) {
      .catalog-drop .catalog-drop-item {
        width: 33.333%; } }
    @media (max-width: 991.98px) {
      .catalog-drop .catalog-drop-item {
        width: 50%; } }
    @media (max-width: 767.98px) {
      .catalog-drop .catalog-drop-item {
        width: 100%;
        padding-right: 0; } }

@media (any-hover: hover) and (min-width: 992px) {
  .catalog-drop .catalog-drop-item.sub-in:hover > .sub-list, .catalog-drop .catalog-drop-item.sub-in:focus > .sub-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); } }
    .catalog-drop .catalog-drop-item.accordion-open .catalog-drop-link > .icon {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
    .catalog-drop .catalog-drop-item:not(:last-child) {
      margin-bottom: 16px; }
  @media (min-width: 992px) {
    .catalog-drop .sub-item.sub-in > a > .icon {
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg); } }
  @media (max-width: 991.98px) {
    .catalog-drop .sub-item.sub-in > a > .icon {
      -webkit-transform: rotate(0deg) !important;
          -ms-transform: rotate(0deg) !important;
              transform: rotate(0deg) !important; } }
  .catalog-drop .sub-item.sub-in.accordion-open > a > .icon {
    -webkit-transform: rotate(-180deg) !important;
        -ms-transform: rotate(-180deg) !important;
            transform: rotate(-180deg) !important; }
  .catalog-drop .catalog-drop-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    color: var(--theme-color-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (min-width: 992px) {
      .catalog-drop .catalog-drop-link {
        padding: 0 14px; } }
    .catalog-drop .catalog-drop-link .icon-wrapper svg [style*=fill],
    .catalog-drop .catalog-drop-link .icon-wrapper svg [fill]:not([fill="none"]) {
      fill: var(--theme-color-main) !important;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .catalog-drop .catalog-drop-link .icon-wrapper svg [style*=stroke],
    .catalog-drop .catalog-drop-link .icon-wrapper svg [stroke]:not([stroke="none"]) {
      stroke: var(--theme-color-main) !important;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .catalog-drop .catalog-drop-link .icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-left: auto;
      width: 24px;
      height: 24px;
      padding: 7px;
      color: var(--theme-color-main);
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease;
      -webkit-transform: rotate(0);
          -ms-transform: rotate(0);
              transform: rotate(0); }
      @media (min-width: 992px) {
        .catalog-drop .catalog-drop-link .icon {
          pointer-events: none;
          -webkit-transform: rotate(-90deg);
              -ms-transform: rotate(-90deg);
                  transform: rotate(-90deg); } }
    .catalog-drop .catalog-drop-link:hover, .catalog-drop .catalog-drop-link:focus {
      text-decoration: none;
      color: var(--theme-color-second); }
      .catalog-drop .catalog-drop-link:hover .icon-wrapper svg [style*=fill],
      .catalog-drop .catalog-drop-link:hover .icon-wrapper svg [fill]:not([fill="none"]), .catalog-drop .catalog-drop-link:focus .icon-wrapper svg [style*=fill],
      .catalog-drop .catalog-drop-link:focus .icon-wrapper svg [fill]:not([fill="none"]) {
        fill: var(--theme-color-second) !important; }
      .catalog-drop .catalog-drop-link:hover .icon-wrapper svg [style*=stroke],
      .catalog-drop .catalog-drop-link:hover .icon-wrapper svg [stroke]:not([stroke="none"]), .catalog-drop .catalog-drop-link:focus .icon-wrapper svg [style*=stroke],
      .catalog-drop .catalog-drop-link:focus .icon-wrapper svg [stroke]:not([stroke="none"]) {
        stroke: var(--theme-color-second) !important; }
  .catalog-drop .sub-list {
    padding-top: 10px; }
    @media (min-width: 992px) {
      .catalog-drop .sub-list {
        position: absolute;
        top: 0;
        left: 100%;
        height: 100%;
        width: 100%;
        padding: 20px 0;
        background: var(--white);
        -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.1);
                box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-10px);
            -ms-transform: translateX(-10px);
                transform: translateX(-10px);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; } }
    @media (max-width: 991.98px) {
      .catalog-drop .sub-list {
        display: none; } }

@media (any-hover: hover) and (min-width: 992px) {
  .catalog-drop .sub-list.lv-2 li:hover .sub-list.lv-3, .catalog-drop .sub-list.lv-2 li:focus .sub-list.lv-3 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); } }
    .catalog-drop .sub-list .accordion-open > a .icon {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
    .catalog-drop .sub-list .sub-in > a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .catalog-drop .sub-list li:not(:last-child) {
      margin-bottom: 5px; }

@media (any-hover: hover) and (min-width: 992px) {
  .catalog-drop .sub-list li:hover .sub-list.lv-2, .catalog-drop .sub-list li:focus .sub-list.lv-2 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); } }
    .catalog-drop .sub-list li a {
      font-weight: 400;
      color: var(--theme-color-main);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .catalog-drop .sub-list li a:hover, .catalog-drop .sub-list li a:focus {
        color: var(--theme-color-main); }

@media (max-width: 991.98px) {
  .header-pages {
    width: 100%;
    padding-bottom: 8px; } }

@media (min-width: 992px) {
  .header-pages.mobile {
    display: none; } }

@media (max-width: 991.98px) {
  .header-pages.desktop {
    display: none; } }

.header-pages-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 0 10px; }
  @media (max-width: 991.98px) {
    .header-pages-nav {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      row-gap: 0; } }
  @media (min-width: 992px) {
    .header-pages-nav .__no-link {
      pointer-events: none; } }
  .header-pages-nav .sub-in {
    position: relative;
    cursor: pointer; }
    .header-pages-nav .sub-in.accordion-open .nav-link .toggle-sublist {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
    @media (any-hover: hover) {
      .header-pages-nav .sub-in:hover .nav-link .toggle-sublist {
        -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
                transform: rotate(-180deg); }
      .header-pages-nav .sub-in:hover .sub-list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0); } }
    .header-pages-nav .sub-in .sub-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 8px; }
      @media (min-width: 992px) {
        .header-pages-nav .sub-in .sub-list {
          position: absolute;
          z-index: 2;
          top: 100%;
          left: 0;
          width: 100%;
          min-width: 250px;
          opacity: 0;
          pointer-events: none;
          -webkit-transform: translateY(-10px);
              -ms-transform: translateY(-10px);
                  transform: translateY(-10px);
          background: var(--white-color);
          padding: 6px;
          border-radius: 8px;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
          -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
                  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); } }
      @media (max-width: 991.98px) {
        .header-pages-nav .sub-in .sub-list {
          display: none;
          border-bottom: 1px solid var(--color-red-accent); } }
      .header-pages-nav .sub-in .sub-list .nav-link {
        text-transform: none;
        text-align: left; }
        @media (max-width: 991.98px) {
          .header-pages-nav .sub-in .sub-list .nav-link {
            border-bottom: none;
            min-height: 40px; } }
  @media (max-width: 991.98px) {
    .header-pages-nav .nav-item {
      width: 100%; } }
  .header-pages-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    padding: 2px 10px;
    text-align: center;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 991.98px) {
      .header-pages-nav .nav-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: left;
        width: 100%;
        padding: 10px 0;
        min-height: 58px;
        font-size: 20px;
        line-height: 1.25;
        border-bottom: 1px solid var(--color-red-accent); } }
    .header-pages-nav .nav-link .toggle-sublist {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 12px;
      height: 12px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-left: 4px;
      color: var(--color-red-accent);
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease;
      pointer-events: none; }
      @media (max-width: 991.98px) {
        .header-pages-nav .nav-link .toggle-sublist {
          margin-left: auto;
          width: 32px;
          height: 32px;
          pointer-events: initial; } }
      .header-pages-nav .nav-link .toggle-sublist .icon {
        width: 12px;
        height: 12px; }
    .header-pages-nav .nav-link.special-offers {
      color: var(--white-color);
      border-radius: 100px;
      background-color: var(--color-red-accent);
      border: 1px solid var(--color-red-accent);
      padding: 4px 20px; }
      @media (max-width: 991.98px) {
        .header-pages-nav .nav-link.special-offers {
          min-height: 48px;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          font-size: 16px;
          gap: 8px; }
          .header-pages-nav .nav-link.special-offers::after {
            content: "%"; } }
      .header-pages-nav .nav-link.special-offers svg {
        display: none; }
    @media (pointer: fine) {
      .header-pages-nav .nav-link:hover {
        color: var(--color-red-accent); }
        .header-pages-nav .nav-link:hover.special-offers {
          color: var(--color-red-accent);
          background-color: var(--white-color); } }

#page-header .cellphones-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px; }
  #page-header .cellphones-list .phone {
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    color: var(--theme-color-second); }

#page-header .cellphones-dropdown-wrap {
  position: relative;
  z-index: 99; }
  @media (max-width: 991.98px) {
    #page-header .cellphones-dropdown-wrap {
      width: 100%;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--color-red-accent); } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-inner {
        position: relative;
        gap: 4px; } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon {
    cursor: pointer; }
    @media (min-width: 1200px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon {
        pointer-events: none; } }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon .icon {
      width: 24px;
      height: 24px;
      color: var(--color-gray-steel); }
      @media (max-width: 1199.98px) {
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon .icon {
          width: 20px;
          height: 20px; } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    cursor: pointer;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:hover::before, #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:focus::before {
      content: "";
      position: absolute;
      top: 80%;
      left: 0;
      width: 100%;
      height: 15px;
      background: transparent;
      pointer-events: initial; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:hover .cellphones-dropdown, #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:focus .cellphones-dropdown {
      opacity: 1;
      pointer-events: initial;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:hover .cellphone-main .ic, #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:focus .cellphone-main .ic {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content {
        position: relative;
        z-index: 1; } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-title {
    color: var(--color-gray-medium);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-title {
        display: none; } }
    @media (max-width: 991.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-title {
        display: block;
        font-size: 16px;
        line-height: 1.5; } }
  #page-header .cellphones-dropdown-wrap .cellphone-main {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
    #page-header .cellphones-dropdown-wrap .cellphone-main .ic {
      color: var(--color-red-accent);
      width: 12px;
      height: 12px;
      cursor: pointer;
      margin-left: 4px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      #page-header .cellphones-dropdown-wrap .cellphone-main .ic.active {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
  #page-header .cellphones-dropdown-wrap .phone {
    white-space: nowrap;
    text-decoration: none;
    color: var(--color-black-deep);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    #page-header .cellphones-dropdown-wrap .phone .sup,
    #page-header .cellphones-dropdown-wrap .phone .quote,
    #page-header .cellphones-dropdown-wrap .phone .nums {
      font-weight: 600; }
    @media (any-hover: hover) {
      #page-header .cellphones-dropdown-wrap .phone:hover {
        color: var(--color-red-accent); } }
    @media (max-width: 991.98px) {
      #page-header .cellphones-dropdown-wrap .phone {
        font-size: 16px;
        line-height: 1.5; } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown {
        left: 0;
        right: auto; } }
    @media (min-width: 992px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown {
        position: absolute;
        z-index: 99;
        top: 100%;
        right: 0;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        gap: 2px;
        padding: 4px;
        margin-top: 8px;
        border-radius: 12px;
        background: var(--white);
        -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
                box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        -webkit-transform: translateY(-10px);
            -ms-transform: translateY(-10px);
                transform: translateY(-10px);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; } }
    @media (max-width: 991.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown {
        row-gap: 12px;
        display: none; } }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown.show {
      opacity: 1;
      pointer-events: initial;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown.opened {
      opacity: 1; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 8px 12px;
      color: var(--color-black-deep);
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (max-width: 991.98px) {
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone {
          padding: 0; } }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone::before {
        content: "";
        -ms-flex-negative: 0;
            flex-shrink: 0;
        display: block;
        width: 20px;
        height: 20px;
        margin-right: 5px;
        background-size: contain !important; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone.po-life::before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAN9SURBVHgBlVZbaxRZEP7q9GSzc0k0cQQTsrsui+sKuiz7sCuTSXaNuxtXX7wR8EL0wQdBRbw9+OAdRNCH4JPgD1BEvCsR0eBkJvEGCor44iXGC1EnmLlnxu6yumPa6TiZGevh9Dl1qr6vTp3q6iaUIcwg9LrroSs/vlFp9MWfURuy5fhSUdBQVTsUz5Nlq2hq7D1QXBzvgtUZcO4k/ZXu/yoCjtSshJHbLbOfUDrGQUHpQM5/kOY8yxQl4N1wocW7X7RbUeR0BYXpEWC0UHPqdb5a2ftmSuZWH5ZxmwOcaRcqPD9DaX9ISi6NS0D8C4gi3Fld61DbOKHqDSD98JioTlFzYom9vFFbzbnsYwL7xyWC6kQwPp/EyD4BRyZIrvU9YyxzUB86HNHMHowR6A6KijEPPRPW2nSWysBmOctolQxL5PuhfA0UzHTnu1p3RJiBUmLktlgpN4PingY3jKHHYKPOuiiXWkWB2C0xcCHi64DOT6G5j0n+J4PSO8RuyRg4qRwKC/00mf+Qp/+fmpKdCrnYLAscdBVZClrgYX8Vun2X5ebXyRkPgdMvgeS9L8AJDySo76kp8S8oKTh05PNxecFIiqrUgFiehqba6J94VG6GDGSlmrgFpYT0dVIEb61pEHGkscuEHtlUVipd9Pv7Pnkutp0iNSuUkV1dHJiuSYTnEHDeEYYSUXi8uokLUt9ZBPn7sa46P4zYvnGBWV2Q8QA1xSMF9+u8y21MxfoXBFXacLs8phZwfSMv2kZqjB23eLqmfgstulfSuAaKrgvxRSmd6czGevvFMownDgKrrCLZ9tEM5kV9E6hcRI3vrBbAtyunIxM9LwjTRoB4oQwLzamz7+ChdRBbcXPKDFH+6rShswNpz1xq/gQe8c3EcEW3DV5MNOp0EuipH83eYK9J9ZI2cdmU1oGkuUyG/fUSrVm6k1FaniOQ6HISMGt5Bn1I6Usp8CI9qvBw5oQ86lGWaNsdvciS3KTQp97+QVKwif5LvbK5ze8DuLE8cLqCYOyYvcrf4uveWXAZPmpM9zr0Ye99iWcmSoM/RApzqDXxpiBBIeHwxN/ks3gXJYV6oFW2USD6Ml+rSvoZPLvYNjNnZNgJd+LvseAWLUoIhzx18pKdkkb3p21vgippFzpCqNCOSoMcHM+/7O8ud9U2gIcnwa0PoT/TL78tejl+HwH/c1proOHRyAAAAABJRU5ErkJggg==") center no-repeat; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone.po-kyivstar::before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHSSURBVHgB7VRNLANREP5mtSVObhJxaOLCyc9dUgecCHe06ycuEuIgQeInRHDRq0htK3F14OTiNyFuEglxw8mRNBK0dsxu27XRrbZCIviSN/vevJn5JjszD/hR0Lge2lNlPi5KzpYhrgZhH+S5MIm+nEBBrUhKnipyd/tm/BNkhcuUGpcI1Rh03eDcgkqHDrZX1k6PXztGW36oQ1FxC2KxUhS4xyTOXaIrVp7G4fbMWoaEMzCOEcc6eunA0ofi7dD5Hn3uHUunsU+kT3z88vVa+tjzKPoK58kyIuzgrQ3t2EKAWuEE7UUDKYE0PXMUz4+N6C8+SdRApT2EGzyStSor8s68CZlASttbUHNtixxAlMqN4KaJo6NvygX/ZIfsasDxTXTbfokda9wsQdtlHcnaNP45/iBWXyII83myWxLQuE10t1LkYDb3jwdtjYegKF2yq0q2YQpGcUulyIMIx0Y+R6CxFzqWbJaLttugDGU0sXUtIMK1+RGEuEwy3rXOjCl00YV1VukUrAdt9xvma5AzgYI5pKaSeU8CTqfZ9Lgn5DKVhFcSWnIO5QRCZzIzeXNIRSYQBUSmej+QOwFjRuQljGKqdIVM8NONOWjAqdRkGL8Sr1EPkd9WgV8cAAAAAElFTkSuQmCC") center no-repeat; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone.po-vodafone::before {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKkSURBVHgBpZZLaBRBEIb/nQTRoCB5ETcbsyjRgxAVHyBRFDEKKgqCFy+CF0/xKIgGfEAu3gVFBS+C4kVExEO8RJQNGhKQgA8SzfoAH3gQRbNx1q93ZsLOTM8+8Iemu6u7/qqpqq7dlKrgg9SVkjazXOVK2QbJnZNmitIY68lOKV9Jv7ECcR/ToCNtg6zJyFir6M3jjE7W3R+ldgzfy0gTqgUvpMWfpFsYcFEuBoP9T8alKUjNPe5kGVPBOetr09LCKF+qfPNeakGQY6wsl+Ppk0XSkWbpnU/ehuw5y64I3wS6/cukL4HACRZI0myeWshvEOe+gNyXHbeQG6zlbISkNMcMkLghpp6Iwt20dMxCdFDJWE3yz4YMYHE7lo8q7HmecYIvci0kVxnPlIwBv0g8Aw2e9yFAfIXQzNi0+arLjE040K+y0EX0z5Xmz1LHXClvIRRQTmPgq6rgm5T5Q9xZZiNHP2YJl1OQ9lv0crWQG7RQfH7So1iyQNpiQtQbPUHhpeoA4RqWxSF4eo2B7uhBqqyOawH3/zI9thwtNwZci+V21Y8YjyF3sP5WcY+2qk6kSpGKWcwbI5OW+z1U1zrVCFpMhq/eGJVDPuo0eQmKOUTpXixGelUSeEcDindm09ZfOUvpiGzGLHq7eBwXVAV00kM4cjIqx7MRmtXr0kumBAYT9E/z5K+bEEQPIG2E/AzLmzZFOE/5hjzg7X2U9touIy9wcZh5lHnWr++dzK22+9y5Q8s+HDKAp60o5VBaof/DNHndQOi/m818uzatgaTskaVs6yEnNLsD8pABA5LyhmkHX/FQdQKd27/pPT7HPBLLkJAdwPoQimtUATymHE3tfJv0IOX9J1BNBgLwrdlf0j6I1jeUIikXFn7fNc7+UYdX5on4B/9KufeiyIeAAAAAAElFTkSuQmCC") center no-repeat; }
      @media (any-hover: hover) {
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone:hover, #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone:focus {
          color: var(--color-red-accent); } }

#page-header .nav-languages-dropdown-wrap {
  position: relative;
  z-index: 10; }
  #page-header .nav-languages-dropdown-wrap .current-language {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    padding-right: 0;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    border: none;
    border-radius: 0;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      #page-header .nav-languages-dropdown-wrap .current-language:hover {
        color: var(--color-red-accent); } }
    #page-header .nav-languages-dropdown-wrap .current-language.active .icon {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
    #page-header .nav-languages-dropdown-wrap .current-language .icon {
      cursor: pointer;
      width: 10px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      height: 10px;
      color: var(--color-red-accent);
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
      #page-header .nav-languages-dropdown-wrap .current-language .icon.active {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
    @media (max-width: 991.98px) {
      #page-header .nav-languages-dropdown-wrap .current-language {
        min-height: 44px;
        padding: 8px 10px;
        border: 1px solid var(--color-red-accent);
        border-radius: 50px; } }
  #page-header .nav-languages-dropdown-wrap .nav-languages {
    display: none;
    visibility: hidden;
    position: absolute;
    opacity: 0;
    z-index: 1;
    top: 100%;
    left: 0;
    right: 0;
    gap: 2px;
    padding: 2px;
    background: var(--white-color);
    -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    #page-header .nav-languages-dropdown-wrap .nav-languages.opened, #page-header .nav-languages-dropdown-wrap .nav-languages.show {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      visibility: visible; }
    #page-header .nav-languages-dropdown-wrap .nav-languages.opened {
      opacity: 1; }
  #page-header .nav-languages-dropdown-wrap .nav-languages-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: var(--color-black);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 100%;
    height: 32px;
    background: var(--white-color); }
    #page-header .nav-languages-dropdown-wrap .nav-languages-link:focus {
      background: var(--color-red-accent);
      color: var(--white-color); }
    @media (pointer: fine) {
      #page-header .nav-languages-dropdown-wrap .nav-languages-link:hover {
        background: var(--color-red-accent);
        color: var(--white-color); } }

#page-header .nav-languages-inline-wrap .nav-languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px; }

#page-header .nav-languages-inline-wrap .nav-languages-item {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px; }

#page-header .nav-languages-inline-wrap .nav-languages-link {
  color: var(--color-black); }

#page-header .nav-languages-inline-wrap .nav-languages-active {
  color: var(--color-red-accent);
  font-weight: 700;
  cursor: default; }

#page-footer {
  border-radius: 48px 48px 0 0;
  background: var(--color-blue-dark); }
  @media (max-width: 991.98px) {
    #page-footer {
      border-radius: 24px 24px 0 0; } }
  #page-footer .footer-top {
    padding-top: 48px;
    padding-bottom: 40px; }
    @media (max-width: 991.98px) {
      #page-footer .footer-top {
        padding-bottom: 20px; } }
  #page-footer .logo-wrap {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    #page-footer .logo-wrap img {
      width: auto;
      height: 132px; }
      @media (max-width: 1199.98px) {
        #page-footer .logo-wrap img {
          height: 100px; } }
      @media (max-width: 991.98px) {
        #page-footer .logo-wrap img {
          height: 49px; } }
    @media (max-width: 991.98px) {
      #page-footer .logo-wrap {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12); } }
  #page-footer .footer-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 24% 19% 23.9% 1fr;
    grid-template-columns: 24% 19% 23.9% 1fr;
    gap: 40px; }
    @media (max-width: 1199.98px) {
      #page-footer .footer-row {
        -ms-grid-columns: 16% 18% 23% 1fr;
        grid-template-columns: 16% 18% 23% 1fr;
        gap: 30px; } }
    @media (max-width: 991.98px) {
      #page-footer .footer-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 20px; } }
  @media (min-width: 992px) {
    #page-footer .footer-nav {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 20px; } }
  @media (max-width: 991.98px) {
    #page-footer .footer-nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 12px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
      #page-footer .footer-nav.footer-nav-categories {
        row-gap: 20px; } }
  #page-footer .footer-nav .nav-link {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    padding: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      #page-footer .footer-nav .nav-link:hover {
        color: var(--color-red-accent); } }
  #page-footer .footer-nav .icon-wrapper {
    display: none; }
  #page-footer .contacts-block .contacts-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
    #page-footer .contacts-block .contacts-info.phones-main .info-content {
      color: var(--color-gray-light); }
      @media (max-width: 991.98px) {
        #page-footer .contacts-block .contacts-info.phones-main .info-content {
          margin-left: 0;
          margin-top: 4px; } }
  #page-footer .contacts-block .info-icon {
    display: none; }
  #page-footer .contacts-block .info-title {
    color: var(--color-gray-light); }
  #page-footer .contacts-block .info-phone-main {
    color: var(--white-color); }
    #page-footer .contacts-block .info-phone-main a {
      color: var(--white-color);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        #page-footer .contacts-block .info-phone-main a:hover {
          color: var(--color-red-accent); } }
    @media (pointer: fine) {
      #page-footer .contacts-block .info-phone-main:hover {
        color: var(--color-red-accent); } }
  #page-footer .contacts-block .info-content {
    color: var(--white-color); }
    #page-footer .contacts-block .info-content a {
      color: var(--white-color); }
      @media (any-hover: hover) {
        #page-footer .contacts-block .info-content a:hover, #page-footer .contacts-block .info-content a:focus {
          text-decoration: none;
          color: var(--color-red-accent); } }
  #page-footer .footer-bottom .footer-bottom-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    padding-bottom: 24px; }
  #page-footer .copyright {
    color: var(--color-gray-steel);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 991.98px) {
      #page-footer .copyright {
        font-size: 12px;
        line-height: 16px; } }
  #page-footer .fenix-copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px; }
    @media (max-width: 991.98px) {
      #page-footer .fenix-copyright {
        gap: 4px; } }
    #page-footer .fenix-copyright .text {
      max-width: 64px;
      color: var(--color-gray-steel);
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      text-decoration: none;
      -webkit-transition: 0.5s ease;
      transition: 0.5s ease; }
      @media (max-width: 991.98px) {
        #page-footer .fenix-copyright .text {
          max-width: 55px;
          font-size: 12px;
          line-height: 16px; } }
    #page-footer .fenix-copyright img {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 86px;
      height: 32px;
      -o-object-fit: scale-down;
         object-fit: scale-down;
      -webkit-filter: invert(100%);
              filter: invert(100%); }
      @media (max-width: 991.98px) {
        #page-footer .fenix-copyright img {
          width: 53px;
          height: 20px; } }
    #page-footer .fenix-copyright svg {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 86px;
      height: 32px;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: 0.5s ease;
      transition: 0.5s ease; }
      #page-footer .fenix-copyright svg path {
        fill: var(--color-gray-steel); }
      @media (max-width: 991.98px) {
        #page-footer .fenix-copyright svg {
          width: 65px;
          height: 24px; } }
    #page-footer .fenix-copyright:focus svg {
      -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
              transform: scale(1.1); }
    @media (pointer: fine) {
      #page-footer .fenix-copyright:hover .text {
        color: var(--white-color); }
      #page-footer .fenix-copyright:hover svg {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1); } }
  @media (any-hover: hover) {
    #page-footer .socials-wrap .social-link:hover svg path {
      fill: var(--color-red-accent); } }
  #page-footer .socials-wrap .social-link svg path,
  #page-footer .socials-wrap .social-link .ic path {
    fill: var(--white-color);
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease; }

.form-style-box {
  width: 100%;
  padding: 32px;
  border-radius: 24px;
  background-color: var(--bg); }
  @media (max-width: 991.98px) {
    .form-style-box {
      padding: 24px 16px 16px 16px;
      border-radius: 16px; } }

.form-style input:-webkit-autofill,
.form-style input:-webkit-autofill:hover,
.form-style input:-webkit-autofill:focus,
.form-style textarea:-webkit-autofill,
.form-style textarea:-webkit-autofill:hover,
.form-style textarea:-webkit-autofill:focus,
.form-style select:-webkit-autofill,
.form-style select:-webkit-autofill:hover,
.form-style select:-webkit-autofill:focus {
  color: var(--color-black-deep) !important;
  -webkit-text-fill-color: var(--color-black-deep);
  -webkit-box-shadow: 0 0 0 1000px var(--white-color) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s; }

.form-style .form-title {
  color: var(--color-black-deep);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  text-align: center; }
  .form-style .form-title:not(:last-child) {
    margin-bottom: 8px; }
  @media (max-width: 991.98px) {
    .form-style .form-title {
      font-size: 18px;
      line-height: 20px; } }

.form-style .form-note {
  color: var(--color-gray-steel);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; }
  .form-style .form-note:not(:last-child) {
    margin-bottom: 20px; }
  @media (max-width: 991.98px) {
    .form-style .form-note {
      font-size: 12px;
      line-height: 16px; }
      .form-style .form-note:not(:last-child) {
        margin-bottom: 10px; } }

.form-style .form-alert {
  margin-bottom: 10px; }

.form-style .form-group {
  position: relative; }

@media (min-width: 1200px) {
  .form-style .form-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; } }

@media (max-width: 1199.98px) {
  .form-style .form-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px; } }

.form-style .form-wrap .form-group:not(:last-child) {
  margin-bottom: 0; }

.form-style .form-group:not(:last-child),
.form-style .form-row-group:not(:last-child) {
  margin-bottom: 20px; }

.form-style .form-label {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px; }
  @media (max-width: 1199.98px) {
    .form-style .form-label {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 6px; } }

.form-style .required {
  color: red;
  font-weight: normal; }

.form-style .form-control:not(.jq-selectbox) {
  color: var(--color-black-deep);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  min-height: 48px;
  padding: 4px 20px;
  background: var(--white-color);
  border: 1px solid var(--white-color);
  border-radius: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  caret-color: var(--color-black-deep); }
  .form-style .form-control:not(.jq-selectbox)::-webkit-input-placeholder {
    color: var(--color-gray-steel); }
  .form-style .form-control:not(.jq-selectbox)::-moz-placeholder {
    color: var(--color-gray-steel); }
  .form-style .form-control:not(.jq-selectbox):-ms-input-placeholder {
    color: var(--color-gray-steel); }
  .form-style .form-control:not(.jq-selectbox)::-ms-input-placeholder {
    color: var(--color-gray-steel); }
  .form-style .form-control:not(.jq-selectbox)::placeholder {
    color: var(--color-gray-steel); }
  .form-style .form-control:not(.jq-selectbox):focus {
    -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1); }
  .form-style .form-control:not(.jq-selectbox).form-control-error {
    border-color: red; }
  @media (max-width: 991.98px) {
    .form-style .form-control:not(.jq-selectbox) {
      min-height: 44px;
      border-radius: 10px; } }

.form-style textarea.form-control {
  height: 96px;
  resize: none;
  padding: 12px 20px !important; }
  @media (max-width: 991.98px) {
    .form-style textarea.form-control {
      height: 150px; } }

.form-style .form-error {
  display: block;
  margin: 0;
  padding: 2px 0;
  color: red;
  font-size: 12px; }

.form-style .btn-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px auto 0; }
  @media (max-width: 991.98px) {
    .form-style .btn-main {
      margin-top: 10px;
      width: 100%;
      font-size: 14px;
      line-height: 20px; } }

.form-style a {
  color: var(--color-red-accent);
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .form-style a:focus, .form-style a.current, .form-style a.active {
    text-decoration: none; }
  @media (pointer: fine) {
    .form-style a:hover {
      text-decoration: none; } }

.form-style .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.form-style .iti--separate-dial-code .iti__selected-flag,
.form-style .iti__country.iti__highlight {
  background-color: transparent !important; }

.form-style .iti {
  position: relative;
  z-index: 1;
  width: 100%; }
  .form-style .iti .iti__selected-flag {
    position: absolute;
    top: -48px;
    left: 0;
    padding: 0 6px 0 24px;
    height: 48px; }
  .form-style .iti .iti__flag {
    scale: 1.333;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: unset; }
  .form-style .iti .iti__arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff; }
  .form-style .iti .iti__arrow--up {
    border-top: none;
    border-bottom: 6px solid #ffffff; }
  .form-style .iti.iti--allow-dropdown .iti__flag-container,
  .form-style .iti.iti--separate-dial-code .iti__flag-container {
    right: 0;
    left: 0;
    top: 100%; }
  .form-style .iti .iti__flag-box {
    margin-right: 15px; }
  .form-style .iti .iti__selected-dial-code {
    font-size: 16px;
    margin-left: 14px; }
  .form-style .iti .iti--separate-dial-code .iti__selected-dial-code, .form-style .iti .iti__arrow {
    margin-left: 11px; }
  .form-style .iti .form-control.input-tel {
    padding-left: 130px !important; }
  .form-style .iti .iti__country-list {
    width: 100%;
    z-index: -1;
    background-color: #171717;
    border: 2px solid rgba(17, 202, 190, 0.23);
    border-radius: 0 0 0 24px;
    padding: 14px;
    padding-top: 24px;
    margin-top: -24px;
    white-space: normal; }

.form-style .jq-selectbox.form-control {
  height: 48px;
  background: transparent; }
  .form-style .jq-selectbox.form-control.opened .jq-selectbox__trigger {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  .form-style .jq-selectbox.form-control .jq-selectbox__select {
    height: 48px;
    min-height: 48px;
    width: 100%;
    padding: 4px 40px 4px 20px;
    background: var(--white-color);
    border: none;
    border-radius: 16px;
    color: var(--color-black-deep);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    .form-style .jq-selectbox.form-control .jq-selectbox__select .jq-selectbox__select-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%; }
  .form-style .jq-selectbox.form-control .jq-selectbox__trigger {
    right: 16px;
    width: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .form-style .jq-selectbox.form-control .jq-selectbox__trigger-arrow {
    margin-top: 0;
    width: 10px;
    height: 10px;
    color: var(--color-red-accent);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M8.63441 3.74408C8.94684 3.41864 9.45326 3.41864 9.76568 3.74408C10.0781 4.06953 10.0781 4.59705 9.76568 4.9225L6.56563 8.25592C6.25321 8.58136 5.74679 8.58136 5.43437 8.25592L2.23432 4.9225C1.92189 4.59705 1.92189 4.06953 2.23432 3.74408C2.54674 3.41864 3.05316 3.41864 3.36559 3.74408L6 6.48829L8.63441 3.74408Z" fill="%23E46218"/></svg>') center no-repeat; }
  .form-style .jq-selectbox.form-control .jq-selectbox__dropdown {
    top: calc(100% + 2px) !important;
    border-radius: 12px;
    min-width: 250px;
    left: auto !important;
    border: 1px solid var(--outline);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03); }
    .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul {
      padding: 6px;
      border-radius: 12px; }
      @media (min-width: 992px) {
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul, .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul * {
          scrollbar-color: auto;
          scrollbar-width: auto; }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul::-webkit-scrollbar,
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul *::-webkit-scrollbar {
          width: 3px;
          height: 3px; }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul::-webkit-scrollbar-button,
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul *::-webkit-scrollbar-button {
          display: none; }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul::-webkit-scrollbar-track,
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul *::-webkit-scrollbar-track {
          background: #e7e7e7; }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul::-webkit-scrollbar-track-piece,
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul *::-webkit-scrollbar-track-piece {
          background: #e7e7e7; }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul::-webkit-scrollbar-thumb,
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul *::-webkit-scrollbar-thumb {
          background: #c3161a;
          border-radius: 99px; }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul::-webkit-scrollbar-corner,
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul *::-webkit-scrollbar-corner {
          background: #e7e7e7; } }
      .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul li {
        border-radius: 6px;
        padding: 12px 16px;
        font-size: 16px;
        color: var(--black-color);
        font-family: "FixelDisplay", sans-serif; }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul li:not(:last-child) {
          margin-bottom: 2px; }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul li.selected, .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul li.sel {
          background: var(--color-red-accent);
          color: var(--white); }
        .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul li.disabled {
          background: var(--color-red-accent);
          display: none; }
        @media (any-hover: hover) {
          .form-style .jq-selectbox.form-control .jq-selectbox__dropdown ul li:hover {
            background: var(--color-red-accent);
            color: var(--white); } }

.form-style .btn + .custom-checkbox {
  margin-top: 20px; }

.form-style .custom-checkbox {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 8px;
  margin: 0;
  /*input[type="checkbox"]:focus ~ .checkbox {
            box-shadow: 0 0 0 0.25rem fade(var(--white-color), 40%);
        }*/ }
  .form-style .custom-checkbox input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; }
  .form-style .custom-checkbox .checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border-radius: 3px;
    background: transparent;
    border: 1px solid; }
  .form-style .custom-checkbox .text {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%; }
  .form-style .custom-checkbox .form-error {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3; }
  .form-style .custom-checkbox input[type="checkbox"]:checked ~ .checkbox {
    background-repeat: no-repeat;
    background-position: center;
    border-color: var(--theme-color-main);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.66667 7L9 1' stroke='%23D050E5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.form-style .form-group.confirm-group {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  padding-left: 20px; }
  .form-style .form-group.confirm-group a {
    text-decoration: underline; }
  @media (max-width: 991.98px) {
    .form-style .form-group.confirm-group {
      padding-left: 0;
      font-size: 12px;
      line-height: 150%; } }

.iti-mobile .iti--container {
  z-index: 199992;
  inset: 21px; }
  .iti-mobile .iti--container .iti__country-list {
    width: 100%;
    z-index: -1;
    background-color: #171717;
    border: 2px solid rgba(17, 202, 190, 0.23);
    border-radius: 16px;
    padding: 14px;
    white-space: normal; }

.form-style-popup {
  width: 100%; }

.fancybox-container.form-popup .fancybox-content {
  width: 100%;
  background: var(--white-color);
  padding: 32px;
  border-radius: 24px;
  background-color: var(--bg);
  max-width: 520px; }
  .fancybox-container.form-popup .fancybox-content:has(.form-resume) {
    max-width: 640px; }
  @media (max-width: 991.98px) {
    .fancybox-container.form-popup .fancybox-content {
      padding: 44px 16px 20px; } }
  .fancybox-container.form-popup .fancybox-content .form-title {
    text-wrap: balance; }
  .fancybox-container.form-popup .fancybox-content .form-style-box {
    padding: 0; }
  .fancybox-container.form-popup .fancybox-content .form-style .form-label {
    font-size: 14px; }

.fancybox-container.form-popup .modal-close {
  top: 12px;
  right: 12px; }
  @media (max-width: 991.98px) {
    .fancybox-container.form-popup .modal-close {
      top: 8px;
      right: 8px; } }

.auth-form-container {
  max-width: 400px;
  margin: 100px auto; }

.form-style .additional-chose {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem; }

.form-style .login-by-social {
  margin-top: 12px; }
  .form-style .login-by-social .title {
    position: relative;
    text-align: center;
    font-size: 1rem; }
    .form-style .login-by-social .title span {
      position: relative;
      z-index: 2;
      color: #696969;
      background: white;
      padding: 0 10px; }
    .form-style .login-by-social .title:after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      background: #696969;
      height: 1px;
      width: 100%; }
  .form-style .login-by-social .sign-in-socials-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 10px;
    margin-top: 13px; }
    .form-style .login-by-social .sign-in-socials-wrap .btn-sign-in-social {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0px;
              flex: 1 0 0;
      padding: 7px 15px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px;
      text-decoration: none;
      border-radius: 100px;
      border: 1px solid #696969;
      background: var(--white-color); }
      .form-style .login-by-social .sign-in-socials-wrap .btn-sign-in-social .text {
        text-align: center;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.2;
        color: var(--color-black-deep); }

.password-view-wrap {
  position: relative; }
  .password-view-wrap .form-control {
    padding-right: 50px; }
  .password-view-wrap .password-view-toggle {
    position: absolute;
    z-index: 1;
    bottom: 10px;
    right: 10px;
    color: #696969;
    cursor: pointer; }
    .password-view-wrap .password-view-toggle svg.ic {
      width: 20px;
      height: 20px; }
  .password-view-wrap .form-control[type=text] ~ .password-view-toggle {
    color: green; }

body:not(.search-modal-opened) #search-modal,
body:not(.search-modal-opened) .search-modal-overlay {
  visibility: hidden;
  pointer-events: none;
  z-index: -100000;
  opacity: 0; }

body.search-modal-opened {
  overflow: hidden;
  padding-right: var(--scrollbar-width); }
  body.search-modal-opened #page-header .search-form {
    position: relative;
    z-index: 999999999999; }

#search-modal {
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 10000;
  top: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 600px;
  width: 100%;
  border-radius: 24px;
  padding: 20px 14px 24px 24px;
  background: white;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  @media (min-width: 576px) {
    #search-modal .search-modal-header,
    #search-modal .search-form {
      display: none; } }
  @media (max-width: 991.98px) {
    #search-modal {
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); } }
  #search-modal .search-results {
    max-height: calc(100dvh - 210px);
    overflow: auto;
    padding-right: 10px; }
    @media (min-width: 992px) {
      #search-modal .search-results, #search-modal .search-results * {
        scrollbar-color: auto;
        scrollbar-width: auto; }
      #search-modal .search-results::-webkit-scrollbar,
      #search-modal .search-results *::-webkit-scrollbar {
        width: 3px;
        height: 3px; }
      #search-modal .search-results::-webkit-scrollbar-button,
      #search-modal .search-results *::-webkit-scrollbar-button {
        display: none; }
      #search-modal .search-results::-webkit-scrollbar-track,
      #search-modal .search-results *::-webkit-scrollbar-track {
        background: #e7e7e7; }
      #search-modal .search-results::-webkit-scrollbar-track-piece,
      #search-modal .search-results *::-webkit-scrollbar-track-piece {
        background: #e7e7e7; }
      #search-modal .search-results::-webkit-scrollbar-thumb,
      #search-modal .search-results *::-webkit-scrollbar-thumb {
        background: #c3161a;
        border-radius: 99px; }
      #search-modal .search-results::-webkit-scrollbar-corner,
      #search-modal .search-results *::-webkit-scrollbar-corner {
        background: #e7e7e7; } }
  #search-modal.loading .search-results {
    opacity: 0.5;
    pointer-events: none; }
  #search-modal .result-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    color: grey;
    margin-bottom: 8px; }
  #search-modal .result[style*="block"] ~ .result[style*="block"] {
    margin-top: 20px; }
  #search-modal .result-message {
    background: rgba(128, 128, 128, 0.1);
    border-radius: 16px;
    text-align: center;
    padding: 24px;
    font-size: 16px;
    line-height: 24px; }
    #search-modal .result-message > .icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 40px;
      line-height: 1;
      margin: 0 auto 12px; }
    #search-modal .result-message .term-target {
      font-weight: bold; }
    #search-modal .result-message .description {
      margin-bottom: 20px; }
  #search-modal .result-products,
  #search-modal .result-categories,
  #search-modal .result-empty,
  #search-modal .result-start-search {
    display: none; }
  #search-modal .result-products .result-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 14px; }
  #search-modal .product-search-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 96px 1fr minmax(104px, auto);
    grid-template-columns: 96px 1fr minmax(104px, auto);
    grid-column-gap: 16px;
    grid-row-gap: 7px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    color: var(--theme-color-main);
    padding: 16px 0;
    border-bottom: 1px solid #ededed; }
    #search-modal .product-search-card:first-child {
      border-top: 1px solid #ededed; }
    #search-modal .product-search-card .title,
    #search-modal .product-search-card .description {
      -ms-grid-column: 2;
      grid-column: 2; }
    #search-modal .product-search-card img {
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3; }
    #search-modal .product-search-card .price-wrap {
      -ms-grid-column: 3;
      grid-column: 3;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3; }
    #search-modal .product-search-card img {
      border-radius: 12px;
      width: 96px;
      height: 96px;
      -o-object-fit: scale-down;
         object-fit: scale-down;
      padding: 8px; }
    #search-modal .product-search-card .title {
      font-size: 16px;
      line-height: 1.1;
      margin-top: auto; }
    #search-modal .product-search-card .sku {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: auto;
      color: gray; }
    #search-modal .product-search-card .price-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
  #search-modal .result-categories .result-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 7px; }
  #search-modal .category-search-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 32px;
    border-radius: 999px;
    background: white;
    border: 1px solid #ededed;
    color: var(--theme-color-main);
    text-decoration: none;
    padding: 3px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    @media (pointer: fine) {
      #search-modal .category-search-card:hover {
        background: var(--theme-color-main);
        border-color: var(--theme-color-main);
        color: var(--white-color); } }
    #search-modal .category-search-card:focus {
      background: var(--theme-color-main);
      border-color: var(--theme-color-main);
      color: var(--white-color); }
  #search-modal .search-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 18px; }
    #search-modal .search-modal-header .title {
      font-size: 24px;
      line-height: 28px; }
  #search-modal .close-modal {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/svg+xml,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.9741 7.82387C7.20876 8.05852 7.58921 8.05852 7.82387 7.82387C8.05852 7.58921 8.05852 7.20876 7.82387 6.9741L4.84976 4L7.82387 1.0259C8.05852 0.79124 8.05852 0.410788 7.82387 0.176132C7.58921 -0.0585239 7.20876 -0.0585239 6.9741 0.176132L4 3.15024L1.02576 0.175992C0.7911 -0.0586643 0.410649 -0.0586638 0.175993 0.175992C-0.0586632 0.410648 -0.0586638 0.7911 0.175993 1.02576L3.15024 4L0.175992 6.97424C-0.0586643 7.2089 -0.0586637 7.58935 0.175992 7.82401C0.410648 8.05866 0.7911 8.05866 1.02576 7.82401L4 4.84976L6.9741 7.82387Z" fill="%231B1203"/></svg>');
    background-color: rgba(128, 128, 128, 0.1);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    #search-modal .close-modal:after {
      display: none; }
    #search-modal .close-modal:focus {
      background-image: url('data:image/svg+xml,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.9741 7.82387C7.20876 8.05852 7.58921 8.05852 7.82387 7.82387C8.05852 7.58921 8.05852 7.20876 7.82387 6.9741L4.84976 4L7.82387 1.0259C8.05852 0.79124 8.05852 0.410788 7.82387 0.176132C7.58921 -0.0585239 7.20876 -0.0585239 6.9741 0.176132L4 3.15024L1.02576 0.175992C0.7911 -0.0586643 0.410649 -0.0586638 0.175993 0.175992C-0.0586632 0.410648 -0.0586638 0.7911 0.175993 1.02576L3.15024 4L0.175992 6.97424C-0.0586643 7.2089 -0.0586637 7.58935 0.175992 7.82401C0.410648 8.05866 0.7911 8.05866 1.02576 7.82401L4 4.84976L6.9741 7.82387Z" fill="white"/></svg>');
      background-color: var(--theme-color-main);
      -webkit-box-shadow: 0 0 2px 4px rgba(0, 0, 0, 0.4);
              box-shadow: 0 0 2px 4px rgba(0, 0, 0, 0.4); }
  #search-modal .search-form {
    margin-bottom: 20px; }
  #search-modal .search-modal-header {
    display: none; }
  @media (max-width: 575.98px) {
    #search-modal {
      inset: 0;
      border-radius: 0;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      padding: 16px 20px; }
      #search-modal .search-modal-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      #search-modal .result-title {
        margin-bottom: 12px; }
      #search-modal .result-products .result-list {
        margin-top: 12px; }
      #search-modal .result-message {
        font-size: 14px;
        line-height: 20px;
        height: calc(100dvh - 180px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        #search-modal .result-message > .icon {
          font-size: 56px;
          margin-bottom: 16px; }
      #search-modal .search-results {
        padding-right: 0;
        max-height: calc(100dvh - 66px);
        padding-bottom: 20px; }
      #search-modal .product-search-card {
        -ms-grid-columns: 88px 1fr;
        grid-template-columns: 88px 1fr;
        grid-column-gap: 12px; }
        #search-modal .product-search-card img {
          -ms-grid-column: 1;
          grid-column: 1;
          -ms-grid-row: 1;
          -ms-grid-row-span: 3;
          grid-row: 1 / 4;
          -ms-grid-row-align: start;
              align-self: start; }
        #search-modal .product-search-card .price-wrap {
          -ms-grid-column: 2;
          grid-column: 2;
          -ms-grid-row: 3;
          grid-row: 3; }
        #search-modal .product-search-card img {
          width: 88px;
          height: 88px; }
        #search-modal .product-search-card .title {
          line-height: 1.1; }
        #search-modal .product-search-card .price-wrap {
          line-height: 1;
          margin-top: 4px; }
          #search-modal .product-search-card .price-wrap .old-price {
            margin-bottom: 2px; } }

.search-modal-overlay {
  visibility: visible;
  opacity: 1;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer; }

.search-form {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 100px; }
  .search-form input {
    border: 1px solid #ededed;
    border-radius: 100px;
    height: 46px;
    width: 100%;
    padding-left: 19px;
    padding-right: 60px;
    outline: none; }
    .search-form input:focus {
      border-color: var(--theme-color-main); }
  .search-form .btn-search {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 54px;
    height: 100%;
    border: none;
    outline: none;
    background: none; }
    @media (max-width: 991.98px) {
      .search-form .btn-search {
        height: 46px; } }
    .search-form .btn-search .ic {
      color: var(--theme-color-main);
      font-size: 20px; }
  .search-form input:focus ~ .btn-search .ic {
    color: var(--theme-color-main); }

#page-breadcrumbs {
  --gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 12px; }
  @media (max-width: 991.98px) {
    #page-breadcrumbs {
      --gap: 4px;
      margin: 10px 0 20px; } }
  #page-breadcrumbs .breadcrumbs-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap); }
  #page-breadcrumbs .breadcrumb-scroll-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-x: auto;
    overflow-y: hidden;
    direction: rtl;
    position: relative;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    #page-breadcrumbs .breadcrumb-scroll-wrap::-webkit-scrollbar {
      display: none; }
    #page-breadcrumbs .breadcrumb-scroll-wrap.grabbing {
      cursor: -webkit-grabbing;
      cursor: grabbing; }
  #page-breadcrumbs .breadcrumb-inner {
    position: absolute;
    top: 0;
    min-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap);
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    margin: 0;
    direction: ltr; }
  #page-breadcrumbs .breadcrumbs-nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: var(--gap);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 1;
    color: var(--color-black-deep);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; }
    @media (max-width: 991.98px) {
      #page-breadcrumbs .breadcrumbs-nav-item {
        font-size: 12px;
        line-height: 18px; } }
    #page-breadcrumbs .breadcrumbs-nav-item:not(:last-child):after {
      display: inline-block;
      content: "";
      width: 12px;
      height: 12px;
      background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.70029 6.00002C8.70029 6.17924 8.63186 6.35843 8.49529 6.49507L4.19546 10.7949C3.92194 11.0684 3.47847 11.0684 3.20506 10.7949C2.93165 10.5214 2.93165 10.0781 3.20506 9.80452L7.00978 6.00002L3.20519 2.19549C2.93178 1.92197 2.93178 1.47863 3.20519 1.20524C3.4786 0.931587 3.92207 0.931587 4.19559 1.20524L8.49542 5.50496C8.63202 5.64166 8.70029 5.82086 8.70029 6.00002Z' fill='%23C3161A'/%3E%3C/svg%3E%0A") center no-repeat; }
  #page-breadcrumbs a.breadcrumbs-nav-item {
    text-decoration: none; }
    #page-breadcrumbs a.breadcrumbs-nav-item span {
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
    #page-breadcrumbs a.breadcrumbs-nav-item:focus span {
      color: var(--color-red-accent); }
    @media (pointer: fine) {
      #page-breadcrumbs a.breadcrumbs-nav-item:hover span {
        color: var(--color-red-accent); } }
  #page-breadcrumbs .breadcrumbs-nav-item-main {
    color: var(--color-black);
    text-transform: uppercase; }
  #page-breadcrumbs .breadcrumbs-nav-item-last {
    color: var(--color-gray-steel);
    cursor: default; }

.btn,
.btn:focus,
.btn:hover,
button {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none; }

button[disabled] {
  pointer-events: none !important;
  opacity: 0.3 !important; }

a[disabled] {
  pointer-events: none !important;
  opacity: 0.4 !important; }

a:target,
a:active,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  -webkit-filter: none;
          filter: none;
  cursor: pointer; }

button,
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  background-color: transparent;
  text-decoration: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.btn-default,
.btn-main {
  color: var(--white-color);
  border: none;
  padding: 8px 24px;
  min-height: 56px;
  -webkit-box-shadow: inset 0 56px 0 0 var(--color-red-accent);
          box-shadow: inset 0 56px 0 0 var(--color-red-accent); }
  @media (any-hover: hover) {
    .btn-default:hover,
    .btn-main:hover {
      background-color: var(--white-color);
      color: var(--color-red-accent);
      -webkit-box-shadow: inset 0 0 0 1px var(--color-red-accent);
              box-shadow: inset 0 0 0 1px var(--color-red-accent); }
      .btn-default:hover .btn-arrow,
      .btn-main:hover .btn-arrow {
        background-color: var(--color-red-accent); }
        .btn-default:hover .btn-arrow .ic,
        .btn-main:hover .btn-arrow .ic {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg);
          color: var(--white-color); }
      .btn-default:hover .ic,
      .btn-default:hover .icon,
      .btn-main:hover .ic,
      .btn-main:hover .icon {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1); } }
  .btn-default:focus,
  .btn-main:focus {
    color: var(--white-color);
    -webkit-box-shadow: inset 0 56px 0 0 var(--color-red-accent);
            box-shadow: inset 0 56px 0 0 var(--color-red-accent); }
    .btn-default:focus .btn-arrow,
    .btn-main:focus .btn-arrow {
      background-color: var(--white-color); }
      .btn-default:focus .btn-arrow .ic,
      .btn-main:focus .btn-arrow .ic {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        color: var(--color-red-accent); }
  .btn-default .ic,
  .btn-default .icon,
  .btn-main .ic,
  .btn-main .icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  .btn-default .btn-arrow,
  .btn-main .btn-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-color: var(--white-color);
    border-radius: 50%;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
    .btn-default .btn-arrow .ic,
    .btn-main .btn-arrow .ic {
      color: var(--color-black-deep);
      width: 10px;
      height: 10px;
      -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
      transition: color 0.3s ease, -webkit-transform 0.3s ease;
      transition: transform 0.3s ease, color 0.3s ease;
      transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease; }
  .btn-default:not(:has(.ic, .icon, .btn-arrow)),
  .btn-main:not(:has(.ic, .icon, .btn-arrow)) {
    padding: 14px 24px; }

.btn-light {
  color: var(--color-black-deep);
  padding: 16px 32px;
  background-color: var(--white-color); }
  .btn-light .ic {
    width: 24px;
    height: 24px; }
  @media (max-width: 991.98px) {
    .btn-light {
      padding: 10px 24px;
      font-size: 14px; } }

.btn-border {
  color: var(--color-black);
  padding: 12px 24px;
  border: 1px solid var(--color-gray-light);
  background-color: transparent;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  .btn-border .icon-arrow {
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
  @media (pointer: fine) {
    .btn-border:hover {
      background-color: var(--white-color);
      color: var(--color-red-accent);
      border-color: var(--color-red-accent); }
      .btn-border:hover .icon-arrow {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); } }

.btn-border-red {
  color: var(--color-black);
  padding: 12px 24px;
  border: 1px solid var(--color-red-accent);
  background-color: transparent;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  .btn-border-red .btn-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-color: var(--color-red-accent);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--white-color); }
    .btn-border-red .btn-arrow .ic {
      width: 10px;
      height: 10px; }
  @media (pointer: fine) {
    .btn-border-red:hover {
      color: var(--white-color);
      border-color: var(--color-red-accent);
      -webkit-box-shadow: inset 0 48px 0 0 var(--color-red-accent);
              box-shadow: inset 0 48px 0 0 var(--color-red-accent); }
      .btn-border-red:hover .btn-arrow {
        background: var(--white-color);
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        color: var(--color-red-accent); } }
  .btn-border-red:focus {
    color: var(--white-color);
    border-color: var(--color-red-accent);
    -webkit-box-shadow: inset 0 48px 0 0 var(--color-red-accent);
            box-shadow: inset 0 48px 0 0 var(--color-red-accent); }
    .btn-border-red:focus .btn-arrow {
      background: var(--white-color);
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
      color: var(--color-red-accent); }

.btn-yellow {
  color: var(--color-black-deep);
  padding: 16px 32px;
  border: none;
  border-radius: 100px;
  background: #e8e19a;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  @media (pointer: fine) {
    .btn-yellow:hover {
      background-color: var(--white-color); } }

@-webkit-keyframes moveArrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px); }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  75% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px); }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px); } }

@keyframes moveArrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px); }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  75% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px); }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px); } }

.loader-wrap {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }

.loader {
  width: 100px;
  height: 60px;
  position: relative;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .loader span {
    display: block;
    width: 8px;
    height: 40px;
    background-color: var(--color-black-deep); }
    .loader span:not(:last-child) {
      margin-right: 5px; }
    .loader span:nth-child(1) {
      -webkit-animation: loader-grow 1s ease-in-out infinite;
              animation: loader-grow 1s ease-in-out infinite; }
    .loader span:nth-child(2) {
      -webkit-animation: loader-grow 1s ease-in-out 0.15s infinite;
              animation: loader-grow 1s ease-in-out 0.15s infinite; }
    .loader span:nth-child(3) {
      -webkit-animation: loader-grow 1s ease-in-out 0.30s infinite;
              animation: loader-grow 1s ease-in-out 0.30s infinite; }
    .loader span:nth-child(4) {
      -webkit-animation: loader-grow 1s ease-in-out 0.45s infinite;
              animation: loader-grow 1s ease-in-out 0.45s infinite; }

@-webkit-keyframes loader-grow {
  0%, 100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1); }
  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    transform: scaleY(1.8); } }

@keyframes loader-grow {
  0%, 100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1); }
  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    transform: scaleY(1.8); } }

.map-iframe-wrap iframe {
  width: 100%;
  height: 500px; }

#messageDialog {
  padding: 32px;
  border-radius: 24px;
  width: 100%;
  max-width: 480px; }
  @media (max-width: 991.98px) {
    #messageDialog {
      padding: 32px 24px 24px; } }
  #messageDialog:has(.js-cancel-logout) {
    max-width: 438px; }
    #messageDialog:has(.js-cancel-logout) .popup-bg {
      display: none; }
    #messageDialog:has(.js-cancel-logout) .btn {
      min-width: 144px; }
    #messageDialog:has(.js-cancel-logout) .modal-buttons {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 12px; }
  #messageDialog .modal-close {
    top: 12px;
    right: 12px; }
  #messageDialog .popup-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  #messageDialog:has(.image) .popup-bg {
    display: none; }
  #messageDialog .image,
  #messageDialog .popup-bg {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 1/1;
    background: var(--bg); }
    #messageDialog .image::before,
    #messageDialog .popup-bg::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      background: url('data:image/svg+xml,<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.9982 10.0748C19.5959 10.0748 17.2474 10.7872 15.2499 12.1219C13.2524 13.4565 11.6955 15.3536 10.7762 17.5731C9.85682 19.7926 9.61628 22.2349 10.085 24.5911C10.5536 26.9474 11.7105 29.1117 13.4092 30.8104C15.108 32.5092 17.2723 33.666 19.6285 34.1347C21.9848 34.6034 24.4271 34.3628 26.6466 33.4435C28.8661 32.5241 30.7631 30.9673 32.0978 28.9698C33.4325 26.9723 34.1449 24.6238 34.1449 22.2214C34.1414 19.001 32.8605 15.9135 30.5833 13.6363C28.3062 11.3592 25.2186 10.0783 21.9982 10.0748ZM21.9982 25.9548C21.7062 26.2304 21.3198 26.384 20.9182 26.384C20.5167 26.384 20.1303 26.2304 19.8382 25.9548L15.5849 21.7014L17.7582 19.5548L20.9316 22.7281L26.2649 17.3948L28.3849 19.5548L21.9982 25.9548Z" fill="%23C3161A"/><path fill-rule="evenodd" clip-rule="evenodd" d="M42.3318 18.8748C40.9984 16.9281 39.6651 14.8748 39.6651 14.8748C39.6651 14.8748 39.1984 12.4881 38.7318 10.2214C38.4974 9.05366 37.923 7.98127 37.0808 7.13907C36.2386 6.29687 35.1662 5.72247 33.9984 5.48809L29.3318 4.52809L25.3318 1.86142C24.3419 1.21049 23.1831 0.863617 21.9984 0.863617C20.8137 0.863617 19.6549 1.21049 18.6651 1.86142L14.6651 4.52809L9.99843 5.48809C8.83067 5.72247 7.75827 6.29687 6.91608 7.13907C6.07388 7.98127 5.49948 9.05366 5.2651 10.2214C4.79843 12.5014 4.3051 14.9014 4.3051 14.9014C4.3051 14.9014 2.97177 16.9548 1.63843 18.9014C0.987497 19.8913 0.640625 21.0501 0.640625 22.2348C0.640625 23.4195 0.987497 24.5782 1.63843 25.5681C2.97177 27.5148 4.3051 29.5681 4.3051 29.5681C4.3051 29.5681 4.7851 31.9681 5.2651 34.2481C5.50418 35.411 6.08067 36.4776 6.92251 37.3147C7.76435 38.1518 8.83422 38.7222 9.99843 38.9548L14.6784 39.9148L18.6784 42.5814C19.6683 43.2324 20.8271 43.5792 22.0118 43.5792C23.1965 43.5792 24.3553 43.2324 25.3451 42.5814L29.3451 39.9148L33.9984 38.9548C35.1662 38.7204 36.2386 38.146 37.0808 37.3038C37.923 36.4616 38.4974 35.3892 38.7318 34.2214C39.1984 31.9414 39.6918 29.5414 39.6918 29.5414C39.6918 29.5414 41.0251 27.4881 42.3584 25.5414C43.0054 24.549 43.3477 23.3888 43.3429 22.2041C43.3382 21.0194 42.9867 19.862 42.3318 18.8748ZM21.9984 37.4081C18.9948 37.4081 16.0586 36.5174 13.5612 34.8487C11.0637 33.1799 9.11723 30.8081 7.96778 28.0331C6.81834 25.2581 6.51759 22.2046 7.10357 19.2587C7.68955 16.3127 9.13594 13.6067 11.2598 11.4828C13.3837 9.35893 16.0897 7.91255 19.0357 7.32656C21.9816 6.74058 25.0351 7.04133 27.8101 8.19077C30.5851 9.34022 32.957 11.2867 34.6257 13.7842C36.2944 16.2816 37.1851 19.2178 37.1851 22.2214C37.1781 26.247 35.5758 30.1057 32.7292 32.9522C29.8827 35.7988 26.024 37.401 21.9984 37.4081Z" fill="%23C3161A"/></svg>') center no-repeat; }
    #messageDialog .image img,
    #messageDialog .popup-bg img {
      width: 48px;
      height: 48px;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
    #messageDialog .image:not(:last-child),
    #messageDialog .popup-bg:not(:last-child) {
      margin-bottom: 12px; }
  #messageDialog .popup-title {
    color: var(--black-color);
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase; }
    #messageDialog .popup-title:not(:last-child) {
      margin-bottom: 12px; }
  #messageDialog .popup-message {
    color: var(--grey-color);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }

.pagination-wrap {
  margin: 30px 0; }
  .pagination-wrap .load-more {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .pagination-wrap .load-more [disabled] {
      -webkit-animation: load_mode_spinner 2s linear infinite;
              animation: load_mode_spinner 2s linear infinite; }
  @media (max-width: 1199.98px) {
    .pagination-wrap {
      margin: 25px 0; } }
  @media (max-width: 991.98px) {
    .pagination-wrap {
      margin: 20px 0; } }
  @media (max-width: 767.98px) {
    .pagination-wrap {
      margin: 20px 0; }
      .pagination-wrap .load-more {
        padding-bottom: 15px; } }

.pagination {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; }
  .pagination:not(:first-child) {
    margin-top: 20px; }
  .pagination:not(:last-child) {
    margin-bottom: 32px; }
  .pagination ul, .pagination li {
    list-style: none;
    padding: 0;
    margin: 0; }
  .pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px; }
  .pagination li a {
    width: 32px;
    height: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    border: 1px solid transparent;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .pagination li a:hover {
        background: var(--color-red-accent);
        color: var(--white-color); }
        .pagination li a:hover .ic {
          color: var(--white-color); } }
    .pagination li a:focus {
      background: var(--color-red-accent);
      color: var(--white-color); }
      .pagination li a:focus .ic {
        color: var(--white-color); }
    .pagination li a .ic {
      color: var(--color-red-accent);
      width: 12px;
      height: 12px; }
  .pagination li.page-gap span {
    display: inline-block;
    cursor: default;
    -webkit-transform: translateY(24px);
        -ms-transform: translateY(24px);
            transform: translateY(24px);
    letter-spacing: 0.2rem;
    padding: 0 0 0 2px; }
  .pagination li.disabled a {
    pointer-events: none;
    cursor: default; }
  .pagination li.current-link a,
  .pagination li.active a {
    background: var(--color-red-accent);
    color: var(--white-color); }

@-webkit-keyframes load_mode_spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes load_mode_spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@media (min-width: 992px) {
  body, * {
    scrollbar-color: var(--theme-color-main) var(--white-color);
    scrollbar-width: thin; } }

@media (min-width: 992px) {
  .thin-scrollbar, .thin-scrollbar * {
    scrollbar-color: auto;
    scrollbar-width: auto; }
  .thin-scrollbar::-webkit-scrollbar,
  .thin-scrollbar *::-webkit-scrollbar {
    width: 3px;
    height: 3px; }
  .thin-scrollbar::-webkit-scrollbar-button,
  .thin-scrollbar *::-webkit-scrollbar-button {
    display: none; }
  .thin-scrollbar::-webkit-scrollbar-track,
  .thin-scrollbar *::-webkit-scrollbar-track {
    background: #e7e7e7; }
  .thin-scrollbar::-webkit-scrollbar-track-piece,
  .thin-scrollbar *::-webkit-scrollbar-track-piece {
    background: #e7e7e7; }
  .thin-scrollbar::-webkit-scrollbar-thumb,
  .thin-scrollbar *::-webkit-scrollbar-thumb {
    background: #c3161a;
    border-radius: 99px; }
  .thin-scrollbar::-webkit-scrollbar-corner,
  .thin-scrollbar *::-webkit-scrollbar-corner {
    background: #e7e7e7; } }

@-moz-document url-prefix() {
  @media (min-width: 992px) {
    body,
    *,
    .thin-scrollbar,
    .thin-scrollbar * {
      scrollbar-color: black #f2f2f2 !important;
      scrollbar-width: thin !important; } } }

.section:not(:last-child) {
  margin-bottom: 48px; }
  @media (max-width: 991.98px) {
    .section:not(:last-child) {
      margin-bottom: 40px; } }

.section-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 24px; }
  .section-title--light {
    color: var(--white-color); }
  @media (max-width: 991.98px) {
    .section-title {
      font-size: 24px;
      line-height: 28px;
      margin-bottom: 16px; } }

.page-title {
  color: var(--color-black);
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 16px; }
  @media (max-width: 991.98px) {
    .page-title {
      font-size: 32px;
      line-height: 36px;
      letter-spacing: normal; } }

.title {
  color: var(--color-black);
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase; }
  .title:not(:last-child) {
    margin-bottom: 26px; }
  @media (max-width: 991.98px) {
    .title {
      font-size: 16px;
      line-height: 1.25; }
      .title:not(:last-child) {
        margin-bottom: 16px; } }

.subtitle {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.04em;
  text-transform: uppercase; }
  .subtitle:not(:last-child) {
    margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .subtitle:not(:last-child) {
        margin-bottom: 14px; } }

.text-scroll {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: unset;
  padding-right: 5px; }
  @media (min-width: 992px) {
    .text-scroll, .text-scroll * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    .text-scroll::-webkit-scrollbar,
    .text-scroll *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    .text-scroll::-webkit-scrollbar-button,
    .text-scroll *::-webkit-scrollbar-button {
      display: none; }
    .text-scroll::-webkit-scrollbar-track,
    .text-scroll *::-webkit-scrollbar-track {
      background: #e7e7e7; }
    .text-scroll::-webkit-scrollbar-track-piece,
    .text-scroll *::-webkit-scrollbar-track-piece {
      background: #e7e7e7; }
    .text-scroll::-webkit-scrollbar-thumb,
    .text-scroll *::-webkit-scrollbar-thumb {
      background: #c3161a;
      border-radius: 99px; }
    .text-scroll::-webkit-scrollbar-corner,
    .text-scroll *::-webkit-scrollbar-corner {
      background: #e7e7e7; } }

.text-formatted {
  --br: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "FixelDisplay", sans-serif; }
  .text-formatted:after {
    content: "";
    display: block;
    clear: both; }
  @media (max-width: 991.98px) {
    .text-formatted {
      font-size: 14px;
      line-height: 20px; } }
  .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) {
    margin-top: 32px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.2; }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title):first-child {
      margin-top: 0; }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title):last-child {
      margin-bottom: 0; }
    @media (max-width: 991.98px) {
      .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title):not(:first-child) {
        margin-top: 16px; }
      .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title):not(:last-child) {
        margin-bottom: 16px; } }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + :not(h1):not(.h1):not(h2):not(.h2):not(h3):not(.h3):not(h4):not(.h4):not(h5):not(.h5):not(.text-title):not(.text-sub-title) {
      margin-top: 10px; }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h1, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h1, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h2, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h2, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h3, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h3, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h4, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h4, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + h5, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .h5, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .text-title, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, .text-title, .text-sub-title) + .text-sub-title {
      margin-top: 10px; }
  .text-formatted h1, .text-formatted .h1 {
    font-size: 48px;
    letter-spacing: -1.92px;
    text-transform: uppercase; }
  .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
    font-size: 32px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
        font-size: 28px; } }
    @media (max-width: 575.98px) {
      .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
        font-size: 24px; } }
  .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
    font-size: 18px; }
    @media (max-width: 575.98px) {
      .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
        font-size: 16px; } }
  .text-formatted h4, .text-formatted .h4 {
    font-size: 16px; }
  .text-formatted a,
  .text-formatted [js-href] {
    position: relative;
    line-height: normal;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    text-decoration: underline; }
    @media (pointer: fine) {
      .text-formatted a:hover,
      .text-formatted [js-href]:hover {
        text-shadow: 0 0 0;
        text-decoration: none; } }
  .text-formatted ul, .text-formatted ol, .text-formatted p, .text-formatted blockquote {
    margin-bottom: 16px; }
  .text-formatted p {
    position: relative; }
    .text-formatted p:empty {
      display: none; }
  .text-formatted hr {
    border: none;
    border-bottom: 2px solid;
    opacity: 1;
    margin: 1.5em 0; }
  .text-formatted blockquote {
    padding-left: 20px;
    border-left: 4px solid var(--color-red-accent);
    color: var(--color-black);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    text-wrap: balance; }
    .text-formatted blockquote p:not(:last-child) {
      margin-bottom: 16px; }
    .text-formatted blockquote:not(:last-child) {
      margin-bottom: 48px; }
    @media (max-width: 991.98px) {
      .text-formatted blockquote {
        font-size: 16px;
        border-width: 2px;
        padding-left: 12px; }
        .text-formatted blockquote:not(:last-child) {
          margin-bottom: 20px; } }
    .text-formatted blockquote > *:last-child {
      margin-bottom: 0; }
  .text-formatted img {
    max-width: 100%;
    height: auto !important;
    margin: 3.1em auto 2.9em;
    border-radius: var(--br);
    vertical-align: unset; }
    .text-formatted img.image-style-align-left, .text-formatted img[style*="float:left"], .text-formatted img[style*="float: left"] {
      margin: 0 1.5rem 0 0; }
    .text-formatted img.image-style-align-right, .text-formatted img[style*="float:right"], .text-formatted img[style*="float: right"] {
      margin: 0 0 0 1.5rem; }
    .text-formatted img:not([style*="float"]):not(.image-style-align-left):not(.image-style-align-right) {
      display: block; }
    .text-formatted img.image-style-align-center {
      display: block;
      margin: 0 auto; }
    .text-formatted img.image-style-align-left {
      float: left; }
    .text-formatted img.image-style-align-right {
      float: right; }
    .text-formatted img.image_resized {
      max-width: 100%;
      height: auto; }
    @media (max-width: 575.98px) {
      .text-formatted img {
        margin: 1.9em auto 3em; }
        .text-formatted img.image-style-align-left, .text-formatted img[style*="float:left"], .text-formatted img[style*="float: left"] {
          margin: 0 1.5rem 0 0; }
        .text-formatted img.image-style-align-right, .text-formatted img[style*="float:right"], .text-formatted img[style*="float: right"] {
          margin: 0 0 0 1.5rem; } }
  .text-formatted figure.image {
    position: relative;
    max-width: 100%;
    margin: 10px 0 24px; }
    .text-formatted figure.image img {
      display: block;
      margin: auto; }
    .text-formatted figure.image figcaption {
      font-size: 1rem;
      color: #555555;
      text-align: center;
      margin-top: 10px;
      font-style: italic;
      padding: 0 10px; }
  .text-formatted ul:not(.list),
  .text-formatted ol:not(.list) {
    padding-left: 0; }
    .text-formatted ul:not(.list) li,
    .text-formatted ol:not(.list) li {
      margin-bottom: 0.4em; }
    .text-formatted ul:not(.list) ul, .text-formatted ul:not(.list) ol,
    .text-formatted ol:not(.list) ul,
    .text-formatted ol:not(.list) ol {
      margin-top: 0.6em;
      margin-left: 1.3em; }
  .text-formatted ol:not(.list) {
    list-style-position: inside;
    list-style-type: none;
    counter-reset: step-counter; }
    .text-formatted ol:not(.list) > li {
      position: relative;
      list-style-type: none;
      counter-increment: step-counter; }
      .text-formatted ol:not(.list) > li:before {
        content: counters(step-counter, ".", decimal-leading-zero) ".";
        display: inline-block;
        min-width: 0.75em;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        font-size: 1em;
        margin-right: 0.4em;
        font-weight: bold; }
    .text-formatted ol:not(.list) ol li:before {
      content: counters(step-counter, ".") "."; }
  .text-formatted ul:not(.list) > li {
    position: relative;
    list-style-type: none;
    padding-left: 1.5em; }
    .text-formatted ul:not(.list) > li:before {
      position: absolute;
      left: 0;
      content: "●";
      display: inline-block;
      min-width: 0.9em;
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease;
      margin-right: 0.4em; }
  .text-formatted ul:not(.list)[style*="list-style-type:square"] > li:before, .text-formatted ul:not(.list)[style*="list-style-type: square"] > li:before {
    content: "■"; }
  .text-formatted ul:not(.list)[style*="list-style-type:disc"] > li:before, .text-formatted ul:not(.list)[style*="list-style-type: disc"] > li:before {
    content: "●"; }
  .text-formatted ul:not(.list)[style*="list-style-type:circle"] > li:before, .text-formatted ul:not(.list)[style*="list-style-type: circle"] > li:before {
    content: "○"; }
  .text-formatted .table-wrap {
    max-width: 100%;
    overflow: auto;
    margin: 1.2em 0; }
    .text-formatted .table-wrap table {
      margin: 0; }
  .text-formatted table {
    min-width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    margin: 1.2em 0; }
    .text-formatted table thead tr {
      background: var(--color-black-deep);
      color: var(--white-color); }
    .text-formatted table tbody:first-child tr:nth-child(odd),
    .text-formatted table thead + tbody tr:nth-child(even) {
      background: #ececec; }
    .text-formatted table th,
    .text-formatted table td {
      padding: 15px 15px;
      text-align: left;
      border: none; }
    .text-formatted table thead td,
    .text-formatted table th {
      text-align: center;
      font-weight: bold; }
    .text-formatted table tfoot td {
      font-weight: bold; }
  .text-formatted > *:last-child {
    margin-bottom: 0; }

section.main-slider-section {
  padding-top: 16px;
  padding-bottom: 0; }

.main-slider-section {
  margin-bottom: 80px; }
  .main-slider-section .main-slider-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 991.98px) {
      .main-slider-section .main-slider-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 16px; } }
  .main-slider-section .main-slider {
    width: calc(100% - 340px); }
    @media (max-width: 1199.98px) {
      .main-slider-section .main-slider {
        width: calc(100% - 300px); } }
    @media (max-width: 991.98px) {
      .main-slider-section .main-slider {
        width: 100%;
        padding-bottom: 20px; } }
    .main-slider-section .main-slider:not(.swiper-initialized) .swiper-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      overflow: hidden; }
    .main-slider-section .main-slider:not(.swiper-initialized) .swiper-slide {
      min-width: 100%;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; }
    .main-slider-section .main-slider:not(.swiper-initialized) .swiper-pagination,
    .main-slider-section .main-slider:not(.swiper-initialized) .swiper-button-prev,
    .main-slider-section .main-slider:not(.swiper-initialized) .swiper-button-next,
    .main-slider-section .main-slider:not(.swiper-initialized) .main-slider-nav {
      display: none; }
  .main-slider-section .main-slider-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto !important; }
  .main-slider-section .main-slider-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .main-slider-section .main-slider-link:hover, .main-slider-section .main-slider-link:focus {
      text-decoration: none; }
  .main-slider-section .main-slider-img picture,
  .main-slider-section .main-slider-img img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1004 / 546;
    border-radius: 24px; }
    @media (max-width: 991.98px) {
      .main-slider-section .main-slider-img picture,
      .main-slider-section .main-slider-img img {
        border-radius: 16px; } }
  .main-slider-section .main-slider-content {
    position: relative;
    max-width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 5;
    display: none; }
    @media (max-width: 991.98px) {
      .main-slider-section .main-slider-content {
        max-width: 100%;
        width: 100%;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center; } }
  .main-slider-section .main-slider-title {
    color: var(--white);
    font-size: 56px;
    font-weight: 600;
    line-height: 56px; }
    @media (max-width: 991.98px) {
      .main-slider-section .main-slider-title {
        font-size: 36px;
        line-height: 40px; } }
    .main-slider-section .main-slider-title:not(:last-child) {
      margin-bottom: 24px; }
  .main-slider-section .main-slider-description {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    .main-slider-section .main-slider-description p {
      margin: 0; }
      .main-slider-section .main-slider-description p:not(:last-child) {
        margin-bottom: 24px; }
    .main-slider-section .main-slider-description:not(:last-child) {
      margin-bottom: 32px; }
  .main-slider-section .btn {
    margin-top: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    @media (max-width: 991.98px) {
      .main-slider-section .btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center; } }
  .main-slider-section .main-slider-nav {
    position: absolute;
    z-index: 999;
    bottom: 32px;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    @media (max-width: 991.98px) {
      .main-slider-section .main-slider-nav {
        padding: 16px;
        bottom: 0;
        width: 100%; } }
    .main-slider-section .main-slider-nav .swiper-button-next,
    .main-slider-section .main-slider-nav .swiper-button-prev {
      position: static !important;
      margin-top: 0; }
    .main-slider-section .main-slider-nav .swiper-pagination {
      position: static !important;
      -webkit-transform: translateX(0) !important;
          -ms-transform: translateX(0) !important;
              transform: translateX(0) !important; }
      .main-slider-section .main-slider-nav .swiper-pagination .swiper-pagination-bullet {
        background: white; }
        .main-slider-section .main-slider-nav .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
          background: white; }
  .main-slider-section .swiper-button-next,
  .main-slider-section .swiper-button-prev {
    background: var(--white-color);
    color: var(--color-black);
    top: initial !important;
    bottom: 20px !important; }
    .main-slider-section .swiper-button-next .icon,
    .main-slider-section .swiper-button-prev .icon {
      color: var(--color-black-deep); }
    @media (max-width: 991.98px) {
      .main-slider-section .swiper-button-next,
      .main-slider-section .swiper-button-prev {
        display: none; } }
    @media (any-hover: hover) {
      .main-slider-section .swiper-button-next:hover,
      .main-slider-section .swiper-button-prev:hover {
        background: var(--color-red-accent); }
        .main-slider-section .swiper-button-next:hover .icon,
        .main-slider-section .swiper-button-prev:hover .icon {
          color: var(--white-color); } }
  .main-slider-section .swiper-button-next {
    right: 20px !important; }
  .main-slider-section .swiper-button-prev {
    left: 20px !important; }
  .main-slider-section .swiper-pagination {
    position: absolute !important;
    --swiper-pagination-bottom: 32px; }
    .main-slider-section .swiper-pagination .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.24) !important;
      -webkit-backdrop-filter: blur(24px);
              backdrop-filter: blur(24px); }
      .main-slider-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: var(--white-color) !important; }
    @media (max-width: 991.98px) {
      .main-slider-section .swiper-pagination {
        --swiper-pagination-bottom: 0; }
        .main-slider-section .swiper-pagination .swiper-pagination-bullet {
          background: #bcd2e0 !important;
          -webkit-backdrop-filter: blur(0);
                  backdrop-filter: blur(0); }
          .main-slider-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: var(--color-red-accent) !important; } }

.main-slider-grid {
  width: 340px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 148px;
  grid-template-rows: 1fr 148px;
  gap: 16px; }
  @media (max-width: 1199.98px) {
    .main-slider-grid {
      width: 300px;
      padding-left: 12px; } }
  @media (max-width: 991.98px) {
    .main-slider-grid {
      width: 100%;
      padding-left: 0; } }
  @media (max-width: 1199.98px) {
    .main-slider-grid {
      gap: 12px; } }
  @media (max-width: 991.98px) {
    .main-slider-grid {
      -ms-grid-rows: 350px 120px;
      grid-template-rows: 350px 120px; } }
  @media (max-width: 575.98px) {
    .main-slider-grid {
      -ms-grid-rows: 120px 120px;
      grid-template-rows: 120px 120px; } }
  .main-slider-grid .main-slider-grid-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    background: var(--color-red-accent);
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: -webkit-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease; }
    @media (any-hover: hover) {
      .main-slider-grid .main-slider-grid-link:hover {
        -webkit-box-shadow: 0 3px 10px 3px rgba(195, 22, 26, 0.2);
                box-shadow: 0 3px 10px 3px rgba(195, 22, 26, 0.2); }
        .main-slider-grid .main-slider-grid-link:hover .icon-arrow {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); } }
    .main-slider-grid .main-slider-grid-link:hover, .main-slider-grid .main-slider-grid-link:focus {
      text-decoration: none; }
    @media (max-width: 991.98px) {
      .main-slider-grid .main-slider-grid-link {
        padding: 16px;
        font-size: 20px;
        line-height: 1.2;
        border-radius: 16px; } }
    .main-slider-grid .main-slider-grid-link.big-mod {
      background: transparent;
      -ms-grid-column-span: 2;
      grid-column: span 2; }
  .main-slider-grid .main-slider-grid-title {
    color: var(--color-black-deep);
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .main-slider-grid .main-slider-grid-title {
        font-size: 24px;
        line-height: 28px; } }
  .main-slider-grid .main-slider-grid-img {
    width: 145px;
    height: 40px; }
    .main-slider-grid .main-slider-grid-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .main-slider-grid .main-slider-grid-bg {
    position: absolute;
    z-index: -1;
    inset: 0; }
    .main-slider-grid .main-slider-grid-bg picture,
    .main-slider-grid .main-slider-grid-bg img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 24px; }
      @media (max-width: 991.98px) {
        .main-slider-grid .main-slider-grid-bg picture,
        .main-slider-grid .main-slider-grid-bg img {
          border-radius: 16px;
          -o-object-position: 50% 20%;
             object-position: 50% 20%; } }
  .main-slider-grid .icon-arrow {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--white-color);
    color: var(--color-black);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    @media (max-width: 991.98px) {
      .main-slider-grid .icon-arrow {
        width: 32px;
        height: 32px; } }
    .main-slider-grid .icon-arrow .icon {
      width: 12px;
      height: 12px; }

.section-error {
  padding-top: 50px; }
  .section-error .section-error-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 80px 24px;
    border-radius: 24px;
    background: var(--color-blue); }
    @media (max-width: 991.98px) {
      .section-error .section-error-wrap {
        padding: 40px 16px; } }
  .section-error .section-error-row {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 991.98px) {
      .section-error .section-error-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        row-gap: 16px; } }
  .section-error .section-error-img {
    display: none; }
  .section-error .section-error-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; }
  .section-error .section-error-title {
    color: var(--white-color);
    font-size: 84px;
    font-weight: 700;
    line-height: 1.1; }
    .section-error .section-error-title:not(:last-child) {
      margin-bottom: 8px; }
    @media (max-width: 991.98px) {
      .section-error .section-error-title {
        font-size: 64px; } }
  .section-error .section-error-text {
    max-width: 460px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5; }
    .section-error .section-error-text:not(:last-child) {
      margin-bottom: 16px; }

.section-promo {
  position: relative;
  background-color: var(--color-blue);
  padding-top: 117px;
  padding-bottom: 32px;
  min-height: 499px; }
  @media (max-width: 991.98px) {
    .section-promo {
      padding-top: 48px;
      border-radius: 24px 24px 0 0; } }
  .section-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='499' viewBox='0 0 1440 499' fill='none'%3E%3Cpath opacity='0.16' d='M560.913 1155L909.999 237.999L446.089 1155H560.913ZM319.258 1155L909.999 237.999L172.71 1155H319.258ZM957.901 1155L909.999 237.999L862.098 1155H957.901ZM-0.000686923 1155H0.125702L909.999 237.999L-0.000686923 980.005V1155ZM-0.000686923 590.28L909.999 237.999L-0.000686923 483.551V590.28ZM-0.000686923 833.667L909.999 237.999L-0.000686923 704.905V833.667ZM1820 483.551L909.999 237.999L1820 590.28V483.551ZM1820 704.905L909.999 237.999L1820 833.667V704.905ZM-0.000686923 383.382L909.999 237.999L-0.000686923 285.823V383.382ZM1820 285.823L909.999 237.999L1820 383.382V285.823ZM1820 1155V980.005L909.999 237.999L1819.87 1155H1820ZM1373.91 1155L909.999 237.999L1259.09 1155H1373.91ZM1154.18 1155L909.999 237.999L1054.02 1155H1154.18ZM1647.29 1155L909.999 237.999L1500.74 1155H1647.29ZM765.979 1155L909.999 237.999L665.816 1155H765.979ZM1820 -679.001H1819.87L909.999 237.999L1820 -504.007V-679.001ZM1500.74 -679.001L909.999 237.999L1647.29 -679.001H1500.74ZM1259.09 -679.001L909.999 237.999L1373.91 -679.001H1259.09ZM1820 92.6165L909.999 237.999L1820 190.175V92.6165ZM1054.02 -679.001L909.999 237.999L1154.18 -679.001H1054.02ZM-0.000686923 190.175L909.999 237.999L-0.000686923 92.6165V190.175ZM1820 -357.669L909.999 237.999L1820 -228.907V-357.669ZM1820 -114.282L909.999 237.999L1820 -7.55298V-114.282ZM-0.000686923 -679.001V-504.007L909.999 237.999L0.125702 -679.001H-0.000686923ZM-0.000686923 -228.843L909.999 238.063L-0.000686923 -357.669V-228.907V-228.843ZM-0.000686923 -7.48932L909.999 238.063L-0.000686923 -114.282V-7.55298V-7.48932ZM862.098 -679.001L909.999 237.999L957.901 -679.001H862.098ZM665.816 -679.001L909.999 237.999L765.979 -679.001H665.816ZM172.71 -679.001L909.999 237.999L319.258 -679.001H172.71ZM446.089 -679.001L909.999 237.999L560.913 -679.001H446.089Z' fill='url(%23paint0_radial_133_4354)'/%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_133_4354' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(909.999 237.999) scale(910 917)'%3E%3Cstop stop-color='white' stop-opacity='0'/%3E%3Cstop offset='0.34' stop-color='white' stop-opacity='0.24'/%3E%3Cstop offset='0.69' stop-color='white' stop-opacity='0.48'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.72'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E") center no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover; }
  .section-promo .container {
    position: relative; }
  @media (min-width: 992px) {
    .section-promo .promo-container {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 41% 1fr;
      grid-template-columns: 41% 1fr;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 7px; } }
  @media (max-width: 991.98px) {
    .section-promo .promo-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 16px;
      text-align: center; } }
  .section-promo .section-title {
    margin-bottom: 12px; }
  .section-promo .promo-description {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    text-overflow: ellipsis; }
  .section-promo .btn-light {
    margin-top: 24px; }
    .section-promo .btn-light .ic {
      color: var(--color-blue); }
    @media (max-width: 991.98px) {
      .section-promo .btn-light {
        margin-left: auto;
        margin-right: auto; } }
  @media (min-width: 992px) {
    .section-promo .promo-image {
      position: absolute;
      top: -94px;
      right: 239px; } }
  @media (max-width: 1199.98px) {
    .section-promo .promo-image {
      right: 90px; } }
  @media (max-width: 991.98px) {
    .section-promo .promo-image {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: -250px; } }
  @media (max-width: 767.98px) {
    .section-promo .promo-image {
      padding-right: 26px;
      margin-bottom: -214px; } }
  .section-promo .phone-video {
    width: 456px;
    -webkit-transform: rotate(16deg);
        -ms-transform: rotate(16deg);
            transform: rotate(16deg); }
    @media (max-width: 1199.98px) {
      .section-promo .phone-video {
        width: 350px; } }
    @media (max-width: 991.98px) {
      .section-promo .phone-video {
        width: 238px;
        -webkit-transform: rotate(19deg);
            -ms-transform: rotate(19deg);
                transform: rotate(19deg); } }

.section-banners-slider {
  overflow: hidden; }
  @media (max-width: 991.98px) {
    .section-banners-slider .container {
      padding: 0; }
      .section-banners-slider .container .section-title {
        padding-left: 20px;
        padding-right: 20px; } }
  @media (min-width: 992px) {
    .section-banners-slider .banners-swiper .swiper-pagination.swiper-pagination-bullets-dynamic {
      -webkit-transform: translate3d(0, 0, 0) !important;
              transform: translate3d(0, 0, 0) !important; } }
  .section-banners-slider .banner-slide {
    position: relative;
    border-radius: 24px; }
    .section-banners-slider .banner-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1344' height='486' viewBox='0 0 1344 486' fill='none'%3E%3Cpath opacity='0.57' d='M621.012 1277L1007.5 267.5L493.885 1277H621.012ZM353.465 1277L1007.5 267.5L191.215 1277H353.465ZM1060.53 1277L1007.5 267.5L954.466 1277H1060.53ZM0 1277H0.139931L1007.5 267.5L0 1084.35V1277ZM0 655.316L1007.5 267.5L0 537.822V655.316ZM0 923.254L1007.5 267.5L0 781.504V923.254ZM2015 537.822L1007.5 267.5L2015 655.316V537.822ZM2015 781.504L1007.5 267.5L2015 923.254V781.504ZM0 427.548L1007.5 267.5L0 320.148V427.548ZM2015 320.148L1007.5 267.5L2015 427.548V320.148ZM2015 1277V1084.35L1007.5 267.5L2014.86 1277H2015ZM1521.12 1277L1007.5 267.5L1393.99 1277H1521.12ZM1277.85 1277L1007.5 267.5L1166.95 1277H1277.85ZM1823.78 1277L1007.5 267.5L1661.54 1277H1823.78ZM848.049 1277L1007.5 267.5L737.154 1277H848.049ZM2015 -742H2014.86L1007.5 267.5L2015 -549.354V-742ZM1661.54 -742L1007.5 267.5L1823.78 -742H1661.54ZM1393.99 -742L1007.5 267.5L1521.12 -742H1393.99ZM2015 107.452L1007.5 267.5L2015 214.852V107.452ZM1166.95 -742L1007.5 267.5L1277.85 -742H1166.95ZM0 214.852L1007.5 267.5L0 107.452V214.852ZM2015 -388.254L1007.5 267.5L2015 -246.504V-388.254ZM2015 -120.316L1007.5 267.5L2015 -2.82166V-120.316ZM0 -742V-549.354L1007.5 267.5L0.139931 -742H0ZM0 -246.434L1007.5 267.57L0 -388.254V-246.504V-246.434ZM0 -2.75159L1007.5 267.57L0 -120.316V-2.82166V-2.75159ZM954.466 -742L1007.5 267.5L1060.53 -742H954.466ZM737.154 -742L1007.5 267.5L848.049 -742H737.154ZM191.215 -742L1007.5 267.5L353.465 -742H191.215ZM493.885 -742L1007.5 267.5L621.012 -742H493.885Z' fill='url(%23paint0_radial_133_4145)'/%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_133_4145' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(1007.5 267.5) scale(1007.5 1009.5)'%3E%3Cstop stop-color='white' stop-opacity='0'/%3E%3Cstop offset='0.34' stop-color='white' stop-opacity='0.24'/%3E%3Cstop offset='0.69' stop-color='white' stop-opacity='0.48'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.72'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E") center no-repeat;
      width: 100%;
      height: 100%;
      background-size: cover; }
    .section-banners-slider .banner-slide .btn {
      border: none !important; }
    .section-banners-slider .banner-slide--yellow {
      background-color: #fdce0c; }
      .section-banners-slider .banner-slide--yellow .btn {
        color: var(--white-color);
        -webkit-box-shadow: inset 0 56px 0 0 #e8418e;
                box-shadow: inset 0 56px 0 0 #e8418e; }
        @media (any-hover: hover) {
          .section-banners-slider .banner-slide--yellow .btn:hover {
            -webkit-box-shadow: inset 0 0 0 0 #e8418e;
                    box-shadow: inset 0 0 0 0 #e8418e;
            color: #e8418e; } }
    .section-banners-slider .banner-slide--blue {
      background-color: var(--color-blue); }
      .section-banners-slider .banner-slide--blue .section-title,
      .section-banners-slider .banner-slide--blue .text-formatted {
        color: var(--white-color); }
      .section-banners-slider .banner-slide--blue .btn {
        color: var(--color-black-deep);
        -webkit-box-shadow: inset 0 56px 0 0 var(--white-color);
                box-shadow: inset 0 56px 0 0 var(--white-color); }
        @media (any-hover: hover) {
          .section-banners-slider .banner-slide--blue .btn:hover {
            -webkit-box-shadow: inset 0 0 0 0 var(--white-color);
                    box-shadow: inset 0 0 0 0 var(--white-color);
            color: var(--white-color);
            background: var(--color-red-accent); } }
  .section-banners-slider .banner-content {
    position: relative; }
    @media (min-width: 992px) {
      .section-banners-slider .banner-content {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 62% 1fr;
        grid-template-columns: 62% 1fr;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 25px 48px 25px 72px; } }
    @media (max-width: 991.98px) {
      .section-banners-slider .banner-content {
        padding: 48px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 16px; }
        .section-banners-slider .banner-content .section-title {
          padding: 0; } }
  .section-banners-slider .banner-image {
    padding-left: 12px; }
    @media (max-width: 991.98px) {
      .section-banners-slider .banner-image {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        max-width: 307px;
        margin-left: auto;
        margin-right: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-left: 0;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  @media (max-width: 991.98px) {
    .section-banners-slider .banner-text {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }
  .section-banners-slider .text-formatted {
    width: 90%;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px; }
    .section-banners-slider .text-formatted:not(:last-child) {
      margin-bottom: 16px; }
    .section-banners-slider .text-formatted p {
      margin-bottom: 0;
      overflow: hidden;
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      line-clamp: 4;
      text-overflow: ellipsis; }
      .section-banners-slider .text-formatted p:not(:last-child) {
        margin-bottom: 16px; }
        @media (max-width: 991.98px) {
          .section-banners-slider .text-formatted p:not(:last-child) {
            margin-bottom: 12px; } }
    @media (max-width: 991.98px) {
      .section-banners-slider .text-formatted {
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px; } }
  @media (max-width: 991.98px) {
    .section-banners-slider .products-carousel-nav {
      padding: 0 20px; } }

.product-card picture,
.product-card img {
  width: 100%; }

.product-card img {
  border-radius: 24px; }
  @media (max-width: 991.98px) {
    .product-card img {
      border-radius: 16px; } }

.section-scrolled-row {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px; }
  @media (max-width: 991.98px) {
    .section-scrolled-row {
      gap: 12px; } }
  .section-scrolled-row .scrolled-wrapper {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
    gap: 16px;
    -webkit-animation: scroll 120s linear infinite;
            animation: scroll 120s linear infinite; }
    @media (max-width: 991.98px) {
      .section-scrolled-row .scrolled-wrapper {
        gap: 12px; } }
  .section-scrolled-row .scrolled {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    padding: 12px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-decoration: none !important; }
    @media (pointer: fine) {
      .section-scrolled-row .scrolled:hover img {
        -webkit-filter: grayscale(0);
                filter: grayscale(0); } }
    .section-scrolled-row .scrolled picture,
    .section-scrolled-row .scrolled img {
      width: auto;
      height: 136px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-filter: grayscale(1);
              filter: grayscale(1);
      -o-object-fit: contain;
         object-fit: contain;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 991.98px) {
        .section-scrolled-row .scrolled picture,
        .section-scrolled-row .scrolled img {
          height: 62px; } }
    @media (max-width: 991.98px) {
      .section-scrolled-row .scrolled {
        padding: 6px; } }

@-webkit-keyframes scroll-animation {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@keyframes scroll-animation {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  to {
    -webkit-transform: translateX(calc(-100% - 40px));
            transform: translateX(calc(-100% - 40px)); } }

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  to {
    -webkit-transform: translateX(calc(-100% - 40px));
            transform: translateX(calc(-100% - 40px)); } }

.hero-more:not(:last-child) {
  margin-bottom: 40px; }
  @media (max-width: 991.98px) {
    .hero-more:not(:last-child) {
      margin-bottom: 20px; } }

.hero-more .hero-more__wrap {
  position: relative;
  padding: 48px;
  width: 100%;
  border-radius: 24px;
  min-height: 350px;
  background: var(--color-blue);
  color: var(--white-color); }
  @media (max-width: 991.98px) {
    .hero-more .hero-more__wrap {
      padding: 24px 16px;
      margin-bottom: 150px; } }

.hero-more .hero-more__box {
  max-width: 67%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px; }
  @media (max-width: 991.98px) {
    .hero-more .hero-more__box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      max-width: 100%; } }

.hero-more .hero-more__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px; }
  @media (max-width: 991.98px) {
    .hero-more .hero-more__content {
      row-gap: 8px; } }

.hero-more .hero-more__title {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 0; }
  @media (max-width: 991.98px) {
    .hero-more .hero-more__title {
      font-size: 24px;
      line-height: 28px;
      letter-spacing: normal; } }

.hero-more .hero-more__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2; }
  @media (max-width: 991.98px) {
    .hero-more .hero-more__text {
      font-size: 16px;
      line-height: 20px; } }
  .hero-more .hero-more__text p {
    margin-bottom: 0; }
    .hero-more .hero-more__text p:not(:last-child) {
      margin-bottom: 12px; }

.hero-more .hero-more__heading {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2; }
  @media (max-width: 991.98px) {
    .hero-more .hero-more__heading {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 16px;
      font-size: 14px;
      font-weight: 600;
      line-height: 18px;
      display: none; } }
  .hero-more .hero-more__heading::after {
    content: "";
    position: absolute;
    top: -29px;
    left: 68%;
    width: 174px;
    height: 174px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="174" height="174" viewBox="0 0 174 174" fill="none"><path d="M131.131 97.5809C126.052 100.828 120.888 104.162 115.547 106.979C115.116 107.242 112.753 104.233 112.839 104.146C117.566 100.383 122.471 97.1375 127.462 93.8047C129.527 92.4018 133.579 90.5487 135.548 88.0214C133.64 87.6919 131.648 87.4497 129.655 87.2075C130.704 88.4101 131.843 90.0446 131.843 90.0446C114.003 98.7696 93.9657 103.619 74.0449 102.062C58.8021 100.984 41.5408 96.7212 32.0801 83.8212C30.8533 82.1009 34.6916 85.5294 35.1297 86.1314C39.8593 92.4949 52.1716 94.9836 59.5409 96.3904C67.1706 97.8816 74.877 98.2468 82.6631 97.8324C97.6288 96.9223 112.131 92.4676 125.93 86.8074C123.157 86.4855 120.472 86.2493 117.701 86.1005C116.141 85.9411 114.896 82.1436 113.771 82.0669C121.477 82.4322 128.929 83.4056 136.472 84.8109C137.426 85.0622 140.307 87.8932 140.402 88.8444C141.043 92.9068 133.971 95.7384 131.131 97.5809Z" fill="%23E8E19A"/></svg>') center no-repeat; }
    @media (max-width: 991.98px) {
      .hero-more .hero-more__heading::after {
        position: relative;
        top: 0;
        left: 0;
        width: 50px;
        height: 25px;
        margin-left: auto;
        margin-right: auto;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="25" viewBox="0 0 50 25" fill="none"><path d="M47.0759 17.222C45.5206 14.693 43.946 12.1069 42.1816 9.71228C42.0472 9.50313 40.3539 10.3303 40.3732 10.3874C41.6623 13.0701 43.1412 15.5613 44.6394 18.1096C45.2541 19.1746 46.6532 20.8654 46.9841 22.4083C46.0678 22.1454 45.1321 21.8253 44.1965 21.5053C44.9197 21.1971 45.7756 20.7167 45.7756 20.7167C39.7364 13.0213 31.8915 6.57294 22.7243 2.99023C15.7341 0.198826 7.1657 -1.61337 0.203634 2.07749C-0.709357 2.57716 1.72805 1.88021 2.05141 1.70721C5.51355 -0.0999992 11.5069 1.43738 15.0763 2.39425C18.7793 3.3696 22.2749 4.86063 25.6385 6.71448C32.0794 10.3281 37.5543 15.414 42.4588 20.8836C41.1604 20.4317 39.9191 19.9604 38.6584 19.4321C37.9328 19.1683 36.5662 20.5851 36.0505 20.3776C39.546 21.8686 43.0592 23.0355 46.7051 24.0301C47.1822 24.1234 49.0669 23.486 49.313 23.0846C50.4688 21.4208 47.9401 18.6482 47.0759 17.222Z" fill="%23E8E19A"/></svg>') center no-repeat;
        display: none; } }

.hero-more .hero-more__heading-mobile {
  color: #e7e096;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; }
  .hero-more .hero-more__heading-mobile:not(:last-child) {
    margin-bottom: 12px; }
  @media (min-width: 992px) {
    .hero-more .hero-more__heading-mobile {
      display: none; } }
  @media (max-width: 991.98px) {
    .hero-more .hero-more__heading-mobile {
      position: relative;
      z-index: 2;
      font-size: 14px;
      line-height: 20px; }
      .hero-more .hero-more__heading-mobile:not(:last-child) {
        margin-bottom: 8px; } }

.hero-more .hero-more__qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
  border-radius: 16px;
  padding: 6px;
  background: var(--white-color);
  margin-left: auto; }
  .hero-more .hero-more__qr img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down; }
  @media (max-width: 991.98px) {
    .hero-more .hero-more__qr {
      display: none; } }

@media (min-width: 992px) {
  .hero-more .hero-more__download {
    display: none; } }

@media (max-width: 991.98px) {
  .hero-more .hero-more__download {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4px; } }

.hero-more .hero-more__download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 50px;
  height: 25px;
  -webkit-transform: scaleY(-1), scaleX(1);
      -ms-transform: scaleY(-1), scaleX(1);
          transform: scaleY(-1), scaleX(1);
  rotate: 120deg;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="25" viewBox="0 0 50 25" fill="none"><path d="M47.0759 17.222C45.5206 14.693 43.946 12.1069 42.1816 9.71228C42.0472 9.50313 40.3539 10.3303 40.3732 10.3874C41.6623 13.0701 43.1412 15.5613 44.6394 18.1096C45.2541 19.1746 46.6532 20.8654 46.9841 22.4083C46.0678 22.1454 45.1321 21.8253 44.1965 21.5053C44.9197 21.1971 45.7756 20.7167 45.7756 20.7167C39.7364 13.0213 31.8915 6.57294 22.7243 2.99023C15.7341 0.198826 7.1657 -1.61337 0.203634 2.07749C-0.709357 2.57716 1.72805 1.88021 2.05141 1.70721C5.51355 -0.0999992 11.5069 1.43738 15.0763 2.39425C18.7793 3.3696 22.2749 4.86063 25.6385 6.71448C32.0794 10.3281 37.5543 15.414 42.4588 20.8836C41.1604 20.4317 39.9191 19.9604 38.6584 19.4321C37.9328 19.1683 36.5662 20.5851 36.0505 20.3776C39.546 21.8686 43.0592 23.0355 46.7051 24.0301C47.1822 24.1234 49.0669 23.486 49.313 23.0846C50.4688 21.4208 47.9401 18.6482 47.0759 17.222Z" fill="%23E8E19A"/></svg>') center no-repeat; }

.hero-more .hero-more__link {
  height: 48px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .hero-more .hero-more__link img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%; }

@media (min-width: 992px) {
  .hero-more .hero-more__decor {
    position: absolute;
    top: 50%;
    width: 44%;
    -webkit-transform: translateY(-55%);
        -ms-transform: translateY(-55%);
            transform: translateY(-55%);
    right: 0;
    pointer-events: none; } }

@media (max-width: 991.98px) {
  .hero-more .hero-more__decor {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -58px;
    margin-bottom: -188px; } }

.hero-more .hero-more__decor picture,
.hero-more .hero-more__decor img {
  aspect-ratio: 432/549;
  -o-object-fit: scale-down;
     object-fit: scale-down; }

.quick-registration .quick-registration__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px; }
  .quick-registration .quick-registration__top .title:not(:last-child) {
    margin-bottom: 0; }
  .quick-registration .quick-registration__top:not(:last-child) {
    margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .quick-registration .quick-registration__top:not(:last-child) {
        margin-bottom: 20px; } }

@media (max-width: 991.98px) {
  .quick-registration .quick-registration__title {
    font-size: 24px; } }

.quick-registration .quick-registration__subtitle {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase; }
  @media (max-width: 991.98px) {
    .quick-registration .quick-registration__subtitle {
      font-size: 16px;
      line-height: 1.25; } }

@media (min-width: 992px) {
  .quick-registration .quick-registration__grid {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px; } }

@media (max-width: 991.98px) {
  .quick-registration .quick-registration__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px; } }

.quick-registration .quick-registration__or {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px;
  height: 96px;
  color: var(--white-color);
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase;
  border-radius: 50px;
  background: var(--color-red-accent); }
  @media (max-width: 991.98px) {
    .quick-registration .quick-registration__or {
      margin-left: auto;
      margin-right: auto;
      font-size: 24px;
      line-height: 28px;
      height: 80px;
      min-width: 80px;
      padding: 6px; } }

.item-quick {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: var(--color-blue);
  color: var(--white-color); }
  @media (max-width: 991.98px) {
    .item-quick {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding: 24px 16px;
      row-gap: 16px; } }
  .item-quick:has(.item-quick__img)::before {
    display: none; }
  .item-quick::before {
    content: "+380...";
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white-color);
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    opacity: 0.24; }
    @media (max-width: 767.98px) {
      .item-quick::before {
        top: 8px;
        right: 16px;
        font-size: 60px; } }
  @media (max-width: 991.98px) {
    .item-quick .item-quick__content {
      margin-top: auto; } }
  .item-quick .item-quick__number {
    width: 56px;
    height: 56px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 1/1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--color-black);
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase;
    border-radius: 50px;
    background: #e8e19a; }
    .item-quick .item-quick__number:not(:last-child) {
      margin-bottom: 20px; }
    @media (max-width: 991.98px) {
      .item-quick .item-quick__number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 1.2; }
        .item-quick .item-quick__number:not(:last-child) {
          margin-bottom: 10px; } }
  .item-quick .item-quick__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.04em;
    text-transform: uppercase; }
    .item-quick .item-quick__title:not(:last-child) {
      margin-bottom: 8px; }
    @media (max-width: 991.98px) {
      .item-quick .item-quick__title {
        font-size: 20px;
        line-height: 1.2; } }
  .item-quick .item-quick__text {
    max-width: 400px;
    text-wrap: balance;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25; }
    @media (max-width: 991.98px) {
      .item-quick .item-quick__text {
        font-size: 14px; } }
    .item-quick .item-quick__text p {
      margin-bottom: 0; }
      .item-quick .item-quick__text p:not(:last-child) {
        margin-bottom: 12px; }
  .item-quick .item-quick__img {
    position: relative;
    margin-top: 56px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 148px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 6px;
    aspect-ratio: 1;
    border-radius: 16px;
    background: var(--white-color); }
    @media (max-width: 991.98px) {
      .item-quick .item-quick__img {
        display: none; } }
    .item-quick .item-quick__img picture,
    .item-quick .item-quick__img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .item-quick .item-quick__head {
    position: absolute;
    right: calc(100% + 32px);
    top: 0;
    white-space: nowrap;
    color: #e8e19a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase; }
    @media (max-width: 1199.98px) {
      .item-quick .item-quick__head {
        top: 4px; } }
    .item-quick .item-quick__head::before {
      content: "";
      position: absolute;
      top: -32px;
      left: 58px;
      width: 149px;
      height: 149px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 149 149" fill="none"><path d="M109.991 93.8333C104.908 95.4657 99.7304 97.1536 94.5183 98.3578C94.09 98.4861 92.7464 95.3746 92.8396 95.3193C97.7398 93.1653 102.675 91.495 107.704 89.7693C109.79 89.0347 113.679 88.3639 115.937 86.6445C114.378 85.931 112.726 85.2728 111.074 84.6146C111.7 85.8819 112.307 87.5396 112.307 87.5396C95.0531 90.9777 76.7938 90.5992 60.0836 84.7605C47.272 80.3895 33.4517 72.8341 28.2662 59.6454C27.6045 57.8945 30.1167 61.6991 30.3557 62.3139C32.9674 68.8339 42.95 73.7503 48.9437 76.622C55.1414 79.6248 61.6593 81.6806 68.4219 83.0866C81.4459 85.692 94.8744 85.1565 107.973 83.4293C105.672 82.5265 103.425 81.717 101.085 80.9628C99.7858 80.4735 99.5783 76.9394 98.6314 76.6191C105.149 78.6749 111.312 81.1941 117.454 84.1036C118.215 84.5347 120.042 87.6111 119.908 88.4473C119.539 92.0718 112.841 92.8975 109.991 93.8333Z" fill="%23E8E19A"/></svg>') center no-repeat; }
      @media (max-width: 1199.98px) {
        .item-quick .item-quick__head::before {
          top: -16px;
          left: 115px;
          width: 100px;
          height: 100px; } }
  @media (min-width: 992px) {
    .item-quick .item-quick__download {
      display: none; } }
  @media (max-width: 991.98px) {
    .item-quick .item-quick__download {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 4px;
      width: 100%; } }
  .item-quick .item-quick__download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 150px;
    width: 50px;
    height: 25px;
    -webkit-transform: scaleY(-1), scaleX(1);
        -ms-transform: scaleY(-1), scaleX(1);
            transform: scaleY(-1), scaleX(1);
    rotate: 120deg;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="25" viewBox="0 0 50 25" fill="none"><path d="M47.0759 17.222C45.5206 14.693 43.946 12.1069 42.1816 9.71228C42.0472 9.50313 40.3539 10.3303 40.3732 10.3874C41.6623 13.0701 43.1412 15.5613 44.6394 18.1096C45.2541 19.1746 46.6532 20.8654 46.9841 22.4083C46.0678 22.1454 45.1321 21.8253 44.1965 21.5053C44.9197 21.1971 45.7756 20.7167 45.7756 20.7167C39.7364 13.0213 31.8915 6.57294 22.7243 2.99023C15.7341 0.198826 7.1657 -1.61337 0.203634 2.07749C-0.709357 2.57716 1.72805 1.88021 2.05141 1.70721C5.51355 -0.0999992 11.5069 1.43738 15.0763 2.39425C18.7793 3.3696 22.2749 4.86063 25.6385 6.71448C32.0794 10.3281 37.5543 15.414 42.4588 20.8836C41.1604 20.4317 39.9191 19.9604 38.6584 19.4321C37.9328 19.1683 36.5662 20.5851 36.0505 20.3776C39.546 21.8686 43.0592 23.0355 46.7051 24.0301C47.1822 24.1234 49.0669 23.486 49.313 23.0846C50.4688 21.4208 47.9401 18.6482 47.0759 17.222Z" fill="%23E8E19A"/></svg>') center no-repeat; }
  .item-quick .item-quick__link {
    height: 48px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .item-quick .item-quick__link img {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      height: 100%; }

#page-content.page-loyalty {
  background: var(--white-color); }
  #page-content.page-loyalty:has(.register-today) {
    padding-bottom: 0; }

.eco-credits {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2; }
  @media (max-width: 1199.98px) {
    .eco-credits {
      font-size: 16px;
      line-height: 1.25; } }
  @media (max-width: 767.98px) {
    .eco-credits {
      font-size: 14px; } }
  .eco-credits .eco-credits__wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 48px;
    border-radius: 24px;
    background: var(--color-blue);
    overflow: hidden; }
    @media (max-width: 1199.98px) {
      .eco-credits .eco-credits__wrap {
        padding: 24px; } }
    @media (max-width: 991.98px) {
      .eco-credits .eco-credits__wrap {
        padding: 24px 16px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .eco-credits .eco-credits__content {
    max-width: 62%; }
    @media (max-width: 1199.98px) {
      .eco-credits .eco-credits__content {
        max-width: 58%; } }
    @media (max-width: 991.98px) {
      .eco-credits .eco-credits__content {
        max-width: 100%; } }
  @media (max-width: 991.98px) {
    .eco-credits .eco-credits__title {
      font-size: 32px;
      line-height: 36px; } }
  .eco-credits .eco-credits__text:not(:last-child) {
    margin-bottom: 16px; }
  .eco-credits .eco-credits__text p {
    margin-bottom: 0; }
    .eco-credits .eco-credits__text p:not(:last-child) {
      margin-bottom: 16px; }
  .eco-credits .eco-credits__text h4,
  .eco-credits .eco-credits__text h3 {
    color: #e8e19a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase; }
    .eco-credits .eco-credits__text h4:not(:last-child),
    .eco-credits .eco-credits__text h3:not(:last-child) {
      margin-bottom: 12px; }
    @media (max-width: 1199.98px) {
      .eco-credits .eco-credits__text h4,
      .eco-credits .eco-credits__text h3 {
        font-size: 14px;
        line-height: 18px; }
        .eco-credits .eco-credits__text h4:not(:last-child),
        .eco-credits .eco-credits__text h3:not(:last-child) {
          margin-bottom: 8px; } }
  .eco-credits .eco-credits__text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .eco-credits .eco-credits__text ul:not(:last-child) {
      margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .eco-credits .eco-credits__text ul {
        gap: 2px; }
        .eco-credits .eco-credits__text ul:not(:last-child) {
          margin-bottom: 20px; } }
    .eco-credits .eco-credits__text ul li {
      position: relative;
      z-index: 1;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      padding: 16px 24px;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      gap: 12px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.56);
      background: rgba(255, 255, 255, 0.04);
      -webkit-backdrop-filter: blur(50px);
              backdrop-filter: blur(50px);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2; }
      @media (max-width: 1199.98px) {
        .eco-credits .eco-credits__text ul li {
          padding: 10px 18px;
          font-size: 12px;
          line-height: 16px; } }
      .eco-credits .eco-credits__text ul li:nth-child(1) {
        z-index: 3; }
      .eco-credits .eco-credits__text ul li:nth-child(2) {
        z-index: 2; }
      .eco-credits .eco-credits__text ul li:not(:last-child)::before {
        content: "";
        position: absolute;
        z-index: 10;
        top: 50%;
        right: -14px;
        width: 24px;
        height: 24px;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        border-radius: 1000px;
        background-color: #e8e19a;
        background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="12" fill="%23E8E19A"/><path d="M14.7003 12C14.7003 12.1792 14.6319 12.3584 14.4953 12.4951L10.1955 16.7949C9.92194 17.0684 9.47847 17.0684 9.20506 16.7949C8.93165 16.5214 8.93165 16.0781 9.20506 15.8045L13.0098 12L9.20519 8.19549C8.93178 7.92197 8.93178 7.47863 9.20519 7.20524C9.4786 6.93159 9.92207 6.93159 10.1956 7.20524L14.4954 11.505C14.632 11.6417 14.7003 11.8209 14.7003 12Z" fill="%230D0802"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain; }
  .eco-credits .eco-credits__heading {
    color: #e8e19a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase; }
    .eco-credits .eco-credits__heading:not(:last-child) {
      margin-bottom: 12px; }
    @media (max-width: 1199.98px) {
      .eco-credits .eco-credits__heading {
        font-size: 14px;
        line-height: 18px; }
        .eco-credits .eco-credits__heading:not(:last-child) {
          margin-bottom: 8px; } }
  .eco-credits .eco-credits__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .eco-credits .eco-credits__info:not(:last-child) {
      margin-bottom: 24px; }
    @media (max-width: 991.98px) {
      .eco-credits .eco-credits__info {
        gap: 2px; }
        .eco-credits .eco-credits__info:not(:last-child) {
          margin-bottom: 20px; } }
  @media (max-width: 575.98px) {
    .eco-credits .btn-light {
      width: 100%; } }
  .eco-credits .eco-credits__info-item {
    position: relative;
    z-index: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 16px 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(50px);
            backdrop-filter: blur(50px);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2; }
    @media (max-width: 1199.98px) {
      .eco-credits .eco-credits__info-item {
        padding: 10px 18px;
        font-size: 12px;
        line-height: 16px; } }
    .eco-credits .eco-credits__info-item:nth-child(1) {
      z-index: 3; }
    .eco-credits .eco-credits__info-item:nth-child(2) {
      z-index: 2; }
    .eco-credits .eco-credits__info-item:not(:last-child)::before {
      content: "";
      position: absolute;
      z-index: 10;
      top: 50%;
      right: -14px;
      width: 24px;
      height: 24px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      border-radius: 1000px;
      background-color: #e8e19a;
      background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="12" fill="%23E8E19A"/><path d="M14.7003 12C14.7003 12.1792 14.6319 12.3584 14.4953 12.4951L10.1955 16.7949C9.92194 17.0684 9.47847 17.0684 9.20506 16.7949C8.93165 16.5214 8.93165 16.0781 9.20506 15.8045L13.0098 12L9.20519 8.19549C8.93178 7.92197 8.93178 7.47863 9.20519 7.20524C9.4786 6.93159 9.92207 6.93159 10.1956 7.20524L14.4954 11.505C14.632 11.6417 14.7003 11.8209 14.7003 12Z" fill="%230D0802"/></svg>');
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }
  @media (max-width: 1199.98px) {
    .eco-credits .eco-credits__img {
      right: 48px; } }
  @media (min-width: 992px) {
    .eco-credits .eco-credits__img {
      position: absolute;
      top: 40px;
      right: 64px; } }
  @media (max-width: 991.98px) {
    .eco-credits .eco-credits__img {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: -200px;
      padding: 0 24px; } }

.phone-video {
  position: relative;
  width: 394px;
  /* розмір телефону */
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  -webkit-transform: rotate(10.161deg);
      -ms-transform: rotate(10.161deg);
          transform: rotate(10.161deg); }
  @media (max-width: 1199.98px) {
    .phone-video {
      width: 350px; } }
  @media (max-width: 767.98px) {
    .phone-video {
      width: 100%;
      max-width: 360px; } }
  .phone-video video {
    position: absolute;
    top: 8%;
    left: 6%;
    width: 88%;
    height: 86%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px; }
  .phone-video img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none; }

.register-today {
  position: relative;
  color: var(--white-color);
  min-height: 800px;
  padding: 100px 0;
  margin-bottom: -48px; }
  @media (max-width: 991.98px) {
    .register-today {
      min-height: 354px;
      padding: 60px 0;
      margin-bottom: -20px; } }
  @media (max-width: 767.98px) {
    .register-today {
      padding: 32px 0; } }
  .register-today .register-today__container {
    position: relative;
    z-index: 1; }
  .register-today .register-today__title {
    max-width: 948px;
    font-size: 62px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2; }
    .register-today .register-today__title:not(:last-child) {
      margin-bottom: 74px; }
    @media (max-width: 991.98px) {
      .register-today .register-today__title {
        font-size: 48px; }
        .register-today .register-today__title:not(:last-child) {
          margin-bottom: 40px; } }
    @media (max-width: 767.98px) {
      .register-today .register-today__title {
        font-size: 32px; } }
    @media (max-width: 575.98px) {
      .register-today .register-today__title {
        font-size: 16px; }
        .register-today .register-today__title:not(:last-child) {
          margin-bottom: 16px; } }
  .register-today .register-today__text {
    max-width: 650px;
    font-size: 50px;
    line-height: 1.2; }
    .register-today .register-today__text:not(:last-child) {
      margin-bottom: 48px; }
    @media (max-width: 1199.98px) {
      .register-today .register-today__text {
        max-width: 50%; } }
    @media (max-width: 991.98px) {
      .register-today .register-today__text {
        font-size: 32px; }
        .register-today .register-today__text:not(:last-child) {
          margin-bottom: 32px; } }
    @media (max-width: 767.98px) {
      .register-today .register-today__text {
        font-size: 20px; } }
    @media (max-width: 575.98px) {
      .register-today .register-today__text {
        max-width: 180px;
        font-size: 14px; }
        .register-today .register-today__text:not(:last-child) {
          margin-bottom: 16px; } }
  @media (min-width: 768px) {
    .register-today .btn {
      display: none; } }
  @media (max-width: 767.98px) {
    .register-today .btn {
      font-size: 14px;
      padding: 10px 24px;
      -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
              box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); } }
  .register-today .register-today__bg {
    position: absolute;
    inset: 0; }
    .register-today .register-today__bg picture,
    .register-today .register-today__bg img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }

.more-profitable {
  color: var(--white-color); }
  @media (max-width: 991.98px) {
    .more-profitable .more-profitable__container {
      padding: 0; } }
  .more-profitable .more-profitable__wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 48px;
    border-radius: 24px;
    background: linear-gradient(263deg, rgba(8, 96, 196, 0.7) 0%, rgba(1, 72, 153, 0.8) 100%); }
    @media (min-width: 992px) {
      .more-profitable .more-profitable__wrap:not(:last-child) {
        margin-bottom: 16px; } }
    @media (max-width: 1199.98px) {
      .more-profitable .more-profitable__wrap {
        padding: 32px; } }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__wrap {
        padding: 48px 20px 112px; } }
    .more-profitable .more-profitable__wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1344" height="619" viewBox="0 0 1344 619" fill="none"><path opacity="0.16" d="M621.012 1277L1007.5 267.5L493.885 1277H621.012ZM353.465 1277L1007.5 267.5L191.215 1277H353.465ZM1060.53 1277L1007.5 267.5L954.466 1277H1060.53ZM0 1277H0.139931L1007.5 267.5L0 1084.35V1277ZM0 655.316L1007.5 267.5L0 537.822V655.316ZM0 923.254L1007.5 267.5L0 781.504V923.254ZM2015 537.822L1007.5 267.5L2015 655.316V537.822ZM2015 781.504L1007.5 267.5L2015 923.254V781.504ZM0 427.548L1007.5 267.5L0 320.148V427.548ZM2015 320.148L1007.5 267.5L2015 427.548V320.148ZM2015 1277V1084.35L1007.5 267.5L2014.86 1277H2015ZM1521.12 1277L1007.5 267.5L1393.99 1277H1521.12ZM1277.85 1277L1007.5 267.5L1166.95 1277H1277.85ZM1823.78 1277L1007.5 267.5L1661.54 1277H1823.78ZM848.049 1277L1007.5 267.5L737.154 1277H848.049ZM2015 -742H2014.86L1007.5 267.5L2015 -549.354V-742ZM1661.54 -742L1007.5 267.5L1823.78 -742H1661.54ZM1393.99 -742L1007.5 267.5L1521.12 -742H1393.99ZM2015 107.452L1007.5 267.5L2015 214.852V107.452ZM1166.95 -742L1007.5 267.5L1277.85 -742H1166.95ZM0 214.852L1007.5 267.5L0 107.452V214.852ZM2015 -388.254L1007.5 267.5L2015 -246.504V-388.254ZM2015 -120.316L1007.5 267.5L2015 -2.82166V-120.316ZM0 -742V-549.354L1007.5 267.5L0.139931 -742H0ZM0 -246.434L1007.5 267.57L0 -388.254V-246.504V-246.434ZM0 -2.75159L1007.5 267.57L0 -120.316V-2.82166V-2.75159ZM954.466 -742L1007.5 267.5L1060.53 -742H954.466ZM737.154 -742L1007.5 267.5L848.049 -742H737.154ZM191.215 -742L1007.5 267.5L353.465 -742H191.215ZM493.885 -742L1007.5 267.5L621.012 -742H493.885Z" fill="url(%23paint0_radial_133_3395)"/><defs><radialGradient id="paint0_radial_133_3395" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(1007.5 267.5) scale(1007.5 1009.5)"><stop stop-color="white" stop-opacity="0"/><stop offset="0.34" stop-color="white" stop-opacity="0.24"/><stop offset="0.69" stop-color="white" stop-opacity="0.48"/><stop offset="1" stop-color="white" stop-opacity="0.72"/></radialGradient></defs></svg>') center no-repeat;
      background-size: cover; }
  .more-profitable .more-profitable__title {
    position: relative;
    z-index: 2; }
    .more-profitable .more-profitable__title:not(:last-child) {
      margin-bottom: 0; }
    @media (max-width: 767.98px) {
      .more-profitable .more-profitable__title {
        max-width: 200px; } }
  .more-profitable .more-profitable__row {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px 4px;
    max-width: 58%;
    width: 100%; }
    .more-profitable .more-profitable__row:not(:last-child) {
      margin-bottom: 30px; }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__row {
        position: static;
        max-width: 100%;
        padding-right: 20%; }
        .more-profitable .more-profitable__row:not(:last-child) {
          margin-bottom: 12px; } }
  .more-profitable .more-profitable__text {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2; }
    .more-profitable .more-profitable__text:not(:last-child) {
      margin-bottom: 20px; }
    .more-profitable .more-profitable__text p {
      margin-bottom: 0; }
      .more-profitable .more-profitable__text p:not(:last-child) {
        margin-bottom: 12px; }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__text {
        padding-right: 32px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px; } }
  .more-profitable .more-profitable__subtitle {
    position: relative;
    z-index: 2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2; }
    .more-profitable .more-profitable__subtitle:not(:last-child) {
      margin-bottom: 32px; }
    .more-profitable .more-profitable__subtitle::before {
      content: "";
      position: absolute;
      top: -46px;
      right: -120px;
      width: 172px;
      height: 172px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="172" height="172" viewBox="0 0 172 172" fill="none"><path d="M131.431 91.5899C126.769 95.41 122.032 99.3268 117.057 102.75C116.661 103.062 113.961 100.352 114.036 100.255C118.289 95.9632 122.78 92.165 127.346 88.2699C129.232 86.6345 133.038 84.319 134.697 81.5783C132.764 81.4748 130.757 81.4679 128.749 81.4611C129.932 82.5323 131.256 84.0219 131.256 84.0219C114.562 94.7789 95.2311 101.945 75.2652 102.735C60.0012 103.452 42.359 101.243 31.4507 89.541C30.0306 87.9764 34.2446 90.9311 34.7502 91.4776C40.1934 97.2425 52.7126 98.2702 60.1961 98.8031C67.948 99.3892 75.6441 98.8482 83.3279 97.5235C98.0836 94.8646 111.963 88.74 125.003 81.5006C122.212 81.506 119.517 81.5864 116.748 81.7636C115.181 81.7881 113.499 78.1629 112.372 78.2188C120.068 77.6778 127.583 77.7705 135.238 78.2816C136.215 78.4193 139.408 80.8929 139.614 81.8264C140.727 85.7855 134.036 89.427 131.431 91.5899Z" fill="%23E8E19A"/></svg>') center no-repeat; }
      @media (max-width: 1280px) {
        .more-profitable .more-profitable__subtitle::before {
          top: -28px;
          right: -16px; } }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__subtitle {
        display: none; } }
  .more-profitable .more-profitable__btn {
    gap: 8px;
    min-height: 44px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--white-color);
    white-space: nowrap; }
    .more-profitable .more-profitable__btn:not(:last-child) {
      margin-bottom: 16px; }
    @media (any-hover: hover) {
      .more-profitable .more-profitable__btn:hover {
        color: var(--color-black-deep); }
        .more-profitable .more-profitable__btn:hover .icon-arrow {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); } }
    .more-profitable .more-profitable__btn .icon-arrow {
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      background: #e8e19a;
      padding: 0;
      -webkit-transition: -webkit-transform .3s;
      transition: -webkit-transform .3s;
      transition: transform .3s;
      transition: transform .3s, -webkit-transform .3s; }
      .more-profitable .more-profitable__btn .icon-arrow .icon {
        width: 8px;
        height: 8px;
        color: var(--color-black-deep); }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__btn {
        position: absolute;
        left: 50%;
        bottom: 48px;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        background: var(--white-color);
        color: var(--color-black-deep); }
        .more-profitable .more-profitable__btn .icon-arrow {
          background: var(--color-red-accent); }
          .more-profitable .more-profitable__btn .icon-arrow .icon {
            color: var(--white-color); } }
  .more-profitable .more-profitable__qr {
    position: relative;
    z-index: 5;
    width: 160px;
    height: 164px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 16px;
    background: var(--white-color);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 4px;
    -ms-flex-item-align: end;
        align-self: flex-end; }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__qr {
        display: none; } }
    .more-profitable .more-profitable__qr img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .more-profitable .more-profitable__bottom {
    overflow: hidden; }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__bottom {
        margin: 0 -20px; }
        .more-profitable .more-profitable__bottom .more-profitable__heading {
          padding: 0 20px; } }
  .more-profitable .more-profitable__heading {
    color: #e7e096;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px; }
    .more-profitable .more-profitable__heading:not(:last-child) {
      margin-bottom: 12px; }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__heading {
        position: relative;
        z-index: 2;
        font-size: 14px;
        line-height: 20px; }
        .more-profitable .more-profitable__heading:not(:last-child) {
          margin-bottom: 8px; } }
  .more-profitable .more-profitable__list {
    position: relative;
    z-index: 3;
    list-style: none;
    margin: 0;
    padding: 0; }
    @media (min-width: 992px) {
      .more-profitable .more-profitable__list {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
        gap: 16px; } }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__list {
        padding: 0 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 12px;
        overflow: auto;
        -ms-scroll-snap-type: x mandatory;
            scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */ }
        .more-profitable .more-profitable__list::-webkit-scrollbar {
          display: none; } }
  @media (max-width: 991.98px) {
    .more-profitable .more-profitable__item {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 220px;
      scroll-snap-align: center; } }
  @media (min-width: 992px) {
    .more-profitable .more-profitable__download {
      display: none; } }
  .more-profitable .more-profitable__download:not(:last-child) {
    margin-bottom: 24px; }
  @media (max-width: 991.98px) {
    .more-profitable .more-profitable__download {
      position: relative;
      z-index: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .more-profitable .more-profitable__download-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px 8px;
    width: 100%; }
  .more-profitable .more-profitable__link {
    height: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .more-profitable .more-profitable__link img {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      height: 100%; }
  .more-profitable .more-profitable__decor {
    position: absolute;
    top: -122px;
    right: 86px;
    max-width: 50%;
    pointer-events: none; }
    .more-profitable .more-profitable__decor img {
      aspect-ratio: 26 / 29;
      -o-object-fit: contain;
         object-fit: contain; }
    @media (max-width: 1199.98px) {
      .more-profitable .more-profitable__decor {
        right: 0; } }
    @media (max-width: 991.98px) {
      .more-profitable .more-profitable__decor {
        top: -20px;
        right: -20px; }
        .more-profitable .more-profitable__decor img {
          width: 234px; } }
    @media (max-width: 767.98px) {
      .more-profitable .more-profitable__decor {
        max-width: 100%;
        top: -80px;
        right: 0; }
        .more-profitable .more-profitable__decor img {
          width: 225px;
          aspect-ratio: 3 / 5; } }

.item-profitable {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px); }
  @media (max-width: 991.98px) {
    .item-profitable {
      padding: 16px; } }
  .item-profitable .item-profitable__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80px;
    height: 80px;
    padding: 2px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.16); }
    .item-profitable .item-profitable__icon img {
      width: 48px;
      height: 48px;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
    .item-profitable .item-profitable__icon .icon {
      width: 48px;
      height: 48px; }
    .item-profitable .item-profitable__icon:not(:last-child) {
      margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .item-profitable .item-profitable__icon {
        width: 48px;
        height: 48px; }
        .item-profitable .item-profitable__icon .icon {
          width: 28px;
          height: 28px; }
        .item-profitable .item-profitable__icon img {
          width: 28px;
          height: 28px;
          -o-object-fit: scale-down;
             object-fit: scale-down; }
        .item-profitable .item-profitable__icon:not(:last-child) {
          margin-bottom: 8px; } }
  .item-profitable .item-profitable__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2; }
    .item-profitable .item-profitable__title:not(:last-child) {
      margin-bottom: 8px; }
    @media (max-width: 991.98px) {
      .item-profitable .item-profitable__title {
        font-size: 16px;
        line-height: 1.25; }
        .item-profitable .item-profitable__title:not(:last-child) {
          margin-bottom: 4px; } }
  .item-profitable .item-profitable__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    .item-profitable .item-profitable__text p {
      margin-bottom: 0; }
      .item-profitable .item-profitable__text p:not(:last-child) {
        margin-bottom: 12px; }
    @media (max-width: 991.98px) {
      .item-profitable .item-profitable__text {
        font-size: 12px;
        line-height: 16px; } }

.contacts-table .contacts-table__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase; }
  .contacts-table .contacts-table__title:not(:last-child) {
    margin-bottom: 16px; }
  @media (max-width: 991.98px) {
    .contacts-table .contacts-table__title {
      font-size: 18px;
      line-height: 20px;
      text-align: center; }
      .contacts-table .contacts-table__title:not(:last-child) {
        margin-bottom: 14px; } }

.contacts-table table {
  width: 100%; }
  .contacts-table table thead th {
    color: var(--color-gray-medium);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    padding-bottom: 12px; }
  @media (max-width: 991.98px) {
    .contacts-table table thead {
      display: none; } }
  @media (max-width: 991.98px) {
    .contacts-table table tbody tr {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      gap: 20px 10px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      padding-bottom: 16px; }
      .contacts-table table tbody tr:not(:last-child) {
        margin-bottom: 18px; } }
  .contacts-table table tbody td {
    color: var(--color-black-deep);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25; }
    @media (min-width: 992px) {
      .contacts-table table tbody td {
        padding: 16px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08); } }
    @media (max-width: 991.98px) {
      .contacts-table table tbody td {
        font-size: 14px;
        line-height: 18px; }
        .contacts-table table tbody td:not(:first-child)::before {
          content: attr(data-label);
          color: var(--color-gray-medium);
          font-size: 12px;
          font-weight: 400;
          line-height: 1;
          text-transform: uppercase;
          width: 100%;
          display: block;
          margin-bottom: 6px; } }
  .contacts-table table .phone {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    color: var(--color-black-deep);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (max-width: 991.98px) {
      .contacts-table table .phone {
        font-size: 14px;
        line-height: 18px;
        font-weight: 400; } }
    .contacts-table table .phone .icon {
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      aspect-ratio: 1/1;
      color: var(--color-red-accent); }
      @media (max-width: 991.98px) {
        .contacts-table table .phone .icon {
          width: 16px;
          height: 16px; } }
    @media (any-hover: hover) {
      .contacts-table table .phone:hover {
        color: var(--color-red-accent); } }
  .contacts-table table .link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    color: var(--color-black-deep);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .contacts-table table .link.telegram .icon {
      color: #0088cc; }
    .contacts-table table .link.viber .icon {
      color: #8c60c3; }
    .contacts-table table .link .icon {
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      aspect-ratio: 1/1; }
      @media (max-width: 991.98px) {
        .contacts-table table .link .icon {
          width: 16px;
          height: 16px; } }
    @media (any-hover: hover) {
      .contacts-table table .link:hover {
        color: var(--color-red-accent); } }

.contacts-table .contacts-table__local {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px; }
  .contacts-table .contacts-table__local .icon {
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 1/1;
    color: var(--color-red-accent); }
    @media (max-width: 991.98px) {
      .contacts-table .contacts-table__local .icon {
        display: none; } }
  .contacts-table .contacts-table__local .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .contacts-table .contacts-table__local .key {
    color: var(--color-gray-medium);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .contacts-table .contacts-table__local .key {
        margin-bottom: 6px; } }
  .contacts-table .contacts-table__local .value {
    color: var(--color-black-deep);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25; }
    @media (max-width: 991.98px) {
      .contacts-table .contacts-table__local .value {
        font-size: 14px;
        line-height: 18px;
        font-weight: 400; } }

.related .related-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase; }
  .related .related-title:not(:last-child) {
    margin-bottom: 20px; }
  @media (max-width: 991.98px) {
    .related .related-title {
      font-size: 24px;
      line-height: 28px; }
      .related .related-title:not(:last-child) {
        margin-bottom: 14px; } }

.related .related-wrap {
  padding: 24px;
  background: var(--white-color);
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.related .related-list:not(:last-child) {
  margin-bottom: 20px; }

.related .vacancy-block:first-child {
  padding-top: 0;
  border-top: none; }

.related .btn-main {
  min-height: 48px; }
  @media (max-width: 991.98px) {
    .related .btn-main {
      font-size: 14px;
      margin-left: auto;
      margin-right: auto; } }

.advertisers .advertisers-row {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: 1fr 324px;
  grid-template-columns: 1fr 324px; }
  @media (max-width: 1199.98px) {
    .advertisers .advertisers-row {
      -ms-grid-columns: 1fr 300px;
      grid-template-columns: 1fr 300px; } }
  @media (max-width: 991.98px) {
    .advertisers .advertisers-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 12px; } }

@media (max-width: 991.98px) {
  .advertisers .advertisers-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; } }

.advertisers .advertisers-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase; }
  .advertisers .advertisers-title:not(:last-child) {
    margin-bottom: 12px; }
  @media (max-width: 991.98px) {
    .advertisers .advertisers-title {
      font-size: 16px;
      line-height: 20px; } }

.advertisers .advertisers-col {
  padding: 24px;
  background: var(--white-color);
  border-radius: 24px; }
  .advertisers .advertisers-col:not(:last-child) {
    margin-bottom: 48px; }
  @media (max-width: 991.98px) {
    .advertisers .advertisers-col {
      padding: 16px; } }

.advertisers .text-formatted:not(:last-child) {
  margin-bottom: 20px; }

.advertisers .advertisers-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px; }
  @media (max-width: 767.98px) {
    .advertisers .advertisers-bottom {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 14px; } }
  .advertisers .advertisers-bottom .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 48px; }
  .advertisers .advertisers-bottom .socials-share {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (min-width: 992px) {
      .advertisers .advertisers-bottom .socials-share {
        margin-left: auto; } }

.advertisers .advertisers-aside {
  padding: 16px 20px;
  border-radius: 24px;
  background: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 992px) {
    .advertisers .advertisers-aside {
      position: sticky;
      top: 100px;
      width: 100%;
      left: 0;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content; } }
  @media (max-width: 991.98px) {
    .advertisers .advertisers-aside {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      padding: 16px; } }
  .advertisers .advertisers-aside .btn {
    margin-left: auto;
    margin-right: auto; }

.advertisers .advertisers-aside-heading {
  color: var(--color-red-accent);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase; }
  .advertisers .advertisers-aside-heading:not(:last-child) {
    margin-bottom: 4px; }

.advertisers .advertisers-aside-title {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase; }
  .advertisers .advertisers-aside-title:not(:last-child) {
    margin-bottom: 12px; }
  @media (max-width: 991.98px) {
    .advertisers .advertisers-aside-title {
      font-size: 16px; } }

.advertisers .advertisers-aside-list:not(:last-child) {
  margin-bottom: 12px; }

.advertisers-aside-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
  padding: 8px 0;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  .advertisers-aside-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08); }
  .advertisers-aside-item .key {
    color: var(--color-gray-medium);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px; }

.category-page-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(250px, 300px) 1fr;
  grid-template-columns: minmax(250px, 300px) 1fr;
  gap: 30px; }
  @media (max-width: 1199.98px) {
    .category-page-grid {
      -ms-grid-columns: 280px 1fr;
      grid-template-columns: 280px 1fr; } }
  @media (max-width: 991.98px) {
    .category-page-grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .category-page-grid .catalog-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
    .category-page-grid .catalog-top:not(:last-child) {
      margin-bottom: 16px; }
  .category-page-grid .aside-elem:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid grey; }
  .category-page-grid .aside-elem.accordion-collapsed .arrow-wrap {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .category-page-grid .aside-elem:not(:last-child) {
    margin-bottom: 16px; }

@media (min-width: 992px) {
  .category-page-aside {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 10px rgba(207, 207, 207, 0.3);
            box-shadow: 2px 2px 10px rgba(207, 207, 207, 0.3); } }

@media (max-width: 991.98px) {
  .category-page-aside {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100dvh;
    background: var(--white);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; } }

.category-page-aside .category-aside-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid black; }
  @media (min-width: 992px) {
    .category-page-aside .category-aside-top {
      display: none; } }
  .category-page-aside .category-aside-top .category-aside-top-title {
    color: var(--theme-color-main);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; }
  .category-page-aside .category-aside-top .category-aside-top-close {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%; }
    .category-page-aside .category-aside-top .category-aside-top-close .icon {
      width: 12px;
      height: 12px;
      color: var(--theme-color-main); }

.category-page-aside .slider-nav {
  padding-top: 10px; }
  .category-page-aside .slider-nav .amount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .category-page-aside .slider-nav .amount:not(:last-child) {
      margin-bottom: 29px; }
  .category-page-aside .slider-nav .amount-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    min-width: 88px;
    color: grey;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    .category-page-aside .slider-nav .amount-item input {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      height: 100%;
      min-height: 40px;
      max-width: 88px;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      text-align: center;
      color: var(--theme-color-main);
      border-radius: 4px;
      border: 1px solid #e3e3e3;
      background: var(--white);
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (any-hover: hover) {
        .category-page-aside .slider-nav .amount-item input:hover, .category-page-aside .slider-nav .amount-item input:focus {
          border-color: var(--theme-color-main); } }
      .category-page-aside .slider-nav .amount-item input:focus-visible, .category-page-aside .slider-nav .amount-item input:focus {
        border-color: var(--theme-color-main);
        outline: none; }
  .category-page-aside .slider-nav .ui-slider {
    height: 6px; }
    .category-page-aside .slider-nav .ui-slider:not(:last-child) {
      margin-bottom: 25px; }
  .category-page-aside .slider-nav .ui-widget-content {
    background: #f1f1f1;
    height: 6px;
    border-radius: 100px;
    border: none;
    margin: 0 32px; }
    .category-page-aside .slider-nav .ui-widget-content:after {
      content: "";
      display: block;
      position: absolute;
      z-index: -1;
      border-radius: 100px;
      top: -2px;
      bottom: 2px;
      left: -32px;
      right: -32px;
      background: #f1f1f1; }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-range {
    height: 6px;
    top: -2px;
    background: transparent; }
    .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-range::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 105%;
      height: 100%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: #ffac07; }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle {
    top: 1px;
    width: 32px;
    height: 0;
    display: block;
    border: none;
    outline: none;
    margin-left: -16px; }
    .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle::before {
      content: "";
      position: absolute;
      top: 50%;
      z-index: 1;
      width: 32px;
      height: 32px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      background: black;
      cursor: pointer;
      border-radius: 100px; }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle:nth-of-type(1):before {
    right: 50%; }
  .category-page-aside .slider-nav .ui-slider-horizontal .ui-slider-handle:nth-of-type(2):before {
    left: 50%; }
  .category-page-aside .slider-nav .btn-apply {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 4px; }

.catalog-product-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; }
  @media (max-width: 767.98px) {
    .catalog-product-grid {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575.98px) {
    .catalog-product-grid {
      -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr); } }

.category-page-aside-wrap {
  padding: 10px; }
  @media (max-width: 991.98px) {
    .category-page-aside-wrap {
      padding: 100px 16px 16px;
      overflow-y: auto;
      max-height: 100dvh; } }

.aside-elem-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--theme-color-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer; }
  .aside-elem-title .arrow-wrap {
    margin-left: auto;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--theme-color-main);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .aside-elem-title .arrow-wrap .icon {
      width: 10px;
      height: 10px; }

.btn-filter-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 328px;
  margin-right: auto;
  height: 48px;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 56px;
  background: black;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25; }
  .btn-filter-mobile:not(:last-child) {
    margin-bottom: 16px; }
  .btn-filter-mobile::before {
    content: "";
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 21 20" fill="none"><path d="M18.8333 2.29297H2.16667C1.8904 2.29297 1.62545 2.40272 1.4301 2.59807C1.23475 2.79342 1.125 3.05837 1.125 3.33464C1.125 3.6109 1.23475 3.87585 1.4301 4.0712C1.62545 4.26656 1.8904 4.3763 2.16667 4.3763H18.8333C19.1096 4.3763 19.3746 4.26656 19.5699 4.0712C19.7653 3.87585 19.875 3.6109 19.875 3.33464C19.875 3.05837 19.7653 2.79342 19.5699 2.59807C19.3746 2.40272 19.1096 2.29297 18.8333 2.29297Z" fill="white"/><path d="M18.8333 8.95898H2.16667C1.8904 8.95898 1.62545 9.06873 1.4301 9.26408C1.23475 9.45943 1.125 9.72438 1.125 10.0007C1.125 10.2769 1.23475 10.5419 1.4301 10.7372C1.62545 10.9326 1.8904 11.0423 2.16667 11.0423H18.8333C19.1096 11.0423 19.3746 10.9326 19.5699 10.7372C19.7653 10.5419 19.875 10.2769 19.875 10.0007C19.875 9.72438 19.7653 9.45943 19.5699 9.26408C19.3746 9.06873 19.1096 8.95898 18.8333 8.95898Z" fill="white"/><path d="M18.8333 15.625H2.16667C1.8904 15.625 1.62545 15.7347 1.4301 15.9301C1.23475 16.1254 1.125 16.3904 1.125 16.6667C1.125 16.9429 1.23475 17.2079 1.4301 17.4032C1.62545 17.5986 1.8904 17.7083 2.16667 17.7083H18.8333C19.1096 17.7083 19.3746 17.5986 19.5699 17.4032C19.7653 17.2079 19.875 16.9429 19.875 16.6667C19.875 16.3904 19.7653 16.1254 19.5699 15.9301C19.3746 15.7347 19.1096 15.625 18.8333 15.625Z" fill="white"/><path d="M14.667 6.45898C16.3929 6.45898 17.792 5.05987 17.792 3.33398C17.792 1.60809 16.3929 0.208984 14.667 0.208984C12.9411 0.208984 11.542 1.60809 11.542 3.33398C11.542 5.05987 12.9411 6.45898 14.667 6.45898Z" fill="white"/><path d="M8.83301 13.125C10.5589 13.125 11.958 11.7259 11.958 10C11.958 8.27411 10.5589 6.875 8.83301 6.875C7.10712 6.875 5.70801 8.27411 5.70801 10C5.70801 11.7259 7.10712 13.125 8.83301 13.125Z" fill="white"/><path d="M14.667 19.793C16.3929 19.793 17.792 18.3939 17.792 16.668C17.792 14.9421 16.3929 13.543 14.667 13.543C12.9411 13.543 11.542 14.9421 11.542 16.668C11.542 18.3939 12.9411 19.793 14.667 19.793Z" fill="white"/></svg>') center no-repeat; }
  @media (min-width: 992px) {
    .btn-filter-mobile {
      display: none; } }

.catalog-aside-nav {
  padding-top: 12px;
  padding-bottom: 12px; }
  .catalog-aside-nav ul, .catalog-aside-nav li {
    padding: 0;
    margin: 0;
    list-style: none; }
  .catalog-aside-nav .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .catalog-aside-nav .nav-item:not(:last-child) {
      margin-bottom: 12px; }
  .catalog-aside-nav .nav-link {
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    color: var(--theme-color-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .catalog-aside-nav .nav-link.active {
      color: grey; }
    @media (any-hover: hover) {
      .catalog-aside-nav .nav-link:hover {
        color: grey; } }
    .catalog-aside-nav .nav-link:focus {
      color: grey; }

.catalog-filter-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px; }
  @media (max-width: 991.98px) {
    .catalog-filter-selected {
      margin-bottom: 2px; } }
  .catalog-filter-selected .filter-selected-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
  .catalog-filter-selected .filter-selected-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
  .catalog-filter-selected .filter-selected {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2px 10px;
    gap: 8px;
    min-height: 24px;
    color: var(--theme-color-main);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
    border-radius: 100px;
    background: #f8f8f8;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .catalog-filter-selected .filter-selected .icon-wrap {
      width: 8px;
      height: 8px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      color: var(--theme-color-main);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .catalog-filter-selected .filter-selected:hover {
        background: grey;
        color: var(--white);
        text-decoration: none; }
        .catalog-filter-selected .filter-selected:hover .icon-wrap {
          color: var(--white); } }
    .catalog-filter-selected .filter-selected:focus {
      background: grey;
      color: var(--white);
      text-decoration: none; }
      .catalog-filter-selected .filter-selected:focus .icon-wrap {
        color: var(--white); }
  .catalog-filter-selected .filter-selected-clear {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 24px;
    padding: 2px 8px;
    color: var(--theme-color-main);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: underline;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .catalog-filter-selected .filter-selected-clear:hover {
        background: grey;
        color: var(--white); } }
    .catalog-filter-selected .filter-selected-clear:focus {
      background: grey;
      color: var(--white); }

.subcategory-slider-wrap {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 48px; }
  @media (max-width: 991.98px) {
    .subcategory-slider-wrap {
      padding-bottom: 24px; } }
  .subcategory-slider-wrap .subcategory-slider {
    position: relative; }
    @media (max-width: 991.98px) {
      .subcategory-slider-wrap .subcategory-slider {
        padding-bottom: 43px; } }
    .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) {
      width: 100%; }
      .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        max-height: 120px;
        overflow: hidden; }
        @media (max-width: 1199.98px) {
          .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
            -ms-grid-columns: (1fr)[5];
            grid-template-columns: repeat(5, 1fr);
            gap: 16px; } }
        @media (max-width: 991.98px) {
          .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
            -ms-grid-columns: (1fr)[4];
            grid-template-columns: repeat(4, 1fr); } }
        @media (max-width: 767.98px) {
          .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
            -ms-grid-columns: (1fr)[3];
            grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 575.98px) {
          .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-wrapper {
            -ms-grid-columns: (1fr)[2];
            grid-template-columns: repeat(2, 1fr); } }
      .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-button-next,
      .subcategory-slider-wrap .subcategory-slider:not(.swiper-initialized) .swiper-button-prev {
        display: none; }
    .subcategory-slider-wrap .subcategory-slider .subcategory-image {
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .subcategory-slider-wrap .subcategory-slider .subcategory-image:not(:last-child) {
        margin-bottom: 12px; }
      .subcategory-slider-wrap .subcategory-slider .subcategory-image img, .subcategory-slider-wrap .subcategory-slider .subcategory-image picture {
        display: block; }
    .subcategory-slider-wrap .subcategory-slider .subcategory-title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      color: var(--theme-color-main);
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      .subcategory-slider-wrap .subcategory-slider .subcategory-title span {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        word-break: break-word; }
      @media (max-width: 991.98px) {
        .subcategory-slider-wrap .subcategory-slider .subcategory-title {
          font-size: 18px; } }
    @media (min-width: 768px) {
      .subcategory-slider-wrap .subcategory-slider .swiper-pagination {
        display: none; } }
    .subcategory-slider-wrap .subcategory-slider .swiper-button-next.swiper-button-disabled,
    .subcategory-slider-wrap .subcategory-slider .swiper-button-prev.swiper-button-disabled {
      opacity: 0;
      visibility: hidden; }
    @media (max-width: 767.98px) {
      .subcategory-slider-wrap .subcategory-slider .swiper-button-next,
      .subcategory-slider-wrap .subcategory-slider .swiper-button-prev {
        display: none; } }

.section-categories-navigation {
  margin-bottom: 50px; }

.categories-navigation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px; }
  @media (max-width: 991.98px) {
    .categories-navigation {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 767.98px) {
    .categories-navigation {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575.98px) {
    .categories-navigation {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 16px; } }
  .categories-navigation .category-card {
    padding: 20px 20px 25px;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 3px #bebebe;
            box-shadow: 0 2px 3px #bebebe; }
    .categories-navigation .category-card .category-img {
      display: block;
      position: relative;
      margin-bottom: 10px; }
      .categories-navigation .category-card .category-img img, .categories-navigation .category-card .category-img picture {
        display: block; }
    .categories-navigation .category-card .category-title {
      font-weight: 500;
      font-size: 18px; }
    .categories-navigation .category-card .category-sub-navigation {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 10px;
      margin-top: 10px;
      padding-left: 15px; }

.catalog-filter .aside-elem:not(:last-child) {
  margin-bottom: 20px; }

.catalog-filter .aside-elem-title {
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .catalog-filter .aside-elem-title .arrow-wrap {
    margin-left: auto; }

.catalog-filter .filter-search-wrap {
  margin-top: 10px; }
  .catalog-filter .filter-search-wrap input {
    width: 100%; }

.catalog-filter .aside-elem-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px; }

.catalog-filter .aside-elem-list:not(.show-hidden) .attribute-checkbox.is-hidden,
.catalog-filter .aside-elem-list:not(.show-hidden) .color-value.is-hidden {
  display: none; }

.catalog-filter .aside-elem-list.colors-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 5px;
  overflow: unset;
  max-height: unset;
  padding-right: 0; }

.catalog-filter .color-value {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-radius: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer; }
  .catalog-filter .color-value.checked {
    border-color: green; }
  .catalog-filter .color-value:focus, .catalog-filter .color-value:hover {
    -webkit-box-shadow: 0 0 6px 0 #000000;
            box-shadow: 0 0 6px 0 #000000; }

.catalog-filter .attribute-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  cursor: pointer;
  text-decoration: none; }
  .catalog-filter .attribute-checkbox .checkmark {
    display: inline-block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border: 1px solid #e9e9e9;
    background-color: #ffffff;
    border-radius: 2px;
    margin-top: 3px; }
  .catalog-filter .attribute-checkbox.active .checkmark {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="5.5" fill="none" viewBox="0 0 16 11"><path stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="m2 4.77 4.615 4.615L14 2"/></svg>');
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    border-color: #000000; }
  @media (pointer: fine) {
    .catalog-filter .attribute-checkbox:hover {
      text-decoration: underline; } }

.catalog-filter .toggle-elem-list {
  margin-top: 10px;
  font-weight: bolder;
  text-decoration: underline;
  cursor: pointer; }
  .catalog-filter .toggle-elem-list .open {
    display: block; }
  .catalog-filter .toggle-elem-list .hide {
    display: none; }
  .catalog-filter .toggle-elem-list.active .open {
    display: none; }
  .catalog-filter .toggle-elem-list.active .hide {
    display: block; }

.catalog-filter-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px; }
  .catalog-filter-selected .filter-selected-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
  .catalog-filter-selected .filter-selected-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px; }
  .catalog-filter-selected .filter-selected,
  .catalog-filter-selected .filter-selected-clear {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    border: 1px solid #000000;
    padding: 2px 6px;
    border-radius: 2px; }

.catalog-sorting-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px; }
  .catalog-sorting-wrap .sorting-title {
    text-transform: uppercase; }
  .catalog-sorting-wrap .jq-selectbox.opened .jq-selectbox__trigger {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  .catalog-sorting-wrap .jq-selectbox .sorting-select {
    border: none; }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 20px;
    min-width: 180px;
    width: 100%;
    padding: 4px 16px;
    background: var(--white);
    border: none;
    color: var(--theme-color-main);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      color: var(--theme-color-main);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text:hover {
          color: grey; } }
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text:focus {
        color: grey; }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__trigger {
    width: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__trigger-arrow {
    margin-top: 0;
    width: 20px;
    height: 20px;
    color: var(--theme-color-main);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><circle cx="10" cy="10" r="10" transform="rotate(90 10 10)" fill="white"/><path d="M13.3333 9.16675L9.99992 12.5001L6.66659 9.16675" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat; }
  .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown {
    left: 50% !important;
    min-width: 150px;
    border: 1px solid;
    border-radius: 6px;
    padding: 6px;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 0 0 14px 5px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 14px 5px rgba(0, 0, 0, 0.08); }
    .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown ul, .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li {
      list-style: none; }
    .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li {
      border-radius: 4px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li:focus, .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li.sel {
        background: grey;
        color: var(--white); }
      @media (any-hover: hover) {
        .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li:not(.sel):hover {
          color: var(--theme-color-main); } }
      .catalog-sorting-wrap .jq-selectbox .jq-selectbox__dropdown li:not(.sel):focus {
        color: var(--theme-color-main); }

.catalog-sorting-wrap.catalog-sorting-inline .sorting-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px; }

.catalog-sorting-wrap.catalog-sorting-inline .sorting-btn {
  cursor: pointer; }
  .catalog-sorting-wrap.catalog-sorting-inline .sorting-btn.active {
    font-weight: bold;
    text-decoration: underline; }

.per-page-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px; }
  .per-page-wrap:not(:last-child) {
    margin-bottom: 16px; }
  .per-page-wrap .per-page-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
  .per-page-wrap .per-page-item.active {
    font-weight: 700; }

@media (min-width: 992px) {
  .page-post-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 324px;
    grid-template-columns: 1fr 324px;
    gap: 16px; } }

@media (max-width: 991.98px) {
  .page-post-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px; } }

.article-content:not(:last-child) {
  margin-bottom: 48px; }

.article-content .article-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px; }
  @media (max-width: 991.98px) {
    .article-content .article-header {
      margin-bottom: 14px; } }
  .article-content .article-header .article-date {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: var(--white-color); }
    @media (max-width: 991.98px) {
      .article-content .article-header .article-date {
        padding: 4px 12px;
        font-size: 14px;
        line-height: 18px; } }
  .article-content .article-header .article-rubric-badge {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: var(--color-red-accent);
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .article-content .article-header .article-rubric-badge:hover {
        color: var(--color-red-accent);
        background-color: var(--white-color); } }
    @media (max-width: 991.98px) {
      .article-content .article-header .article-rubric-badge {
        padding: 4px 12px;
        font-size: 14px;
        line-height: 18px; } }

.article-content article {
  padding: 24px;
  border-radius: 24px;
  background-color: var(--white-color); }
  @media (max-width: 991.98px) {
    .article-content article {
      padding: 16px 16px 24px; } }

.article-content .page-image {
  border-radius: 16px;
  margin-bottom: 27px; }

.article-content .article-text-wrap {
  max-width: 778px;
  width: 100%;
  margin: 0 auto; }

.nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.16); }
  @media (max-width: 991.98px) {
    .nav-buttons {
      margin-top: 16px;
      padding-top: 12px; } }
  .nav-buttons .nav-link-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--color-black-deep);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    text-transform: none; }
    @media (pointer: fine) {
      .nav-buttons .nav-link-item:hover {
        color: var(--color-red-accent); } }
    @media (max-width: 991.98px) {
      .nav-buttons .nav-link-item {
        padding: 0;
        gap: 10px;
        font-size: 12px;
        line-height: 16px; } }
  .nav-buttons .nav-link-item-prev {
    text-align: left; }
  .nav-buttons .nav-link-item-next {
    text-align: right;
    margin-left: auto; }
  .nav-buttons .arrow-wrapp {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-red-accent);
    border-radius: 50%; }
    .nav-buttons .arrow-wrapp .ic {
      color: var(--white-color);
      width: 12px;
      height: 12px; }

.article-section-youtube:not(:last-child) {
  margin-bottom: 20px; }

.article-section-youtube .preview {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 16px;
  overflow: hidden; }
  .article-section-youtube .preview .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: 116px;
    height: 80px; }

.article-aside-sticky {
  position: sticky;
  top: 96px;
  max-height: calc(100dvh - 104px);
  overflow: auto; }

.article-aside-nav {
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 10px #cfcfcf;
          box-shadow: 2px 2px 10px #cfcfcf;
  background: white;
  margin-bottom: 30px; }
  .article-aside-nav .title {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px; }
  .article-aside-nav nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px; }

.articles-latest .btn {
  margin: 24px auto 0; }
  @media (max-width: 767.98px) {
    .articles-latest .btn {
      margin: 16px auto 0; } }

.articles-latest {
  overflow: hidden; }

.products-carousel-nav {
  margin-top: 14px; }
  @media (max-width: 991.98px) {
    .products-carousel-nav {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 16px; }
      .products-carousel-nav .swiper-button-prev,
      .products-carousel-nav .swiper-button-next {
        position: static;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .products-carousel-nav .swiper-pagination {
        --swiper-pagination-bottom: 16px;
        position: absolute !important;
        margin: 0;
        -webkit-transform: translateX(-50%) !important;
            -ms-transform: translateX(-50%) !important;
                transform: translateX(-50%) !important; } }

.rubrics-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px; }
  @media (max-width: 991.98px) {
    .rubrics-nav {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      gap: 12px; } }
  .rubrics-nav .rubric {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .rubrics-nav .rubric:hover {
        border: 1px solid var(--color-red-accent); } }
    .rubrics-nav .rubric:not(:last-child) {
      margin-bottom: 0; }
    .rubrics-nav .rubric.active {
      color: var(--white-color);
      border: 1px solid var(--color-red-accent);
      background-color: var(--color-red-accent); }
    @media (max-width: 991.98px) {
      .rubrics-nav .rubric {
        font-size: 14px;
        line-height: 20px; } }

.articles-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px; }
  @media (max-width: 991.98px) {
    .articles-grid {
      row-gap: 12px; } }

.articles-title {
  color: var(--color-gray-medium);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase; }
  .articles-title:not(:last-child) {
    margin-bottom: 8px; }
  @media (max-width: 767.98px) {
    .articles-title {
      text-align: center; }
      .articles-title:not(:last-child) {
        margin-bottom: 14px; } }

.article-aside-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px; }

.article-card {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  background: var(--white-color);
  overflow: hidden;
  z-index: 1; }
  .article-card.article-card-row-mod {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
    padding: 16px; }
    .article-card.article-card-row-mod .article-card-wrapp {
      gap: 8px; }
    .article-card.article-card-row-mod .article-title {
      font-size: 16px;
      line-height: 1.25; }
    .article-card.article-card-row-mod .arrow-wrapp {
      width: 40px;
      height: 40px;
      -webkit-transform: translate(4px, 4px);
          -ms-transform: translate(4px, 4px);
              transform: translate(4px, 4px); }
      .article-card.article-card-row-mod .arrow-wrapp .ic {
        width: 16px;
        height: 16px; }
  @media (min-width: 992px) {
    .article-card {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 300px 1fr;
      grid-template-columns: 300px 1fr;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 16px; } }
  @media (max-width: 991.98px) {
    .article-card {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 16px;
      padding: 16px; } }
  .article-card .article-card-wrapp {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 160px; }
    @media (max-width: 1199.98px) {
      .article-card .article-card-wrapp {
        gap: 50px; } }
    @media (max-width: 991.98px) {
      .article-card .article-card-wrapp {
        gap: 8px; } }
  .article-card .article-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden; }
    .article-card .article-img picture,
    .article-card .article-img img {
      max-width: 460px;
      width: 100%;
      border-radius: 20px; }
  .article-card .article-card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px; }
    .article-card .article-card-header:not(:last-child) {
      margin-bottom: 12px; }
      @media (max-width: 991.98px) {
        .article-card .article-card-header:not(:last-child) {
          margin-bottom: 8px; } }
    .article-card .article-card-header .article-date {
      color: var(--color-black);
      font-size: 14px;
      font-weight: 600;
      line-height: 18px;
      text-align: center;
      padding: 4px 10px;
      border-radius: 100px;
      background-color: var(--bg); }
    .article-card .article-card-header .article-rubric-badge {
      color: var(--white-color);
      font-size: 14px;
      font-weight: 600;
      line-height: 18px;
      text-align: center;
      padding: 4px 10px;
      border-radius: 100px;
      background-color: var(--color-red-accent);
      text-decoration: none;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        .article-card .article-card-header .article-rubric-badge:hover {
          color: var(--color-red-accent);
          background-color: var(--white-color); } }
  .article-card .article-title {
    color: var(--color-black);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    text-decoration: none;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .article-card .article-title:hover {
        color: var(--color-red-accent); } }
    @media (max-width: 991.98px) {
      .article-card .article-title {
        font-size: 16px;
        line-height: 1.25; } }
  .article-card .article-announce {
    margin-top: 8px;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    text-overflow: ellipsis; }
    @media (max-width: 991.98px) {
      .article-card .article-announce {
        display: none; } }
  .article-card .arrow-wrapp {
    -ms-flex-item-align: end;
        align-self: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-red-accent);
    border: 1px solid var(--color-red-accent);
    margin-left: auto;
    -webkit-transform: translate(8px, 8px);
        -ms-transform: translate(8px, 8px);
            transform: translate(8px, 8px);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .article-card .arrow-wrapp:hover {
        background-color: var(--white-color); }
        .article-card .arrow-wrapp:hover .ic {
          color: var(--color-red-accent);
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); } }
    .article-card .arrow-wrapp .ic {
      color: var(--white-color);
      width: 20px;
      height: 20px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 991.98px) {
        .article-card .arrow-wrapp .ic {
          width: 16px;
          height: 16px; } }
    @media (max-width: 991.98px) {
      .article-card .arrow-wrapp {
        width: 40px;
        height: 40px;
        -webkit-transform: translate(4px, 4px);
            -ms-transform: translate(4px, 4px);
                transform: translate(4px, 4px); } }

.article-card.article-card-video .article-img {
  position: relative; }
  .article-card.article-card-video .article-img:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: 58px;
    height: 40px;
    background: url('data:image/svg+xml,<svg class="play-btn" width="116" height="81" viewBox="0 0 116 81" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M46.2857 57.8571L76.3136 40.5L46.2857 23.1429V57.8571ZM113.169 12.555C113.921 15.2743 114.441 18.9193 114.789 23.5479C115.194 28.1764 115.367 32.1686 115.367 35.64L115.714 40.5C115.714 53.1707 114.789 62.4857 113.169 68.445C111.722 73.6521 108.366 77.0079 103.159 78.4543C100.44 79.2064 95.4643 79.7271 87.8271 80.0743C80.3057 80.4793 73.4207 80.6529 67.0564 80.6529L57.8571 81C33.615 81 18.5143 80.0743 12.555 78.4543C7.34786 77.0079 3.99214 73.6521 2.54571 68.445C1.79357 65.7257 1.27286 62.0807 0.925715 57.4521C0.520715 52.8236 0.347143 48.8314 0.347143 45.36L0 40.5C0 27.8293 0.925715 18.5143 2.54571 12.555C3.99214 7.34786 7.34786 3.99214 12.555 2.54571C15.2743 1.79357 20.25 1.27286 27.8871 0.925713C35.4086 0.520713 42.2936 0.347143 48.6579 0.347143L57.8571 0C82.0993 0 97.2 0.925715 103.159 2.54571C108.366 3.99214 111.722 7.34786 113.169 12.555Z" fill="red"></path></svg>') no-repeat center;
    background-size: contain; }
  .article-card.article-card-video .article-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #fff; }

.page-contacts .page-contacts-row {
  padding: 32px;
  border-radius: 24px;
  background: var(--white-color); }
  @media (min-width: 992px) {
    .page-contacts .page-contacts-row {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 32px; } }
  @media (max-width: 991.98px) {
    .page-contacts .page-contacts-row {
      padding: 24px 16px 16px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 30px; } }

.page-contacts .page-contacts-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (max-width: 991.98px) {
    .page-contacts .page-contacts-col {
      width: 100%; } }

.contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .contacts-block .contacts-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16); }
    .contacts-block .contacts-info:not(:first-child) {
      padding-top: 14px; }
    @media (max-width: 991.98px) {
      .contacts-block .contacts-info {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    .contacts-block .contacts-info.phones .info-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .contacts-block .contacts-info.phones-main .info-content {
      color: var(--color-gray-steel);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      margin-top: 8px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      gap: 8px; }
      @media (max-width: 991.98px) {
        .contacts-block .contacts-info.phones-main .info-content {
          margin-left: -48px;
          margin-top: 4px; } }
    .contacts-block .contacts-info.phones-main .phone {
      color: var(--color-black-deep);
      font-size: 32px;
      font-weight: 600;
      line-height: 36px;
      text-transform: uppercase;
      text-decoration: none;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        .contacts-block .contacts-info.phones-main .phone:hover {
          color: var(--color-red-accent); } }
      @media (max-width: 991.98px) {
        .contacts-block .contacts-info.phones-main .phone {
          font-size: 18px;
          line-height: 20px; } }
  .contacts-block .info-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 48px;
    height: 48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-red-accent);
    color: var(--white); }
    .contacts-block .info-icon .ic,
    .contacts-block .info-icon .icon {
      width: 24px;
      height: 24px; }
    @media (max-width: 991.98px) {
      .contacts-block .info-icon {
        width: 38px;
        height: 38px;
        min-width: 38px; }
        .contacts-block .info-icon .ic,
        .contacts-block .info-icon .icon {
          width: 18px;
          height: 18px; } }
  .contacts-block .info-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
  .contacts-block .info-title {
    color: var(--color-gray-steel);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase; }
    @media (min-width: 992px) {
      .contacts-block .info-title:not(:last-child) {
        margin-bottom: 4px; } }
  .contacts-block .info-phone-main {
    color: var(--color-black-deep);
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .contacts-block .info-phone-main:hover {
        color: var(--color-red-accent); } }
    @media (max-width: 991.98px) {
      .contacts-block .info-phone-main {
        font-size: 18px;
        line-height: 20px; } }
  .contacts-block .info-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px 12px;
    color: var(--color-black-deep);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px; }
    .contacts-block .info-content a {
      color: var(--color-black-deep);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (max-width: 991.98px) {
        .contacts-block .info-content a {
          font-size: 18px; } }
      .contacts-block .info-content a .sup,
      .contacts-block .info-content a .quote,
      .contacts-block .info-content a .nums {
        font-weight: 400; }
      @media (any-hover: hover) {
        .contacts-block .info-content a:hover, .contacts-block .info-content a:focus {
          text-decoration: none;
          color: var(--color-red-accent); } }
    @media (max-width: 991.98px) {
      .contacts-block .info-content {
        font-size: 16px; } }
  .contacts-block .btn-main {
    width: 100%;
    margin-top: 16px; }

.zakaz-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (any-hover: hover) {
    .zakaz-link:hover img {
      -webkit-filter: grayscale(100%);
              filter: grayscale(100%); } }
  .zakaz-link img {
    height: 24px;
    width: auto;
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
    -webkit-transition: -webkit-filter 0.3s ease;
    transition: -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease; }

.socials-share .socials-share-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px; }

.socials-share .share-button {
  max-width: 90px;
  color: var(--color-gray-medium);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase; }

.socials-share .socials-wrap {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px; }

.socials-share .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer; }
  @media (any-hover: hover) {
    .socials-share .social:hover {
      -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
              transform: translateY(-2px); }
      .socials-share .social:hover img {
        -webkit-filter: grayscale(0) brightness(0.2);
                filter: grayscale(0) brightness(0.2); } }
  .socials-share .social img {
    width: 20px;
    height: 20px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    -webkit-transition: -webkit-filter 0.3s ease;
    transition: -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease; }

.socials-wrap {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px; }
  .socials-wrap nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px; }
  .socials-wrap .social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px; }
    @media (any-hover: hover) {
      .socials-wrap .social-link:hover svg path {
        fill: var(--color-red-accent); } }
    .socials-wrap .social-link svg,
    .socials-wrap .social-link .ic {
      width: 20px;
      height: 20px; }
      .socials-wrap .social-link svg path,
      .socials-wrap .social-link .ic path {
        fill: var(--color-gray-steel);
        -webkit-transition: fill 0.3s ease;
        transition: fill 0.3s ease; }

.messengers .messengers-title:not(:last-child) {
  margin-bottom: 16px; }

.messengers .messengers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px; }

.messengers .messengers-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px; }
  .messengers .messengers-item .messengers-item-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

@media (min-width: 992px) {
  .offers-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; } }

@media (max-width: 991.98px) {
  .offers-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px; } }

.offer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--color-black); }
  @media (any-hover: hover) {
    .offer-item:hover {
      text-decoration: none;
      color: var(--color-red-accent);
      -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
              box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
      .offer-item:hover .icon-arrow {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); } }
  .offer-item:hover {
    text-decoration: none;
    color: var(--color-red-accent); }
  .offer-item .offer-item__img {
    width: 100%; }
    .offer-item .offer-item__img picture,
    .offer-item .offer-item__img img {
      width: 100%; }
  .offer-item p {
    margin-bottom: 0; }
  .offer-item .offer-item__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
    padding: 20px 24px 24px;
    background: var(--white); }
    @media (max-width: 991.98px) {
      .offer-item .offer-item__content {
        padding: 16px 54px 16px 16px; } }
  .offer-item .offer-item__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .offer-item .offer-item__title {
        font-size: 16px;
        line-height: 1.25; } }
  .offer-item .offer-item__date {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 8px 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 100px;
    background: var(--bg); }
    @media (max-width: 991.98px) {
      .offer-item .offer-item__date {
        padding: 4px 10px;
        font-size: 14px;
        line-height: 18px; } }
  .offer-item .icon-arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    @media (max-width: 991.98px) {
      .offer-item .icon-arrow {
        bottom: 8px; } }
    .offer-item .icon-arrow .icon {
      width: 12px;
      height: 12px; }

.icon-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--white-color);
  background: var(--color-red-accent);
  border-radius: 100px; }
  .icon-arrow .icon {
    width: 16px;
    height: 16px; }

.rubric:not(:last-child) {
  margin-bottom: 20px; }

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

.rubric .rubric__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px; }
  @media (max-width: 767.98px) {
    .rubric .rubric__list {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      gap: 12px; } }

@media (min-width: 768px) {
  .rubric .rubric__item {
    -ms-flex-negative: 0;
        flex-shrink: 0; } }

@media (max-width: 767.98px) {
  .rubric .rubric__item:first-child {
    -ms-grid-column-span: 2;
    grid-column: span 2; } }

.rubric .rubric__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 100px;
  background: var(--white-color);
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s; }
  @media (any-hover: hover) {
    .rubric .rubric__link:hover {
      color: var(--white-color);
      background: var(--color-red-accent);
      text-decoration: none; } }
  .rubric .rubric__link.active {
    color: var(--white-color);
    background: var(--color-red-accent); }
  @media (max-width: 991.98px) {
    .rubric .rubric__link {
      font-size: 14px;
      line-height: 18px; } }

.offer-date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 100px;
  background: var(--white-color); }
  @media (max-width: 991.98px) {
    .offer-date {
      padding: 4px 10px;
      font-size: 14px;
      line-height: 18px; } }
  .offer-date:not(:last-child) {
    margin-bottom: 20px; }

.page-img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .page-img picture,
  .page-img img {
    width: 100%;
    height: auto;
    border-radius: 24px 24px 0 0; }

.offer-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 437px;
  grid-template-columns: 1fr 437px;
  gap: 16px; }
  @media (max-width: 1199.98px) {
    .offer-row {
      -ms-grid-columns: 1fr 380px;
      grid-template-columns: 1fr 380px; } }
  @media (max-width: 991.98px) {
    .offer-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 20px; } }
  @media (max-width: 991.98px) {
    .offer-row .offer-col:first-child {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .offer-row .offer-col:last-child {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }
  .offer-row .offer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px;
    background: var(--white-color);
    border-radius: 0 0 24px 24px; }
    @media (max-width: 991.98px) {
      .offer-row .offer-content {
        padding: 16px; } }
  .offer-row .text-formatted {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2; }
    @media (max-width: 991.98px) {
      .offer-row .text-formatted {
        font-size: 16px;
        line-height: 1.5; } }
    .offer-row .text-formatted h3 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.2;
      text-transform: uppercase; }
      @media (max-width: 991.98px) {
        .offer-row .text-formatted h3 {
          font-size: 16px;
          line-height: 1.25; } }
    .offer-row .text-formatted figure.image {
      margin: 0; }
      .offer-row .text-formatted figure.image:not(:last-child) {
        margin-bottom: 16px; }
    .offer-row .text-formatted img {
      width: 100%;
      margin: 0;
      border-radius: 24px; }
      .offer-row .text-formatted img:not(:last-child) {
        margin-bottom: 16px; }
      @media (max-width: 991.98px) {
        .offer-row .text-formatted img {
          border-radius: 16px; } }
    .offer-row .text-formatted h2, .offer-row .text-formatted h3, .offer-row .text-formatted h4, .offer-row .text-formatted h5, .offer-row .text-formatted h6 {
      color: var(--color-red-accent);
      text-transform: uppercase; }
      .offer-row .text-formatted h2:not(:last-child), .offer-row .text-formatted h3:not(:last-child), .offer-row .text-formatted h4:not(:last-child), .offer-row .text-formatted h5:not(:last-child), .offer-row .text-formatted h6:not(:last-child) {
        margin-bottom: 16px; }
    .offer-row .text-formatted ul:not(.list) > li {
      position: relative;
      padding-left: 30px;
      color: var(--color-black-deep);
      margin-bottom: 0; }
      @media (max-width: 991.98px) {
        .offer-row .text-formatted ul:not(.list) > li {
          padding-left: 24px; } }
      .offer-row .text-formatted ul:not(.list) > li::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 12px;
        width: 4px;
        min-width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--color-black); }
        @media (max-width: 991.98px) {
          .offer-row .text-formatted ul:not(.list) > li::before {
            left: 10px; } }
  .offer-row .nav-buttons {
    margin-top: 32px;
    padding-top: 26px;
    display: none; }
    .offer-row .nav-buttons:has(.nav-link-item) {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    @media (max-width: 991.98px) {
      .offer-row .nav-buttons {
        padding-top: 12px;
        margin-top: 20px; } }
    .offer-row .nav-buttons .btn.nav-link-item-prev {
      padding-left: 0; }
    .offer-row .nav-buttons .btn.nav-link-item-next {
      padding-right: 0; }

.promotion {
  border-radius: 24px;
  padding: 24px;
  background: var(--white-color); }
  @media (min-width: 992px) {
    .promotion {
      position: sticky;
      top: 96px;
      left: 0;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content; } }
  @media (max-width: 991.98px) {
    .promotion {
      padding: 16px; } }
  .promotion.accordion-open .promotion__title::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
        -ms-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg); }
  .promotion .promotion__title {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    pointer-events: none; }
    @media (min-width: 992px) {
      .promotion .promotion__title:not(:last-child) {
        margin-bottom: 20px; } }
    @media (max-width: 991.98px) {
      .promotion .promotion__title {
        position: relative;
        padding-right: 16px;
        pointer-events: initial;
        font-size: 16px;
        line-height: 1.25; }
        .promotion .promotion__title::after {
          content: "";
          position: absolute;
          top: 50%;
          right: 0;
          -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
                  transform: translateY(-50%);
          -ms-flex-negative: 0;
              flex-shrink: 0;
          display: block;
          width: 15px;
          height: 9px;
          margin-left: auto;
          -webkit-transition: -webkit-transform 0.3s ease;
          transition: -webkit-transform 0.3s ease;
          transition: transform 0.3s ease;
          transition: transform 0.3s ease, -webkit-transform 0.3s ease;
          background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="9" viewBox="0 0 15 9" fill="none"><path d="M7.49997 8.55044C7.23114 8.55044 6.96235 8.4478 6.75739 8.24294L0.307713 1.79319C-0.102571 1.38291 -0.102571 0.717706 0.307713 0.307588C0.71783 -0.102529 1.3829 -0.102529 1.79322 0.307588L7.49997 6.01468L13.2068 0.307788C13.617 -0.10233 14.2821 -0.10233 14.6921 0.307788C15.1026 0.717905 15.1026 1.38311 14.6921 1.79339L8.24256 8.24314C8.0375 8.44803 7.76871 8.55044 7.49997 8.55044Z" fill="%23C3161A"/></svg>') center no-repeat; } }
  @media (max-width: 991.98px) {
    .promotion .promotion__inner {
      display: none;
      padding-top: 16px; } }
  .promotion .promotion__search {
    position: relative;
    width: 100%; }
    .promotion .promotion__search:not(:last-child) {
      margin-bottom: 16px; }
    .promotion .promotion__search input {
      display: block;
      width: 100%;
      height: 48px;
      border-radius: 16px;
      border: 1px solid rgba(0, 0, 0, 0.16);
      background: var(--white-color);
      color: var(--color-black-deep);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      padding: 10px 20px 10px 48px;
      outline: none;
      -webkit-appearance: none;
      -moz-appearance: none;
           appearance: none; }
      .promotion .promotion__search input::-webkit-search-decoration, .promotion .promotion__search input::-webkit-search-cancel-button, .promotion .promotion__search input::-webkit-search-results-button, .promotion .promotion__search input::-webkit-search-results-decoration {
        display: none; }
      .promotion .promotion__search input:focus {
        outline: none;
        -webkit-box-shadow: none;
                box-shadow: none;
        border-color: var(--color-red-accent); }
      .promotion .promotion__search input::-webkit-input-placeholder {
        color: var(--color-black-deep); }
      .promotion .promotion__search input::-moz-placeholder {
        color: var(--color-black-deep); }
      .promotion .promotion__search input:-ms-input-placeholder {
        color: var(--color-black-deep); }
      .promotion .promotion__search input::-ms-input-placeholder {
        color: var(--color-black-deep); }
      .promotion .promotion__search input::placeholder {
        color: var(--color-black-deep); }
      @media (max-width: 991.98px) {
        .promotion .promotion__search input {
          padding: 8px 16px 8px 40px;
          height: 44px;
          border-radius: 10px; } }
    .promotion .promotion__search .icon {
      position: absolute;
      z-index: 100;
      top: 50%;
      left: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      height: 20px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      aspect-ratio: 1/1;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      color: var(--color-red-accent); }
      @media (max-width: 991.98px) {
        .promotion .promotion__search .icon {
          left: 16px;
          width: 16px;
          height: 16px; } }
  .promotion .promotion__list {
    list-style: none;
    padding: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 14px;
    max-height: 370px;
    overflow: auto; }
    @media (min-width: 992px) {
      .promotion .promotion__list, .promotion .promotion__list * {
        scrollbar-color: auto;
        scrollbar-width: auto; }
      .promotion .promotion__list::-webkit-scrollbar,
      .promotion .promotion__list *::-webkit-scrollbar {
        width: 3px;
        height: 3px; }
      .promotion .promotion__list::-webkit-scrollbar-button,
      .promotion .promotion__list *::-webkit-scrollbar-button {
        display: none; }
      .promotion .promotion__list::-webkit-scrollbar-track,
      .promotion .promotion__list *::-webkit-scrollbar-track {
        background: #e7e7e7; }
      .promotion .promotion__list::-webkit-scrollbar-track-piece,
      .promotion .promotion__list *::-webkit-scrollbar-track-piece {
        background: #e7e7e7; }
      .promotion .promotion__list::-webkit-scrollbar-thumb,
      .promotion .promotion__list *::-webkit-scrollbar-thumb {
        background: #c3161a;
        border-radius: 99px; }
      .promotion .promotion__list::-webkit-scrollbar-corner,
      .promotion .promotion__list *::-webkit-scrollbar-corner {
        background: #e7e7e7; } }
    .promotion .promotion__list:not(:last-child) {
      margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .promotion .promotion__list {
        max-height: 326px; } }
  .promotion .btn {
    padding: 12px 24px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    .promotion .btn .icon-arrow {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      padding: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--white-color);
      color: var(--color-black); }
      .promotion .btn .icon-arrow .icon {
        width: 10px;
        height: 10px; }
    @media (max-width: 991.98px) {
      .promotion .btn {
        min-height: 44px;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        width: 100%; } }

.red-mod {
  color: var(--color-red-accent); }

.item-promotion {
  position: relative;
  padding: 12px 12px 12px 24px;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  @media (max-width: 991.98px) {
    .item-promotion {
      padding: 8px 8px 12px 22px;
      font-size: 14px;
      line-height: 18px; } }
  .item-promotion:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08); }
  .item-promotion .item-promotion__icon {
    position: absolute;
    top: 14px;
    left: 0;
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 1/1;
    color: var(--color-red-accent); }
    @media (max-width: 991.98px) {
      .item-promotion .item-promotion__icon {
        top: 8px;
        width: 14px;
        height: 14px; } }
    .item-promotion .item-promotion__icon .icon {
      width: 100%;
      height: 100%; }
  .item-promotion .item-promotion__title {
    font-weight: 600; }
    @media (min-width: 992px) {
      .item-promotion .item-promotion__title:not(:last-child) {
        margin-bottom: 4px; } }
  .item-promotion .item-promotion__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4px; }

.page-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .page-image:not(:last-child) {
    margin-bottom: 48px; }
    @media (max-width: 991.98px) {
      .page-image:not(:last-child) {
        margin-bottom: 20px; } }
  .page-image picture, .page-image img {
    aspect-ratio: 1344 / 500;
    border-radius: 16px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
    @media (max-width: 767.98px) {
      .page-image picture, .page-image img {
        aspect-ratio: 335 / 200; } }

.about-head-section:not(:last-child) {
  margin-bottom: 48px; }

.page-about {
  overflow: hidden;
  background: var(--white-color); }
  .page-about:not(:last-child) {
    margin-bottom: 48px; }
    @media (max-width: 991.98px) {
      .page-about:not(:last-child) {
        margin-bottom: 20px; } }
  .page-about .page-about__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px; }
    @media (max-width: 991.98px) {
      .page-about .page-about__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .page-about .page-about__row:not(:last-child) {
      margin-bottom: 48px; }
      @media (max-width: 991.98px) {
        .page-about .page-about__row:not(:last-child) {
          margin-bottom: 20px; } }
  .page-about .page-about__pic {
    width: 324px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: end;
        align-self: flex-end; }
    @media (max-width: 991.98px) {
      .page-about .page-about__pic {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto; } }
    .page-about .page-about__pic img {
      width: 100%;
      border-radius: 16px;
      aspect-ratio: 324 / 182;
      -o-object-fit: cover;
         object-fit: cover; }
  .page-about .page-about__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 892px;
    margin-left: auto;
    color: var(--color-black-deep);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    .page-about .page-about__content p {
      margin-bottom: 0; }
      .page-about .page-about__content p:not(:last-child) {
        margin-bottom: 16px; }
    .page-about .page-about__content strong {
      display: block;
      color: var(--color-gray-medium);
      font-size: 14px;
      font-weight: 500;
      line-height: 18px;
      text-transform: uppercase; }
      .page-about .page-about__content strong:not(:last-child) {
        margin-bottom: 8px; }
      @media (max-width: 991.98px) {
        .page-about .page-about__content strong {
          font-size: 12px;
          line-height: 16px; }
          .page-about .page-about__content strong:not(:last-child) {
            margin-bottom: 16px; } }
    .page-about .page-about__content h3, .page-about .page-about__content h4, .page-about .page-about__content .title {
      color: var(--color-black);
      font-size: 24px;
      font-weight: 600;
      line-height: 28px;
      text-transform: uppercase;
      margin-bottom: 0; }
      .page-about .page-about__content h3:not(:last-child), .page-about .page-about__content h4:not(:last-child), .page-about .page-about__content .title:not(:last-child) {
        margin-bottom: 16px; }
      @media (max-width: 991.98px) {
        .page-about .page-about__content h3, .page-about .page-about__content h4, .page-about .page-about__content .title {
          font-size: 18px;
          line-height: 20px; } }
    @media (max-width: 991.98px) {
      .page-about .page-about__content {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        font-size: 14px;
        line-height: 24px; } }

.blockquote {
  padding-left: 20px;
  border-left: 4px solid var(--color-red-accent);
  color: var(--color-black);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  text-wrap: balance; }
  .blockquote p:not(:last-child) {
    margin-bottom: 16px; }
  .blockquote:not(:last-child) {
    margin-bottom: 48px; }
  @media (max-width: 991.98px) {
    .blockquote {
      font-size: 16px;
      border-width: 2px;
      padding-left: 12px; }
      .blockquote:not(:last-child) {
        margin-bottom: 20px; } }

.utp {
  overflow: hidden; }
  .utp:not(:last-child) {
    margin-bottom: 48px; }
    @media (max-width: 991.98px) {
      .utp:not(:last-child) {
        margin-bottom: 20px; } }
  .utp .utp__title {
    color: var(--color-black-deep);
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase; }
    .utp .utp__title:not(:last-child) {
      margin-bottom: 16px; }
      @media (max-width: 991.98px) {
        .utp .utp__title:not(:last-child) {
          margin-bottom: 10px; } }
  .utp .utp__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0; }
    @media (max-width: 767.98px) {
      .utp .utp__list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; } }

.item-utp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  background: var(--bg);
  color: var(--color-gray-medium);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; }
  @media (max-width: 991.98px) {
    .item-utp {
      padding: 16px; } }
  .item-utp .item-utp__icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 40px;
    background: var(--color-red-accent);
    color: var(--white-color); }
    .item-utp .item-utp__icon:not(:last-child) {
      margin-bottom: 16px; }
    .item-utp .item-utp__icon .icon {
      width: 48px;
      height: 48px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    @media (max-width: 991.98px) {
      .item-utp .item-utp__icon {
        width: 50px;
        height: 50px; }
        .item-utp .item-utp__icon .icon {
          width: 30px;
          height: 30px; } }
  .item-utp .item-utp__title {
    color: var(--color-black-deep);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px; }
    @media (max-width: 991.98px) {
      .item-utp .item-utp__title {
        font-size: 14px;
        line-height: 20px; } }
  .item-utp .item-utp__text {
    margin-top: 8px; }
    .item-utp .item-utp__text p {
      margin-bottom: 0; }
      .item-utp .item-utp__text p:not(:last-child) {
        margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .item-utp .item-utp__text {
        display: none; } }

.banners {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px; }
  .banners:not(:last-child) {
    margin-bottom: 48px; }
  .banners .banners-slider {
    width: 100%;
    max-width: 632px;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 575.98px) {
      .banners .banners-slider {
        max-width: 216px; } }
    .banners .banners-slider:not(.swiper-initialized) .swiper-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 16px; }
      @media (max-width: 991.98px) {
        .banners .banners-slider:not(.swiper-initialized) .swiper-wrapper {
          gap: 12px; } }
    .banners .banners-slider:not(.swiper-initialized) .swiper-slide {
      width: 632px; }
      @media (max-width: 575.98px) {
        .banners .banners-slider:not(.swiper-initialized) .swiper-slide {
          width: 210px; } }
  .banners .swiper-slide {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .banners .swiper-slide img {
      aspect-ratio: 632 / 350;
      border-radius: 24px; }
      @media (max-width: 575.98px) {
        .banners .swiper-slide img {
          aspect-ratio: 210 / 116; } }

.about-marker .about-marker__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0; }
  @media (max-width: 575.98px) {
    .about-marker .about-marker__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 12px; } }

.about-marker .about-marker__item {
  padding: 0; }

.about-marker .about-marker__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  color: var(--color-gray-medium);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 24px 12px 12px 24px;
  border-radius: 24px;
  background: var(--bg);
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease; }
  @media (any-hover: hover) {
    .about-marker .about-marker__item-link:hover {
      background: var(--color-red-accent);
      color: var(--white-color); }
      .about-marker .about-marker__item-link:hover .about-marker__item-title {
        color: var(--white-color); }
      .about-marker .about-marker__item-link:hover .about-marker__item-icon {
        background: var(--white-color);
        color: var(--color-black-deep); } }
  .about-marker .about-marker__item-link:hover, .about-marker .about-marker__item-link:focus {
    text-decoration: none; }
  @media (max-width: 991.98px) {
    .about-marker .about-marker__item-link {
      padding: 16px 10px 10px 16px; } }

.about-marker .about-marker__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px; }
  @media (max-width: 991.98px) {
    .about-marker .about-marker__item-content {
      row-gap: 4px; } }

.about-marker .about-marker__item-title {
  color: var(--color-black-deep);
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  @media (max-width: 991.98px) {
    .about-marker .about-marker__item-title {
      font-size: 18px;
      line-height: 24px; } }

.about-marker .about-marker__item-text {
  padding-bottom: 12px; }
  @media (max-width: 991.98px) {
    .about-marker .about-marker__item-text {
      padding-bottom: 6px; } }
  .about-marker .about-marker__item-text p {
    margin-bottom: 0; }
    .about-marker .about-marker__item-text p:not(:last-child) {
      margin-bottom: 12px; }

.about-marker .about-marker__item-icon {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  background: var(--color-red-accent);
  color: var(--white-color);
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease; }
  .about-marker .about-marker__item-icon .icon {
    width: 16px;
    height: 16px; }

.faq .faq__list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .faq .faq__list:not(:last-child) {
    margin-bottom: 32px; }
    @media (max-width: 991.98px) {
      .faq .faq__list:not(:last-child) {
        margin-bottom: 50px; } }

.faq .faq__item {
  padding: 0; }

.faq .faq__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 12px; }

.faq .faq__heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase; }
  @media (max-width: 991.98px) {
    .faq .faq__heading {
      font-size: 16px;
      text-align: center; } }

.item-faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  background: var(--bg); }
  .item-faq:not(:last-child) {
    margin-bottom: 4px; }
    @media (max-width: 991.98px) {
      .item-faq:not(:last-child) {
        margin-bottom: 12px; } }
  @media (max-width: 991.98px) {
    .item-faq {
      padding-bottom: 16px !important; } }
  .item-faq.accordion-open .item-faq__title .icon {
    color: var(--color-red-accent);
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .item-faq .item-faq__title {
    width: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    color: var(--color-black-deep);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media (any-hover: hover) {
      .item-faq .item-faq__title:hover {
        color: var(--color-red-accent); } }
    @media (max-width: 991.98px) {
      .item-faq .item-faq__title {
        padding: 16px 16px 0;
        gap: 10px;
        font-size: 14px;
        line-height: 16px; } }
    .item-faq .item-faq__title::before {
      content: "";
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 24px;
      height: 24px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 24 24" fill="none"><path d="M12.0375 4.86808e-05C5.3813 -0.0187013 -0.0187013 5.3813 4.86808e-05 12.0375C0.0187987 18.6188 5.50786 24 12.0891 24H24V12.0891C24 5.50786 18.6188 0.0187987 12.0375 4.86808e-05ZM13.0688 18.1125C12.7547 18.3891 12.3657 18.5297 11.8969 18.5297C11.4282 18.5297 11.0391 18.3891 10.725 18.1125C10.411 17.836 10.2563 17.4797 10.2563 17.0485C10.2563 16.6172 10.411 16.261 10.725 15.9844C11.0391 15.7079 11.4282 15.5672 11.8969 15.5672C12.3657 15.5672 12.7547 15.7079 13.0688 15.9844C13.3829 16.261 13.5375 16.6172 13.5375 17.0485C13.5375 17.4797 13.3782 17.8313 13.0688 18.1125ZM15.8438 10.2704C15.6516 10.6688 15.3422 11.0766 14.9157 11.4891L13.9079 12.4266C13.6219 12.7032 13.4204 12.9844 13.3125 13.275C13.2 13.5657 13.1391 13.9313 13.1297 14.3766H10.6172C10.6172 13.5235 10.7157 12.8485 10.9079 12.3563C11.1047 11.8547 11.4282 11.4141 11.8454 11.0719C12.2766 10.711 12.6094 10.3782 12.8344 10.0782C13.0547 9.79224 13.1719 9.44067 13.1719 9.08442C13.1719 8.20317 12.7922 7.75786 12.0329 7.75786C11.7047 7.74849 11.3907 7.88911 11.1844 8.14224C10.9688 8.40005 10.8516 8.74692 10.8422 9.18755H7.87974C7.8938 8.01567 8.25942 7.1063 8.98599 6.45474C9.71255 5.80317 10.7297 5.47505 12.0375 5.47505C13.3407 5.47505 14.3532 5.77505 15.0704 6.37974C15.7875 6.98442 16.1438 7.83755 16.1438 8.94849C16.1391 9.40317 16.0407 9.85786 15.8438 10.2704Z" fill="%23C3161A"/></svg>') center no-repeat; }
      @media (max-width: 991.98px) {
        .item-faq .item-faq__title::before {
          width: 18px;
          height: 18px; } }
    .item-faq .item-faq__title .icon {
      margin-left: auto;
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg);
      color: var(--color-gray-steel);
      -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
      transition: color 0.3s ease, -webkit-transform 0.3s ease;
      transition: color 0.3s ease, transform 0.3s ease;
      transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease; }
      @media (max-width: 991.98px) {
        .item-faq .item-faq__title .icon {
          width: 18px;
          height: 18px; } }
  .item-faq .item-faq__content {
    display: none;
    padding: 0 20px 20px 56px;
    color: var(--color-black-deep);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 991.98px) {
      .item-faq .item-faq__content {
        padding: 10px 16px 0;
        font-size: 12px;
        line-height: 16px; } }
    .item-faq .item-faq__content p {
      max-width: 834px;
      margin-bottom: 0; }
      .item-faq .item-faq__content p:not(:last-child) {
        margin-bottom: 16px; }

.our-history {
  position: relative;
  overflow: hidden; }
  .our-history:not(:last-child) {
    margin-bottom: 48px; }
  .our-history .our-history__box {
    position: relative;
    padding-bottom: 42px; }
    @media (max-width: 991.98px) {
      .our-history .our-history__box {
        padding-bottom: 32px; } }
  .our-history .our-history__progress-bar {
    position: absolute;
    top: 0;
    width: 8px;
    height: 100%;
    border-radius: 8px 8px 0 0;
    background: var(--bg); }
    @media (min-width: 992px) {
      .our-history .our-history__progress-bar {
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); } }
    @media (max-width: 991.98px) {
      .our-history .our-history__progress-bar {
        left: 0;
        width: 4px; } }
  .our-history .our-history__line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: var(--color-red-accent);
    border-radius: 8px;
    height: var(--scroll-progress, 0%);
    -webkit-transition: height 0.1s linear;
    transition: height 0.1s linear; }
    @media (max-width: 991.98px) {
      .our-history .our-history__line {
        width: 4px; } }
  .our-history .our-history__list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0; }
  .our-history .our-history__bottom {
    max-width: calc(50% + 4px);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-top: -16px; }
    .our-history .our-history__bottom:not(:last-child) {
      margin-bottom: 24px; }
      @media (max-width: 991.98px) {
        .our-history .our-history__bottom:not(:last-child) {
          margin-bottom: 20px; } }
    @media (max-width: 991.98px) {
      .our-history .our-history__bottom {
        gap: 10px;
        margin-top: -12px;
        max-width: 100%;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .our-history .our-history__bottom::after {
          content: "";
          display: block;
          -webkit-box-flex: 1;
              -ms-flex: 1 1 auto;
                  flex: 1 1 auto;
          height: 100%;
          -webkit-box-ordinal-group: 4;
              -ms-flex-order: 3;
                  order: 3; } }
  .our-history .our-history__head {
    position: relative; }
    .our-history .our-history__head:not(:last-child) {
      margin-bottom: 0; }
    @media (max-width: 991.98px) {
      .our-history .our-history__head {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  .our-history .our-history__bottom-line {
    position: relative;
    height: 8px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    border-radius: 8px 0 0 8px;
    background: var(--bg); }
    .our-history .our-history__bottom-line .line-main {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      background: var(--color-red-accent);
      border-radius: 8px 0 0 8px;
      width: var(--scroll-progress, 0%);
      -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
      @media (max-width: 991.98px) {
        .our-history .our-history__bottom-line .line-main {
          left: 0;
          border-radius: 0 8px 8px 0; } }
    @media (max-width: 991.98px) {
      .our-history .our-history__bottom-line {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        height: 4px;
        border-radius: 0 8px 8px 0; } }

.item-our-history {
  padding: 24px 0; }
  @media (min-width: 992px) {
    .item-our-history {
      display: -ms-grid;
      display: grid;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-grid-columns: 1fr 88px 1fr;
      grid-template-columns: 1fr 88px 1fr;
      gap: 32px; } }
  @media (max-width: 991.98px) {
    .item-our-history {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 10px;
      padding: 16px 0 4px 20px; } }
  .item-our-history:has(.item-our-history__year.active) .item-our-history__img,
  .item-our-history:has(.item-our-history__year.active) .item-our-history__content {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .item-our-history:first-child {
    padding-top: 0; }
    @media (max-width: 991.98px) {
      .item-our-history:first-child .item-our-history__year {
        top: 15px; } }
  @media (min-width: 992px) {
    .item-our-history:nth-child(odd) .item-our-history__img {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .item-our-history:nth-child(odd) .item-our-history__year {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .item-our-history:nth-child(odd) .item-our-history__content {
      padding-right: 34px;
      padding-left: 0;
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; } }
  .item-our-history .item-our-history__img {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
    transition: opacity 1s ease, -webkit-transform 1s ease;
    transition: opacity 1s ease, transform 1s ease;
    transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease; }
    .item-our-history .item-our-history__img img {
      width: 100%;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      aspect-ratio: 298/165;
      border-radius: 24px; }
  .item-our-history .item-our-history__year {
    position: relative;
    z-index: 3;
    padding: 8px 13px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--color-black-deep);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    border-radius: 16px;
    background: var(--bg); }
    .item-our-history .item-our-history__year.active {
      background: var(--color-red-accent);
      color: #ffffff;
      -webkit-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s; }
    @media (max-width: 991.98px) {
      .item-our-history .item-our-history__year {
        position: absolute;
        top: 31px;
        left: -3px;
        font-size: 0;
        width: 10px;
        height: 10px;
        background: var(--color-red-accent);
        border-radius: 50%;
        padding: 0; } }
  .item-our-history .item-our-history__content {
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 1s ease 0.2s, -webkit-transform 1s ease 0.2s;
    transition: opacity 1s ease 0.2s, -webkit-transform 1s ease 0.2s;
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s, -webkit-transform 1s ease 0.2s; }
    @media (min-width: 992px) {
      .item-our-history .item-our-history__content {
        padding-left: 34px; } }
  .item-our-history .item-our-history__title {
    color: var(--color-black);
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    text-transform: uppercase; }
    .item-our-history .item-our-history__title strong {
      font-size: 72px;
      line-height: 80px;
      color: var(--color-red-accent); }
    @media (max-width: 991.98px) {
      .item-our-history .item-our-history__title {
        font-size: 14px;
        line-height: 30px; }
        .item-our-history .item-our-history__title strong {
          font-size: 24px;
          line-height: 42px; } }
  .item-our-history .item-our-history__subtitle {
    color: var(--color-black-dee);
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase; }
    .item-our-history .item-our-history__subtitle:not(:last-child) {
      margin-bottom: 12px; }
    @media (max-width: 991.98px) {
      .item-our-history .item-our-history__subtitle {
        font-size: 14px;
        line-height: 20px; }
        .item-our-history .item-our-history__subtitle:not(:last-child) {
          margin-bottom: 4px; } }
  .item-our-history .item-our-history__text {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px; }
    .item-our-history .item-our-history__text:not(:last-child) {
      margin-bottom: 12px; }
    .item-our-history .item-our-history__text p {
      margin-bottom: 0; }
      .item-our-history .item-our-history__text p:not(:last-child) {
        margin-bottom: 12px; }
    @media (max-width: 991.98px) {
      .item-our-history .item-our-history__text {
        font-size: 12px;
        line-height: 16px; } }

.grid-history {
  color: var(--color-black-deep);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; }
  @media (max-width: 991.98px) {
    .grid-history {
      font-size: 14px; } }
  @media (min-width: 992px) {
    .grid-history .grid-history__row {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 41%;
      grid-template-columns: 1fr 41%;
      gap: 20px; } }
  @media (max-width: 991.98px) {
    .grid-history .grid-history__row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 20px; }
      .grid-history .grid-history__row:not(:last-child) {
        margin-bottom: 20px; } }
  @media (min-width: 992px) {
    .grid-history .grid-history__row:first-child {
      margin-bottom: -98px; }
      .grid-history .grid-history__row:first-child .grid-history__col:last-child {
        padding-bottom: 100px; } }
  .grid-history .grid-history__col picture,
  .grid-history .grid-history__col img {
    width: 100%;
    aspect-ratio: 772 / 424;
    border-radius: 24px;
    -o-object-fit: cover;
       object-fit: cover; }
  .grid-history .grid-history__col p {
    margin-bottom: 0; }
    .grid-history .grid-history__col p:not(:last-child) {
      margin-bottom: 16px; }
  @media (min-width: 992px) {
    .grid-history .grid-history__col:has(.grid-history__list) {
      padding-top: 98px;
      -ms-flex-item-align: end;
          align-self: flex-end; } }
  .grid-history .grid-history__title {
    color: var(--color-black-dee);
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase; }
    .grid-history .grid-history__title:not(:last-child) {
      margin-bottom: 8px; }
    @media (max-width: 991.98px) {
      .grid-history .grid-history__title {
        font-size: 16px;
        line-height: 1.25; }
        .grid-history .grid-history__title:not(:last-child) {
          margin-bottom: 20px; } }
  .grid-history .grid-history__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    gap: 12px; }
    @media (max-width: 767.98px) {
      .grid-history .grid-history__list {
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr); } }
  .grid-history .grid-history__item {
    padding: 8px;
    border-radius: 16px;
    background: #eff6fa;
    cursor: pointer; }
    @media (any-hover: hover) {
      .grid-history .grid-history__item:hover img {
        -webkit-filter: grayscale(0);
                filter: grayscale(0); } }
    .grid-history .grid-history__item a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .grid-history .grid-history__item picture,
    .grid-history .grid-history__item img {
      width: 100%; }
    .grid-history .grid-history__item img {
      width: 100%;
      aspect-ratio: 128 / 93;
      -o-object-fit: scale-down;
         object-fit: scale-down;
      -webkit-filter: grayscale(1);
              filter: grayscale(1);
      -webkit-transition: -webkit-filter 0.3s ease;
      transition: -webkit-filter 0.3s ease;
      transition: filter 0.3s ease;
      transition: filter 0.3s ease, -webkit-filter 0.3s ease; }

.what .what__title {
  font-size: 40px;
  line-height: 1.2;
  max-width: 712px; }
  @media (max-width: 991.98px) {
    .what .what__title {
      font-size: 24px;
      line-height: 28px; } }

.vacancies-section:not(:last-child) {
  margin-bottom: 48px; }

.vacancies-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase; }
  @media (max-width: 991.98px) {
    .vacancies-title {
      font-size: 18px;
      line-height: 20px; } }
  .vacancies-title:not(:last-child) {
    margin-bottom: 16px; }
    @media (max-width: 991.98px) {
      .vacancies-title:not(:last-child) {
        margin-bottom: 10px; } }

.vacancies-heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase; }
  @media (max-width: 991.98px) {
    .vacancies-heading {
      font-size: 14px;
      line-height: 18px; } }
  .vacancies-heading:not(:last-child) {
    margin-bottom: 16px; }

.vacancies-form-body:not(:last-child) {
  margin-bottom: 24px; }
  @media (max-width: 991.98px) {
    .vacancies-form-body:not(:last-child) {
      margin-bottom: 20px; } }

.vacancies-form .vacancies-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px; }
  @media (max-width: 991.98px) {
    .vacancies-form .vacancies-form__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 20px; } }

.vacancies-form .vacancies-form__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
  @media (min-width: 992px) {
    .vacancies-form .vacancies-form__col:first-child {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 300px;
              flex: 0 0 300px; } }

.vacancies-form .vacancy-select {
  width: 100%; }
  .vacancies-form .vacancy-select:not(:last-child) {
    margin-bottom: 12px; }
  .vacancies-form .vacancy-select.jq-selectbox .jq-selectbox__select {
    border: 1px solid rgba(0, 0, 0, 0.16); }
    @media (max-width: 991.98px) {
      .vacancies-form .vacancy-select.jq-selectbox .jq-selectbox__select {
        border-radius: 10px; } }
  .vacancies-form .vacancy-select.jq-selectbox .jq-selectbox__dropdown {
    bottom: auto !important;
    border: 1px solid rgba(0, 0, 0, 0.16); }

.vacancies-form .vacancies-form__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px; }

.vacancies-form .vacancies-form__label {
  color: var(--color-black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  border: none;
  outline: none;
  text-transform: none;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg);
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease; }
  @media (any-hover: hover) {
    .vacancies-form .vacancies-form__label:hover {
      background: var(--color-red-accent);
      color: var(--white-color); } }

.hr {
  display: block;
  padding: 12px;
  border-radius: 16px;
  background: var(--white-color); }
  .hr .hr__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px; }
  .hr .hr__img {
    width: 88px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 88 / 132; }
    .hr .hr__img picture,
    .hr .hr__img img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 12px; }
  .hr .hr__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .hr .hr__name {
    color: var(--color-black-deep);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; }
  .hr .hr__position {
    color: var(--color-gray-steel);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; }
    .hr .hr__position:not(:last-child) {
      margin-bottom: 4px; }
  .hr .hr__phone {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-black-deep);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .hr .hr__phone:not(:last-child) {
      margin-bottom: 8px; }
    @media (any-hover: hover) {
      .hr .hr__phone:hover {
        color: var(--theme-color-main); } }
    .hr .hr__phone:hover, .hr .hr__phone:focus {
      text-decoration: none; }
  .hr .hr__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-black-deep);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    .hr .hr__link:not(:last-child) {
      margin-bottom: 8px; }
    @media (any-hover: hover) {
      .hr .hr__link:hover {
        color: var(--theme-color-main); } }
    .hr .hr__link svg,
    .hr .hr__link .icon {
      width: 14px;
      height: 14px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      color: var(--color-red-accent);
      fill: var(--color-red-accent); }
      .hr .hr__link svg path,
      .hr .hr__link .icon path {
        fill: var(--color-red-accent); }
    .hr .hr__link:hover, .hr .hr__link:focus {
      text-decoration: none; }
  .hr .btn .icon-arrow {
    width: 20px;
    height: 20px;
    padding: 2px; }
    .hr .btn .icon-arrow .icon {
      width: 8px;
      height: 8px; }

.vacancy-block-list:not(:last-child) {
  margin-bottom: 20px; }

.vacancy-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  .vacancy-block:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08); }
  @media (max-width: 991.98px) {
    .vacancy-block {
      padding: 14px 0; } }
  .vacancy-block .vacancy-block__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px; }
    .vacancy-block .vacancy-block__top:not(:last-child) {
      margin-bottom: 4px; }
    @media (max-width: 991.98px) {
      .vacancy-block .vacancy-block__top {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 4px; } }
  .vacancy-block .vacancy-block__title {
    color: var(--color-black);
    font-size: 32px;
    font-weight: 500;
    line-height: 32px; }
    @media (max-width: 991.98px) {
      .vacancy-block .vacancy-block__title {
        font-size: 20px;
        line-height: 1.1; } }
  .vacancy-block .vacancy-block__price {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    color: var(--color-black);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; }
    @media (min-width: 992px) {
      .vacancy-block .vacancy-block__price {
        margin-left: auto; } }
    @media (max-width: 991.98px) {
      .vacancy-block .vacancy-block__price {
        font-size: 16px;
        line-height: 1.5; } }
  .vacancy-block .vacancy-block__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px; }
    @media (max-width: 991.98px) {
      .vacancy-block .vacancy-block__content {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 20px; } }
  .vacancy-block .vacancy-block__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px; }
  .vacancy-block .vacancy-block__text {
    color: var(--color-gray-medium);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    @media (max-width: 991.98px) {
      .vacancy-block .vacancy-block__text {
        font-size: 14px;
        line-height: 20px; } }
  .vacancy-block .vacancy-block__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px; }
  .vacancy-block .vacancy-block__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 4px 10px;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    gap: 4px;
    border-radius: 100px;
    background: var(--bg); }
    .vacancy-block .vacancy-block__item .icon {
      width: 16px;
      height: 16px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      color: var(--color-red-accent); }
  @media (min-width: 992px) {
    .vacancy-block .vacancy-block__btn {
      -ms-flex-item-align: end;
          align-self: flex-end;
      margin-left: auto; } }
  .vacancy-block .vacancy-block__btn .icon-arrow {
    width: 20px;
    height: 20px;
    padding: 2px; }
    .vacancy-block .vacancy-block__btn .icon-arrow .icon {
      width: 8px;
      height: 8px; }

.vacancy-block-empty {
  padding: 20px 0;
  color: var(--color-black);
  font-size: 32px;
  font-weight: 500;
  line-height: 32px; }

.vacancies-contact {
  position: relative; }
  @media (max-width: 991.98px) {
    .vacancies-contact {
      padding-top: 32px; } }
  .vacancies-contact::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 100%;
    height: calc(100% - 96px);
    background: var(--color-blue) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="378" viewBox="0 0 1440 378" fill="none"><path opacity="0.16" d="M596.415 1224L990 190L466.954 1224H596.415ZM323.955 1224L990 190L158.726 1224H323.955ZM1044.01 1224L990 190L935.992 1224H1044.01ZM-36 1224H-35.8575L990 190L-36 1026.68V1224ZM-36 587.228L990 190L-36 466.882V587.228ZM-36 861.669L990 190L-36 716.478V861.669ZM2016 466.882L990 190L2016 587.228V466.882ZM2016 716.478L990 190L2016 861.669V716.478ZM-36 353.932L990 190L-36 243.926V353.932ZM2016 243.926L990 190L2016 353.932V243.926ZM2016 1224V1026.68L990 190L2015.86 1224H2016ZM1513.05 1224L990 190L1383.59 1224H1513.05ZM1265.31 1224L990 190L1152.38 1224H1265.31ZM1821.27 1224L990 190L1656.04 1224H1821.27ZM827.621 1224L990 190L714.69 1224H827.621ZM2016 -844H2015.86L990 190L2016 -646.678V-844ZM1656.04 -844L990 190L1821.27 -844H1656.04ZM1383.59 -844L990 190L1513.05 -844H1383.59ZM2016 26.0679L990 190L2016 136.074V26.0679ZM1152.38 -844L990 190L1265.31 -844H1152.38ZM-36 136.074L990 190L-36 26.0679V136.074ZM2016 -481.669L990 190L2016 -336.478V-481.669ZM2016 -207.228L990 190L2016 -86.8822V-207.228ZM-36 -844V-646.678L990 190L-35.8575 -844H-36ZM-36 -336.407L990 190.072L-36 -481.669V-336.478V-336.407ZM-36 -86.8105L990 190.072L-36 -207.228V-86.8822V-86.8105ZM935.992 -844L990 190L1044.01 -844H935.992ZM714.69 -844L990 190L827.621 -844H714.69ZM158.726 -844L990 190L323.955 -844H158.726ZM466.954 -844L990 190L596.415 -844H466.954Z" fill="url(%23paint0_radial_344_3260)"/><defs><radialGradient id="paint0_radial_344_3260" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(990 190) scale(1026 1034)"><stop stop-color="white" stop-opacity="0"/><stop offset="0.34" stop-color="white" stop-opacity="0.24"/><stop offset="0.69" stop-color="white" stop-opacity="0.48"/><stop offset="1" stop-color="white" stop-opacity="0.72"/></radialGradient></defs></svg>') center no-repeat;
    background-size: cover; }
    @media (min-width: 992px) {
      .vacancies-contact::before {
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); } }
    @media (max-width: 991.98px) {
      .vacancies-contact::before {
        top: 0;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        border-radius: 24px;
        height: 68%;
        background: var(--color-blue) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="375" height="547" viewBox="0 0 375 547" fill="none"><path opacity="0.16" d="M72.9921 574L187.5 274L35.3272 574H72.9921ZM-6.27625 574L187.5 274L-54.3472 574H-6.27625ZM203.213 574L187.5 274L171.787 574H203.213ZM-111 574H-110.959L187.5 274L-111 516.75V574ZM-111 389.25L187.5 274L-111 354.333V389.25ZM-111 468.875L187.5 274L-111 426.75V468.875ZM486 354.333L187.5 274L486 389.25V354.333ZM486 426.75L187.5 274L486 468.875V426.75ZM-111 321.562L187.5 274L-111 289.646V321.562ZM486 289.646L187.5 274L486 321.562V289.646ZM486 574V516.75L187.5 274L485.959 574H486ZM339.673 574L187.5 274L302.008 574H339.673ZM267.598 574L187.5 274L234.742 574H267.598ZM429.347 574L187.5 274L381.276 574H429.347ZM140.258 574L187.5 274L107.403 574H140.258ZM486 -26H485.959L187.5 274L486 31.25V-26ZM381.276 -26L187.5 274L429.347 -26H381.276ZM302.008 -26L187.5 274L339.673 -26H302.008ZM486 226.437L187.5 274L486 258.354V226.437ZM234.742 -26L187.5 274L267.598 -26H234.742ZM-111 258.354L187.5 274L-111 226.437V258.354ZM486 79.125L187.5 274L486 121.25V79.125ZM486 158.75L187.5 274L486 193.667V158.75ZM-111 -26V31.25L187.5 274L-110.959 -26H-111ZM-111 121.271L187.5 274.021L-111 79.125V121.25V121.271ZM-111 193.687L187.5 274.021L-111 158.75V193.667V193.687ZM171.787 -26L187.5 274L203.213 -26H171.787ZM107.403 -26L187.5 274L140.258 -26H107.403ZM-54.3472 -26L187.5 274L-6.27625 -26H-54.3472ZM35.3272 -26L187.5 274L72.9921 -26H35.3272Z" fill="url(%23paint0_radial_347_7983)"/><defs><radialGradient id="paint0_radial_347_7983" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(187.5 274) scale(298.5 300)"><stop stop-color="white" stop-opacity="0"/><stop offset="0.34" stop-color="white" stop-opacity="0.24"/><stop offset="0.69" stop-color="white" stop-opacity="0.48"/><stop offset="1" stop-color="white" stop-opacity="0.72"/></radialGradient></defs></svg>') center no-repeat; } }
  .vacancies-contact .vacancies-contact__row {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 991.98px) {
      .vacancies-contact .vacancies-contact__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 24px; } }
  @media (min-width: 992px) {
    .vacancies-contact .vacancies-contact__col:first-child {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto;
      padding-right: 32px;
      padding-left: 50px; }
    .vacancies-contact .vacancies-contact__col:last-child {
      width: 58%;
      -ms-flex-negative: 0;
          flex-shrink: 0; } }
  .vacancies-contact .vacancies-contact__title {
    max-width: 420px;
    color: var(--white-color);
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-transform: uppercase; }
    .vacancies-contact .vacancies-contact__title:not(:last-child) {
      margin-bottom: 20px; }
      @media (max-width: 991.98px) {
        .vacancies-contact .vacancies-contact__title:not(:last-child) {
          margin-bottom: 12px; } }
    @media (max-width: 1199.98px) {
      .vacancies-contact .vacancies-contact__title {
        font-size: 26px;
        line-height: 30px; } }
    @media (max-width: 991.98px) {
      .vacancies-contact .vacancies-contact__title {
        text-align: center;
        text-wrap: balance; } }
  .vacancies-contact .vacancies-contact__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
    max-width: 430px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 991.98px) {
      .vacancies-contact .vacancies-contact__text {
        text-align: center; } }
    .vacancies-contact .vacancies-contact__text a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 16px;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media (any-hover: hover) {
        .vacancies-contact .vacancies-contact__text a:hover {
          color: var(--color-red-accent); } }
      .vacancies-contact .vacancies-contact__text a .ic,
      .vacancies-contact .vacancies-contact__text a svg {
        width: 16px;
        height: 16px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        color: var(--color-red-accent);
        fill: var(--color-red-accent); }
        .vacancies-contact .vacancies-contact__text a .ic path,
        .vacancies-contact .vacancies-contact__text a svg path {
          fill: var(--color-red-accent); }
  .vacancies-contact .form-style-box {
    background: var(--white-color); }
  .vacancies-contact .form-style .form-control:not(.jq-selectbox) {
    border-color: rgba(0, 0, 0, 0.16); }

.block-row {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: 1fr 324px;
  grid-template-columns: 1fr 324px; }
  @media (max-width: 1199.98px) {
    .block-row {
      -ms-grid-columns: 1fr 300px;
      grid-template-columns: 1fr 300px; } }
  @media (max-width: 991.98px) {
    .block-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .block-row .block-row__content {
    padding: 24px 24px 32px;
    background: var(--white-color);
    border-radius: 24px; }
    @media (max-width: 991.98px) {
      .block-row .block-row__content {
        padding: 16px 16px 24px; } }
  .block-row .block-row__container {
    max-width: 775px;
    margin-left: auto;
    margin-right: auto; }
  .block-row .block-row__img {
    width: 100%; }
    .block-row .block-row__img:not(:last-child) {
      margin-bottom: 32px; }
      @media (max-width: 991.98px) {
        .block-row .block-row__img:not(:last-child) {
          margin-bottom: 20px; } }
    .block-row .block-row__img picture,
    .block-row .block-row__img img {
      width: 100%;
      border-radius: 16px; }
  .block-row .block-row__aside {
    position: sticky;
    top: 100px;
    width: 100%;
    left: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: -26px; }
    @media (max-width: 991.98px) {
      .block-row .block-row__aside {
        display: none; } }
    .block-row .block-row__aside .pages-nav:not(:last-child) {
      margin-bottom: 16px; }
  .block-row .block-row__heading {
    color: var(--color-gray-medium);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase; }
    .block-row .block-row__heading:not(:last-child) {
      margin-bottom: 8px; }
  .block-row .page-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    .block-row .page-description:not(:last-child) {
      margin-bottom: 32px; }
      @media (max-width: 991.98px) {
        .block-row .page-description:not(:last-child) {
          margin-bottom: 20px; } }
    @media (max-width: 991.98px) {
      .block-row .page-description {
        font-size: 14px;
        line-height: 20px; } }
  .block-row .form-style {
    width: 100%; }
    .block-row .form-style:not(:last-child) {
      margin-bottom: 32px; }
      @media (max-width: 991.98px) {
        .block-row .form-style:not(:last-child) {
          margin-bottom: 20px; } }
    .block-row .form-style .form-note {
      max-width: 582px;
      text-align: center;
      margin-left: auto;
      margin-right: auto; }

.local-producers .local-producers__row {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: 1fr 324px;
  grid-template-columns: 1fr 324px; }
  @media (max-width: 1199.98px) {
    .local-producers .local-producers__row {
      -ms-grid-columns: 1fr 300px;
      grid-template-columns: 1fr 300px; } }
  @media (max-width: 991.98px) {
    .local-producers .local-producers__row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.local-producers .local-producers__title {
  color: var(--color-red-accent);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase; }
  .local-producers .local-producers__title:not(:last-child) {
    margin-bottom: 16px; }
  @media (max-width: 991.98px) {
    .local-producers .local-producers__title {
      font-size: 14px;
      line-height: 18px;
      font-weight: 500; }
      .local-producers .local-producers__title:not(:last-child) {
        margin-bottom: 10px; } }

.local-producers .local-producers__content {
  padding: 24px 24px 32px;
  background: var(--white-color);
  border-radius: 24px; }
  @media (max-width: 991.98px) {
    .local-producers .local-producers__content {
      padding: 16px 16px 24px; } }

.local-producers .local-producers__img {
  width: 100%; }
  .local-producers .local-producers__img:not(:last-child) {
    margin-bottom: 32px; }
    @media (max-width: 991.98px) {
      .local-producers .local-producers__img:not(:last-child) {
        margin-bottom: 20px; } }
  .local-producers .local-producers__img img {
    width: 100%; }

.local-producers .local-producers__aside {
  position: sticky;
  top: 100px;
  width: 100%;
  left: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content; }
  @media (max-width: 991.98px) {
    .local-producers .local-producers__aside {
      display: none; } }

.local-producers .local-producers__heading {
  color: var(--color-gray-medium);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase; }
  .local-producers .local-producers__heading:not(:last-child) {
    margin-bottom: 8px; }

.local-producers .page-description {
  max-width: 775px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; }
  .local-producers .page-description:not(:last-child) {
    margin-bottom: 32px; }
    @media (max-width: 991.98px) {
      .local-producers .page-description:not(:last-child) {
        margin-bottom: 20px; } }
  .local-producers .page-description p {
    color: var(--color-gray-steel); }
  @media (max-width: 991.98px) {
    .local-producers .page-description {
      font-size: 14px;
      line-height: 20px; } }

.local-producers .form-style {
  max-width: 775px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .local-producers .form-style .form-note {
    max-width: 582px;
    text-align: center;
    margin-left: auto;
    margin-right: auto; }
    .local-producers .form-style .form-note:not(:last-child) {
      margin-bottom: 40px; }
      @media (max-width: 991.98px) {
        .local-producers .form-style .form-note:not(:last-child) {
          margin-bottom: 10px; } }

.text-decorated {
  color: var(--color-red-accent); }

.pages-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px; }
  .pages-nav .nav-link {
    min-height: 56px;
    padding: 12px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--color-black-deep);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    border-radius: 16px;
    background: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .pages-nav .nav-link:hover {
        color: var(--color-red-accent);
        -webkit-box-shadow: 0 0 0 1px var(--color-red-accent);
                box-shadow: 0 0 0 1px var(--color-red-accent); }
        .pages-nav .nav-link:hover .icon-arrow {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); } }
    .pages-nav .nav-link.text-danger {
      pointer-events: none;
      color: var(--color-black-deep) !important;
      border-left: 4px solid var(--color-red-accent); }
      .pages-nav .nav-link.text-danger .icon-arrow {
        opacity: 0.4; }
    .pages-nav .nav-link .icon-arrow {
      margin-left: auto;
      width: 20px;
      height: 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      background: var(--color-red-accent);
      padding: 0;
      -webkit-transition: -webkit-transform .3s;
      transition: -webkit-transform .3s;
      transition: transform .3s;
      transition: transform .3s, -webkit-transform .3s; }
      .pages-nav .nav-link .icon-arrow .icon {
        width: 8px;
        height: 8px;
        color: var(--white-color); }

.select-file .select-file__label {
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 24px;
  border: 2px dashed var(--color-red-accent);
  background: var(--white-color); }
  .select-file .select-file__label.is-dragover {
    border: 2px dashed #007bff;
    background-color: rgba(0, 123, 255, 0.05); }
  @media (max-width: 991.98px) {
    .select-file .select-file__label {
      padding: 24px 16px;
      border-radius: 16px;
      border: 1px dashed var(--color-red-accent); } }

.select-file .select-file__icon {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color-red-accent); }
  .select-file .select-file__icon:not(:last-child) {
    margin-bottom: 16px; }
  @media (max-width: 991.98px) {
    .select-file .select-file__icon {
      width: 34px;
      height: 34px; }
      .select-file .select-file__icon:not(:last-child) {
        margin-bottom: 10px; } }
  .select-file .select-file__icon .icon {
    width: 100%;
    height: 100%; }

.select-file .select-file__title {
  color: var(--color-black-deep);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase; }
  .select-file .select-file__title:not(:last-child) {
    margin-bottom: 4px; }
  @media (max-width: 991.98px) {
    .select-file .select-file__title {
      font-size: 16px;
      line-height: 18px; }
      .select-file .select-file__title:not(:last-child) {
        margin-bottom: 10px; } }

.select-file .select-file__text {
  color: var(--color-gray-steel);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; }
  .select-file .select-file__text:not(:last-child) {
    margin-bottom: 16px; }
  @media (max-width: 991.98px) {
    .select-file .select-file__text {
      font-size: 12px;
      line-height: 16px; }
      .select-file .select-file__text:not(:last-child) {
        margin-bottom: 14px; } }

.select-file .select-file__btn {
  padding: 12px 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  color: var(--color-black-deep);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--color-gray-light);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer; }
  @media (any-hover: hover) {
    .select-file .select-file__btn:hover {
      background: var(--color-red-accent);
      color: var(--white-color);
      border-color: var(--color-red-accent); }
      .select-file .select-file__btn:hover .icon-file {
        color: var(--white-color); }
      .select-file .select-file__btn:hover .icon-arrow {
        background: var(--white-color);
        color: var(--color-red-accent); }
        .select-file .select-file__btn:hover .icon-arrow .icon {
          color: var(--color-red-accent); } }

.select-file .icon-file {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  color: var(--color-red-accent);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (max-width: 991.98px) {
    .select-file .icon-file {
      width: 20px;
      height: 20px; } }
  .select-file .icon-file .icon {
    width: 100%;
    height: 100%; }

.select-file .icon-arrow {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--color-red-accent);
  padding: 0;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .select-file .icon-arrow .icon {
    width: 8px;
    height: 8px;
    color: var(--white-color);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }

.select-file .select-file__images {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
  display: none; }
  .select-file .select-file__images:has(img) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .select-file .select-file__images .preview-item,
  .select-file .select-file__images .select-file__item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 0 1px var(--color-red-accent);
            box-shadow: 0 0 0 1px var(--color-red-accent); }
  .select-file .select-file__images .remove-btn,
  .select-file .select-file__images .select-file__remove {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-red-accent);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    color: var(--white-color); }
  .select-file .select-file__images img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover; }

.buy-rent .buy-rent__row:has(.buy-rent__img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 1199.98px) {
    .buy-rent .buy-rent__row:has(.buy-rent__img) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      row-gap: 10px; } }
  .buy-rent .buy-rent__row:has(.buy-rent__img) .buy-rent__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
    @media (min-width: 992px) {
      .buy-rent .buy-rent__row:has(.buy-rent__img) .buy-rent__content {
        padding-right: 16px; } }

@media (min-width: 992px) {
  .buy-rent .buy-rent__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media (min-width: 1200px) {
  .buy-rent .buy-rent__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 40%;
    -ms-flex-negative: 0;
        flex-shrink: 0; } }

.buy-rent .buy-rent__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 405 / 600; }
  @media (max-width: 1199.98px) {
    .buy-rent .buy-rent__img img {
      aspect-ratio: 303 / 126; } }
  @media (max-width: 991.98px) {
    .buy-rent .buy-rent__img img {
      border-radius: 16px; } }

.checkout-grid-one-step {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 6fr;
  grid-template-columns: 4fr 6fr;
  gap: 30px;
  padding-bottom: 30px; }
  .checkout-grid-one-step .right-side {
    margin-top: 58px; }

.page-checkout .tab-pane {
  padding: 20px 0; }

.page-checkout .form-section {
  margin-bottom: 30px; }
  .page-checkout .form-section .form-section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px; }
    .page-checkout .form-section .form-section-title .number {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: var(--theme-color-second);
      color: var(--white-color);
      font-size: 16px;
      font-weight: bold; }

.order-products-table .products-table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px; }

.order-products-table .products-table-title {
  font-weight: bold;
  font-size: 20px; }

.delivery-type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 20px 0; }
  .delivery-type-list .delivery-type-content {
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid grey; }
    .delivery-type-list .delivery-type-content .form-group:last-child {
      margin-bottom: 0; }
  .delivery-type-list .custom-radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto 1fr;
    grid-template-columns: auto auto 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }
    .delivery-type-list .custom-radio .checkmark {
      margin-top: 10px; }
    .delivery-type-list .custom-radio .radio-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }

.delivery-field-examples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 5px; }
  .delivery-field-examples .examples-label {
    text-transform: lowercase;
    font-size: 0.875em;
    -ms-flex-item-align: end;
        align-self: flex-end; }
  .delivery-field-examples .examples-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
    .delivery-field-examples .examples-list a {
      text-decoration: underline; }
      @media (pointer: fine) {
        .delivery-field-examples .examples-list a:hover {
          text-decoration: none; } }
      .delivery-field-examples .examples-list a:focus {
        text-decoration: none; }

.order-card {
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 10px #cfcfcf;
          box-shadow: 2px 2px 10px #cfcfcf;
  background: #ffffff; }
  .order-card .custom-checkbox-agreement {
    font-size: 14px;
    line-height: 1.3; }

[js-order-tooltip] {
  position: relative; }

.payment-type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 20px 0; }
  .payment-type-list .custom-radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto 1fr;
    grid-template-columns: auto auto 1fr;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.payment-picker .payment-details {
  border: 1px solid darkorange;
  border-radius: 10px;
  padding: 10px;
  background: #ffc1070f; }
  .payment-picker .payment-details > :last-child {
    margin-bottom: 0; }

.custom-radio {
  cursor: pointer;
  margin: 0; }
  .custom-radio input[type="radio"] {
    display: none; }
  .custom-radio .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid grey;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    border-radius: 50%; }
    .custom-radio .checkmark:after {
      content: "";
      position: absolute;
      inset: 3px;
      background: white;
      border-radius: 50%;
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease; }
  .custom-radio input[type="radio"]:checked ~ .checkmark {
    border-color: green;
    border-width: 2px; }
    .custom-radio input[type="radio"]:checked ~ .checkmark:after {
      background: green; }

.order-totals-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .order-totals-block .total-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
    padding: 10px 0; }
    .order-totals-block .total-item:not(:last-child) {
      border-bottom: 1px solid #cfcfcf; }
    .order-totals-block .total-item .total-item-title {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 40%;
              flex: 0 0 40%; }
    .order-totals-block .total-item.total-item-in-total {
      font-size: 1.4em; }
    .order-totals-block .total-item .price-text {
      font-size: 1rem; }

.checkout-grid-by-steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6fr 3fr;
  grid-template-columns: 6fr 3fr;
  gap: 30px;
  padding-bottom: 30px; }
  .checkout-grid-by-steps .left-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px; }

.step-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px; }
  .step-card-head .step-card-title {
    margin-right: auto;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px; }

.step-card .step-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px; }

.step-card .form-fio-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px; }

.step-card .form-contacts-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px; }
  .step-card .form-contacts-grid .form-group-email {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4; }

.step-completed-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px; }
  .step-completed-info .info-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-top: 10px; }
    .step-completed-info .info-details .text {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%; }

.cart-products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px; }
  .cart-products-list .cart-product,
  .cart-products-list .cart-product-set {
    position: relative; }
    .cart-products-list .cart-product .cart-product-qty,
    .cart-products-list .cart-product-set .cart-product-qty {
      position: absolute;
      z-index: 2;
      top: -4px;
      right: -4px;
      height: 21px;
      min-width: 21px;
      padding: 2px 3px;
      border-radius: 999px;
      border: 2px solid;
      font-size: 13px;
      line-height: 1;
      text-align: center;
      border-color: var(--theme-color-main);
      background: var(--white-color);
      color: var(--theme-color-main); }
      .cart-products-list .cart-product .cart-product-qty:empty,
      .cart-products-list .cart-product-set .cart-product-qty:empty {
        display: none; }
  .cart-products-list .cart-product-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cart-products-list .cart-product-set .plus-icon {
      z-index: 2;
      position: relative;
      margin: 0 -10px; }
      .cart-products-list .cart-product-set .plus-icon svg {
        width: 30px;
        height: 30px;
        color: var(--theme-color-second); }
  .cart-products-list .cart-product-img {
    border: 1px solid;
    border-radius: 12px;
    display: block;
    width: 80px;
    height: 80px;
    padding: 5px; }
    .cart-products-list .cart-product-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down;
      -o-object-position: center;
         object-position: center;
      border-radius: 10px; }

.btn-next-step {
  margin-top: 20px; }

.order-comment {
  margin-bottom: 10px; }
  .order-comment .btn-show-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .order-comment .btn-show-comment svg.ic {
      font-size: 18px;
      margin-left: 2px; }
  .order-comment .order-comment-field {
    display: none;
    gap: 30px; }
    .order-comment .order-comment-field .field-wrap {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%; }
  .order-comment.open {
    margin-bottom: 20px; }
    .order-comment.open .btn-show-comment {
      display: none; }
    .order-comment.open .order-comment-field {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }

.checkout-success-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: -webkit-min-content 1fr;
  -ms-grid-rows: min-content 1fr;
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
  -ms-grid-columns: 4fr 6fr;
  grid-template-columns: 4fr 6fr;
  gap: 30px; }
  .checkout-success-grid .left-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px; }
  .checkout-success-grid .left-side {
    -ms-grid-column: 1;
    grid-column: 1; }
  .checkout-success-grid .right-side {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2; }

.checkout-success-grid .btn-action-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .checkout-success-grid .btn-action-wrap .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }

.ajax-payment-details {
  position: relative; }
  .ajax-payment-details .payment-buttons {
    margin-top: 30px; }

.order-info-card .info-flex-row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px; }
  .order-info-card .info-flex-row picture, .order-info-card .info-flex-row img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }

.order-info-card .order-number svg.ic {
  color: var(--theme-color-main);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }

@media (pointer: fine) {
  .order-info-card .order-number:hover svg.ic {
    color: var(--theme-color-second); } }

.order-info-title {
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 15px; }

table.order-info-table {
  width: 100%; }
  table.order-info-table th {
    width: 180px; }
  table.order-info-table th, table.order-info-table td {
    padding: 5px 0; }
  table.order-info-table td {
    padding-left: 5px; }

body.cart-opened {
  overflow: hidden;
  margin-right: var(--scrollbar-width); }
  body.cart-opened .cart-modal-inner {
    pointer-events: initial; }
    body.cart-opened .cart-modal-inner .overlay {
      opacity: 1;
      visibility: visible; }
  body.cart-opened #cartModal {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    pointer-events: initial;
    visibility: visible;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }

.cart-modal-inner {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none; }
  .cart-modal-inner .overlay {
    position: fixed;
    z-index: 1;
    inset: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7); }

#cartModal {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
  visibility: hidden;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: white;
  -webkit-transition: 0.5s cubic-bezier(0.21, -0.38, 0.65, 0.09);
  transition: 0.5s cubic-bezier(0.21, -0.38, 0.65, 0.09);
  overflow: auto; }

/*
.cart-modal-inner {
    display: none;

    .overlay {
        display: none;
    }
}
.fancybox-container.form-popup .fancybox-content#cartModal {
    max-width: 900px; // <<--- cart width
}
*/
#cartModal {
  --px: 20px;
  overflow: hidden; }
  #cartModal .cart-top {
    padding: 24px var(--px) 0;
    border-bottom: 1px solid #f1f1f1; }
  #cartModal .cart-title {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase; }
  #cartModal .cart-items-heading {
    border: none;
    margin-top: 15px; }
  #cartModal .cart-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-height: 100%; }
  #cartModal .cart-items {
    padding: 0 calc(var(--px) - 5px) 30px var(--px);
    margin-right: 5px;
    overflow-y: auto; }
    @media (min-width: 992px) {
      #cartModal .cart-items, #cartModal .cart-items * {
        scrollbar-color: auto;
        scrollbar-width: auto; }
      #cartModal .cart-items::-webkit-scrollbar,
      #cartModal .cart-items *::-webkit-scrollbar {
        width: 3px;
        height: 3px; }
      #cartModal .cart-items::-webkit-scrollbar-button,
      #cartModal .cart-items *::-webkit-scrollbar-button {
        display: none; }
      #cartModal .cart-items::-webkit-scrollbar-track,
      #cartModal .cart-items *::-webkit-scrollbar-track {
        background: #e7e7e7; }
      #cartModal .cart-items::-webkit-scrollbar-track-piece,
      #cartModal .cart-items *::-webkit-scrollbar-track-piece {
        background: #e7e7e7; }
      #cartModal .cart-items::-webkit-scrollbar-thumb,
      #cartModal .cart-items *::-webkit-scrollbar-thumb {
        background: #c3161a;
        border-radius: 99px; }
      #cartModal .cart-items::-webkit-scrollbar-corner,
      #cartModal .cart-items *::-webkit-scrollbar-corner {
        background: #e7e7e7; } }
  #cartModal .cart-bottom {
    margin-top: auto;
    position: relative; }
    #cartModal .cart-bottom .wrap {
      position: relative;
      z-index: 20; }
  #cartModal .message-limit {
    font-weight: bold;
    color: var(--white-color);
    background: orange;
    margin-bottom: 20px; }
  #cartModal .bottom-row {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -ms-grid-columns: 1fr  1fr 1fr;
    grid-template-columns: 1fr  1fr 1fr;
    gap: 24px;
    padding: 20px var(--px);
    background: var(--white);
    border-top: 1px solid #f1f1f1; }
    @media (max-width: 991.98px) {
      #cartModal .bottom-row {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        padding: 15px var(--px);
        gap: 15px; } }
  #cartModal .total-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px; }
    #cartModal .total-block .total-title {
      font-size: 20px;
      line-height: 1;
      -ms-flex-item-align: end;
          align-self: flex-end; }
    #cartModal .total-block .price-wrap {
      line-height: 1; }
  #cartModal .btn-continue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: normal;
    text-transform: none;
    min-height: unset;
    background-color: transparent;
    outline: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-right: auto; }
    #cartModal .btn-continue svg.ic {
      color: var(--theme-color-second);
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
      font-size: 10px; }
    @media (any-hover: hover) {
      #cartModal .btn-continue:hover {
        color: var(--theme-color-second); }
        #cartModal .btn-continue:hover svg.ic {
          -webkit-animation: moveArrow 0.8s forwards;
                  animation: moveArrow 0.8s forwards; } }
    #cartModal .btn-continue:focus {
      color: var(--theme-color-second); }
      #cartModal .btn-continue:focus svg.ic {
        -webkit-animation: moveArrow 0.8s forwards;
                animation: moveArrow 0.8s forwards; }
    @media (max-width: 991.98px) {
      #cartModal .btn-continue {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        -ms-flex-item-align: start;
            align-self: flex-start; } }
  @media (max-width: 991.98px) {
    #cartModal {
      --px: 16px; }
      #cartModal .cart-top {
        padding: 28px var(--px); }
      #cartModal .cart-title {
        font-size: 18px; } }

.modal-close {
  position: absolute;
  z-index: 99999;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  color: var(--white);
  background: rgba(128, 128, 128, 0.1);
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .modal-close::before, .modal-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 0.5em;
    background-color: var(--white);
    display: none; }
  .modal-close::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg); }
  .modal-close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg); }
  .modal-close .ic,
  .modal-close .icon {
    width: 12px;
    height: 12px;
    color: var(--theme-color-main); }
  @media (any-hover: hover) {
    .modal-close:hover, .modal-close:focus {
      background: var(--theme-color-second);
      color: var(--white); }
      .modal-close:hover::before, .modal-close:hover::after, .modal-close:focus::before, .modal-close:focus::after {
        background-color: var(--white); }
      .modal-close:hover .ic,
      .modal-close:hover .icon, .modal-close:focus .ic,
      .modal-close:focus .icon {
        color: var(--white); } }
  @media (max-width: 991.98px) {
    .modal-close {
      top: 24px; } }

.cart-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden; }

.cart-items-heading,
.cart-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 1fr 172px 120px 32px;
  grid-template-columns: 90px 1fr 172px 120px 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px 16px; }
  @media (max-width: 991.98px) {
    .cart-items-heading,
    .cart-item {
      -ms-grid-columns: 80px 1fr 172px 1fr;
      grid-template-columns: 80px 1fr 172px 1fr; } }
  @media (max-width: 575.98px) {
    .cart-items-heading,
    .cart-item {
      -ms-grid-columns: 80px 1fr 1fr;
      grid-template-columns: 80px 1fr 1fr; } }

.cart-item-set {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 172px 120px 32px;
  grid-template-columns: 1fr 172px 120px 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px; }
  .cart-item-set .cart-item-set-title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1/6; }
  .cart-item-set .set-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 90px 1fr;
    grid-template-columns: 90px 1fr;
    gap: 15px; }

.products-table.products-table-no-edit .cart-items-heading,
.products-table.products-table-no-edit .cart-item {
  -ms-grid-columns: 90px 1fr 120px 120px 120px;
  grid-template-columns: 90px 1fr 120px 120px 120px; }

.products-table.products-table-no-edit .cart-item-set {
  -ms-grid-columns: 1fr 120px 120px 120px;
  grid-template-columns: 1fr 120px 120px 120px; }
  .products-table.products-table-no-edit .cart-item-set .cart-item-set-title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5; }

.cart-items-heading {
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f1f1; }
  .cart-items-heading .cart-heading-qty {
    text-align: center; }
  @media (max-width: 991.98px) {
    .cart-items-heading {
      display: none; } }

.cart-items-heading .cart-heading-qty,
.cart-item .cart-item-qty {
  padding-right: 20px; }

.cart-item {
  position: relative;
  padding: 5px 0; }
  .cart-item:not(:last-child) {
    border-bottom: 1px solid #f1f1f1; }
  @media (max-width: 991.98px) {
    .cart-item {
      padding-bottom: 20px;
      min-height: auto; }
      .cart-item:not(:last-child) {
        margin-bottom: 20px; } }
  .cart-item .cart-item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .cart-item .cart-item-img picture,
    .cart-item .cart-item-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: scale-down;
         object-fit: scale-down; }
  .cart-item .cart-item-info {
    padding-right: 20px; }
    @media (max-width: 991.98px) {
      .cart-item .cart-item-info {
        -ms-grid-column-span: 3;
        grid-column: span 3;
        padding-right: 32px; } }
    @media (max-width: 575.98px) {
      .cart-item .cart-item-info {
        -ms-grid-column-span: 2;
        grid-column: span 2; } }
  .cart-item .product-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    color: var(--color-black-deep); }
    .cart-item .product-title .text {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      text-overflow: ellipsis;
      word-break: break-word; }
    @media (any-hover: hover) {
      .cart-item .product-title:hover, .cart-item .product-title:focus {
        color: var(--theme-color-second);
        text-decoration: none; } }
  .cart-item .product-sku {
    color: #777777;
    line-height: 1;
    font-size: 13px;
    margin-top: 3px; }
  .cart-item .variant-attributes {
    font-size: 13px;
    margin-top: 8px; }
  @media (max-width: 991.98px) {
    .cart-item .cart-item-qty {
      -ms-grid-column-span: 2;
      grid-column: span 2; } }
  .cart-item .cart-item-qty .qty-text {
    height: 48px;
    min-width: 48px;
    padding: 2px 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 8px;
    border: 1px solid #e3e3e3;
    background: var(--white); }
    @media (max-width: 991.98px) {
      .cart-item .cart-item-qty .qty-text {
        min-width: 80px; } }
  .cart-item .cart-item-qty:has(.qty-text) {
    text-align: center; }
  .cart-item .price-wrap {
    font-size: 16px;
    font-weight: 700; }
    .cart-item .price-wrap .old-price {
      font-size: 12px; }
  @media (max-width: 991.98px) {
    .cart-item .cart-item-price-total {
      -ms-grid-column-span: 2;
      grid-column: span 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }
  @media (max-width: 575.98px) {
    .cart-item .cart-item-price-total {
      -ms-grid-column-span: 1;
      grid-column: span 1; } }
  @media (max-width: 991.98px) {
    .cart-item .qty-picker {
      gap: 12px; } }
  .cart-item .qty-picker input {
    width: 48px; }

.cart-item-set {
  margin: 20px 0; }
  .cart-item-set + .cart-item-set {
    margin-top: 0; }
  .cart-item-set:not(:last-child) {
    border-bottom: 1px solid #cfcfcf; }
  .cart-item-set .cart-item-set-title {
    text-transform: uppercase;
    font-weight: bold;
    padding: 2px 10px;
    margin-bottom: 10px;
    text-align: center;
    background: var(--theme-color-second);
    color: var(--white-color);
    border-radius: 4px; }
  .cart-item-set .plus-icon {
    z-index: 2;
    position: relative;
    margin: -8px 0 -8px 28px; }
    .cart-item-set .plus-icon svg {
      width: 30px;
      height: 30px;
      color: var(--theme-color-second); }

.cart-item.invalid,
.cart-item-set.invalid {
  background: rgba(255, 0, 0, 0.11); }

.cart-item-remove,
.cart-item-set-remove {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer; }
  @media (max-width: 991.98px) {
    .cart-item-remove,
    .cart-item-set-remove {
      position: absolute;
      right: 0;
      top: 0; } }
  .cart-item-remove .remove,
  .cart-item-set-remove .remove {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .cart-item-remove svg,
  .cart-item-set-remove svg {
    font-size: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
  .cart-item-remove .remove:focus svg.ic,
  .cart-item-set-remove .remove:focus svg.ic {
    color: red; }
  @media (pointer: fine) {
    .cart-item-remove .remove:hover svg.ic,
    .cart-item-set-remove .remove:hover svg.ic {
      color: red; } }

@media (min-width: 992px) {
  [js-products-carousel] .swiper-pagination.swiper-pagination-bullets-dynamic {
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important; } }

#cart-fast-order {
  position: absolute;
  z-index: 10;
  bottom: 100%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  #cart-fast-order.fast-order-open {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    #cart-fast-order.fast-order-open .fast-order-form-title .icon-arrow {
      -webkit-transform: rotate(0);
          -ms-transform: rotate(0);
              transform: rotate(0); }
  #cart-fast-order .fast-order-form-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -32px; }
  #cart-fast-order .fast-order-form-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 32px;
    max-width: 264px;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    border-radius: 12px 12px 0 0;
    background: #f7ecfc;
    cursor: pointer; }
    #cart-fast-order .fast-order-form-title .icon-arrow {
      width: 16px;
      height: 16px;
      background: var(--theme-color-second);
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg);
      -webkit-transition: -webkit-transform 0.3s ease-out;
      transition: -webkit-transform 0.3s ease-out;
      transition: transform 0.3s ease-out;
      transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
      #cart-fast-order .fast-order-form-title .icon-arrow .icon {
        width: 8px;
        height: 8px; }
  #cart-fast-order .fast-order-form-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    background: #f7ecfc;
    padding: 20px var(--px); }
    @media (max-width: 991.98px) {
      #cart-fast-order .fast-order-form-wrap {
        padding: 16px;
        gap: 8px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  #cart-fast-order .fast-order-form-notice {
    max-width: 178px;
    color: var(--theme-color-main);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px; }
    @media (max-width: 991.98px) {
      #cart-fast-order .fast-order-form-notice {
        max-width: 100%; } }
  #cart-fast-order .form-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    z-index: 1; }
    @media (max-width: 991.98px) {
      #cart-fast-order .form-wrap {
        width: 100%; } }
    #cart-fast-order .form-wrap .form-control {
      height: 40px;
      border-radius: 8px;
      background: var(--white);
      color: var(--theme-color-main);
      border-color: var(--white);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      #cart-fast-order .form-wrap .form-control.form-control-error {
        border-color: red; }
      #cart-fast-order .form-wrap .form-control::-webkit-input-placeholder {
        color: grey; }
      #cart-fast-order .form-wrap .form-control::-moz-placeholder {
        color: grey; }
      #cart-fast-order .form-wrap .form-control:-ms-input-placeholder {
        color: grey; }
      #cart-fast-order .form-wrap .form-control::-ms-input-placeholder {
        color: grey; }
      #cart-fast-order .form-wrap .form-control::placeholder {
        color: grey; }
      @media (any-hover: hover) {
        #cart-fast-order .form-wrap .form-control:hover {
          border-color: var(--theme-color-second); } }
      #cart-fast-order .form-wrap .form-control:focus {
        border-color: var(--theme-color-second); }
    #cart-fast-order .form-wrap .form-error {
      display: block;
      margin: 0;
      padding: 2px 0;
      color: red;
      font-size: 12px; }
      @media (min-width: 992px) {
        #cart-fast-order .form-wrap .form-error {
          position: absolute;
          z-index: 1;
          top: 100%;
          left: 0;
          right: 0; } }
  #cart-fast-order .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 40px; }
    @media (max-width: 575.98px) {
      #cart-fast-order .btn {
        margin-top: 4px;
        width: 100%; } }

.order-promocode .order-promocode-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px; }

.order-promocode .fields-group {
  position: relative; }
  .order-promocode .fields-group input {
    padding-right: 146px; }
  .order-promocode .fields-group .btn {
    position: absolute;
    top: 50%;
    right: 3px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    min-height: 32px;
    border-radius: 0.25em;
    padding: 2px 10px;
    border-width: 1px; }

.order-promocode .promocode-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px; }
  .order-promocode .promocode-wrap .promocode-code {
    display: inline-block;
    color: var(--white-color);
    padding: 2px 10px;
    border-radius: 0.25em;
    text-align: center;
    margin-bottom: 4px; }
  .order-promocode .promocode-wrap .discount-value {
    font-size: 1.2em; }

.order-promocode .order-promocode-error {
  color: red; }

.order-promocode .order-promocode-message {
  color: green; }

.account-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 40px; }
  .account-grid .account-aside {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    padding: 15px;
    position: relative;
    background-color: var(--white-color); }

.account-nav-wrap .btn-account-logout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--theme-color-second);
  -webkit-transition: .3s ease;
  transition: .3s ease;
  text-decoration: none;
  margin-top: 20px; }
  @media (pointer: fine) {
    .account-nav-wrap .btn-account-logout:hover {
      color: var(--theme-color-main); } }
  .account-nav-wrap .btn-account-logout .ic {
    display: block;
    margin-right: 4px;
    width: 20px;
    height: 20px; }

.account-nav-wrap .account-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px; }
  .account-nav-wrap .account-nav .link-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 4px;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    color: var(--color-black-deep);
    background-color: var(--white-color); }
    .account-nav-wrap .account-nav .link-item .ic {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 22px;
              flex: 0 0 22px;
      width: 22px;
      height: 22px; }
    @media (pointer: fine) {
      .account-nav-wrap .account-nav .link-item:hover {
        color: var(--white-color);
        background-color: var(--theme-color-second); } }
    .account-nav-wrap .account-nav .link-item.active {
      color: var(--white-color);
      background-color: var(--theme-color-second); }

.account-order .section-title {
  margin-bottom: 20px; }

.account-order .account-content {
  position: relative; }

.account-order .order-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 1200px) {
    .account-order .order-header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 992px) {
    .account-order .order-header {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .account-order .order-header .order-header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

.account-order .order-return-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #696969;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  @media (pointer: fine) {
    .account-order .order-return-back:hover {
      color: var(--theme-color-second); } }
  .account-order .order-return-back .arrow-wrap {
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-color: var(--theme-color-second);
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .account-order .order-return-back .arrow-wrap .ic {
      width: 6px;
      color: var(--white-color); }
  .account-order .order-return-back.top {
    margin-bottom: 12px; }
  .account-order .order-return-back.bottom {
    margin-bottom: 20px; }
    @media (max-width: 576px) {
      .account-order .order-return-back.bottom {
        margin: 48px 0 0; } }

.account-order .personal-cashback {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  color: var(--white-color);
  background-color: #9B8BCF;
  padding: 12px 84px 12px 16px; }
  @media (max-width: 1200px) {
    .account-order .personal-cashback {
      margin-left: auto; } }
  @media (max-width: 768px) {
    .account-order .personal-cashback {
      display: none; } }
  .account-order .personal-cashback .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .account-order .personal-cashback .content .text {
      font-size: 12px;
      font-weight: 400;
      line-height: 16px; }
    .account-order .personal-cashback .content .price {
      font-size: 20px;
      font-weight: 700;
      line-height: 24px; }
    .account-order .personal-cashback .content .link {
      color: var(--white-color);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      text-decoration-line: underline;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        .account-order .personal-cashback .content .link:hover {
          color: #f2c4ff; } }
  .account-order .personal-cashback .avatar {
    position: absolute;
    max-width: 62px;
    right: 8%;
    top: -9%; }

.account-order .open-order .order-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 26px;
  margin-bottom: 32px; }
  @media (max-width: 1200px) {
    .account-order .open-order .order-info {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; } }
  .account-order .open-order .order-info .order-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px; }
    @media (max-width: 1200px) {
      .account-order .open-order .order-info .order-info-wrap:last-child {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }

.account-order .open-order .info-block-wrap:has(.comment) {
  height: 100%; }

.account-order .open-order .order-info-title {
  color: var(--theme-color-second);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 8px; }
  @media (max-width: 576px) {
    .account-order .open-order .order-info-title {
      font-size: 14px;
      line-height: 20px; } }

.account-order .open-order .info-line {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 33px;
  padding: 10px 16px;
  border-radius: 8px;
  background-color: #FAFAFA;
  margin-bottom: 4px; }
  @media (max-width: 576px) {
    .account-order .open-order .info-line {
      gap: 12px; } }
  .account-order .open-order .info-line .title {
    display: inline-block;
    color: #696969; }
  .account-order .open-order .info-line .value {
    display: inline-block;
    color: var(--color-black-deep); }
    .account-order .open-order .info-line .value .status_bullet {
      display: block;
      width: 10px;
      min-width: 10px;
      height: 10px;
      background-color: #FF9900;
      border-radius: 50%;
      margin-right: 10px; }
    .account-order .open-order .info-line .value.status_paid {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }

.account-order .open-order .comment {
  border-radius: 8px;
  background: #FAFAFA;
  padding: 10px 16px;
  height: calc(100% - 32px); }

.account-order .open-order .copy-number {
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--theme-color-second);
  border-radius: 0px 8px 8px 0px;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  @media (pointer: fine) {
    .account-order .open-order .copy-number:hover {
      background-color: var(--theme-color-second); } }
  .account-order .open-order .copy-number .ic {
    fill: var(--white-color);
    width: 20px;
    height: 20px; }

.account-order .open-order .buttons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 34px;
  gap: 17px; }
  @media (max-width: 576px) {
    .account-order .open-order .buttons-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-bottom: 48px; } }
  @media (max-width: 576px) {
    .account-order .open-order .buttons-wrap .btn-default {
      width: 100%; } }
  .account-order .open-order .buttons-wrap .btn-default .btn-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 18px 8px 12px; }
    @media (max-width: 576px) {
      .account-order .open-order .buttons-wrap .btn-default .btn-text {
        padding: 8px 16px;
        font-size: 14px;
        line-height: 24px;
        gap: 8px; } }
    .account-order .open-order .buttons-wrap .btn-default .btn-text .ic {
      width: 20px;
      height: 18px; }
      @media (max-width: 576px) {
        .account-order .open-order .buttons-wrap .btn-default .btn-text .ic {
          width: 24px;
          height: 24px; } }
  .account-order .open-order .buttons-wrap .btn-cancel {
    color: #696969;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 56px;
    border: 1px solid gray;
    padding: 8px 16px;
    background-color: transparent;
    outline: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .account-order .open-order .buttons-wrap .btn-cancel:hover {
        background-color: var(--theme-color-second);
        color: var(--white-color);
        border: 1px solid var(--theme-color-second); } }
    @media (max-width: 576px) {
      .account-order .open-order .buttons-wrap .btn-cancel {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        padding: 7px 16px; } }

.account-order .open-order .order-list-wrap .cart-title {
  color: var(--color-black-deep);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 17px; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-title {
      font-size: 20px;
      line-height: 24px;
      padding-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid gray; } }

.account-order .open-order .order-list-wrap .cart-headers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid gray; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-headers {
      display: none; } }
  .account-order .open-order .order-list-wrap .cart-headers .header-title {
    color: var(--theme-color-second);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase; }
    @media (max-width: 768px) {
      .account-order .open-order .order-list-wrap .cart-headers .header-title {
        font-size: 14px;
        line-height: 18px; } }
    .account-order .open-order .order-list-wrap .cart-headers .header-title.name {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 49%;
              flex: 0 0 49%; }
      @media (max-width: 1200px) {
        .account-order .open-order .order-list-wrap .cart-headers .header-title.name {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 55%;
                  flex: 0 0 55%; } }
    .account-order .open-order .order-list-wrap .cart-headers .header-title.count {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 27%;
              flex: 0 0 27%;
      margin-left: 60px; }
      @media (max-width: 1200px) {
        .account-order .open-order .order-list-wrap .cart-headers .header-title.count {
          margin-left: 0;
          -webkit-box-flex: 0;
              -ms-flex: 0 0 25%;
                  flex: 0 0 25%; } }
      @media (max-width: 768px) {
        .account-order .open-order .order-list-wrap .cart-headers .header-title.count {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 28%;
                  flex: 0 0 28%; } }

.account-order .open-order .order-list-wrap .cart-item .plus,
.account-order .open-order .order-list-wrap .cart-item .minus,
.account-order .open-order .order-list-wrap .cart-item .remove {
  display: none; }

.account-order .open-order .order-list-wrap .cart-item input {
  height: 40px;
  width: 50px;
  border-radius: 12px;
  background-color: #FAFAFA;
  border: none; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-item input {
      margin: 0;
      background-color: transparent; } }

@media (max-width: 992px) {
  .account-order .open-order .order-list-wrap .cart-item .product-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

@media (max-width: 576px) {
  .account-order .open-order .order-list-wrap .cart-item .product-wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

.account-order .open-order .order-list-wrap .cart-item .product-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-item .product-info {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 1;
          grid-column-start: 1;
      -ms-grid-column-span: 3;
      grid-column-end: 4; }
      .account-order .open-order .order-list-wrap .cart-item .product-info .product-name a {
        font-size: 16px;
        line-height: 18px;
        height: 38px; } }

.account-order .open-order .order-list-wrap .cart-item ._qty {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28%;
          flex: 0 0 28%;
  margin-left: 60px; }
  @media (max-width: 1200px) {
    .account-order .open-order .order-list-wrap .cart-item ._qty {
      margin-left: 0; } }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .cart-item ._qty {
      -ms-grid-row: 2;
      grid-row: 2;
      -ms-grid-column: 1;
          grid-column-start: 1;
      -ms-grid-column-span: 1;
      grid-column-end: 2;
      margin-right: 30px; } }

@media (max-width: 576px) {
  .account-order .open-order .order-list-wrap .cart-item ._price-total {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
        grid-column-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3; } }

.account-order .open-order .order-list-wrap .bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .bottom-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.account-order .open-order .order-list-wrap .total-block {
  border-radius: 16px;
  background-color: #F9F7FF;
  padding: 16px 24px 16px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }
  @media (max-width: 576px) {
    .account-order .open-order .order-list-wrap .total-block {
      padding: 0;
      background-color: transparent;
      width: 100%; } }
  .account-order .open-order .order-list-wrap .total-block .total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (max-width: 576px) {
      .account-order .open-order .order-list-wrap .total-block .total {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 8px 16px;
        border-radius: 12px;
        background-color: #F9F7FF;
        width: 100%;
        margin-bottom: 8px; } }
  .account-order .open-order .order-list-wrap .total-block .title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-right: 8px; }
    @media (max-width: 576px) {
      .account-order .open-order .order-list-wrap .total-block .title {
        font-size: 20px;
        line-height: 24px;
        margin-right: 4px; } }
  .account-order .open-order .order-list-wrap .total-block .price-old,
  .account-order .open-order .order-list-wrap .total-block .old-price {
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through; }
  .account-order .open-order .order-list-wrap .total-block .price,
  .account-order .open-order .order-list-wrap .total-block .price-discount {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px; }
    @media (max-width: 576px) {
      .account-order .open-order .order-list-wrap .total-block .price,
      .account-order .open-order .order-list-wrap .total-block .price-discount {
        font-size: 20px;
        line-height: 24px; } }
  .account-order .open-order .order-list-wrap .total-block .price {
    color: var(--color-black-deep); }
  .account-order .open-order .order-list-wrap .total-block .price-discount {
    color: red; }
  .account-order .open-order .order-list-wrap .total-block .cashback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px; }
    .account-order .open-order .order-list-wrap .total-block .cashback img {
      display: block;
      margin-right: 4px; }

.account-orders .section-title {
  margin-bottom: 13px; }

.account-orders .order-nav {
  margin: 0 0 21px 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  white-space: nowrap;
  overflow-x: scroll;
  list-style: none; }
  .account-orders .order-nav::-webkit-scrollbar {
    display: none; }
  .account-orders .order-nav .order-nav-item.active a {
    color: var(--white-color);
    background-color: BLUE; }
  .account-orders .order-nav a {
    display: block;
    color: var(--color-black-deep);
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    padding: 4px 12px;
    border-radius: 56px;
    background-color: #FAFAFA;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .account-orders .order-nav a:hover {
        color: var(--white-color);
        background-color: BLUE; } }

.account-orders .order-headers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 11.7% 12.6% 14.5% 13.3% 13.5% 1fr;
  grid-template-columns: 11.7% 12.6% 14.5% 13.3% 13.5% 1fr;
  padding: 0 20px 12px; }
  @media (max-width: 1200px) {
    .account-orders .order-headers {
      -ms-grid-columns: 19% 25% 48% 1fr;
      grid-template-columns: 19% 25% 48% 1fr; } }
  .account-orders .order-headers .order-title {
    color: #696969;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    padding: 0 15px 0 0;
    margin: 0; }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.number {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.date {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.status {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.price {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.address {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
    @media (max-width: 1200px) {
      .account-orders .order-headers .order-title.order-ttn {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }

.account-orders .order-item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 11.7% 12.6% 14.5% 13.3% 13.5% 28% 1fr;
  grid-template-columns: 11.7% 12.6% 14.5% 13.3% 13.5% 28% 1fr;
  border-radius: 16px;
  background-color: #FAFAFA;
  padding: 11px 20px;
  margin-bottom: 4px; }
  @media (max-width: 1200px) {
    .account-orders .order-item {
      -ms-grid-columns: 19% 25% 48% 1fr;
      grid-template-columns: 19% 25% 48% 1fr; } }
  .account-orders .order-item .order-item-value {
    padding-right: 15px; }
  .account-orders .order-item .order-number {
    color: #2F80ED;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-decoration-line: underline;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .account-orders .order-item .order-number:hover {
        color: BLUE; } }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-number {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
  .account-orders .order-item .order-date {
    color: #696969;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px; }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-date {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
  .account-orders .order-item .status_paid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--color-black-deep);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    position: relative; }
    .account-orders .order-item .status_paid .status_bullet {
      display: block;
      width: 8px;
      min-width: 8px;
      height: 8px;
      background-color: #FF9900;
      border-radius: 50%;
      margin-right: 8px; }
    @media (max-width: 1200px) {
      .account-orders .order-item .status_paid {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
  .account-orders .order-item .order-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-price {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
    .account-orders .order-item .order-price .price {
      color: var(--color-black-deep);
      font-size: 14px;
      font-weight: 700;
      line-height: 18px; }
    .account-orders .order-item .order-price .cashback {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #696969;
      font-size: 12px;
      font-weight: 400;
      line-height: 18px; }
      .account-orders .order-item .order-price .cashback img {
        width: 16px; }
  .account-orders .order-item .order-delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-delivery {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2; } }
    .account-orders .order-item .order-delivery .delivery-way {
      display: block;
      color: var(--color-black-deep);
      font-size: 14px;
      font-weight: 400;
      line-height: 18px; }
    .account-orders .order-item .order-delivery .delivery-type {
      display: block;
      color: #696969;
      font-size: 12px;
      font-weight: 400;
      line-height: 16px; }
  .account-orders .order-item .order-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .account-orders .order-item .order-address .address-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
  .account-orders .order-item .order-address,
  .account-orders .order-item .order-ttn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1200px) {
      .account-orders .order-item .order-address,
      .account-orders .order-item .order-ttn {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3; } }
    .account-orders .order-item .order-address img,
    .account-orders .order-item .order-ttn img {
      display: block;
      width: 24px; }
    .account-orders .order-item .order-address .address-city,
    .account-orders .order-item .order-ttn .address-city {
      color: #696969;
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      margin: 0 8px; }
    .account-orders .order-item .order-address .address-warehouse,
    .account-orders .order-item .order-address .ttn-number,
    .account-orders .order-item .order-ttn .address-warehouse,
    .account-orders .order-item .order-ttn .ttn-number {
      display: inline-block;
      color: var(--color-black-deep);
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      margin: 0 8px; }
    .account-orders .order-item .order-address .btn-copy,
    .account-orders .order-item .order-ttn .btn-copy {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border: none;
      outline: none;
      padding: 0;
      background-color: transparent; }
      .account-orders .order-item .order-address .btn-copy .ic,
      .account-orders .order-item .order-ttn .btn-copy .ic {
        color: #696969;
        width: 15px;
        height: 17px;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
      @media (pointer: fine) {
        .account-orders .order-item .order-address .btn-copy:hover .ic,
        .account-orders .order-item .order-ttn .btn-copy:hover .ic {
          color: var(--theme-color-second); } }
  .account-orders .order-item .arrow-wrap {
    width: 24px;
    height: 24px;
    background-color: #70629B;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    margin-left: auto; }
    @media (pointer: fine) {
      .account-orders .order-item .arrow-wrap:hover {
        background-color: BLUE; } }
    @media (max-width: 1200px) {
      .account-orders .order-item .arrow-wrap {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-row: 1 / 3; } }
    .account-orders .order-item .arrow-wrap .ic {
      color: var(--white-color);
      width: 9px;
      height: 12px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }

.profile-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px; }
  .profile-grid .profile-info,
  .profile-grid .profile-access {
    margin-bottom: 30px; }
  .profile-grid .profile-socials-bind {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content; }
    .profile-grid .profile-socials-bind .title {
      position: relative;
      text-align: center;
      font-size: 1rem; }
      .profile-grid .profile-socials-bind .title span {
        position: relative;
        z-index: 2;
        color: #696969;
        background: var(--white-color);
        padding: 0 10px; }
      .profile-grid .profile-socials-bind .title:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        height: 1px;
        width: 100%; }
    .profile-grid .profile-socials-bind .profile-socials-bind-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-column-gap: 16px;
         -moz-column-gap: 16px;
              column-gap: 16px;
      row-gap: 10px;
      margin-top: 13px; }
      .profile-grid .profile-socials-bind .profile-socials-bind-list .social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1 0 1fr;
                flex: 1 0 1fr;
        width: 100%;
        padding: 7px 15px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 8px;
        text-decoration: none;
        border-radius: 100px;
        border: 1px solid;
        background: var(--white-color); }
        .profile-grid .profile-socials-bind .profile-socials-bind-list .social .text {
          text-align: center;
          font-size: 1rem;
          font-weight: 400;
          line-height: 1.2;
          color: var(--color-black-deep); }

.user-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 20px 0; }
  .user-address .address-item {
    position: relative;
    z-index: 1;
    padding: 15px;
    background: white;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20px 1fr;
    grid-template-columns: 20px 1fr;
    grid-row-gap: 10px;
    grid-column-gap: 15px; }
    .user-address .address-item .custom-radio {
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 1;
      -ms-grid-row-span: 3;
      grid-row: 1/4;
      -ms-grid-row-align: center;
          align-self: center; }
    .user-address .address-item .title {
      font-weight: bold;
      font-size: 18px; }
    .user-address .address-item .address-title-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 15px;
      padding-right: 90px; }
    .user-address .address-item .actions {
      position: absolute;
      top: 20px;
      right: 20px; }
    .user-address .address-item .btn-action {
      padding: 3px !important;
      min-height: 30px;
      min-width: 30px;
      color: var(--theme-color-second);
      border-radius: 4px; }
      @media (pointer: fine) {
        .user-address .address-item .btn-action:hover {
          background: var(--theme-color-main);
          color: var(--white-color); } }
      .user-address .address-item .btn-action:focus {
        background: var(--theme-color-main);
        color: var(--white-color);
        -webkit-box-shadow: 0 0 0 0.25rem fade(var(--theme-color-main), 40%);
                box-shadow: 0 0 0 0.25rem fade(var(--theme-color-main), 40%); }

.main-category {
  font-size: 1.5rem; }

.sub-category {
  font-size: 1rem; }

.sub-list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.5rem; }

.sub-list .col-md-4 {
  padding: 0.5rem; }

.seo-pages-list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.5rem; }

.seo-pages-list .col-md-6,
.seo-pages-list .col-xl-4 {
  padding: 0.5rem; }
