@charset "UTF-8";
/** THEME COLOURS */
:root {
  --theme-color-main: #24084e;
  --theme-color-second: #6337a6;
  --color-black: #000000;
  --white-color: #ffffff;
  --color-primary: #547584;
  --color-primary-dark: #3E535D;
  --color-accent: #FFD400;
  --color-light: #F6FAFF;
  --color-soft: #DDF4FF;
  --color-dark: #26262B;
  --color-gray: #505050;
  --color-purple-gray: #9797BA;
  --error: #D12E31; }

/** MEDIA BREAKPOINTS */
html {
  font-size: 16px;
  background: var(--white-color);
  scroll-behavior: smooth; }

body {
  background: var(--white-color);
  color: var(--color-dark);
  font-size: 0.875rem;
  font-family: "Inter", 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.menu-opened #page-content {
    pointer-events: none; }

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; }

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-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: var(--color-black) !important;
  -webkit-transition: background-color 9999s ease-in-out 0s !important;
  transition: background-color 9999s ease-in-out 0s !important;
  caret-color: var(--color-black) !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; }
  #page-content:after {
    content: "";
    clear: both; }

body:has(section.section-bg:last-child) #page-content {
  padding-bottom: 80px; }
  @media (max-width: 991.98px) {
    body:has(section.section-bg:last-child) #page-content {
      padding-bottom: 60px; } }
  @media (max-width: 767.98px) {
    body:has(section.section-bg:last-child) #page-content {
      padding-bottom: 40px; } }

#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; }

[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; }

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

.block-wrapper {
  margin-top: 82px;
  margin-bottom: 82px; }
  @media (max-width: 991.98px) {
    .block-wrapper {
      margin-top: 70px;
      margin-bottom: 70px; } }
  @media (max-width: 767.98px) {
    .block-wrapper {
      margin-top: 40px;
      margin-bottom: 40px; } }
  .block-wrapper:has(.section-title-bg) {
    margin-top: 133px; }
    @media (max-width: 991.98px) {
      .block-wrapper:has(.section-title-bg) {
        margin-top: 70px; } }
    @media (max-width: 767.98px) {
      .block-wrapper:has(.section-title-bg) {
        margin-top: 40px;
        margin-bottom: 40px; } }

.block-wrapper-padding {
  padding-top: 82px;
  padding-bottom: 82px; }
  @media (max-width: 991.98px) {
    .block-wrapper-padding {
      padding-top: 70px;
      padding-bottom: 70px; } }
  @media (max-width: 767.98px) {
    .block-wrapper-padding {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .block-wrapper-padding:has(.section-title-bg) {
    padding-top: 0 !important; }
    .block-wrapper-padding:has(.section-title-bg) .section-header {
      padding-top: 133px;
      overflow: hidden; }
      @media (max-width: 991.98px) {
        .block-wrapper-padding:has(.section-title-bg) .section-header {
          padding-top: 70px; } }
      @media (max-width: 767.98px) {
        .block-wrapper-padding:has(.section-title-bg) .section-header {
          padding-top: 40px; } }

.block-content-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 440px 1fr;
  grid-template-columns: 440px 1fr;
  gap: 20px; }
  @media (max-width: 1199.98px) {
    .block-content-grid {
      -ms-grid-columns: 34% 1fr;
      grid-template-columns: 34% 1fr; } }
  @media (max-width: 991.98px) {
    .block-content-grid {
      display: block; } }
  .block-content-grid .block-cta-box {
    max-width: 345px; }
    @media (max-width: 991.98px) {
      .block-content-grid .block-cta-box {
        display: none; } }
  @media (max-width: 991.98px) {
    .block-content-grid .empty-item {
      display: none; } }

.section-bg {
  background-color: var(--color-primary); }
  .section-bg .section-header .title-sm {
    color: var(--color-accent); }
  .section-bg .section-header .section-title {
    color: var(--white-color); }
  .section-bg .section-header .section-subtitle {
    color: var(--white-color); }
  .section-bg .swiper-button-next .ic,
  .section-bg .swiper-button-prev .ic {
    color: var(--white-color); }

.bg-gray {
  background-color: var(--color-light); }

.section-header {
  position: relative;
  margin-bottom: 24px; }
  @media (max-width: 991.98px) {
    .section-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      margin-bottom: 20px; } }
  .section-header .container {
    position: relative;
    z-index: 1; }
  .section-header .section-header-wrapp {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .section-header .title-sm {
    color: var(--color-primary);
    font-family: "Tektur", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .section-header .title-sm {
        display: none;
        font-size: 16px;
        line-height: 110%; } }
  .section-header .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 12px; }
    @media (max-width: 767.98px) {
      .section-header .title-wrap {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        -ms-flex-wrap: unset;
            flex-wrap: unset; } }
  .section-header .section-title {
    margin: 0; }
    @media (max-width: 767.98px) {
      .section-header .section-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        font-size: 28px;
        font-weight: 700;
        line-height: 100%; } }
  .section-header .section-subtitle {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 7px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    text-overflow: ellipsis;
    width: 23%;
    padding-bottom: 3px; }
    @media (max-width: 1199.98px) {
      .section-header .section-subtitle {
        width: 50%; } }
    @media (max-width: 991.98px) {
      .section-header .section-subtitle {
        width: 40%;
        margin-top: 0; } }
    @media (max-width: 767.98px) {
      .section-header .section-subtitle {
        font-size: 12px;
        line-height: 120%;
        height: auto;
        width: 30%; } }
  .section-header .section-title-bg {
    position: absolute;
    left: 0;
    bottom: 0; }
    @media (max-width: 767.98px) {
      .section-header .section-title-bg {
        position: static; } }

.block-cta-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  background-color: var(--color-accent);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 325px;
  clip-path: polygon(100% 7.436%, 100% 100%, 7.005% 100%, 0% 92.564%, 0% 0%, 92.995% 0%, 100% 7.436%); }
  @media (max-width: 1199.98px) {
    .block-cta-box {
      padding: 20px;
      min-height: 300px; } }
  .block-cta-box .cta-box-title {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: 85%; }
    @media (max-width: 1199.98px) {
      .block-cta-box .cta-box-title {
        font-size: 20px; } }
    @media (max-width: 767.98px) {
      .block-cta-box .cta-box-title {
        font-size: 22px;
        line-height: 110%;
        margin-bottom: 10px; } }
  .block-cta-box .cta-box-content {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
    width: 85%; }
    @media (max-width: 1199.98px) {
      .block-cta-box .cta-box-content {
        font-size: 14px; } }
  .block-cta-box .cta-box-info b {
    font-weight: 600; }
  .block-cta-box .btn {
    width: 100%;
    margin-top: auto; }
    @media (max-width: 767.98px) {
      .block-cta-box .btn {
        margin-top: 18px; } }

.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; }

.carousel-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-top: 40px; }
  @media (max-width: 767.98px) {
    .carousel-nav {
      margin-top: 20px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 30px; } }
  .carousel-nav .decor {
    width: 4px;
    min-width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-accent); }
    @media (max-width: 767.98px) {
      .carousel-nav .decor {
        display: none; } }
  .carousel-nav:has(.swiper-button-lock) {
    display: none; }

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  margin: 0 !important;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto !important;
  height: auto !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;
  background: transparent;
  border-radius: 0;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .swiper-button-next:hover .ic,
  .swiper-button-prev:hover .ic {
    color: var(--color-accent);
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none; }
  .swiper-button-next .ic,
  .swiper-button-prev .ic {
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    -webkit-transition: .3s ease;
    transition: .3s ease; }

.modal-close {
  position: absolute;
  z-index: 99999;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  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(--color-primary);
  background: var(--white-color);
  border: none;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .modal-close .ic,
  .modal-close .icon {
    width: 18px;
    height: 18px; }
    @media (max-width: 767.98px) {
      .modal-close .ic,
      .modal-close .icon {
        width: 16px;
        height: 16px; } }
  @media (any-hover: hover) {
    .modal-close:hover, .modal-close:focus {
      color: var(--white-color) !important;
      background: var(--color-primary); } }
  @media (max-width: 767.98px) {
    .modal-close {
      width: 24px;
      height: 24px; } }

.modal-backdrop.show {
  opacity: 1;
  background: rgba(38, 38, 43, 0.8); }

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

#page-header {
  background: var(--color-primary);
  padding-bottom: 16px; }
  @media (max-width: 991.98px) {
    #page-header {
      position: sticky;
      top: 0;
      padding-bottom: 0; } }
  @media (max-width: 991.98px) {
    #page-header .header-top {
      border-bottom: 1px solid rgba(255, 255, 255, 0.12); } }
  #page-header .header-top > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 40px; }
    @media (max-width: 1300px) {
      #page-header .header-top > .container {
        gap: 30px; } }
    @media (max-width: 1199.98px) {
      #page-header .header-top > .container {
        gap: 14px; } }
    @media (max-width: 991.98px) {
      #page-header .header-top > .container {
        padding-top: 10px;
        padding-bottom: 10px; } }
  #page-header .header-top .branches-widget {
    position: relative;
    margin-right: auto; }
    #page-header .header-top .branches-widget .current-branch {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px;
      color: var(--white-color);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      cursor: pointer;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        #page-header .header-top .branches-widget .current-branch:hover {
          color: var(--color-accent); } }
      @media (max-width: 767.98px) {
        #page-header .header-top .branches-widget .current-branch {
          gap: 3px;
          font-size: 12px;
          line-height: 120%; } }
      #page-header .header-top .branches-widget .current-branch .ic-location {
        width: 20px;
        min-width: 20px;
        height: 20px; }
        @media (max-width: 767.98px) {
          #page-header .header-top .branches-widget .current-branch .ic-location {
            width: 14px;
            min-width: 14px;
            height: 14px; } }
      #page-header .header-top .branches-widget .current-branch .text-your_branch {
        white-space: nowrap; }
      #page-header .header-top .branches-widget .current-branch .text {
        overflow: hidden;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        line-clamp: 1;
        text-overflow: ellipsis; }
      #page-header .header-top .branches-widget .current-branch .ic-arrow-down-mini {
        width: 12px;
        min-width: 12px;
        height: 12px;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
  @media (max-width: 991.98px) {
    #page-header .header-top .socials-wrap {
      display: none; } }
  #page-header .header-top .socials-wrap nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px; }
    @media (max-width: 1199.98px) {
      #page-header .header-top .socials-wrap nav {
        gap: 8px; } }
  #page-header .header-top .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; }
    @media (pointer: fine) {
      #page-header .header-top .socials-wrap .social-link:hover svg path {
        fill: var(--color-accent); } }
  @media (max-width: 1199.98px) {
    #page-header .header-top .socials-wrap svg {
      width: 16px;
      height: 16px; } }
  #page-header .header-top .socials-wrap svg path {
    fill: var(--white-color);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
  #page-header .header-top .socials-wrap .text {
    display: none; }
  @media (max-width: 991.98px) {
    #page-header .header-top .cellphones-dropdown-wrap,
    #page-header .header-top .header-languages {
      display: none; } }
  #page-header .header-top .contacts-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    @media (max-width: 991.98px) {
      #page-header .header-top .contacts-info {
        display: none; } }
    @media (pointer: fine) {
      #page-header .header-top .contacts-info:hover .info-content a {
        color: var(--color-accent); } }
    #page-header .header-top .contacts-info .ic {
      color: var(--white-color);
      width: 20px;
      height: 20px; }
      @media (max-width: 1199.98px) {
        #page-header .header-top .contacts-info .ic {
          width: 16px;
          height: 16px; } }
    #page-header .header-top .contacts-info .info-content {
      color: var(--white-color);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      text-transform: uppercase; }
      @media (max-width: 1199.98px) {
        #page-header .header-top .contacts-info .info-content {
          font-size: 12px; } }
      #page-header .header-top .contacts-info .info-content a {
        color: var(--white-color);
        text-decoration: none;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
  #page-header .header-bottom {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1000px;
    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;
    gap: 30px;
    padding: 8px 8px 8px 28px; }
    @media (max-width: 1199.98px) {
      #page-header .header-bottom {
        gap: 20px;
        padding: 8px 8px 8px 20px; } }
    @media (max-width: 991.98px) {
      #page-header .header-bottom {
        gap: 12px;
        background: transparent;
        padding: 10px 0; } }
    #page-header .header-bottom .logo-wrap {
      position: relative;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      @media (max-width: 1199.98px) {
        #page-header .header-bottom .logo-wrap {
          max-width: 80px; } }
      @media (max-width: 991.98px) {
        #page-header .header-bottom .logo-wrap {
          margin-right: auto;
          max-width: 102px; } }
    #page-header .header-bottom .header-pages {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 10px; }
      @media (max-width: 1300px) {
        #page-header .header-bottom .header-pages {
          gap: 0; } }
      @media (max-width: 991.98px) {
        #page-header .header-bottom .header-pages {
          display: none; } }
    #page-header .header-bottom .header-pages-nav .nav-link {
      color: var(--white-color); }
    #page-header .header-bottom .btn-border {
      color: var(--white-color);
      border: 1px solid var(--white-color); }
      @media (pointer: fine) {
        #page-header .header-bottom .btn-border:hover {
          color: var(--color-dark);
          border: 1px solid var(--color-accent); } }
      @media (max-width: 991.98px) {
        #page-header .header-bottom .btn-border {
          display: none; } }

.hamburger {
  display: none; }
  @media (max-width: 991.98px) {
    .hamburger {
      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: 37px;
      height: 37px;
      border-radius: 50%;
      background-color: var(--white-color); }
      .hamburger .ic {
        color: var(--color-primary);
        width: 16px;
        height: 16px; } }

.header-menu-mobile {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 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: 14px;
  background: var(--color-light);
  -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; }
  @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%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden; }
  .header-menu-mobile .header-menu-mobile-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;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    gap: 14px; }
    .header-menu-mobile .header-menu-mobile-top .logo-wrap {
      max-width: 102px;
      width: 100%; }
    .header-menu-mobile .header-menu-mobile-top .btn-close-modal {
      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: 37px;
      height: 37px;
      background-color: var(--white-color);
      border-radius: 50%;
      padding: 0; }
      .header-menu-mobile .header-menu-mobile-top .btn-close-modal .ic {
        color: var(--color-primary);
        width: 16px;
        height: 16px; }
  .header-menu-mobile .header-languages .nav-languages-item {
    color: var(--color-dark) !important; }
  .header-menu-mobile .nav-branches .first-child {
    margin-bottom: 14px; }
  .header-menu-mobile .nav-products,
  .header-menu-mobile .nav-instructors {
    margin-top: 10px; }
    .header-menu-mobile .nav-products .nav-link-title,
    .header-menu-mobile .nav-instructors .nav-link-title {
      margin-bottom: 14px; }
    .header-menu-mobile .nav-products .sub-list .nav-link:last-child,
    .header-menu-mobile .nav-instructors .sub-list .nav-link:last-child {
      margin-bottom: 14px; }
  .header-menu-mobile .header-pages-nav .nav-item {
    width: 100%; }
    .header-menu-mobile .header-pages-nav .nav-item.sub-in.is-open .first-child .toggle-sublist .ic,
    .header-menu-mobile .header-pages-nav .nav-item.sub-in.is-open .nav-link-title .toggle-sublist .ic {
      color: var(--color-accent);
      -webkit-transform: scaleY(-1);
          -ms-transform: scaleY(-1);
              transform: scaleY(-1); }
    .header-menu-mobile .header-pages-nav .nav-item.sub-in .nav-link {
      padding: 0;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .header-menu-mobile .header-pages-nav .nav-item.sub-in .toggle-sublist .ic {
      color: var(--color-primary);
      width: 16px;
      height: 16px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
    .header-menu-mobile .header-pages-nav .nav-item.sub-in .sub-list {
      display: none;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .header-menu-mobile .header-pages-nav .nav-item.sub-in .sub-list .nav-link {
        color: var(--color-dark);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 120%;
        text-transform: uppercase; }
      .header-menu-mobile .header-pages-nav .nav-item.sub-in .sub-list .sub-list-inner .nav-link {
        text-transform: none; }
  .header-menu-mobile .header-pages-nav .nav-link {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
    padding: 10px 0 14px; }
  .header-menu-mobile .form-group .form-label {
    color: var(--color-dark);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 8px; }
  .header-menu-mobile .contacts-block {
    padding-top: 10px; }
    .header-menu-mobile .contacts-block .footer-col-title {
      display: none; }
    .header-menu-mobile .contacts-block .contacts-info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 10px; }
      .header-menu-mobile .contacts-block .contacts-info:not(:last-child) {
        margin-bottom: 10px; }
      .header-menu-mobile .contacts-block .contacts-info .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: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--color-accent); }
        .header-menu-mobile .contacts-block .contacts-info .info-icon .ic {
          color: var(--color-black);
          width: 14px;
          height: 14px; }
      .header-menu-mobile .contacts-block .contacts-info .info-content a {
        color: var(--color-dark);
        font-size: 12px;
        font-weight: 600;
        line-height: 120%;
        text-transform: uppercase; }
  .header-menu-mobile .btn-border {
    margin-top: 14px;
    width: 100%; }
  .header-menu-mobile .socials-wrap {
    margin-top: 14px; }
    .header-menu-mobile .socials-wrap nav {
      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: 30px; }
    .header-menu-mobile .socials-wrap .social-link svg {
      width: 24px;
      height: 24px; }
      .header-menu-mobile .socials-wrap .social-link svg path {
        fill: var(--color-primary); }
    .header-menu-mobile .socials-wrap .social-link .text {
      display: none; }

.branches-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease; }
  .branches-popup .branches-popup__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); }
  .branches-popup .branches-popup__content {
    width: 88.4%;
    overflow-y: auto;
    margin-bottom: 20px;
    background: var(--color-light);
    padding: 34px;
    -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    -webkit-animation: slideDown 0.35s ease forwards;
            animation: slideDown 0.35s ease forwards; }
    @media (max-width: 991.98px) {
      .branches-popup .branches-popup__content {
        padding: 24px; } }
    @media (max-width: 767.98px) {
      .branches-popup .branches-popup__content {
        padding: 14px;
        width: 98%; } }

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }
  .branches-popup .branches-popup__header {
    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;
    margin-bottom: 24px; }
    @media (max-width: 767.98px) {
      .branches-popup .branches-popup__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: unset;
            -ms-flex-align: unset;
                align-items: unset;
        gap: 10px;
        margin-bottom: 10px; } }
    .branches-popup .branches-popup__header .branches-popup__title {
      color: var(--color-primary);
      font-family: "Tektur", sans-serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 24px;
      text-transform: uppercase; }
      @media (max-width: 767.98px) {
        .branches-popup .branches-popup__header .branches-popup__title {
          font-size: 18px;
          line-height: 110%; } }
  .branches-popup .branches-popup__close {
    background: none;
    border: none;
    cursor: pointer;
    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: 50%;
    color: var(--color-primary);
    background-color: var(--white-color);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .branches-popup .branches-popup__close:hover {
        color: var(--white-color);
        background-color: var(--color-primary); } }
    @media (max-width: 767.98px) {
      .branches-popup .branches-popup__close {
        margin-left: auto; } }
    .branches-popup .branches-popup__close .ic {
      width: 18px;
      height: 18px; }
  .branches-popup .branches-popup__inner {
    padding: 26px 23px;
    background: var(--white-color); }
    @media (max-width: 767.98px) {
      .branches-popup .branches-popup__inner {
        padding: 14px; } }
  .branches-popup .branch-search {
    margin-bottom: 24px; }
    @media (max-width: 767.98px) {
      .branches-popup .branch-search {
        margin-bottom: 14px; } }
    .branches-popup .branch-search input {
      color: var(--color-gray);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      width: 83%;
      height: 56px;
      border-radius: 100px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 10px 24px; }
      @media (max-width: 767.98px) {
        .branches-popup .branch-search input {
          font-size: 14px;
          line-height: 140%;
          width: 100%;
          height: 48px;
          padding: 8px 22px; } }
  .branches-popup .tabs-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: 10px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    @media (max-width: 767.98px) {
      .branches-popup .tabs-header {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0 14px 14px;
        margin: 0 -14px 14px; } }
    .branches-popup .tabs-header .tab-item {
      color: var(--color-dark);
      font-family: "Tektur", sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: normal;
      padding: 14px 24px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      cursor: pointer;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      .branches-popup .tabs-header .tab-item.active {
        border: 1px solid var(--color-accent);
        background-color: var(--color-accent); }
      @media (pointer: fine) {
        .branches-popup .tabs-header .tab-item:hover {
          border: 1px solid var(--color-accent);
          background-color: var(--color-accent); } }
      @media (max-width: 767.98px) {
        .branches-popup .tabs-header .tab-item {
          font-size: 12px;
          line-height: 110%;
          padding: 13px 14px;
          border-radius: 6px; } }
  .branches-popup .tabs-body {
    overflow-y: auto;
    max-height: 414px; }
    .branches-popup .tabs-body, .branches-popup .tabs-body * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    .branches-popup .tabs-body::-webkit-scrollbar,
    .branches-popup .tabs-body *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    .branches-popup .tabs-body::-webkit-scrollbar-button,
    .branches-popup .tabs-body *::-webkit-scrollbar-button {
      display: none; }
    .branches-popup .tabs-body::-webkit-scrollbar-track,
    .branches-popup .tabs-body *::-webkit-scrollbar-track {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    .branches-popup .tabs-body::-webkit-scrollbar-track-piece,
    .branches-popup .tabs-body *::-webkit-scrollbar-track-piece {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    .branches-popup .tabs-body::-webkit-scrollbar-thumb,
    .branches-popup .tabs-body *::-webkit-scrollbar-thumb {
      background: var(--color-accent);
      border-radius: 99px; }
    .branches-popup .tabs-body::-webkit-scrollbar-corner,
    .branches-popup .tabs-body *::-webkit-scrollbar-corner {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    @media (max-width: 767.98px) {
      .branches-popup .tabs-body {
        max-height: 380px; } }
  .branches-popup .branch-item {
    cursor: pointer; }
    .branches-popup .branch-item:not(:last-child) {
      padding-bottom: 24px; }
      @media (max-width: 767.98px) {
        .branches-popup .branch-item:not(:last-child) {
          padding-bottom: 10px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.12); } }
    @media (max-width: 767.98px) {
      .branches-popup .branch-item:not(:first-child) {
        padding-top: 10px; } }
    .branches-popup .branch-item .branch-item__city {
      color: var(--color-primary);
      font-family: "Tektur", sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: normal;
      margin-bottom: 4px; }
      @media (max-width: 767.98px) {
        .branches-popup .branch-item .branch-item__city {
          font-size: 14px;
          line-height: 110%;
          margin-bottom: 6px; } }
    .branches-popup .branch-item .branch-item__addresses {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 8px 34px;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      @media (max-width: 767.98px) {
        .branches-popup .branch-item .branch-item__addresses {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -ms-flex-wrap: unset;
              flex-wrap: unset;
          gap: 8px; } }
      .branches-popup .branch-item .branch-item__addresses .branch-item__address {
        color: var(--color-dark);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        @media (pointer: fine) {
          .branches-popup .branch-item .branch-item__addresses .branch-item__address:hover {
            color: var(--color-primary);
            text-decoration: underline; } }
        @media (max-width: 767.98px) {
          .branches-popup .branch-item .branch-item__addresses .branch-item__address {
            font-size: 14px;
            line-height: 140%; } }

.geo-popup {
  position: fixed;
  inset: 0;
  z-index: 9999; }
  .geo-popup .geo-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(38, 38, 43, 0.8); }
  .geo-popup .geo-popup__content {
    position: relative;
    left: 6%;
    background: var(--color-light);
    padding: 10px 10px 34px 34px;
    max-width: 464px;
    width: 100%;
    z-index: 10;
    -webkit-animation: geoPopupFade .3s ease;
            animation: geoPopupFade .3s ease; }
    @media (max-width: 767.98px) {
      .geo-popup .geo-popup__content {
        left: unset;
        max-width: none;
        width: 96%;
        margin: 0 auto;
        padding: 14px 14px 34px 14px; } }
  .geo-popup .geo-popup__close {
    position: static !important;
    margin-left: auto;
    margin-bottom: 10px;
    cursor: pointer; }
  .geo-popup .geo-popup__text {
    color: var(--color-primary);
    font-family: "Tektur", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 24px; }
    @media (max-width: 767.98px) {
      .geo-popup .geo-popup__text {
        font-size: 18px;
        line-height: 110%; } }
  .geo-popup .geo-popup__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }
    @media (max-width: 767.98px) {
      .geo-popup .geo-popup__actions {
        gap: 8px; } }
    .geo-popup .geo-popup__actions .btn {
      color: var(--color-dark);
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      text-transform: uppercase;
      width: 120px;
      border-radius: 100px;
      padding: 15px 24px;
      cursor: pointer;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        .geo-popup .geo-popup__actions .btn:hover {
          -webkit-transform: translateY(-5px);
              -ms-transform: translateY(-5px);
                  transform: translateY(-5px); } }
      @media (max-width: 767.98px) {
        .geo-popup .geo-popup__actions .btn {
          font-size: 12px;
          line-height: 120%;
          width: 90px;
          padding: 14px 20px; } }
      .geo-popup .geo-popup__actions .btn-yes {
        border: 1px solid var(--color-accent);
        background: var(--color-accent); }
      .geo-popup .geo-popup__actions .btn-no {
        border: 1px solid var(--color-primary);
        background: transparent; }

@-webkit-keyframes geoPopupFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes geoPopupFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.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;
  margin: 0 auto;
  gap: 10px; }
  @media (max-width: 1300px) {
    .header-pages-nav {
      gap: 0; } }
  @media (max-width: 991.98px) {
    .header-pages-nav {
      -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; } }
  .header-pages-nav .nav-item.sub-in {
    position: relative; }
    @media (any-hover: hover) {
      .header-pages-nav .nav-item.sub-in:hover > .nav-link .ic, .header-pages-nav .nav-item.sub-in:focus > .nav-link .ic {
        color: var(--color-accent);
        -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
                transform: rotate(-180deg); } }

@media (any-hover: hover) and (min-width: 992px) {
  .header-pages-nav .nav-item.sub-in:hover > .sub-list, .header-pages-nav .nav-item.sub-in:focus > .sub-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); } }
  .header-pages-nav .nav-link {
    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;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    padding: 2px 10px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 1360px) {
      .header-pages-nav .nav-link {
        font-size: 13px;
        line-height: 18px; } }
    @media (max-width: 1199.98px) {
      .header-pages-nav .nav-link {
        font-size: 12px;
        padding: 2px 8px; } }
    @media (pointer: fine) {
      .header-pages-nav .nav-link:hover {
        color: var(--color-accent) !important; } }
    .header-pages-nav .nav-link .toggle-sublist {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .header-pages-nav .nav-link .ic {
      width: 12px;
      height: 12px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
  .header-pages-nav .nav-branches .sub-list {
    gap: 0; }
    @media (min-width: 992px) {
      .header-pages-nav .nav-branches .sub-list {
        min-width: 352px;
        padding: 20px 20px 6px; } }
    .header-pages-nav .nav-branches .sub-list .sub-item.sub-in .ic {
      -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;
      will-change: transform; }
      .header-pages-nav .nav-branches .sub-list .sub-item.sub-in .ic.rotated {
        color: var(--color-accent);
        -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
                transform: rotate(-180deg); }
    .header-pages-nav .nav-branches .sub-list .nav-link {
      text-transform: none;
      margin-bottom: 14px; }
    .header-pages-nav .nav-branches .sub-list .sub-list-inner {
      display: none;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-left: 14px; }
      .header-pages-nav .nav-branches .sub-list .sub-list-inner .nav-link {
        font-size: 14px;
        font-weight: 600;
        line-height: 110%;
        margin-bottom: 10px; }
    .header-pages-nav .nav-branches .sub-list .sub-list-deep {
      display: none;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-left: 24px; }
      .header-pages-nav .nav-branches .sub-list .sub-list-deep .sub-item {
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 140%; }
        .header-pages-nav .nav-branches .sub-list .sub-list-deep .sub-item:last-child {
          margin-bottom: 16px !important; }
  .header-pages-nav .nav-item:not(.nav-branches) .sub-list {
    gap: 14px; }
  @media (min-width: 992px) {
    .header-pages-nav .sub-list {
      position: absolute;
      top: 100%;
      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;
      gap: 14px;
      height: auto;
      width: 100%;
      border-radius: 10px;
      padding: 20px;
      background: #62808E;
      opacity: 0;
      margin-top: 36px;
      min-width: 246px;
      -webkit-box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.05);
              box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.05);
      visibility: hidden;
      -webkit-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
              transform: translateY(-10px);
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .header-pages-nav .sub-list::before {
        content: '';
        position: absolute;
        top: -11px;
        left: 11px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='15' viewBox='0 0 22 15' fill='none'%3E%3Cpath d='M9.52197 1.62134C10.3152 0.751183 11.6848 0.751186 12.478 1.62135L20.9389 10.9026C22.1095 12.1867 21.1985 14.25 19.4609 14.25H2.53913C0.801544 14.25 -0.109488 12.1867 1.06111 10.9026L9.52197 1.62134Z' fill='%2362808E'/%3E%3C/svg%3E") center no-repeat;
        width: 22px;
        height: 15px; } }
  .header-pages-nav .sub-list .nav-link {
    color: var(--white-color);
    font-family: "Tektur", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .header-pages-nav .sub-list .nav-link {
        padding: 8px; } }
    .header-pages-nav .sub-list .nav-link::before {
      display: none; }
    .header-pages-nav .sub-list .nav-link .ic {
      color: var(--white-color);
      margin-left: auto;
      width: 12px;
      height: 12px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }

#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; }
  #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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon .icon {
      width: 20px;
      height: 20px;
      color: var(--white-color); }
      @media (max-width: 1199.98px) {
        #page-header .cellphones-dropdown-wrap .cellphones-dropdown-icon .icon {
          width: 16px;
          height: 16px; } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content {
    -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: 100%;
      left: 0;
      width: 100%;
      height: 10px;
      background: transparent; }
    #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-icon, #page-header .cellphones-dropdown-wrap .cellphones-dropdown-content:focus .cellphone-main-icon {
      -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 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: grey;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px; }
    #page-header .cellphones-dropdown-wrap .cellphones-dropdown-title:not(:last-child) {
      margin-bottom: 4px; }
    @media (max-width: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown-title {
        font-size: 12px; } }
  #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 {
      cursor: pointer;
      margin-left: 5px; }
      #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(--white-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    -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: 400; }
    @media (any-hover: hover) {
      #page-header .cellphones-dropdown-wrap .phone:hover, #page-header .cellphones-dropdown-wrap .phone:focus {
        color: var(--color-accent); } }
  #page-header .cellphones-dropdown-wrap .cellphones-dropdown {
    position: absolute;
    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: 99;
    top: 100%;
    right: 0;
    min-width: 100%;
    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: 1199.98px) {
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown {
        left: auto;
        right: 0;
        margin-top: 30px; } }
    #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;
      min-height: 40px;
      padding: 8px 12px;
      color: var(--theme-color-main);
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      border-radius: 10px;
      background: white;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      #page-header .cellphones-dropdown-wrap .cellphones-dropdown .phone::before {
        content: "";
        -ms-flex-negative: 0;
            flex-shrink: 0;
        display: block;
        width: 24px;
        height: 24px;
        margin-right: 5px;
        background-size: contain; }
      #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 {
          background: var(--theme-color-second);
          color: var(--white-color); } }

#page-header .nav-languages-dropdown-wrap {
  position: relative;
  z-index: 10; }
  #page-header .nav-languages-dropdown-wrap .current-language {
    position: relative;
    z-index: 5; }
  #page-header .nav-languages-dropdown-wrap .nav-languages {
    display: none;
    visibility: hidden;
    position: absolute;
    opacity: 0;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    padding: 42px 2px 2px;
    gap: 2px;
    background: var(--white-color);
    border: 2px solid var(--theme-color-main);
    border-radius: 50px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
    #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;
    text-align: center;
    text-decoration: none;
    color: var(--color-dark);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 32px;
    height: 32px;
    background: var(--white-color);
    border-radius: 100%; }
    #page-header .nav-languages-dropdown-wrap .nav-languages-link:focus {
      background: var(--theme-color-main);
      color: var(--white-color); }
    @media (pointer: fine) {
      #page-header .nav-languages-dropdown-wrap .nav-languages-link:hover {
        background: var(--theme-color-main);
        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;
  gap: 12px; }
  @media (max-width: 1199.98px) {
    #page-header .nav-languages-inline-wrap .nav-languages {
      gap: 10px; } }

#page-header .nav-languages-inline-wrap .nav-languages-item {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  @media (max-width: 1199.98px) {
    #page-header .nav-languages-inline-wrap .nav-languages-item {
      font-size: 12px;
      line-height: 16px; } }

@media (pointer: fine) {
  #page-header .nav-languages-inline-wrap .nav-languages-link:hover {
    color: var(--color-accent); } }

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

@media (max-width: 767.98px) {
  #page-footer {
    background: var(--color-light); } }

#page-footer .footer-top {
  padding-top: 48px;
  background: var(--color-light);
  clip-path: polygon(100% 5.453%, 100% 100%, 0% 100%, 0% 0.094%, 97.696% 0.094%, 100% 5.453%); }
  @media (max-width: 767.98px) {
    #page-footer .footer-top {
      padding-top: 40px; } }

#page-footer .footer-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25.3% 17.3% 17.2% 1fr;
  grid-template-columns: 25.3% 17.3% 17.2% 1fr;
  gap: 24px;
  padding: 0 40px 80px 47px; }
  @media (max-width: 1300px) {
    #page-footer .footer-row {
      -ms-grid-columns: 20% 17% 17% 1fr;
      grid-template-columns: 20% 17% 17% 1fr;
      padding: 0 30px 60px 30px; } }
  @media (max-width: 1199.98px) {
    #page-footer .footer-row {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767.98px) {
    #page-footer .footer-row {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 0;
      padding: 0 0 20px; } }

@media (max-width: 767.98px) {
  #page-footer .footer-col {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 14px 0; } }

#page-footer .footer-col-title {
  color: var(--color-primary);
  font-family: "Tektur", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  padding-bottom: 15px; }
  @media (max-width: 767.98px) {
    #page-footer .footer-col-title {
      font-size: 16px;
      font-weight: 600;
      line-height: 110%;
      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-bottom: 0; }
      #page-footer .footer-col-title.active .btn-toggle-info .ic {
        color: var(--color-accent);
        -webkit-transform: scaleY(-1);
            -ms-transform: scaleY(-1);
                transform: scaleY(-1); } }
  #page-footer .footer-col-title .btn-toggle-info {
    display: none; }
    @media (max-width: 767.98px) {
      #page-footer .footer-col-title .btn-toggle-info {
        display: block; } }
    #page-footer .footer-col-title .btn-toggle-info .ic {
      -webkit-transition: .3s ease;
      transition: .3s ease; }

@media (max-width: 767.98px) {
  #page-footer .footer-info-inner {
    padding-top: 10px; } }

#page-footer .navbar {
  display: block;
  padding: 0; }
  #page-footer .navbar .navbar-nav {
    gap: 5px; }
  #page-footer .navbar .nav-link {
    color: var(--color-dark);
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    padding: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      #page-footer .navbar .nav-link:hover {
        color: var(--color-accent); } }
    @media (max-width: 767.98px) {
      #page-footer .navbar .nav-link {
        font-size: 14px;
        line-height: 120%; } }

#page-footer .footer-nav-pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px; }
  @media (max-width: 767.98px) {
    #page-footer .footer-nav-pages {
      gap: 10px; } }
  #page-footer .footer-nav-pages .nav-link {
    color: var(--color-dark);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      #page-footer .footer-nav-pages .nav-link:hover {
        color: var(--color-accent); } }
    @media (max-width: 767.98px) {
      #page-footer .footer-nav-pages .nav-link {
        font-size: 14px;
        line-height: 120%; } }

#page-footer .footer-col-contacts {
  position: relative;
  padding: 24px;
  background-color: var(--color-primary);
  overflow: hidden; }
  #page-footer .footer-col-contacts::before {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--color-light);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    right: -30px;
    top: -30px; }
  #page-footer .footer-col-contacts::after {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--color-light);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    left: -30px;
    bottom: -30px; }
  @media (max-width: 767.98px) {
    #page-footer .footer-col-contacts {
      -ms-grid-row: 1;
      grid-row: 1;
      margin-bottom: 20px;
      padding: 24px 14px; } }
  #page-footer .footer-col-contacts .footer-col-title {
    color: var(--color-accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    @media (max-width: 767.98px) {
      #page-footer .footer-col-contacts .footer-col-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 110%;
        margin-bottom: 4px;
        border: none; } }
  #page-footer .footer-col-contacts .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; }
    @media (max-width: 767.98px) {
      #page-footer .footer-col-contacts .contacts-block {
        gap: 10px; } }
    #page-footer .footer-col-contacts .contacts-block .contacts-info {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 10px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
      @media (max-width: 767.98px) {
        #page-footer .footer-col-contacts .contacts-block .contacts-info {
          padding: 0;
          border-bottom: none; } }
      #page-footer .footer-col-contacts .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; }
    #page-footer .footer-col-contacts .contacts-block .info-icon {
      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;
      -ms-flex-item-align: start;
          align-self: flex-start;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: var(--white-color); }
      @media (max-width: 767.98px) {
        #page-footer .footer-col-contacts .contacts-block .info-icon {
          width: 30px;
          height: 30px; } }
      #page-footer .footer-col-contacts .contacts-block .info-icon .ic {
        width: 24px;
        height: 24px; }
        @media (max-width: 767.98px) {
          #page-footer .footer-col-contacts .contacts-block .info-icon .ic {
            width: 14px;
            height: 14px; } }
    #page-footer .footer-col-contacts .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(--white-color);
      font-size: 20px;
      font-weight: 400;
      line-height: 24px;
      text-transform: uppercase;
      word-break: break-word; }
      @media (max-width: 991.98px) {
        #page-footer .footer-col-contacts .contacts-block .info-content {
          font-size: 16px;
          line-height: 20px; } }
      @media (max-width: 767.98px) {
        #page-footer .footer-col-contacts .contacts-block .info-content {
          font-size: 14px;
          font-weight: 600;
          line-height: 120%; } }
      #page-footer .footer-col-contacts .contacts-block .info-content a {
        color: var(--white-color);
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        @media (any-hover: hover) {
          #page-footer .footer-col-contacts .contacts-block .info-content a:hover, #page-footer .footer-col-contacts .contacts-block .info-content a:focus {
            text-decoration: none;
            color: var(--color-accent); } }
  #page-footer .footer-col-contacts .btn {
    width: 100%;
    margin-top: 24px; }
    @media (max-width: 767.98px) {
      #page-footer .footer-col-contacts .btn {
        margin-top: 14px; } }

#page-footer .socials-wrap {
  padding: 16px 0 0; }
  @media (max-width: 767.98px) {
    #page-footer .socials-wrap {
      padding: 14px 0 0; } }
  #page-footer .socials-wrap nav {
    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: 20px; }
    @media (max-width: 767.98px) {
      #page-footer .socials-wrap nav {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 30px; } }
    #page-footer .socials-wrap nav .social-link {
      color: var(--white-color);
      font-size: 14px;
      font-weight: 400;
      line-height: 24px;
      text-transform: uppercase;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        #page-footer .socials-wrap nav .social-link:hover {
          color: var(--color-accent); }
          #page-footer .socials-wrap nav .social-link:hover svg path {
            fill: var(--color-accent); } }
      #page-footer .socials-wrap nav .social-link svg {
        width: 20px;
        min-width: 20px;
        height: 20px; }
        @media (max-width: 1199.98px) {
          #page-footer .socials-wrap nav .social-link svg {
            width: 24px;
            min-width: 24px;
            height: 24px; } }
        #page-footer .socials-wrap nav .social-link svg path {
          fill: var(--white-color);
          -webkit-transition: .3s ease;
          transition: .3s ease; }
      #page-footer .socials-wrap nav .social-link .text {
        display: none; }

#page-footer .footer-logo img {
  width: 100%; }

#page-footer .footer-bottom {
  padding-top: 32px;
  padding-bottom: 32px; }
  @media (max-width: 767.98px) {
    #page-footer .footer-bottom {
      padding-top: 12px;
      padding-bottom: 20px; } }
  #page-footer .footer-bottom > .container {
    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; }
    @media (max-width: 767.98px) {
      #page-footer .footer-bottom > .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  #page-footer .footer-bottom .copyright {
    color: var(--color-dark);
    font-family: "OpenSans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px; }
    @media (max-width: 767.98px) {
      #page-footer .footer-bottom .copyright {
        font-size: 12px;
        line-height: 120%;
        margin-bottom: 10px; } }
  #page-footer .footer-bottom .fenix-copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px;
    color: var(--color-dark);
    font-family: "OpenSans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease; }
    @media (max-width: 767.98px) {
      #page-footer .footer-bottom .fenix-copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2px;
        font-size: 12px;
        line-height: 120%; } }
    #page-footer .footer-bottom .fenix-copyright a {
      color: var(--color-dark);
      text-decoration: none; }
    #page-footer .footer-bottom .fenix-copyright svg {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: 0.5s ease;
      transition: 0.5s ease; }
      #page-footer .footer-bottom .fenix-copyright svg path {
        fill: var(--color-dark); }
    #page-footer .footer-bottom .fenix-copyright:focus {
      text-shadow: 0 0 0; }
      #page-footer .footer-bottom .fenix-copyright:focus svg {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1); }
    @media (pointer: fine) {
      #page-footer .footer-bottom .fenix-copyright:hover {
        text-shadow: 0 0 0; }
        #page-footer .footer-bottom .fenix-copyright:hover svg {
          -webkit-transform: scale(1.1);
              -ms-transform: scale(1.1);
                  transform: scale(1.1); } }

.form-style-box {
  width: 100%;
  -webkit-box-shadow: 2px 2px 10px #cfcfcf;
          box-shadow: 2px 2px 10px #cfcfcf;
  background: var(--white-color);
  padding: 20px;
  border-radius: 10px; }

.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-dark) !important;
  -webkit-text-fill-color: var(--color-dark);
  -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-primary);
  text-align: center;
  font-family: "Tektur", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 8px; }
  @media (max-width: 767.98px) {
    .form-style .form-title {
      font-size: 18px;
      line-height: 110%; } }

.form-style .form-note {
  color: var(--color-dark);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px; }
  @media (max-width: 767.98px) {
    .form-style .form-note {
      font-size: 14px;
      line-height: 140%;
      margin-bottom: 18px; } }

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

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

.form-style .form-group:not(:last-child),
.form-style .form-row-group:not(:last-child) {
  margin-bottom: 24px; }
  @media (max-width: 767.98px) {
    .form-style .form-group:not(:last-child),
    .form-style .form-row-group:not(:last-child) {
      margin-bottom: 18px; } }

.form-style .form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; }
  @media (max-width: 767.98px) {
    .form-style .form-grid {
      gap: 8px; } }

.form-style .form-label {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 10px; }
  @media (max-width: 767.98px) {
    .form-style .form-label {
      font-size: 12px;
      line-height: 120%;
      margin-bottom: 8px; } }

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

.form-style .form-control:not(.jq-selectbox) {
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  min-height: 56px;
  padding: 6px 20px;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-dark);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  @media (max-width: 767.98px) {
    .form-style .form-control:not(.jq-selectbox) {
      font-size: 14px;
      line-height: 140%;
      padding: 6px 14px;
      border-radius: 6px;
      min-height: 48px; } }
  .form-style .form-control:not(.jq-selectbox):focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: #989898; }
  .form-style .form-control:not(.jq-selectbox).form-control-error {
    border-color: var(--error); }

.form-style textarea.form-control {
  height: 145px;
  resize: none;
  padding-top: 10px;
  padding-bottom: 10px; }

.form-style .form-error {
  display: block;
  margin: 0;
  padding: 2px 0;
  color: var(--error);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px; }

.form-style .btn-submit {
  margin: 24px auto 0;
  width: 100%; }
  @media (max-width: 767.98px) {
    .form-style .btn-submit {
      margin: 10px auto 0; } }

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

.form-style .form-footer-info {
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  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;
  margin-top: 14px; }
  @media (max-width: 767.98px) {
    .form-style .form-footer-info {
      font-size: 14px;
      line-height: 140%;
      margin-top: 10px; } }
  .form-style .form-footer-info .form-footer-phone {
    color: var(--color-dark);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .form-style .form-footer-info .form-footer-phone:hover {
        color: var(--color-accent); } }

.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 {
  min-height: 48px; }
  .form-style .jq-selectbox.form-control .jq-selectbox__select {
    height: 100%; }

.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-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none; }

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

.fancybox-container.form-popup .fancybox-content {
  padding: 50px 30px 34px;
  width: 100%;
  max-width: 433px;
  background-color: var(--color-light); }
  @media (max-width: 767.98px) {
    .fancybox-container.form-popup .fancybox-content {
      padding: 48px 14px 24px; } }
  .fancybox-container.form-popup .fancybox-content .jq-selectbox.form-control {
    height: auto !important; }
  .fancybox-container.form-popup .fancybox-content .jq-selectbox .jq-selectbox__dropdown {
    position: static !important; }
  .fancybox-container.form-popup .fancybox-content .jq-selectbox__dropdown ul {
    max-height: 160px; }

.fancybox-slide--html .fancybox-close-small {
  top: 10px;
  right: 10px;
  color: var(--color-primary);
  padding: 0; }
  @media (max-width: 767.98px) {
    .fancybox-slide--html .fancybox-close-small {
      top: 14px;
      right: 14px; } }

.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-dark); }

.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; }

.form-advanced-driver .btn-main {
  margin-top: 0; }

.form-advanced-driver .btn-border {
  width: 100%;
  margin-top: 10px; }
  @media (max-width: 767.98px) {
    .form-advanced-driver .btn-border {
      margin-top: 8px; } }

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; }
    #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: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    #search-modal .search-results::-webkit-scrollbar-track-piece,
    #search-modal .search-results *::-webkit-scrollbar-track-piece {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    #search-modal .search-results::-webkit-scrollbar-thumb,
    #search-modal .search-results *::-webkit-scrollbar-thumb {
      background: var(--color-accent);
      border-radius: 99px; }
    #search-modal .search-results::-webkit-scrollbar-corner,
    #search-modal .search-results *::-webkit-scrollbar-corner {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
  #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: 10px;
  position: relative;
  overflow: hidden;
  z-index: 5;
  margin: 14px 0 44px 0; }
  @media (max-width: 767.98px) {
    #page-breadcrumbs {
      --gap: 5px;
      margin: 10px 0 20px 0; } }
  #page-breadcrumbs .breadcrumbs-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    #page-breadcrumbs .breadcrumbs-nav::-webkit-scrollbar {
      display: none; }
  #page-breadcrumbs .breadcrumb-scroll-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
    #page-breadcrumbs .breadcrumb-scroll-wrap.grabbing {
      cursor: -webkit-grabbing;
      cursor: grabbing; }
  #page-breadcrumbs .breadcrumb-inner {
    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; }
  #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-purple-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
    @media (max-width: 767.98px) {
      #page-breadcrumbs .breadcrumbs-nav-item {
        font-size: 12px;
        line-height: 120%; } }
    #page-breadcrumbs .breadcrumbs-nav-item:not(:last-child):after {
      display: inline-block;
      content: "";
      width: 5px;
      min-width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: var(--color-purple-gray); }
      @media (max-width: 767.98px) {
        #page-breadcrumbs .breadcrumbs-nav-item:not(:last-child):after {
          width: 3px;
          min-width: 3px;
          height: 3px; } }
  #page-breadcrumbs a.breadcrumbs-nav-item {
    text-decoration: none; }
    #page-breadcrumbs a.breadcrumbs-nav-item span {
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease; }
    #page-breadcrumbs a.breadcrumbs-nav-item:focus span {
      color: var(--color-primary); }
    @media (pointer: fine) {
      #page-breadcrumbs a.breadcrumbs-nav-item:hover span {
        color: var(--color-primary); } }
  #page-breadcrumbs .breadcrumbs-nav-item-main {
    color: var(--color-dark);
    text-transform: uppercase; }
  #page-breadcrumbs .breadcrumbs-nav-item-last {
    cursor: default; }

#page-breadcrumbs.breadcrumbs-inline .breadcrumb-inner {
  position: static; }

#page-breadcrumbs.breadcrumbs-inline .breadcrumbs-nav-item {
  color: var(--color-purple-gray); }
  #page-breadcrumbs.breadcrumbs-inline .breadcrumbs-nav-item:not(:last-child):after {
    background-color: var(--color-purple-gray); }

#page-breadcrumbs.breadcrumbs-inline .breadcrumbs-nav-item-main {
  color: var(--white-color); }

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;
  background-color: transparent;
  text-decoration: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: pointer;
  outline: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (max-width: 767.98px) {
    button,
    .btn {
      gap: 6px; } }

.btn-main {
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  border-radius: 100px;
  background-color: var(--color-accent);
  border: none;
  padding: 16px 24px; }
  @media (max-width: 1199.98px) {
    .btn-main {
      font-size: 12px;
      font-weight: 600;
      line-height: 120%;
      padding: 13px 20px;
      min-height: 46px; } }
  @media (pointer: fine) {
    .btn-main:hover {
      background-color: var(--white-color);
      -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
              transform: translateY(-2px);
      -webkit-box-shadow: 0 4px 12px rgba(255, 212, 0, 0.6) !important;
              box-shadow: 0 4px 12px rgba(255, 212, 0, 0.6) !important; }
      .btn-main:hover .ic,
      .btn-main:hover .icon {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); } }
  .btn-main .ic,
  .btn-main .icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
    -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: 767.98px) {
      .btn-main .ic,
      .btn-main .icon {
        width: 12px;
        min-width: 12px;
        height: 12px; } }

.btn-light {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  border-radius: 100px;
  background-color: var(--white-color);
  border: none;
  text-transform: uppercase;
  padding: 16px 24px; }
  @media (pointer: fine) {
    .btn-light:hover {
      background-color: var(--white-color);
      -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
              transform: translateY(-2px);
      -webkit-box-shadow: 0 4px 12px rgba(255, 212, 0, 0.6) !important;
              box-shadow: 0 4px 12px rgba(255, 212, 0, 0.6) !important; }
      .btn-light:hover .ic,
      .btn-light:hover .icon {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); } }
  @media (max-width: 1199.98px) {
    .btn-light {
      font-size: 12px;
      padding: 14px 20px;
      min-height: 46px; } }
  .btn-light .ic,
  .btn-light .icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
    -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-light--big {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; }

.btn-border {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 100px;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid var(--white-color);
  padding: 15px 24px; }
  @media (pointer: fine) {
    .btn-border:hover {
      color: var(--color-dark);
      border: 1px solid var(--color-accent);
      background-color: var(--color-accent);
      -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
              transform: translateY(-2px); }
      .btn-border:hover .ic,
      .btn-border:hover .icon {
        color: var(--color-dark);
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); } }
  @media (max-width: 1199.98px) {
    .btn-border {
      font-size: 12px;
      line-height: 18px;
      padding: 11px 16px;
      min-height: 46px; } }
  .btn-border .ic,
  .btn-border .icon {
    color: var(--color-accent);
    width: 16px;
    min-width: 16px;
    height: 16px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .btn-border--gray {
    color: var(--color-dark);
    border: 1px solid #66658D; }
  .btn-border--sm {
    font-size: 14px;
    line-height: 18px;
    padding: 11px 16px; }
    @media (max-width: 767.98px) {
      .btn-border--sm {
        font-size: 12px; } }

.btn-callback-sticky {
  display: none; }
  @media (max-width: 767.98px) {
    .btn-callback-sticky {
      position: fixed;
      right: 24px;
      bottom: 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;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--color-accent);
      -webkit-box-shadow: 0 4px 14px 0 rgba(71, 61, 12, 0.2);
              box-shadow: 0 4px 14px 0 rgba(71, 61, 12, 0.2);
      cursor: pointer;
      border: 3px solid var(--white-color);
      outline: none;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
      transition: opacity 0.3s ease, visibility 0.3s ease; }
      .btn-callback-sticky.visible {
        opacity: 1;
        visibility: visible; }
      .btn-callback-sticky .ic {
        color: var(--color-dark);
        width: 28px;
        height: 28px;
        z-index: 2;
        position: relative; }
      .btn-callback-sticky::before, .btn-callback-sticky::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 110%;
        height: 110%;
        border-radius: 50%;
        background: transparent;
        border: 2px solid rgba(255, 212, 0, 0.5);
        -webkit-transform: translate(-50%, -50%) scale(1);
            -ms-transform: translate(-50%, -50%) scale(1);
                transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        z-index: 0;
        -webkit-animation: pulseWave 2.4s infinite ease-out;
                animation: pulseWave 2.4s infinite ease-out; }
      .btn-callback-sticky::after {
        -webkit-animation-delay: 1.2s;
                animation-delay: 1.2s; } }

@-webkit-keyframes pulseWave {
  0% {
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1); }
  70% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, -50%) scale(1.6);
            transform: translate(-50%, -50%) scale(1.6); }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.8);
            transform: translate(-50%, -50%) scale(1.8); } }

@keyframes pulseWave {
  0% {
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1); }
  70% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, -50%) scale(1.6);
            transform: translate(-50%, -50%) scale(1.6); }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.8);
            transform: translate(-50%, -50%) scale(1.8); } }

.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-dark); }
    .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); } }

#messageDialog {
  max-width: 396px; }
  #messageDialog .popup-title {
    color: var(--color-primary);
    text-align: center;
    font-family: "Tektur", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 8px; }
    @media (max-width: 767.98px) {
      #messageDialog .popup-title {
        font-size: 18px;
        line-height: 110%; } }
  #messageDialog .popup-message {
    color: var(--color-dark);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px; }
    @media (max-width: 767.98px) {
      #messageDialog .popup-message {
        font-size: 14px;
        line-height: 140%; } }
  #messageDialog .popup-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 24px auto 0; }
    @media (max-width: 767.98px) {
      #messageDialog .popup-img {
        margin: 16px auto 0; }
        #messageDialog .popup-img img {
          width: 70px; } }

.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: 30px; }
    @media (max-width: 767.98px) {
      .pagination:not(:first-child) {
        margin-top: 20px; } }
  .pagination:not(:last-child) {
    margin-bottom: 30px; }
    @media (max-width: 767.98px) {
      .pagination:not(:last-child) {
        margin-bottom: 20px; } }
  .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: 2px; }
  .pagination li a {
    color: var(--color-purple-gray);
    font-family: "Tektur", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    width: 40px;
    min-width: 40px;
    height: 40px;
    -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%;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (any-hover: hover) {
      .pagination li a:hover {
        border: 1px solid var(--color-purple-gray); } }
    @media (max-width: 767.98px) {
      .pagination li a {
        width: 36px;
        min-width: 36px;
        height: 36px; } }
    .pagination li a:focus {
      border: 1px solid var(--color-purple-gray); }
  .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-primary);
    color: var(--white-color); }
  @media (max-width: 767.98px) {
    .pagination .prev a,
    .pagination .next a {
      width: auto;
      min-width: auto;
      height: auto;
      border: none !important; } }
  .pagination .prev .ic,
  .pagination .next .ic {
    color: var(--color-primary);
    width: 24px;
    height: 24px; }
    @media (max-width: 767.98px) {
      .pagination .prev .ic,
      .pagination .next .ic {
        width: 18px;
        height: 18px; } }
  .pagination .prev {
    margin-right: 38px; }
    @media (max-width: 767.98px) {
      .pagination .prev {
        margin-right: 16px; } }
  .pagination .next {
    margin-left: 38px; }
    @media (max-width: 767.98px) {
      .pagination .next {
        margin-left: 16px; } }
  @media (max-width: 1199.98px) {
    .pagination .page-item.page-gap span {
      -webkit-transform: translateY(20px);
          -ms-transform: translateY(20px);
              transform: translateY(20px); } }
  @media (max-width: 767.98px) {
    .pagination .page-item.page-gap span {
      -webkit-transform: translateY(17px);
          -ms-transform: translateY(17px);
              transform: translateY(17px); } }

@-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(--color-primary) var(--white-color);
    scrollbar-width: thin; } }

.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: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }

.thin-scrollbar::-webkit-scrollbar-track-piece,
.thin-scrollbar *::-webkit-scrollbar-track-piece {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }

.thin-scrollbar::-webkit-scrollbar-thumb,
.thin-scrollbar *::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 99px; }

.thin-scrollbar::-webkit-scrollbar-corner,
.thin-scrollbar *::-webkit-scrollbar-corner {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }

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

.page-title {
  color: var(--color-dark);
  font-family: "Tektur", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  text-transform: uppercase; }
  @media (max-width: 1199.98px) {
    .page-title {
      font-size: 54px;
      line-height: 60px; } }
  @media (max-width: 767.98px) {
    .page-title {
      font-size: 44px;
      line-height: 90%; } }

.section-title {
  color: var(--color-primary);
  font-family: "Tektur", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  text-transform: uppercase;
  margin-bottom: 28px; }
  @media (max-width: 991.98px) {
    .section-title {
      font-size: 44px;
      line-height: 90%;
      margin-bottom: 20px; } }
  @media (max-width: 767.98px) {
    .section-title {
      font-size: 32px;
      line-height: 100%; } }
  .section-title--light {
    color: var(--white-color); }

.section-title-bg {
  color: rgba(255, 255, 255, 0.08);
  leading-trim: both;
  text-edge: cap;
  font-family: "Tektur", sans-serif;
  font-size: 146px;
  font-weight: 800;
  line-height: 122px;
  text-transform: uppercase;
  white-space: nowrap; }
  @media (max-width: 1199.98px) {
    .section-title-bg {
      font-size: 110px;
      line-height: 95px; } }
  @media (max-width: 991.98px) {
    .section-title-bg {
      font-size: 72px;
      line-height: 65px; } }
  @media (max-width: 767.98px) {
    .section-title-bg {
      display: none;
      font-size: 36px;
      line-height: 100%; } }
  .section-title-bg--light {
    color: var(--color-light); }

.text-scroll {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: unset;
  padding-right: 5px; }
  .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: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
  .text-scroll::-webkit-scrollbar-track-piece,
  .text-scroll *::-webkit-scrollbar-track-piece {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
  .text-scroll::-webkit-scrollbar-thumb,
  .text-scroll *::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 99px; }
  .text-scroll::-webkit-scrollbar-corner,
  .text-scroll *::-webkit-scrollbar-corner {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }

.text-formatted {
  --br: 10px;
  color: var(--color-gray);
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  font-family: "Inter", sans-serif; }
  .text-formatted:after {
    content: "";
    display: block;
    clear: both; }
  .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    margin-top: 40px;
    margin-bottom: 14px; }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title):first-child {
      margin-top: 0; }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title):last-child {
      margin-bottom: 0; }
    @media (max-width: 767.98px) {
      .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) {
        margin-top: 30px;
        margin-bottom: 10px; } }
    .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .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, h5, .h5, h6, .h6, .text-title, .text-sub-title) + h1, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + .h1, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + h2, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + .h2, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + h3, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + .h3, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + h4, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + .h4, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + h5, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + .h5, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + .text-title, .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .text-title, .text-sub-title) + .text-sub-title {
      margin-top: 10px; }
  .text-formatted h1, .text-formatted .h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase; }
  .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
    font-size: 54px;
    font-weight: 700;
    line-height: 54px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .text-formatted .text-title, .text-formatted h2, .text-formatted .h2 {
        font-size: 28px;
        font-weight: 700;
        line-height: 100%; } }
  .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
    font-size: 42px;
    font-weight: 600;
    line-height: 42px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .text-formatted .text-sub-title, .text-formatted h3, .text-formatted .h3 {
        font-size: 26px;
        font-weight: 700;
        line-height: 100%; } }
  .text-formatted h4, .text-formatted .h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .text-formatted h4, .text-formatted .h4 {
        font-size: 22px;
        line-height: 110%; } }
  .text-formatted h5, .text-formatted .h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .text-formatted h5, .text-formatted .h5 {
        font-size: 20px;
        line-height: 110%; } }
  .text-formatted h6, .text-formatted .h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .text-formatted h6, .text-formatted .h6 {
        font-size: 18px;
        line-height: 110%; } }
  .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: 14px; }
  .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 {
    display: block;
    clear: both;
    border-left: 5px solid;
    padding: 5px 0 5px 1em;
    font-size: 1.5em;
    margin: 1.5em 0; }
    .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: 14px;
      font-weight: 500; }
    .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;
        color: var(--color-accent);
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        margin-right: 7px;
        min-width: 0.75em;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease; }
    .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.3em; }
    .text-formatted ul:not(.list) > li:before {
      position: absolute;
      left: 0;
      content: "●";
      display: inline-block;
      font-size: 10px;
      color: var(--color-accent);
      -webkit-transition: 0.3s ease;
      transition: 0.3s ease;
      margin-right: 10px; }
  .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 {
    width: 100%;
    margin: 40px 0; }
    @media (max-width: 767.98px) {
      .text-formatted .table {
        margin: 30px 0;
        overflow-x: auto; }
        .text-formatted .table, .text-formatted .table * {
          scrollbar-color: auto;
          scrollbar-width: auto; }
        .text-formatted .table::-webkit-scrollbar,
        .text-formatted .table *::-webkit-scrollbar {
          width: 3px;
          height: 3px; }
        .text-formatted .table::-webkit-scrollbar-button,
        .text-formatted .table *::-webkit-scrollbar-button {
          display: none; }
        .text-formatted .table::-webkit-scrollbar-track,
        .text-formatted .table *::-webkit-scrollbar-track {
          background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
        .text-formatted .table::-webkit-scrollbar-track-piece,
        .text-formatted .table *::-webkit-scrollbar-track-piece {
          background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
        .text-formatted .table::-webkit-scrollbar-thumb,
        .text-formatted .table *::-webkit-scrollbar-thumb {
          background: var(--color-accent);
          border-radius: 99px; }
        .text-formatted .table::-webkit-scrollbar-corner,
        .text-formatted .table *::-webkit-scrollbar-corner {
          background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); } }
  .text-formatted .table-wrap {
    width: 100%;
    overflow: hidden;
    padding-bottom: 14px; }
    @media (max-width: 575.98px) {
      .text-formatted .table-wrap {
        width: 563px; } }
  .text-formatted table {
    min-width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    margin: 0 !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px; }
    @media (max-width: 767.98px) {
      .text-formatted table {
        font-size: 14px;
        line-height: 120%; } }
    .text-formatted table thead tr {
      background: var(--color-dark);
      color: var(--white-color); }
    .text-formatted table th {
      background: #F6FAFF; }
    .text-formatted table th,
    .text-formatted table td {
      padding: 18px 24px;
      text-align: left;
      border: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
      @media (max-width: 767.98px) {
        .text-formatted table th,
        .text-formatted table td {
          padding: 14px; } }
    .text-formatted table thead td,
    .text-formatted table th {
      color: var(--color-primary);
      font-family: "Tektur", sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 22px;
      text-transform: uppercase; }
      @media (max-width: 767.98px) {
        .text-formatted table thead td,
        .text-formatted table th {
          font-size: 14px;
          font-weight: 500;
          line-height: 120%; } }
    .text-formatted table tfoot td {
      font-weight: bold; }
  .text-formatted > *:last-child {
    margin-bottom: 0; }

.text-formatted {
  color: var(--color-gray); }
  .text-formatted :where(h1, .h1, h2, .h2, h3, .h3, .text-title, .text-sub-title) {
    color: var(--color-dark); }
  .text-formatted hr {
    border-bottom-color: var(--color-dark); }
  .text-formatted ol > li:before {
    color: var(--color-dark); }
  .text-formatted ul > li:before {
    color: var(--color-dark); }
  .text-formatted blockquote {
    border-left-color: var(--color-dark); }
  .text-formatted table thead td,
  .text-formatted table th {
    border-color: var(--color-dark); }

.hero-slider-section {
  height: 100vh;
  padding-top: 164px;
  padding-bottom: 0;
  background: var(--color-primary);
  min-height: 810px; }
  @media (max-width: 991.98px) {
    .hero-slider-section {
      padding-top: 110px;
      min-height: 700px; } }
  .hero-slider-section .container {
    height: 100%; }
    @media (max-width: 767.98px) {
      .hero-slider-section .container {
        padding: 0 !important; } }
  .hero-slider-section .hero-slider {
    height: 100%; }
    .hero-slider-section .hero-slider:not(.swiper-initialized) .swiper-slide:not(:first-child) {
      display: none; }
    .hero-slider-section .hero-slider .swiper-slide {
      background: var(--color-primary); }
  .hero-slider-section .hero-slide-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
    gap: 50px; }
    @media (max-width: 767.98px) {
      .hero-slider-section .hero-slide-content {
        display: block;
        padding: 10px 10px 0; } }
  .hero-slider-section .hero-slide-title-wrapp {
    position: relative; }
    @media (max-width: 991.98px) {
      .hero-slider-section .hero-slide-title-wrapp {
        max-width: 330px; } }
    @media (max-width: 767.98px) {
      .hero-slider-section .hero-slide-title-wrapp {
        max-width: 200px; } }
    .hero-slider-section .hero-slide-title-wrapp .hero-slide-subtitle {
      position: absolute;
      max-width: 124px;
      right: -92px;
      bottom: 34px;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 16px;
      text-transform: uppercase;
      margin: 0; }
      @media (max-width: 1199.98px) {
        .hero-slider-section .hero-slide-title-wrapp .hero-slide-subtitle {
          right: -97px;
          bottom: 4px; } }
      @media (max-width: 767.98px) {
        .hero-slider-section .hero-slide-title-wrapp .hero-slide-subtitle {
          right: -124px;
          bottom: 0;
          font-size: 12px;
          line-height: 120%; } }
  .hero-slider-section .hero-slide-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 3px;
    position: relative;
    min-width: 490px;
    color: var(--white-color);
    font-family: "Tektur", sans-serif;
    font-size: 84px;
    font-weight: 700;
    line-height: 76.431px;
    text-transform: uppercase;
    margin: 0; }
    .hero-slider-section .hero-slide-title .text-decorated {
      color: var(--white-color); }
      .hero-slider-section .hero-slide-title .text-decorated:nth-child(2) {
        font-size: 62px;
        line-height: 60.508px; }
      .hero-slider-section .hero-slide-title .text-decorated:nth-child(3) {
        color: var(--color-accent);
        font-size: 62px;
        line-height: 60.508px;
        margin-left: 16px; }
      .hero-slider-section .hero-slide-title .text-decorated:last-child {
        font-size: 79px;
        line-height: 70.062px; }
    .hero-slider-section .hero-slide-title b {
      position: absolute;
      right: -73px;
      top: -17px;
      color: var(--color-accent) !important;
      font-size: 170px;
      line-height: 1;
      font-weight: 700; }
    @media (max-width: 1199.98px) {
      .hero-slider-section .hero-slide-title {
        min-width: auto;
        font-size: 54px;
        line-height: 50px; }
        .hero-slider-section .hero-slide-title .text-decorated:nth-child(2), .hero-slider-section .hero-slide-title .text-decorated:nth-child(3) {
          font-size: 40px;
          line-height: 40px; }
        .hero-slider-section .hero-slide-title .text-decorated:nth-child(3) {
          margin-left: 10px; }
        .hero-slider-section .hero-slide-title .text-decorated:last-child {
          font-size: 52px;
          line-height: 48px; }
        .hero-slider-section .hero-slide-title b {
          right: -45px;
          top: -10px;
          font-size: 110px; } }
    @media (max-width: 767.98px) {
      .hero-slider-section .hero-slide-title {
        font-size: 32px;
        line-height: 90%; }
        .hero-slider-section .hero-slide-title .text-decorated:nth-child(2), .hero-slider-section .hero-slide-title .text-decorated:nth-child(3) {
          font-size: 28px;
          line-height: 100%; }
        .hero-slider-section .hero-slide-title .text-decorated:nth-child(3) {
          margin-left: 0; }
        .hero-slider-section .hero-slide-title .text-decorated:last-child {
          font-size: 32px;
          line-height: 90%; }
        .hero-slider-section .hero-slide-title b {
          right: -50px;
          top: -7px;
          font-size: 76px;
          line-height: 90%; } }
  .hero-slider-section .hero-slide-left {
    max-width: 491px;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 40px; }
    @media (max-width: 1199.98px) {
      .hero-slider-section .hero-slide-left {
        max-width: 335px; } }
    @media (max-width: 991.98px) {
      .hero-slider-section .hero-slide-left {
        max-width: none; } }
    .hero-slider-section .hero-slide-left .hero-slide-buttons {
      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-top: 21px; }
      @media (max-width: 767.98px) {
        .hero-slider-section .hero-slide-left .hero-slide-buttons {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          gap: 8px; } }
      .hero-slider-section .hero-slide-left .hero-slide-buttons .btn-more {
        padding: 0 0 0 8px;
        border: none;
        gap: 12px;
        background: transparent !important;
        min-height: auto; }
        .hero-slider-section .hero-slide-left .hero-slide-buttons .btn-more:hover {
          color: var(--color-accent); }
          .hero-slider-section .hero-slide-left .hero-slide-buttons .btn-more:hover .ic {
            color: var(--color-accent); }
        @media (max-width: 767.98px) {
          .hero-slider-section .hero-slide-left .hero-slide-buttons .btn-more {
            gap: 6px;
            border-radius: 100px;
            border: 1px solid var(--white-color);
            padding: 13px 20px; } }
        .hero-slider-section .hero-slide-left .hero-slide-buttons .btn-more .ic {
          color: var(--white-color); }
          @media (max-width: 767.98px) {
            .hero-slider-section .hero-slide-left .hero-slide-buttons .btn-more .ic {
              width: 12px;
              min-width: 12px;
              height: 12px; } }
    .hero-slider-section .hero-slide-left .hero-slide-benefits {
      margin-top: 24px; }
      @media (max-width: 767.98px) {
        .hero-slider-section .hero-slide-left .hero-slide-benefits {
          display: none; } }
      .hero-slider-section .hero-slide-left .hero-slide-benefits ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        .hero-slider-section .hero-slide-left .hero-slide-benefits ul li {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          gap: 8px;
          color: var(--white-color);
          font-size: 16px;
          font-weight: 500;
          line-height: 20px;
          text-transform: uppercase; }
          @media (max-width: 1199.98px) {
            .hero-slider-section .hero-slide-left .hero-slide-benefits ul li {
              font-size: 14px;
              line-height: 16px; } }
          .hero-slider-section .hero-slide-left .hero-slide-benefits ul li::before {
            content: '';
            display: block;
            background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_124_3724)'%3E%3Cpath d='M15.6282 2.61513C15.1332 2.11943 14.3293 2.11974 13.8336 2.61513L5.75659 10.6925L2.1667 7.1026C1.671 6.6069 0.867479 6.6069 0.371777 7.1026C-0.123926 7.59831 -0.123926 8.40183 0.371777 8.89753L4.85894 13.3847C5.10664 13.6324 5.43143 13.7565 5.75625 13.7565C6.08107 13.7565 6.40617 13.6327 6.65387 13.3847L15.6282 4.41002C16.1239 3.91467 16.1239 3.1108 15.6282 2.61513Z' fill='%23FFD400'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_124_3724'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") center no-repeat;
            width: 16px;
            height: 16px; }
          .hero-slider-section .hero-slide-left .hero-slide-benefits ul li:not(:last-child) {
            margin-bottom: 16px; }
  .hero-slider-section .hero-slide-right {
    max-width: 554px;
    width: 100%; }
    @media (max-width: 1199.98px) {
      .hero-slider-section .hero-slide-right {
        max-width: 306px; } }
    @media (max-width: 767.98px) {
      .hero-slider-section .hero-slide-right {
        display: none; } }
  .hero-slider-section .hero-slide-note {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding-top: 6px; }
  .hero-slider-section .hero-slide-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    color: rgba(255, 255, 255, 0.08);
    leading-trim: both;
    text-edge: cap;
    font-family: "Tektur", sans-serif;
    font-size: 788px;
    font-weight: 700;
    line-height: 555px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .hero-slider-section .hero-slide-caption {
        font-size: 588px;
        line-height: 410px; } }
    @media (max-width: 767.98px) {
      .hero-slider-section .hero-slide-caption {
        font-size: 290.068px;
        line-height: 203px;
        right: unset;
        left: -15px;
        bottom: 120px;
        letter-spacing: -11.603px; } }
  .hero-slider-section .hero-slide-image {
    position: absolute;
    z-index: 1;
    margin: 2px;
    bottom: 5%;
    width: 77%;
    right: 32px; }
    @media (max-width: 1199.98px) {
      .hero-slider-section .hero-slide-image {
        width: 90%;
        bottom: 20%; } }
    @media (max-width: 991.98px) {
      .hero-slider-section .hero-slide-image {
        width: 70%; } }
    @media (max-width: 767.98px) {
      .hero-slider-section .hero-slide-image {
        width: 100%;
        right: unset;
        left: 60px;
        bottom: 30px; } }
    @media (max-width: 575.98px) {
      .hero-slider-section .hero-slide-image {
        bottom: 130px; } }
  .hero-slider-section .hero-slider-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 20px;
    position: absolute;
    right: 0;
    bottom: 40px;
    z-index: 2; }
    @media (max-width: 767.98px) {
      .hero-slider-section .hero-slider-pagination {
        gap: 10px;
        right: 10px;
        bottom: 30px; } }
    .hero-slider-section .hero-slider-pagination .pagination-label {
      color: var(--white-color);
      font-size: 14px;
      font-weight: 400;
      line-height: 16px;
      text-transform: uppercase; }
      @media (max-width: 767.98px) {
        .hero-slider-section .hero-slider-pagination .pagination-label {
          font-size: 12px;
          line-height: 120%; } }
    .hero-slider-section .hero-slider-pagination .swiper-pagination {
      position: static;
      -webkit-transform: unset !important;
          -ms-transform: unset !important;
              transform: unset !important;
      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;
      width: auto !important; }
      .hero-slider-section .hero-slider-pagination .swiper-pagination .swiper-pagination-bullet {
        color: var(--white-color);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        position: static;
        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: 40px;
        min-width: 40px;
        height: 40px;
        border: 1px solid var(--white-color);
        background: transparent;
        -webkit-transform: unset !important;
            -ms-transform: unset !important;
                transform: unset !important;
        margin: 0 !important;
        opacity: 1;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        @media (pointer: fine) {
          .hero-slider-section .hero-slider-pagination .swiper-pagination .swiper-pagination-bullet:hover {
            border: 1px solid var(--color-accent); } }
        @media (max-width: 767.98px) {
          .hero-slider-section .hero-slider-pagination .swiper-pagination .swiper-pagination-bullet {
            font-size: 12px;
            font-weight: 600;
            line-height: 120%; } }
        .hero-slider-section .hero-slider-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
          color: var(--color-dark);
          border: 1px solid var(--color-accent);
          background-color: var(--color-accent); }
  .hero-slider-section .hero-slide-title,
  .hero-slider-section .hero-slide-subtitle,
  .hero-slider-section .hero-slide-buttons,
  .hero-slider-section .hero-slide-note,
  .hero-slider-section .hero-slide-image {
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: none !important;
    transition: none !important; }
  .hero-slider-section .hero-slide-benefits li {
    opacity: 0;
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transform: unset !important;
        -ms-transform: unset !important;
            transform: unset !important; }

.section-reviews-slider {
  overflow: hidden; }

.review-item {
  height: 488px; }
  @media (max-width: 1199.98px) {
    .review-item {
      height: 400px; } }
  @media (max-width: 767.98px) {
    .review-item {
      height: 340px; } }
  .review-item .review-item-img {
    position: relative;
    height: 100%; }
    .review-item .review-item-img picture {
      height: 100%; }
    .review-item .review-item-img img {
      clip-path: polygon(100% 4.83%, 100% 100%, 7.681% 100%, 0% 94.884%, 0% 0%, 92.748% 0%, 100% 4.83%);
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .review-item .review-item-img .review-item-link {
      position: absolute;
      left: 24px;
      bottom: 24px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-decoration: none; }
      @media (pointer: fine) {
        .review-item .review-item-img .review-item-link:hover .play-icon {
          -webkit-transform: scale(1.2);
              -ms-transform: scale(1.2);
                  transform: scale(1.2); } }
      @media (max-width: 767.98px) {
        .review-item .review-item-img .review-item-link {
          left: 20px;
          bottom: 20px; } }
      .review-item .review-item-img .review-item-link .play-icon {
        position: relative;
        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: 56px;
        min-width: 56px;
        height: 56px;
        border-radius: 50%;
        background-color: var(--color-accent);
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        @media (max-width: 767.98px) {
          .review-item .review-item-img .review-item-link .play-icon {
            width: 40px;
            min-width: 40px;
            height: 40px; } }
        .review-item .review-item-img .review-item-link .play-icon .ic {
          color: var(--color-dark);
          width: 8px;
          height: 13px; }
          @media (max-width: 767.98px) {
            .review-item .review-item-img .review-item-link .play-icon .ic {
              width: 6px;
              height: 10px; } }
      .review-item .review-item-img .review-item-link .name {
        color: var(--color-dark);
        font-family: "Tektur", sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        text-transform: uppercase;
        padding: 14px 24px 14px 40px;
        background-color: var(--white-color);
        margin-left: -28px;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        @media (max-width: 767.98px) {
          .review-item .review-item-img .review-item-link .name {
            padding: 6px 10px 6px 24px;
            margin-left: -17px; } }

.section-about-school {
  overflow: hidden; }
  .section-about-school .about-school__content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (max-width: 991.98px) {
      .section-about-school .about-school__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: unset;
            -ms-flex-align: unset;
                align-items: unset;
        gap: 0; } }
  @media (max-width: 991.98px) {
    .section-about-school .about-school__stats {
      margin-top: 20px; } }
  @media (max-width: 767.98px) {
    .section-about-school .about-school__stats {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      border: 1px solid #E0E0E0; } }
  .section-about-school .about-school__stats .info-block__item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .section-about-school .about-school__stats .info-block__item {
        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;
        gap: 4px;
        border: none;
        padding: 14px;
        text-align: center;
        font-size: 14px;
        line-height: 120%; }
        .section-about-school .about-school__stats .info-block__item:nth-child(even) {
          border-left: 1px solid #E0E0E0; }
        .section-about-school .about-school__stats .info-block__item:not(:nth-child(1)):not(:nth-child(2)) {
          border-top: 1px solid #E0E0E0; } }
    .section-about-school .about-school__stats .info-block__item .text-decorated {
      color: var(--color-primary);
      font-family: "Tektur", sans-serif;
      font-size: 80px;
      font-weight: 600;
      line-height: 80px;
      letter-spacing: -3.2px;
      text-transform: uppercase;
      margin-right: 11px; }
      @media (max-width: 1199.98px) {
        .section-about-school .about-school__stats .info-block__item .text-decorated {
          font-size: 48px;
          letter-spacing: normal;
          line-height: 100%;
          margin-right: 8px; } }
      @media (max-width: 767.98px) {
        .section-about-school .about-school__stats .info-block__item .text-decorated {
          font-size: 28px;
          font-weight: 700; } }
  .section-about-school .about-school__media {
    position: relative; }
    .section-about-school .about-school__media .media-block__link {
      position: absolute;
      left: 32px;
      bottom: 32px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-decoration: none; }
      @media (pointer: fine) {
        .section-about-school .about-school__media .media-block__link:hover .play-icon {
          -webkit-transform: scale(1.2);
              -ms-transform: scale(1.2);
                  transform: scale(1.2); } }
      @media (max-width: 1199.98px) {
        .section-about-school .about-school__media .media-block__link {
          left: 20px;
          bottom: 20px; } }
      @media (max-width: 767.98px) {
        .section-about-school .about-school__media .media-block__link {
          left: 10px;
          bottom: 10px; } }
      .section-about-school .about-school__media .media-block__link .play-icon {
        position: relative;
        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: 80px;
        min-width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: var(--color-accent);
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        @media (max-width: 767.98px) {
          .section-about-school .about-school__media .media-block__link .play-icon {
            width: 40px;
            min-width: 40px;
            height: 40px; } }
        .section-about-school .about-school__media .media-block__link .play-icon .ic {
          color: var(--color-dark);
          width: 12px;
          height: 20px; }
          @media (max-width: 767.98px) {
            .section-about-school .about-school__media .media-block__link .play-icon .ic {
              width: 6px;
              height: 10px; } }
      .section-about-school .about-school__media .media-block__link .link-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        color: var(--color-dark);
        font-family: "Tektur", sans-serif;
        font-size: 20px;
        font-weight: 600;
        line-height: 20px;
        text-transform: uppercase;
        padding: 12px 16px 12px 58px;
        background-color: var(--white-color);
        margin-left: -34px;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        @media (max-width: 767.98px) {
          .section-about-school .about-school__media .media-block__link .link-text {
            font-size: 12px;
            line-height: 110%;
            padding: 4px 12px 4px 20px;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            margin-left: -15px; } }
        .section-about-school .about-school__media .media-block__link .link-text .text-decorated {
          color: var(--color-primary); }
  .section-about-school .about-school__details {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 325px 1fr;
    grid-template-columns: 325px 1fr;
    gap: 20px;
    margin-top: 24px; }
    @media (max-width: 1199.98px) {
      .section-about-school .about-school__details {
        -ms-grid-columns: 280px 1fr;
        grid-template-columns: 280px 1fr;
        gap: 14px; } }
    @media (max-width: 991.98px) {
      .section-about-school .about-school__details {
        display: block;
        margin-top: 20px; } }
  .section-about-school .block-cta-box {
    min-height: 292px; }
  .section-about-school .details-block__text {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    overflow-y: auto;
    max-height: 292px;
    padding-right: 13px; }
    .section-about-school .details-block__text, .section-about-school .details-block__text * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    .section-about-school .details-block__text::-webkit-scrollbar,
    .section-about-school .details-block__text *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    .section-about-school .details-block__text::-webkit-scrollbar-button,
    .section-about-school .details-block__text *::-webkit-scrollbar-button {
      display: none; }
    .section-about-school .details-block__text::-webkit-scrollbar-track,
    .section-about-school .details-block__text *::-webkit-scrollbar-track {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    .section-about-school .details-block__text::-webkit-scrollbar-track-piece,
    .section-about-school .details-block__text *::-webkit-scrollbar-track-piece {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    .section-about-school .details-block__text::-webkit-scrollbar-thumb,
    .section-about-school .details-block__text *::-webkit-scrollbar-thumb {
      background: var(--color-accent);
      border-radius: 99px; }
    .section-about-school .details-block__text::-webkit-scrollbar-corner,
    .section-about-school .details-block__text *::-webkit-scrollbar-corner {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    @media (max-width: 767.98px) {
      .section-about-school .details-block__text {
        font-size: 14px;
        font-weight: 400;
        line-height: 140%; } }
    .section-about-school .details-block__text p:last-child {
      margin-bottom: 0; }
    .section-about-school .details-block__text br {
      display: none; }
  .section-about-school .btn-border {
    margin: 24px 0 0 auto; }
    @media (max-width: 991.98px) {
      .section-about-school .btn-border {
        margin: 20px 0 0 0; } }

.section-our-team .block-cta-box {
  position: sticky;
  top: 30px; }

.section-our-team .person-card {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 1fr;
  grid-template-columns: 140px 1fr;
  background-color: var(--color-light);
  overflow: hidden; }
  .section-our-team .person-card::before {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--white-color);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    right: -30px;
    top: -30px; }
  .section-our-team .person-card::after {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--white-color);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    left: -30px;
    bottom: -30px; }
  .section-our-team .person-card:not(:last-child) {
    margin-bottom: 8px; }
  @media (max-width: 767.98px) {
    .section-our-team .person-card {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .section-our-team .person-card .person-card__image {
    cursor: pointer; }
    @media (max-width: 767.98px) {
      .section-our-team .person-card .person-card__image {
        display: none; } }
    .section-our-team .person-card .person-card__image picture,
    .section-our-team .person-card .person-card__image img {
      display: block;
      width: 140px;
      height: 100%;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -o-object-fit: cover;
         object-fit: cover; }
  @media (max-width: 767.98px) {
    .section-our-team .person-card .person-card__top {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 14px;
      padding-bottom: 14px;
      margin-bottom: 12px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12); } }
  .section-our-team .person-card .person-card__top .person-card__image--mobile {
    display: none; }
    @media (max-width: 767.98px) {
      .section-our-team .person-card .person-card__top .person-card__image--mobile {
        display: block;
        width: 57px;
        height: 57px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        border-radius: 50%;
        overflow: hidden; }
        .section-our-team .person-card .person-card__top .person-card__image--mobile picture,
        .section-our-team .person-card .person-card__top .person-card__image--mobile img {
          width: 100%;
          height: 100%; } }
  .section-our-team .person-card .person-card__top .person-card__info-item--mobile {
    display: none; }
    @media (max-width: 767.98px) {
      .section-our-team .person-card .person-card__top .person-card__info-item--mobile {
        display: block;
        font-size: 14px;
        font-weight: 600;
        line-height: 120%;
        margin-top: 4px; } }
  .section-our-team .person-card .person-card__content-wrapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 28px 18px 20px 18px; }
    @media (max-width: 1199.98px) {
      .section-our-team .person-card .person-card__content-wrapp {
        padding: 18px; } }
    @media (max-width: 575.98px) {
      .section-our-team .person-card .person-card__content-wrapp {
        padding: 14px; } }
  .section-our-team .person-card .person-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
    gap: 14px; }
  .section-our-team .person-card .person-card__name {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    cursor: pointer; }
    @media (pointer: fine) {
      .section-our-team .person-card .person-card__name:hover {
        color: var(--color-accent); } }
    @media (max-width: 767.98px) {
      .section-our-team .person-card .person-card__name {
        font-size: 16px;
        line-height: 110%; } }
  .section-our-team .person-card .person-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 16px;
    max-width: 540px;
    width: 100%;
    margin-top: 8px; }
    @media (max-width: 767.98px) {
      .section-our-team .person-card .person-card__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 4px;
        margin: 0; } }
  .section-our-team .person-card .person-card__info-item {
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 16px 0 0;
    border-right: 1px solid rgba(0, 0, 0, 0.12); }
    .section-our-team .person-card .person-card__info-item:last-child {
      border-right: none;
      padding-right: 0; }
    @media (max-width: 767.98px) {
      .section-our-team .person-card .person-card__info-item {
        font-size: 14px;
        line-height: 120%;
        padding: 0;
        border: none; } }
    .section-our-team .person-card .person-card__info-item b {
      color: var(--color-dark);
      font-weight: 600; }
    .section-our-team .person-card .person-card__info-item.person-card__experience {
      font-weight: 600; }
  @media (max-width: 767.98px) {
    .section-our-team .person-card .person-card__experience {
      display: none; } }
  .section-our-team .person-card .person-card__price {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; }
  .section-our-team .person-card .person-card__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;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent);
    border: 1px solid var(--color-accent);
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    margin-top: auto; }
    @media (pointer: fine) {
      .section-our-team .person-card .person-card__btn:hover {
        background-color: transparent; }
        .section-our-team .person-card .person-card__btn:hover .ic {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); } }
    @media (max-width: 767.98px) {
      .section-our-team .person-card .person-card__btn {
        width: 36px;
        min-width: 36px;
        height: 36px; } }
    .section-our-team .person-card .person-card__btn .ic {
      color: var(--color-dark);
      width: 16px;
      height: 16px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 767.98px) {
        .section-our-team .person-card .person-card__btn .ic {
          width: 12px;
          height: 12px; } }

.section-our-team .btn-border {
  margin: 36px 0 0 auto; }
  @media (max-width: 991.98px) {
    .section-our-team .btn-border {
      margin: 20px auto 0; } }

.person-modal .modal-dialog {
  max-width: 560px; }

.person-modal .modal-content {
  border-radius: 0;
  border: none;
  background: none; }

.person-modal .modal-body {
  padding: 0; }

.person-modal .person-modal__content-wrapper {
  background-color: var(--color-primary);
  padding: 34px 32px;
  clip-path: polygon(0% 0%, 0% 100%, 91.855% 100%, 100% 85.385%, 100% 0%, 0% 0%); }
  @media (max-width: 767.98px) {
    .person-modal .person-modal__content-wrapper {
      padding: 20px 14px; } }

.person-modal .person-modal__image img {
  height: 316px;
  -o-object-fit: cover;
     object-fit: cover; }
  @media (max-width: 767.98px) {
    .person-modal .person-modal__image img {
      height: 221px; } }

.person-modal .person-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .person-modal .person-modal__header .person-modal__avatar {
    border-radius: 50%;
    border: 2px solid var(--white-color);
    margin-right: 14px; }
    @media (max-width: 767.98px) {
      .person-modal .person-modal__header .person-modal__avatar {
        border: none; } }
    .person-modal .person-modal__header .person-modal__avatar img {
      width: 92px;
      min-width: 92px;
      height: 92px;
      border-radius: 50%;
      -o-object-fit: cover;
         object-fit: cover; }
      @media (max-width: 767.98px) {
        .person-modal .person-modal__header .person-modal__avatar img {
          width: 57px;
          min-width: 57px;
          height: 57px; } }
  .person-modal .person-modal__header .person-modal__title {
    color: var(--white-color);
    font-family: "Tektur", sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .person-modal .person-modal__header .person-modal__title {
        font-size: 16px;
        line-height: 110%; } }
  .person-modal .person-modal__header .person-card__experience {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 4px; }
    @media (max-width: 767.98px) {
      .person-modal .person-modal__header .person-card__experience {
        font-size: 14px;
        font-weight: 600;
        line-height: 120%; } }

.person-modal .person-modal__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 20px; }
  @media (max-width: 767.98px) {
    .person-modal .person-modal__info {
      padding: 10px 0;
      margin-top: 14px; } }
  .person-modal .person-modal__info .person-modal__info-item {
    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; }
  .person-modal .person-modal__info .person-modal__label {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; }
    @media (max-width: 767.98px) {
      .person-modal .person-modal__info .person-modal__label {
        font-size: 14px;
        line-height: 120%; } }
  .person-modal .person-modal__info .person-modal__value {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; }
    @media (max-width: 767.98px) {
      .person-modal .person-modal__info .person-modal__value {
        font-size: 14px;
        line-height: 120%; } }

.person-modal .btn-main {
  margin: 24px auto 0; }
  @media (max-width: 767.98px) {
    .person-modal .btn-main {
      margin: 18px auto 0; } }
  @media (max-width: 480px) {
    .person-modal .btn-main {
      width: 100%; } }

.section-map-interaction {
  overflow: hidden; }
  @media (max-width: 991.98px) {
    .section-map-interaction .section-header .title-sm {
      display: block; } }
  .section-map-interaction .map-block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 41% 1fr;
    grid-template-columns: 41% 1fr;
    gap: 12px; }
    @media (max-width: 1199.98px) {
      .section-map-interaction .map-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        gap: 20px; } }
  .section-map-interaction .map-block-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 24px;
    min-height: 400px;
    overflow: hidden; }
    .section-map-interaction .map-block-wrapper::before {
      content: '';
      width: 50px;
      height: 50px;
      background: var(--color-primary);
      -webkit-transform: rotate(140deg);
          -ms-transform: rotate(140deg);
              transform: rotate(140deg);
      position: absolute;
      right: -30px;
      top: -30px; }
    .section-map-interaction .map-block-wrapper::after {
      content: '';
      width: 50px;
      height: 50px;
      background: var(--color-primary);
      -webkit-transform: rotate(140deg);
          -ms-transform: rotate(140deg);
              transform: rotate(140deg);
      position: absolute;
      left: -30px;
      bottom: -30px; }
    @media (max-width: 767.98px) {
      .section-map-interaction .map-block-wrapper {
        padding: 20px 14px;
        min-height: auto; } }
  .section-map-interaction .map-filters {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px; }
    @media (max-width: 767.98px) {
      .section-map-interaction .map-filters {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        gap: 20px;
        margin-bottom: 20px; } }
    .section-map-interaction .map-filters .map-filters__field {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .section-map-interaction .map-filters .map-filters__label {
      color: var(--white-color);
      font-size: 14px;
      font-weight: 500;
      line-height: 18px;
      text-transform: uppercase;
      margin-bottom: 8px; }
      @media (max-width: 767.98px) {
        .section-map-interaction .map-filters .map-filters__label {
          font-size: 12px;
          line-height: 120%; } }
    .section-map-interaction .map-filters .jq-selectbox__select {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.08);
      border-radius: 0 !important; }
      .section-map-interaction .map-filters .jq-selectbox__select .jq-selectbox__select-text {
        color: var(--white-color); }
      .section-map-interaction .map-filters .jq-selectbox__select .jq-selectbox__trigger .jq-selectbox__trigger-arrow {
        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='M5.99998 8.70029C5.82076 8.70029 5.64156 8.63186 5.50493 8.49529L1.20514 4.19546C0.931619 3.92194 0.931619 3.47847 1.20514 3.20506C1.47855 2.93165 1.92193 2.93165 2.19548 3.20506L5.99998 7.00978L9.80451 3.20519C10.078 2.93178 10.5214 2.93178 10.7948 3.20519C11.0684 3.4786 11.0684 3.92207 10.7948 4.1956L6.49504 8.49542C6.35834 8.63202 6.17914 8.70029 5.99998 8.70029Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center center; }
    .section-map-interaction .map-filters .jq-selectbox__dropdown {
      border-radius: 0 !important; }
      .section-map-interaction .map-filters .jq-selectbox__dropdown ul li {
        padding: 10px 20px; }
  .section-map-interaction .map-branches {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 4px;
    max-height: 376px;
    overflow-y: auto;
    padding-right: 9px; }
    .section-map-interaction .map-branches, .section-map-interaction .map-branches * {
      scrollbar-color: auto;
      scrollbar-width: auto; }
    .section-map-interaction .map-branches::-webkit-scrollbar,
    .section-map-interaction .map-branches *::-webkit-scrollbar {
      width: 3px;
      height: 3px; }
    .section-map-interaction .map-branches::-webkit-scrollbar-button,
    .section-map-interaction .map-branches *::-webkit-scrollbar-button {
      display: none; }
    .section-map-interaction .map-branches::-webkit-scrollbar-track,
    .section-map-interaction .map-branches *::-webkit-scrollbar-track {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    .section-map-interaction .map-branches::-webkit-scrollbar-track-piece,
    .section-map-interaction .map-branches *::-webkit-scrollbar-track-piece {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
    .section-map-interaction .map-branches::-webkit-scrollbar-thumb,
    .section-map-interaction .map-branches *::-webkit-scrollbar-thumb {
      background: var(--color-accent);
      border-radius: 99px; }
    .section-map-interaction .map-branches::-webkit-scrollbar-corner,
    .section-map-interaction .map-branches *::-webkit-scrollbar-corner {
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(255, 255, 255, 0)), color-stop(33.333%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(27, 18, 3, 0.08)), color-stop(66.666%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 33.333%, rgba(27, 18, 3, 0.08) 33.333%, rgba(27, 18, 3, 0.08) 66.666%, rgba(255, 255, 255, 0) 66.666%, rgba(255, 255, 255, 0) 100%); }
  .section-map-interaction .map-branch-card {
    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: 23px;
    padding: 20px 20px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (min-width: 991.98px) {
      .section-map-interaction .map-branch-card.active {
        background: var(--white-color); }
        .section-map-interaction .map-branch-card.active .map-branch-card__address {
          color: var(--color-primary); }
        .section-map-interaction .map-branch-card.active .map-branch-card__city {
          color: var(--color-dark); }
        .section-map-interaction .map-branch-card.active .map-branch-card__metro,
        .section-map-interaction .map-branch-card.active .map-branch-card__categories {
          color: var(--color-gray);
          background: var(--color-light); }
          .section-map-interaction .map-branch-card.active .map-branch-card__metro b,
          .section-map-interaction .map-branch-card.active .map-branch-card__categories b {
            color: var(--color-dark); }
        .section-map-interaction .map-branch-card.active .ic-arrow-right-mini {
          color: var(--color-dark); } }
    @media (pointer: fine) {
      .section-map-interaction .map-branch-card:hover {
        border: 1px solid var(--color-accent); } }
    @media (max-width: 991.98px) {
      .section-map-interaction .map-branch-card {
        display: block;
        padding: 14px;
        background-color: var(--white-color); } }
    .section-map-interaction .map-branch-card .ic-arrow-right-mini {
      color: var(--white-color);
      width: 16px;
      min-width: 16px;
      height: 16px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 991.98px) {
        .section-map-interaction .map-branch-card .ic-arrow-right-mini {
          display: none; } }
    .section-map-interaction .map-branch-card .map-branch-card__address {
      color: var(--white-color);
      font-size: 20px;
      font-weight: 600;
      line-height: 24px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 991.98px) {
        .section-map-interaction .map-branch-card .map-branch-card__address {
          color: var(--color-primary);
          font-size: 14px;
          line-height: 120%; } }
    .section-map-interaction .map-branch-card .map-branch-card__details {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 4px;
      margin-top: 5px; }
      @media (max-width: 991.98px) {
        .section-map-interaction .map-branch-card .map-branch-card__details {
          margin-top: 12px; } }
    .section-map-interaction .map-branch-card .map-branch-card__city {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 4px;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 991.98px) {
        .section-map-interaction .map-branch-card .map-branch-card__city {
          color: var(--color-primary);
          font-size: 14px;
          font-weight: 600;
          line-height: 120%; } }
      .section-map-interaction .map-branch-card .map-branch-card__city .ic {
        color: var(--color-accent);
        width: 16px;
        height: 16px; }
        @media (max-width: 991.98px) {
          .section-map-interaction .map-branch-card .map-branch-card__city .ic {
            width: 12px;
            height: 12px; } }
    .section-map-interaction .map-branch-card .map-branch-card__metro,
    .section-map-interaction .map-branch-card .map-branch-card__categories {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 4px;
      color: var(--white-color);
      font-size: 14px;
      font-weight: 400;
      line-height: 24px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.08);
      padding: 4px 10px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 991.98px) {
        .section-map-interaction .map-branch-card .map-branch-card__metro,
        .section-map-interaction .map-branch-card .map-branch-card__categories {
          color: var(--color-gray);
          font-size: 12px;
          font-weight: 400;
          line-height: 120%;
          background: var(--color-light); }
          .section-map-interaction .map-branch-card .map-branch-card__metro b,
          .section-map-interaction .map-branch-card .map-branch-card__categories b {
            font-weight: 600; } }
    .section-map-interaction .map-branch-card .map-branch-card__phones {
      display: none; }
      @media (max-width: 991.98px) {
        .section-map-interaction .map-branch-card .map-branch-card__phones {
          display: block;
          margin-top: 12px; } }
      .section-map-interaction .map-branch-card .map-branch-card__phones .map-branch-card__phones-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 14px;
        padding: 0;
        margin: 0;
        list-style: none; }
      .section-map-interaction .map-branch-card .map-branch-card__phones .map-branch-card__phone-link {
        color: var(--color-dark);
        font-size: 12px;
        font-weight: 600;
        line-height: 120%; }
    .section-map-interaction .map-branch-card .map-branch-card__links {
      display: none; }
      @media (max-width: 991.98px) {
        .section-map-interaction .map-branch-card .map-branch-card__links {
          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(0, 0, 0, 0.12);
          margin-top: 12px;
          padding-top: 12px; } }
      .section-map-interaction .map-branch-card .map-branch-card__links .map-branch-card__link,
      .section-map-interaction .map-branch-card .map-branch-card__links .btn {
        color: var(--color-dark);
        font-size: 12px;
        font-weight: 600;
        line-height: 120%;
        text-transform: uppercase;
        text-decoration: none; }
        .section-map-interaction .map-branch-card .map-branch-card__links .map-branch-card__link .ic,
        .section-map-interaction .map-branch-card .map-branch-card__links .btn .ic {
          color: var(--color-accent);
          width: 12px;
          min-width: 12px;
          height: 12px; }
      .section-map-interaction .map-branch-card .map-branch-card__links .btn-border {
        margin-left: auto;
        padding: 0;
        border: none;
        min-height: auto;
        background: transparent; }
  .section-map-interaction .map-popup {
    position: absolute;
    display: none;
    max-width: 400px;
    width: 100%; }
    .section-map-interaction .map-popup.is-left::before {
      left: auto;
      right: -5px;
      -webkit-transform: translate(0, -50%) rotate(180deg);
          -ms-transform: translate(0, -50%) rotate(180deg);
              transform: translate(0, -50%) rotate(180deg); }
    .section-map-interaction .map-popup::before {
      content: '';
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M0 6L6 0V12L0 6Z' fill='%23FFD400'/%3E%3C/svg%3E") center no-repeat;
      width: 6px;
      height: 12px;
      position: absolute;
      left: -5px;
      top: 50%;
      -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
              transform: translate(0, -50%); }
    @media (max-width: 991.98px) {
      .section-map-interaction .map-popup {
        display: none !important;
        pointer-events: none; } }
    .section-map-interaction .map-popup .map-popup__inner {
      background: var(--white-color); }
    .section-map-interaction .map-popup .map-popup__info .map-popup__metro {
      background: var(--color-light); }
    .section-map-interaction .map-popup .map-popup__links {
      padding-top: 15px; }
      .section-map-interaction .map-popup .map-popup__links .btn-border {
        border: none;
        padding: 0; }
        .section-map-interaction .map-popup .map-popup__links .btn-border:hover {
          background: transparent; }

.map-container {
  position: relative;
  margin-bottom: auto; }
  .map-container #map-svg img {
    width: 100%; }
  .map-container .map-item {
    position: absolute;
    cursor: pointer;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    .map-container .map-item.active {
      -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
              transform: scale(1.2); }
    .map-container .map-item .ic {
      color: var(--color-accent);
      width: 32px;
      height: 32px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
    @media (pointer: fine) {
      .map-container .map-item:hover .ic {
        color: var(--white-color); } }

.map-popup {
  position: static;
  z-index: 50;
  width: 100%;
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-animation: fadeInUp 0.25s ease;
          animation: fadeInUp 0.25s ease; }
  .map-popup .map-popup__inner {
    clip-path: polygon(100% 8.124%, 100% 100%, 4.292% 100%, 0% 91.373%, 0% 0%, 95.958% 0%, 100% 8.124%);
    padding: 16px;
    background: var(--color-light);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
  .map-popup .map-popup__address {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    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; }
  .map-popup .map-popup__info {
    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-top: 4px;
    padding-bottom: 11px; }
    .map-popup .map-popup__info .map-popup__city {
      color: var(--color-dark);
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 4px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      .map-popup .map-popup__info .map-popup__city .ic {
        color: var(--color-accent);
        width: 16px;
        height: 16px; }
    .map-popup .map-popup__info .map-popup__metro {
      padding: 0 11px;
      border-radius: 100px;
      background: var(--white-color);
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      color: var(--color-gray);
      font-size: 14px;
      font-weight: 400;
      line-height: 24px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      .map-popup .map-popup__info .map-popup__metro b {
        font-weight: 600; }
  .map-popup .map-popup__phones {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding: 11px 0;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    .map-popup .map-popup__phones .map-popup__phones-label {
      color: var(--color-dark);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      text-transform: uppercase;
      margin-bottom: 4px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
    .map-popup .map-popup__phones .map-popup__phones-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;
      padding: 0;
      margin: 0;
      list-style: none; }
      .map-popup .map-popup__phones .map-popup__phones-list .map-popup__phone-link {
        color: var(--color-dark);
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        text-transform: uppercase;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
  .map-popup .map-popup__links {
    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: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 20px; }
    .map-popup .map-popup__links .map-popup__link {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 10px;
      color: var(--color-dark);
      font-size: 14px;
      font-weight: 500;
      line-height: 18px;
      text-transform: uppercase;
      text-decoration: none;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        .map-popup .map-popup__links .map-popup__link:hover {
          color: var(--color-accent); } }
      .map-popup .map-popup__links .map-popup__link .ic {
        color: var(--color-accent);
        width: 16px;
        height: 16px; }
    .map-popup .map-popup__links .btn-border {
      margin-left: auto; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

.section-choose-category .block-content-grid {
  -ms-grid-columns: 30.56% 68.06%;
  grid-template-columns: 30.56% 68.06%; }

.section-choose-category .block-cta-box {
  position: sticky;
  top: 30px; }

.section-choose-category .tabs-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 312px 1fr;
  grid-template-columns: 312px 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 33px;
  margin-bottom: 24px; }
  @media (max-width: 767.98px) {
    .section-choose-category .tabs-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -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;
      gap: 20px;
      margin-bottom: 20px; } }
  .section-choose-category .tabs-header .tabs-title {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 8px; }
    @media (max-width: 767.98px) {
      .section-choose-category .tabs-header .tabs-title {
        font-size: 12px;
        line-height: 120%; } }
    .section-choose-category .tabs-header .tabs-title .custom-text {
      color: var(--color-primary); }
  .section-choose-category .tabs-header .nav-tabs {
    gap: 8px;
    border: none; }
    @media (max-width: 767.98px) {
      .section-choose-category .tabs-header .nav-tabs {
        gap: 6px; } }
    .section-choose-category .tabs-header .nav-tabs .nav-item {
      margin: 0; }
    .section-choose-category .tabs-header .nav-tabs .nav-link {
      color: var(--color-dark);
      font-family: "Tektur", sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: normal;
      text-transform: uppercase;
      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: 56px;
      height: 56px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border-radius: 50%;
      border: 1px solid #D9D9D9;
      outline: none;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (pointer: fine) {
        .section-choose-category .tabs-header .nav-tabs .nav-link:hover {
          border: 1px solid var(--color-accent); } }
      @media (max-width: 767.98px) {
        .section-choose-category .tabs-header .nav-tabs .nav-link {
          font-size: 16px;
          line-height: 110%;
          width: 42px;
          height: 42px; } }
      .section-choose-category .tabs-header .nav-tabs .nav-link.active {
        background-color: var(--color-accent);
        border: 1px solid var(--color-accent); }
  .section-choose-category .tabs-header .tabs-description {
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; }
    @media (max-width: 767.98px) {
      .section-choose-category .tabs-header .tabs-description {
        font-size: 14px;
        line-height: 140%; } }

.section-choose-category .tabs-block {
  overflow: hidden; }

.section-choose-category .branch-info {
  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: 40px;
  margin-bottom: 24px; }
  .section-choose-category .branch-info .branch-info__address {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .section-choose-category .branch-info .branch-info__address {
        font-size: 16px;
        line-height: 110%; } }
  .section-choose-category .branch-info .btn {
    white-space: nowrap; }
    @media (max-width: 767.98px) {
      .section-choose-category .branch-info .btn {
        padding: 0;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px; }
        .section-choose-category .branch-info .btn .branch-info__btn-text {
          display: none; } }

.section-choose-category .tab-content .tabs-body-title {
  color: var(--color-primary);
  font-family: "Tektur", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 8px; }
  @media (max-width: 767.98px) {
    .section-choose-category .tab-content .tabs-body-title {
      font-size: 16px;
      line-height: 110%;
      margin-bottom: 10px; } }
  .section-choose-category .tab-content .tabs-body-title .custom-text {
    color: var(--color-accent); }

.section-choose-category .tab-content .tabs-body-subtitle {
  color: var(--color-primary);
  font-family: "Tektur", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 16px; }
  @media (max-width: 767.98px) {
    .section-choose-category .tab-content .tabs-body-subtitle {
      font-size: 16px;
      line-height: 110%;
      margin-bottom: 20px; } }

.section-choose-category .services-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 8px;
  margin-bottom: 16px; }
  @media (max-width: 991.98px) {
    .section-choose-category .services-main {
      margin-bottom: 30px; } }

.section-choose-category .service-card-additional {
  height: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.section-choose-category .tabs-body-footer {
  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-top: 24px; }
  @media (max-width: 991.98px) {
    .section-choose-category .tabs-body-footer {
      -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;
      margin-top: 20px;
      gap: 20px; } }
  .section-choose-category .tabs-body-footer .carousel-nav {
    margin: 0; }

.service-card,
.service-card-additional {
  position: relative;
  overflow: hidden; }
  .service-card::before,
  .service-card-additional::before {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--white-color);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    right: -30px;
    top: -30px; }
  .service-card::after,
  .service-card-additional::after {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--white-color);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    left: -30px;
    bottom: -30px; }
  @media (pointer: fine) {
    .service-card:hover,
    .service-card-additional:hover {
      background-color: var(--color-primary) !important; }
      .service-card:hover .service-card-additional__title,
      .service-card:hover .service-card-additional__desc,
      .service-card:hover .service-card__title,
      .service-card:hover .service-card__desc,
      .service-card-additional:hover .service-card-additional__title,
      .service-card-additional:hover .service-card-additional__desc,
      .service-card-additional:hover .service-card__title,
      .service-card-additional:hover .service-card__desc {
        color: var(--white-color) !important; }
      .service-card:hover .service-card__header,
      .service-card:hover .service-card-additional__header,
      .service-card-additional:hover .service-card__header,
      .service-card-additional:hover .service-card-additional__header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important; }
      .service-card:hover .service-card__info-label,
      .service-card:hover .service-card-additional__label,
      .service-card:hover .service-card__info-label,
      .service-card:hover .service-card__duration,
      .service-card:hover .service-card-additional__price,
      .service-card-additional:hover .service-card__info-label,
      .service-card-additional:hover .service-card-additional__label,
      .service-card-additional:hover .service-card__info-label,
      .service-card-additional:hover .service-card__duration,
      .service-card-additional:hover .service-card-additional__price {
        color: var(--white-color) !important; }
      .service-card:hover .service-card__duration,
      .service-card:hover .service-card-additional__price,
      .service-card:hover .service-card__price,
      .service-card-additional:hover .service-card__duration,
      .service-card-additional:hover .service-card-additional__price,
      .service-card-additional:hover .service-card__price {
        color: var(--color-accent) !important; }
      .service-card:hover .service-card__btn,
      .service-card:hover .service-card-additional__btn,
      .service-card-additional:hover .service-card__btn,
      .service-card-additional:hover .service-card-additional__btn {
        border: 1px solid var(--color-accent) !important;
        background-color: var(--color-accent) !important; }
        .service-card:hover .service-card__btn .ic,
        .service-card:hover .service-card-additional__btn .ic,
        .service-card-additional:hover .service-card__btn .ic,
        .service-card-additional:hover .service-card-additional__btn .ic {
          color: var(--color-dark) !important; } }

.service-card {
  background-color: var(--color-light);
  padding: 24px;
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  @media (max-width: 767.98px) {
    .service-card {
      padding: 20px 14px; } }
  .service-card .service-card__header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .service-card .service-card__header {
        padding-bottom: 18px;
        margin-bottom: 18px; } }
    .service-card .service-card__header .service-card__category {
      color: var(--color-dark);
      font-size: 14px;
      font-weight: 600;
      line-height: 24px;
      text-transform: uppercase;
      padding: 0 12px;
      border-radius: 100px;
      background-color: var(--color-accent);
      margin-bottom: 15px;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 767.98px) {
        .service-card .service-card__header .service-card__category {
          font-size: 12px;
          line-height: 24px;
          margin-bottom: 10px; } }
    .service-card .service-card__header .service-card__title {
      color: var(--color-primary);
      font-family: "Tektur", sans-serif;
      font-size: 32px;
      font-weight: 600;
      line-height: 32px;
      text-transform: uppercase;
      margin-bottom: 8px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 767.98px) {
        .service-card .service-card__header .service-card__title {
          font-size: 22px;
          line-height: 110%;
          margin-bottom: 10px; } }
    .service-card .service-card__header .service-card__desc {
      color: var(--color-gray);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      margin: 0;
      width: 80%;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 767.98px) {
        .service-card .service-card__header .service-card__desc {
          font-size: 14px;
          line-height: 140%;
          width: 100%; } }
  .service-card .service-card__include {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .service-card .service-card__include {
        padding-bottom: 18px;
        margin-bottom: 18px; } }
    .service-card .service-card__include .service-card__include-title {
      color: var(--color-dark);
      font-size: 12px;
      font-weight: 500;
      line-height: 16px;
      text-transform: uppercase;
      margin-bottom: 8px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
    .service-card .service-card__include .service-card__include-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 8px; }
      @media (max-width: 767.98px) {
        .service-card .service-card__include .service-card__include-list {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 10px; } }
    .service-card .service-card__include .service-card__tag {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: var(--color-dark);
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      padding: 2px 16px;
      border-radius: 100px;
      border: 1px solid var(--color-dark);
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      height: 32px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 767.98px) {
        .service-card .service-card__include .service-card__tag {
          font-size: 14px;
          line-height: 120%; } }
  .service-card .service-card__footer {
    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: 10px; }
    @media (max-width: 767.98px) {
      .service-card .service-card__footer {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1/-1; } }
    .service-card .service-card__footer .service-card__info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 70px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-right: auto; }
      @media (max-width: 1199.98px) {
        .service-card .service-card__footer .service-card__info {
          gap: 24px;
          -webkit-box-flex: 0;
              -ms-flex: none;
                  flex: none; } }
      @media (max-width: 767.98px) {
        .service-card .service-card__footer .service-card__info {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          -ms-grid-row: 1;
          grid-row: 1;
          grid-column: 1/-1;
          margin-bottom: 8px; } }
    .service-card .service-card__footer .service-card__info-item {
      width: 120px; }
      @media (max-width: 575.98px) {
        .service-card .service-card__footer .service-card__info-item {
          width: auto; } }
      .service-card .service-card__footer .service-card__info-item .service-card__info-label {
        color: var(--color-gray);
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        text-transform: uppercase;
        margin-bottom: 4px;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
      .service-card .service-card__footer .service-card__info-item .service-card__duration,
      .service-card .service-card__footer .service-card__info-item .service-card__price {
        color: var(--color-dark);
        font-size: 24px;
        font-weight: 600;
        line-height: 24px;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        @media (max-width: 1199.98px) {
          .service-card .service-card__footer .service-card__info-item .service-card__duration,
          .service-card .service-card__footer .service-card__info-item .service-card__price {
            font-size: 20px;
            line-height: 110%; } }
    @media (max-width: 767.98px) {
      .service-card .service-card__footer .btn-border {
        -ms-grid-row: 2;
        grid-row: 2;
        grid-column: 1/-1;
        width: 100%; } }
    @media (max-width: 767.98px) {
      .service-card .service-card__footer .btn-main {
        -ms-grid-row: 3;
        grid-row: 3;
        grid-column: 1/-1;
        width: 100%; } }
    .service-card .service-card__footer .service-card__info-note {
      color: var(--white-color);
      margin-top: 6px; }
  .service-card:first-child {
    background-color: var(--color-primary); }
    .service-card:first-child .service-card__title,
    .service-card:first-child .service-card__desc {
      color: var(--white-color); }
    .service-card:first-child .service-card__header,
    .service-card:first-child .service-card__include {
      border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
      .service-card:first-child .service-card__header .service-card__include-title,
      .service-card:first-child .service-card__include .service-card__include-title {
        color: var(--white-color); }
      .service-card:first-child .service-card__header .service-card__tag,
      .service-card:first-child .service-card__include .service-card__tag {
        color: var(--white-color);
        border: 1px solid var(--white-color); }
    .service-card:first-child .service-card__info-item .service-card__info-label,
    .service-card:first-child .service-card__info-item .service-card__info-price,
    .service-card:first-child .service-card__info-item .service-card__duration,
    .service-card:first-child .service-card__info-item .service-card__price {
      color: var(--white-color); }
    .service-card:first-child .service-card__btn {
      color: var(--color-dark);
      background-color: var(--color-accent);
      border: none; }
      .service-card:first-child .service-card__btn .ic {
        color: var(--color-dark); }
  @media (max-width: 767.98px) {
    .service-card:not(:first-child) .btn-border {
      background-color: var(--color-accent);
      border: 1px solid var(--color-accent); }
      .service-card:not(:first-child) .btn-border .ic {
        color: var(--color-black); } }

.service-card-additional {
  padding: 24px;
  background-color: var(--color-light);
  -webkit-transition: .3s ease;
  transition: .3s ease; }
  @media (max-width: 767.98px) {
    .service-card-additional {
      padding: 20px 14px; } }
  .service-card-additional .service-card-additional__title {
    color: var(--color-primary);
    font-family: "Tektur", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 8px;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .service-card-additional .service-card-additional__title {
        font-size: 22px;
        font-weight: 600;
        line-height: 110%;
        margin-bottom: 10px; } }
  .service-card-additional .service-card-additional__desc {
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 60px;
    margin: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .service-card-additional .service-card-additional__desc {
        font-size: 14px;
        line-height: 140%;
        padding-bottom: 18px; } }
  .service-card-additional .service-card-additional__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .service-card-additional .service-card-additional__footer {
        padding-top: 18px; } }
  .service-card-additional .service-card-additional__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .service-card-additional .service-card-additional__info .service-card-additional__label {
      color: var(--color-gray);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      text-transform: uppercase;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
    .service-card-additional .service-card-additional__info .service-card-additional__price {
      color: var(--color-dark);
      font-size: 20px;
      font-weight: 600;
      line-height: 24px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
  @media (max-width: 767.98px) {
    .service-card-additional .btn-border {
      background-color: var(--color-accent);
      border: 1px solid var(--color-accent); }
      .service-card-additional .btn-border .ic {
        color: var(--color-black); } }

.section-car-park {
  overflow: hidden; }
  @media (min-width: 991.98px) {
    .section-car-park {
      padding-bottom: 0; } }
  .section-car-park .car-slider__inner {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    -ms-grid-columns: 1fr 67.7%;
    grid-template-columns: 1fr 67.7%; }
    @media (max-width: 991.98px) {
      .section-car-park .car-slider__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
  .section-car-park .car-preview__description {
    color: var(--white-color);
    text-align: right;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 28px;
    margin-left: 53px; }
    @media (max-width: 1199.98px) {
      .section-car-park .car-preview__description {
        font-size: 16px;
        line-height: 20px;
        margin-left: 20px; } }
    @media (max-width: 767.98px) {
      .section-car-park .car-preview__description {
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 20px; } }
    .section-car-park .car-preview__description.mobile {
      display: none; }
      @media (max-width: 991.98px) {
        .section-car-park .car-preview__description.mobile {
          display: block;
          text-align: left;
          margin: 0 0 22px; } }
      @media (max-width: 767.98px) {
        .section-car-park .car-preview__description.mobile {
          font-size: 12px;
          line-height: 120%; } }
  .section-car-park .car-slider__preview {
    margin-top: auto;
    padding-bottom: 80px; }
    @media (max-width: 991.98px) {
      .section-car-park .car-slider__preview {
        padding-bottom: 0; } }
    @media (max-width: 991.98px) {
      .section-car-park .car-slider__preview .car-preview__description {
        display: none; } }
    .section-car-park .car-slider__preview .car-preview {
      position: relative;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content; }
      @media (max-width: 991.98px) {
        .section-car-park .car-slider__preview .car-preview {
          width: 100%; } }
      .section-car-park .car-slider__preview .car-preview .car-preview__label {
        color: var(--color-accent);
        font-family: "Tektur", sans-serif;
        font-size: 20px;
        font-weight: 700;
        line-height: 32px;
        text-transform: uppercase;
        margin-bottom: 12px; }
        @media (max-width: 1199.98px) {
          .section-car-park .car-slider__preview .car-preview .car-preview__label {
            font-size: 16px;
            line-height: 20px; } }
        @media (max-width: 991.98px) {
          .section-car-park .car-slider__preview .car-preview .car-preview__label {
            text-align: center; } }
        @media (max-width: 767.98px) {
          .section-car-park .car-slider__preview .car-preview .car-preview__label {
            font-size: 20px;
            line-height: 32px;
            margin-bottom: 10px; } }
      .section-car-park .car-slider__preview .car-preview .car-preview__item {
        position: relative; }
      .section-car-park .car-slider__preview .car-preview .car-preview__image {
        position: relative;
        max-width: 325px;
        width: 100%;
        aspect-ratio: 1/1;
        position: relative;
        overflow: hidden; }
        @media (max-width: 991.98px) {
          .section-car-park .car-slider__preview .car-preview .car-preview__image {
            max-width: 100%; } }
        .section-car-park .car-slider__preview .car-preview .car-preview__image.is-fading img {
          opacity: 0; }
        .section-car-park .car-slider__preview .car-preview .car-preview__image::before {
          content: '';
          position: absolute;
          inset: 0;
          background: -webkit-gradient(linear, left top, left bottom, color-stop(56.31%, rgba(0, 0, 0, 0)), to(#000));
          background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56.31%, #000 100%);
          z-index: 1; }
        .section-car-park .car-slider__preview .car-preview .car-preview__image img {
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          -webkit-transition: opacity 0.3s ease;
          transition: opacity 0.3s ease;
          opacity: 1; }
      .section-car-park .car-slider__preview .car-preview .car-preview__info {
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 50%;
        z-index: 2; }
        .section-car-park .car-slider__preview .car-preview .car-preview__info .car-preview__name {
          color: var(--white-color);
          font-family: "Inter", sans-serif;
          font-size: 16px;
          font-weight: 600;
          line-height: 24px;
          text-transform: uppercase; }
          @media (max-width: 767.98px) {
            .section-car-park .car-slider__preview .car-preview .car-preview__info .car-preview__name {
              font-size: 12px;
              line-height: 120%; } }
        .section-car-park .car-slider__preview .car-preview .car-preview__info .car-preview__value {
          color: var(--white-color);
          font-family: "Inter", sans-serif;
          font-size: 12px;
          font-weight: 400;
          line-height: 16px; }
      .section-car-park .car-slider__preview .car-preview .carousel-nav {
        margin: 0;
        position: absolute;
        right: 20px;
        bottom: -20px;
        background: var(--color-accent);
        padding: 8px;
        z-index: 2; }
        @media (max-width: 991.98px) {
          .section-car-park .car-slider__preview .car-preview .carousel-nav {
            position: static;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            margin: 20px auto 0;
            background: transparent; } }
        .section-car-park .car-slider__preview .car-preview .carousel-nav .decor {
          background: var(--color-dark); }
          @media (max-width: 991.98px) {
            .section-car-park .car-slider__preview .car-preview .carousel-nav .decor {
              background: var(--color-accent); } }
        .section-car-park .car-slider__preview .car-preview .carousel-nav .swiper-button-prev .ic,
        .section-car-park .car-slider__preview .car-preview .carousel-nav .swiper-button-next .ic {
          color: var(--color-dark); }
          @media (max-width: 991.98px) {
            .section-car-park .car-slider__preview .car-preview .carousel-nav .swiper-button-prev .ic,
            .section-car-park .car-slider__preview .car-preview .carousel-nav .swiper-button-next .ic {
              color: var(--white-color); } }
  .section-car-park .car-slider__main {
    overflow: hidden; }
    .section-car-park .car-slider__main:not(.swiper-initialized) {
      display: none; }
    @media (max-width: 991.98px) {
      .section-car-park .car-slider__main .car-slide {
        height: 100%; } }
    .section-car-park .car-slider__main .car-slide__content {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 346px 1fr;
      grid-template-columns: 346px 1fr;
      gap: 20px; }
      @media (max-width: 1199.98px) {
        .section-car-park .car-slider__main .car-slide__content {
          -ms-grid-columns: 300px 1fr;
          grid-template-columns: 300px 1fr; } }
      @media (max-width: 991.98px) {
        .section-car-park .car-slider__main .car-slide__content {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: reverse;
              -ms-flex-direction: column-reverse;
                  flex-direction: column-reverse;
          height: 100%; } }
    .section-car-park .car-slider__main .car-slide__info {
      opacity: 0;
      min-height: 664px;
      background-color: var(--color-accent);
      padding: 24px 20px 24px 20px;
      clip-path: polygon(100% 3.629%, 100% 100%, 6.985% 100%, 0% 96.371%, 0% 0%, 93.015% 0%, 100% 3.629%); }
      @media (max-width: 767.98px) {
        .section-car-park .car-slider__main .car-slide__info {
          padding: 20px 14px; } }
      @media (max-width: 575.98px) {
        .section-car-park .car-slider__main .car-slide__info {
          min-height: 377px; } }
      .section-car-park .car-slider__main .car-slide__info .car-slide__info-wrapp {
        position: relative;
        z-index: 1; }
      .section-car-park .car-slider__main .car-slide__info .car-slide__title {
        color: var(--color-dark);
        font-family: "Tektur", sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 24px;
        text-transform: uppercase;
        margin-bottom: 8px; }
        @media (max-width: 767.98px) {
          .section-car-park .car-slider__main .car-slide__info .car-slide__title {
            font-size: 22px;
            line-height: 110%;
            margin-bottom: 10px; } }
      .section-car-park .car-slider__main .car-slide__info .car-slide__subtitle {
        color: var(--color-dark);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 32px; }
        @media (max-width: 767.98px) {
          .section-car-park .car-slider__main .car-slide__info .car-slide__subtitle {
            margin-bottom: 18px; } }
      .section-car-park .car-slider__main .car-slide__info .btn {
        width: 100%; }
        @media (max-width: 991.98px) {
          .section-car-park .car-slider__main .car-slide__info .btn {
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content; } }
    .section-car-park .car-slider__main .car-slide__description {
      opacity: 0;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content; }
      .section-car-park .car-slider__main .car-slide__description .car-slide__text {
        color: var(--white-color);
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 300;
        line-height: 20px; }
        @media (max-width: 1199.98px) {
          .section-car-park .car-slider__main .car-slide__description .car-slide__text {
            font-size: 14px; } }
        .section-car-park .car-slider__main .car-slide__description .car-slide__text p {
          margin: 0; }
    .section-car-park .car-slider__main .car-slide__image {
      position: absolute;
      bottom: -6px;
      right: 89px;
      pointer-events: none; }
      @media (max-width: 575.98px) {
        .section-car-park .car-slider__main .car-slide__image {
          height: auto; } }
      .section-car-park .car-slider__main .car-slide__image.mobile {
        display: none; }
        @media (max-width: 991.98px) {
          .section-car-park .car-slider__main .car-slide__image.mobile {
            display: block;
            right: -34px;
            bottom: 0; }
            .section-car-park .car-slider__main .car-slide__image.mobile picture,
            .section-car-park .car-slider__main .car-slide__image.mobile img {
              width: auto;
              height: 100%;
              -o-object-fit: contain;
                 object-fit: contain; } }
        @media (max-width: 575.98px) {
          .section-car-park .car-slider__main .car-slide__image.mobile picture,
          .section-car-park .car-slider__main .car-slide__image.mobile img {
            height: 302px; } }
      @media (max-width: 991.98px) {
        .section-car-park .car-slider__main .car-slide__image.desktop {
          display: none; } }

.section-image-banner {
  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;
  height: 690px;
  background-color: var(--color-primary-dark);
  padding-top: 124px;
  overflow: hidden; }
  .section-image-banner::before {
    content: '';
    height: 306px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0.19%, rgba(62, 83, 93, 0)), color-stop(86.14%, #3E535D));
    background: linear-gradient(0deg, rgba(62, 83, 93, 0) 0.19%, #3E535D 86.14%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1; }
    @media (max-width: 991.98px) {
      .section-image-banner::before {
        display: none; } }
  @media (max-width: 991.98px) {
    .section-image-banner {
      padding-top: 87px; } }
  @media (max-width: 767.98px) {
    .section-image-banner {
      min-height: 610px; } }
  .section-image-banner .section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 767.98px) {
      .section-image-banner .section-title {
        width: 70%; } }
    .section-image-banner .section-title b {
      font-weight: 700; }
    .section-image-banner .section-title b:first-child {
      font-size: 84px;
      line-height: 76.431px;
      margin-bottom: 14px; }
      @media (max-width: 991.98px) {
        .section-image-banner .section-title b:first-child {
          font-size: 48px;
          line-height: 90%;
          margin-bottom: 6px; } }
      @media (max-width: 767.98px) {
        .section-image-banner .section-title b:first-child {
          font-size: 32px;
          line-height: 90%; } }
  .section-image-banner .section-image-banner__image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0; }
    @media (max-width: 1199.98px) {
      .section-image-banner .section-image-banner__image {
        width: 60%;
        margin-left: auto; } }
    @media (max-width: 991.98px) {
      .section-image-banner .section-image-banner__image {
        width: auto;
        margin: auto 0; } }
    @media (max-width: 767.98px) {
      .section-image-banner .section-image-banner__image {
        max-height: 360px; } }
    .section-image-banner .section-image-banner__image::before {
      content: '';
      background: linear-gradient(271deg, rgba(62, 83, 93, 0) -4%, #3E535D 99.31%);
      position: absolute;
      inset: 0;
      width: 65%;
      left: -1px; }
      @media (max-width: 991.98px) {
        .section-image-banner .section-image-banner__image::before {
          width: 100%;
          background: -webkit-gradient(linear, left top, left bottom, color-stop(43.34%, rgba(62, 83, 93, 0)), color-stop(99.95%, #3E535D));
          background: linear-gradient(180deg, rgba(62, 83, 93, 0) 43.34%, #3E535D 99.95%); } }
    .section-image-banner .section-image-banner__image::after {
      display: none; }
      @media (max-width: 991.98px) {
        .section-image-banner .section-image-banner__image::after {
          display: block;
          content: '';
          background: -webkit-gradient(linear, left bottom, left top, color-stop(43.34%, rgba(62, 83, 93, 0)), color-stop(99.95%, #3E535D));
          background: linear-gradient(0deg, rgba(62, 83, 93, 0) 43.34%, #3E535D 99.95%);
          position: absolute;
          inset: 0;
          width: 100%; } }
    .section-image-banner .section-image-banner__image picture,
    .section-image-banner .section-image-banner__image img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .section-image-banner .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (max-width: 991.98px) {
      .section-image-banner .container {
        margin-top: auto; } }
  .section-image-banner .section-image-banner__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;
    max-width: 663px;
    width: 100%;
    padding-bottom: 52px;
    z-index: 1; }
    @media (max-width: 767.98px) {
      .section-image-banner .section-image-banner__content {
        padding-bottom: 20px; } }
    .section-image-banner .section-image-banner__content .section-image-banner__description {
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      margin-top: 24px; }
      @media (max-width: 991.98px) {
        .section-image-banner .section-image-banner__content .section-image-banner__description {
          margin-top: 6px; } }
      @media (max-width: 767.98px) {
        .section-image-banner .section-image-banner__content .section-image-banner__description {
          font-size: 14px;
          line-height: 140%; } }
      .section-image-banner .section-image-banner__content .section-image-banner__description p {
        margin: 0; }
    .section-image-banner .section-image-banner__content .btn-main {
      margin-top: 24px; }
      @media (max-width: 767.98px) {
        .section-image-banner .section-image-banner__content .btn-main {
          margin-top: 20px; } }
  .section-image-banner .section-image-banner__title b,
  .section-image-banner .section-image-banner__description,
  .section-image-banner .product-form-popup-custom,
  .section-image-banner .section-image-banner__image {
    opacity: 0; }

.section-benefits {
  overflow: hidden; }
  .section-benefits .benefits__description {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 34px; }
    @media (max-width: 991.98px) {
      .section-benefits .benefits__description {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px; } }
    @media (max-width: 767.98px) {
      .section-benefits .benefits__description {
        font-size: 16px;
        font-weight: 400;
        line-height: 110%; } }
  .section-benefits .benefits__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
    @media (max-width: 1199.98px) {
      .section-benefits .benefits__list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 767.98px) {
      .section-benefits .benefits__list {
        gap: 8px; } }
  .section-benefits .benefit__item {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px;
    clip-path: polygon(100% 18.266%, 100% 100%, 4.969% 100%, 0% 82.918%, 0% 0%, 94.686% 0%, 100% 18.266%);
    min-height: 104px; }
    @media (min-width: 1199.98px) {
      .section-benefits .benefit__item:nth-child(odd) {
        background-color: var(--color-light); }
      .section-benefits .benefit__item:nth-child(even) {
        background-color: var(--color-primary); }
        .section-benefits .benefit__item:nth-child(even) .benefit__text {
          color: var(--white-color); } }
    @media (max-width: 1199.98px) {
      .section-benefits .benefit__item {
        background-color: var(--color-light); }
        .section-benefits .benefit__item:nth-child(4n+2), .section-benefits .benefit__item:nth-child(4n+3) {
          background-color: var(--color-primary); }
          .section-benefits .benefit__item:nth-child(4n+2) .benefit__text, .section-benefits .benefit__item:nth-child(4n+3) .benefit__text {
            color: var(--white-color); }
          .section-benefits .benefit__item:nth-child(4n+2) .benefit__icon svg path, .section-benefits .benefit__item:nth-child(4n+3) .benefit__icon svg path {
            fill: var(--color-accent); } }
    @media (max-width: 767.98px) {
      .section-benefits .benefit__item {
        padding: 14px; } }
    .section-benefits .benefit__item .benefit__icon img,
    .section-benefits .benefit__item .benefit__icon svg {
      width: 40px;
      height: 40px; }
      @media (max-width: 1199.98px) {
        .section-benefits .benefit__item .benefit__icon img path,
        .section-benefits .benefit__item .benefit__icon svg path {
          fill: var(--color-primary); } }
      @media (max-width: 767.98px) {
        .section-benefits .benefit__item .benefit__icon img,
        .section-benefits .benefit__item .benefit__icon svg {
          width: 30px;
          height: 30px; } }
    .section-benefits .benefit__item .benefit__text {
      color: var(--color-dark);
      font-family: "Tektur", sans-serif;
      font-size: 20px;
      font-weight: 700;
      line-height: 32px;
      text-transform: uppercase;
      margin-top: 14px; }
      @media (max-width: 767.98px) {
        .section-benefits .benefit__item .benefit__text {
          font-size: 16px;
          line-height: 110%;
          margin-top: 10px; } }

.section-documents-slider {
  overflow: hidden; }
  .section-documents-slider .document-card {
    padding: 32px 42px 34px;
    background-color: var(--color-light);
    clip-path: polygon(100% 4.83%, 100% 100%, 7.681% 100%, 0% 94.885%, 0% 0%, 92.748% 0%, 100% 4.83%);
    cursor: pointer; }
    @media (pointer: fine) {
      .section-documents-slider .document-card:hover .document-card__image .btn-zoom {
        opacity: 1;
        pointer-events: all; } }
    @media (max-width: 767.98px) {
      .section-documents-slider .document-card {
        padding: 24px 30px; } }
    .section-documents-slider .document-card .document-card__image {
      position: relative; }
      .section-documents-slider .document-card .document-card__image img {
        display: block;
        clip-path: polygon(100% 8.276%, 100% 100%, 7.436% 100%, 0% 91.723%, 0% 0%, 92.564% 0%, 100% 8.276%); }
      .section-documents-slider .document-card .document-card__image .btn-zoom {
        opacity: 0;
        pointer-events: 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;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--color-accent);
        position: absolute;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        .section-documents-slider .document-card .document-card__image .btn-zoom .ic {
          width: 24px;
          height: 24px; }
    .section-documents-slider .document-card .document-card__title {
      color: var(--color-dark);
      font-family: "Tektur", sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 20px;
      text-transform: uppercase;
      margin-top: 24px;
      overflow: hidden;
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      line-clamp: 2;
      text-overflow: ellipsis;
      padding-right: 38px; }
      @media (max-width: 767.98px) {
        .section-documents-slider .document-card .document-card__title {
          font-size: 16px;
          line-height: 110%;
          margin-top: 14px;
          padding-right: 24px; } }

.section-career {
  position: relative;
  background: url("/front/img/career-bg.png") center no-repeat;
  background-size: cover;
  margin: -1px 0;
  overflow: hidden; }
  @media (max-width: 1199.98px) {
    .section-career {
      background-size: auto; } }
  @media (min-width: 991.98px) {
    .section-career {
      padding-bottom: 0; } }
  @media (max-width: 991.98px) {
    .section-career {
      background: none; }
      .section-career::before {
        content: '';
        position: absolute;
        background: url("data:image/svg+xml,%3Csvg width='360' height='411' viewBox='0 0 360 411' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_837_21224)'%3E%3Cpath d='M0 219.91L360 159V448H0V219.91Z' fill='%23FFD400'/%3E%3Cpath d='M0 247.91L360 187V476H0V247.91Z' fill='%23547584'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_837_21224'%3E%3Crect width='360' height='449' fill='white' transform='translate(0 -38)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") center no-repeat;
        background-size: cover !important;
        bottom: 100px;
        width: 100%;
        height: 82%; } }
  .section-career .section-title-bg {
    color: rgba(84, 117, 132, 0.04); }
  .section-career .career-section__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25.4%;
    grid-template-columns: 1fr 25.4%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (max-width: 1199.98px) {
      .section-career .career-section__inner {
        -ms-grid-columns: 1fr 32%;
        grid-template-columns: 1fr 32%; } }
    @media (max-width: 991.98px) {
      .section-career .career-section__inner {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%; } }
  .section-career .career-section__image {
    position: relative;
    margin-top: -100px;
    -webkit-transform: translateX(50px);
        -ms-transform: translateX(50px);
            transform: translateX(50px); }
    @media (max-width: 1199.98px) {
      .section-career .career-section__image {
        -webkit-transform: unset;
            -ms-transform: unset;
                transform: unset;
        margin-top: -60px; } }
    @media (max-width: 991.98px) {
      .section-career .career-section__image {
        margin: 0; } }
  .section-career .career-section__text {
    position: absolute;
    top: 19%;
    color: var(--color-dark);
    text-align: right;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    max-width: 366px;
    width: 100%;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-clamp: 5;
    text-overflow: ellipsis; }
    @media (max-width: 1199.98px) {
      .section-career .career-section__text {
        top: 15%;
        font-size: 16px;
        line-height: 20px;
        max-width: 300px;
        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) {
      .section-career .career-section__text {
        position: static;
        max-width: 100%;
        text-align: left; } }
    @media (max-width: 767.98px) {
      .section-career .career-section__text {
        font-size: 12px;
        line-height: 120%; } }
  .section-career .block-cta-box {
    margin-bottom: 68px; }
    @media (max-width: 1199.98px) {
      .section-career .block-cta-box {
        margin-bottom: 40px; } }
    @media (max-width: 767.98px) {
      .section-career .block-cta-box {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        min-height: auto; } }

.section-course-blocks .block-cta-box {
  position: sticky;
  top: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  min-height: auto; }
  .section-course-blocks .block-cta-box .cta-box-title {
    margin: 0; }
  .section-course-blocks .block-cta-box .cta-box__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .section-course-blocks .block-cta-box .cta-box__info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .section-course-blocks .block-cta-box .cta-box__info-item .cta-box__info-label {
      display: block;
      color: var(--color-dark);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      text-transform: uppercase;
      margin-bottom: 4px; }
    .section-course-blocks .block-cta-box .cta-box__info-item .cta-box__info-value {
      color: var(--color-dark);
      font-size: 24px;
      font-weight: 600;
      line-height: 24px; }
  .section-course-blocks .block-cta-box .cta-box__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #111077;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .section-course-blocks .block-cta-box .cta-box__phone:hover {
        color: var(--white-color); } }
    .section-course-blocks .block-cta-box .cta-box__phone .icon-wrapp {
      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: 30px;
      min-width: 30px;
      height: 30px;
      background: var(--white-color);
      border-radius: 50%; }
      .section-course-blocks .block-cta-box .cta-box__phone .icon-wrapp .ic {
        color: var(--color-black);
        width: 18px;
        height: 18px; }

.section-course-blocks .course-blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 22px; }
  @media (max-width: 1199.98px) {
    .section-course-blocks .course-blocks {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  @media (max-width: 991.98px) {
    .section-course-blocks .course-blocks {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 8px; } }
  @media (max-width: 767.98px) {
    .section-course-blocks .course-blocks {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }

.section-course-blocks .course-card {
  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: 27px 31px 40px;
  background: var(--color-light);
  overflow: hidden; }
  .section-course-blocks .course-card::before {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--white-color);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    right: -30px;
    top: -30px; }
  .section-course-blocks .course-card::after {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--white-color);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    left: -30px;
    bottom: -30px; }
  @media (max-width: 991.98px) {
    .section-course-blocks .course-card {
      padding: 24px; } }
  @media (max-width: 767.98px) {
    .section-course-blocks .course-card {
      padding: 20px 14px; } }
  .section-course-blocks .course-card:nth-child(even) {
    background: var(--color-primary); }
    .section-course-blocks .course-card:nth-child(even) .course-card__title {
      color: var(--white-color); }
    .section-course-blocks .course-card:nth-child(even) .course-card__list-item::before {
      background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.5' width='20' height='20' rx='10' fill='%23FFD400'/%3E%3Cg clip-path='url(%23clip0_965_5914)'%3E%3Cpath d='M14.7676 7.13439C14.4582 6.82457 13.9558 6.82477 13.646 7.13439L8.59787 12.1827L6.35419 9.93906C6.04438 9.62924 5.54217 9.62924 5.23236 9.93906C4.92255 10.2489 4.92255 10.7511 5.23236 11.0609L8.03684 13.8654C8.19165 14.0202 8.39464 14.0978 8.59765 14.0978C8.80067 14.0978 9.00386 14.0204 9.15867 13.8654L14.7676 8.2562C15.0775 7.9466 15.0775 7.44418 14.7676 7.13439Z' fill='%2326262B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_965_5914'%3E%3Crect width='10' height='10' fill='white' transform='translate(5 5.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") center no-repeat; }
    .section-course-blocks .course-card:nth-child(even) .course-card__list-item .text {
      color: var(--white-color); }
    .section-course-blocks .course-card:nth-child(even) .course-card__footer {
      border-top: 1px solid rgba(255, 255, 255, 0.12); }
      .section-course-blocks .course-card:nth-child(even) .course-card__footer .course-card__label,
      .section-course-blocks .course-card:nth-child(even) .course-card__footer .course-card__value {
        color: var(--white-color); }
  .section-course-blocks .course-card .course-card__title {
    color: var(--color-primary);
    font-family: "Tektur", sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 18px; }
    @media (max-width: 767.98px) {
      .section-course-blocks .course-card .course-card__title {
        font-size: 22px;
        line-height: 110%;
        margin-bottom: 10px; } }
  .section-course-blocks .course-card .course-card__price {
    display: none; }
  .section-course-blocks .course-card .course-card__list {
    padding: 0;
    margin: 0;
    list-style: none; }
  .section-course-blocks .course-card .course-card__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px; }
    @media (max-width: 767.98px) {
      .section-course-blocks .course-card .course-card__list-item {
        gap: 6px;
        margin-bottom: 12px; } }
    .section-course-blocks .course-card .course-card__list-item:last-child {
      margin-bottom: 24px; }
      @media (max-width: 767.98px) {
        .section-course-blocks .course-card .course-card__list-item:last-child {
          margin-bottom: 18px; } }
    .section-course-blocks .course-card .course-card__list-item::before {
      content: '';
      display: block;
      background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.5' width='20' height='20' rx='10' fill='%23547584'/%3E%3Cg clip-path='url(%23clip0_418_15365)'%3E%3Cpath d='M14.7676 7.13445C14.4582 6.82463 13.9558 6.82483 13.646 7.13445L8.59787 12.1828L6.35419 9.93912C6.04438 9.62931 5.54217 9.62931 5.23236 9.93912C4.92255 10.2489 4.92255 10.7511 5.23236 11.0609L8.03684 13.8654C8.19165 14.0202 8.39464 14.0978 8.59765 14.0978C8.80067 14.0978 9.00386 14.0204 9.15867 13.8654L14.7676 8.25626C15.0775 7.94666 15.0775 7.44424 14.7676 7.13445Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_418_15365'%3E%3Crect width='10' height='10' fill='white' transform='translate(5 5.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") center no-repeat;
      width: 20px;
      min-width: 20px;
      height: 20px;
      background-size: contain !important;
      margin-top: 2px; }
      @media (max-width: 767.98px) {
        .section-course-blocks .course-card .course-card__list-item::before {
          width: 16px;
          min-width: 16px;
          height: 16px; } }
    .section-course-blocks .course-card .course-card__list-item .text {
      color: var(--color-dark);
      font-size: 16px;
      font-weight: 500;
      line-height: 21px; }
      @media (max-width: 767.98px) {
        .section-course-blocks .course-card .course-card__list-item .text {
          font-size: 14px;
          line-height: 120%; } }
  .section-course-blocks .course-card .course-card__footer {
    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(0, 0, 0, 0.12);
    margin-top: auto;
    padding-top: 18px; }
    .section-course-blocks .course-card .course-card__footer .course-card__label {
      color: var(--color-dark);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      text-transform: uppercase; }
    .section-course-blocks .course-card .course-card__footer .course-card__value {
      color: var(--color-dark);
      font-size: 24px;
      font-weight: 600;
      line-height: 24px; }
      @media (max-width: 767.98px) {
        .section-course-blocks .course-card .course-card__footer .course-card__value {
          font-size: 20px;
          line-height: 110%; } }

.sticky-course-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  -webkit-box-shadow: 0 4px 34px 0 rgba(52, 75, 85, 0.4);
          box-shadow: 0 4px 34px 0 rgba(52, 75, 85, 0.4);
  z-index: 1200;
  padding: 14px; }
  .sticky-course-bar .sticky-course-bar__inner {
    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;
    gap: 12px; }
  .sticky-course-bar .sticky-course-bar__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .sticky-course-bar .sticky-course-bar__title {
    color: var(--color-gray);
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 2px; }
  .sticky-course-bar .sticky-course-bar__price {
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 110%; }

.section-process {
  overflow: hidden; }
  .section-process .section-title {
    margin-bottom: 70px; }
    @media (max-width: 991.98px) {
      .section-process .section-title {
        margin-bottom: 20px; } }
  .section-process .process-steps {
    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: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (max-width: 991.98px) {
      .section-process .process-steps {
        -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; } }
  .section-process .process-line {
    position: absolute;
    height: 1px;
    border: 1px dashed var(--color-purple-gray);
    bottom: 42px;
    right: 68px;
    left: 68px; }
    @media (max-width: 991.98px) {
      .section-process .process-line {
        height: auto;
        width: 1px;
        right: unset;
        left: unset;
        top: 136px;
        bottom: 74px; } }
  .section-process .process-step {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 16px;
    width: 138px; }
    @media (max-width: 991.98px) {
      .section-process .process-step {
        width: 100%;
        gap: 0;
        min-height: 60px; }
        .section-process .process-step:not(.process-step--start):not(.process-step--end) .process-step__point::before {
          position: absolute; }
        .section-process .process-step:not(.process-step--start):not(.process-step--end):nth-child(even) .process-step__mobile-block {
          position: absolute;
          left: 0;
          top: -14px; }
        .section-process .process-step:not(.process-step--start):not(.process-step--end):nth-child(even) .process-step__point::before {
          -webkit-transform: rotate(90deg);
              -ms-transform: rotate(90deg);
                  transform: rotate(90deg);
          top: -40px;
          right: 18px; }
        .section-process .process-step:not(.process-step--start):not(.process-step--end):nth-child(odd) .process-step__mobile-block {
          position: absolute;
          right: 0;
          top: -14px; }
        .section-process .process-step:not(.process-step--start):not(.process-step--end):nth-child(odd) .process-step__point::before {
          -webkit-transform: rotate(-90deg);
              -ms-transform: rotate(-90deg);
                  transform: rotate(-90deg);
          top: -40px;
          left: 18px; } }
    .section-process .process-step.process-step--start .process-step__point::before, .section-process .process-step.process-step--end .process-step__point::before {
      content: '';
      display: block;
      background: url("data:image/svg+xml,%3Csvg width='20' height='62' viewBox='0 0 20 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6.5' width='7' height='7' rx='3.5' fill='%239797BA'/%3E%3Crect x='6' y='55' width='7' height='7' rx='3.5' fill='%239797BA'/%3E%3Cline x1='9.5' y1='57' x2='9.5' y2='7' stroke='%239797BA' stroke-dasharray='2 2'/%3E%3C/svg%3E%0A") center no-repeat;
      width: 20px;
      height: 62px; }
    @media (max-width: 991.98px) {
      .section-process .process-step.process-step--start {
        gap: 10px; } }
    .section-process .process-step.process-step--start .process-step__icon {
      display: block;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31' height='36' viewBox='0 0 31 36' fill='none'%3E%3Cpath d='M29.1014 34.8651H1.08789L3.54789 28.4053L5.97599 22.0327L8.09215 16.4738L8.50333 15.3983L10.9279 9.02578L13.8487 1.35394C14.5364 -0.451315 15.6529 -0.451315 16.3406 1.35394L19.2614 9.02578L21.686 15.3983L22.0971 16.4738L24.2133 22.0327L26.6414 28.4053L29.1014 34.8651Z' fill='%23FFD400'/%3E%3Cpath d='M30.75 35.1271C30.75 35.6093 30.3533 36 29.8638 36H0.886167C0.396648 36 0 35.6093 0 35.1271C0 34.6449 0.396648 34.2542 0.886167 34.2542H29.8638C30.3533 34.2542 30.75 34.6449 30.75 35.1271Z' fill='%2326262B'/%3E%3Cpath d='M26.6414 28.4052H3.54785L5.97595 22.0327H24.2133L26.6414 28.4052Z' fill='%2326262B'/%3E%3Cpath d='M21.6865 15.3984H8.50391L10.9285 9.02551H19.262L21.6865 15.3984Z' fill='%2326262B'/%3E%3C/svg%3E") center no-repeat;
      width: 31px;
      height: 36px;
      background-size: contain !important; }
      @media (max-width: 991.98px) {
        .section-process .process-step.process-step--start .process-step__icon {
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1; } }
      @media (max-width: 575.98px) {
        .section-process .process-step.process-step--start .process-step__icon {
          width: 26px;
          height: 30px; } }
    @media (max-width: 991.98px) {
      .section-process .process-step.process-step--start .process-step__point {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3; } }
    @media (max-width: 991.98px) {
      .section-process .process-step.process-step--start .process-step__content {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
    @media (max-width: 991.98px) {
      .section-process .process-step.process-step--end {
        gap: 10px;
        margin-top: 10px; } }
    .section-process .process-step.process-step--end .process-step__icon {
      display: block;
      background: url("data:image/svg+xml,%3Csvg width='50' height='29' viewBox='0 0 50 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_460_15460)'%3E%3Cpath d='M6.50849 0H-0.857422V7.36584H6.50849V0Z' fill='%23FFD400'/%3E%3Cpath d='M13.8737 0H6.50781V7.36584H13.8737V0Z' fill='%2326262B'/%3E%3Cpath d='M21.2399 0H13.874V7.36584H21.2399V0Z' fill='%23FFD400'/%3E%3Cpath d='M28.6071 0H21.2402V7.36584H28.6071V0Z' fill='%2326262B'/%3E%3Cpath d='M35.9723 0H28.6064V7.36584H35.9723V0Z' fill='%23FFD400'/%3E%3Cpath d='M43.3386 0H35.9727V7.36584H43.3386V0Z' fill='%2326262B'/%3E%3Cpath d='M50.7048 0H43.3389V7.36584H50.7048V0Z' fill='%23FFD400'/%3E%3Cpath d='M6.50849 7.36584H-0.857422V14.7317H6.50849V7.36584Z' fill='%2326262B'/%3E%3Cpath d='M13.8737 7.36584H6.50781V14.7317H13.8737V7.36584Z' fill='%23FFD400'/%3E%3Cpath d='M21.2399 7.36584H13.874V14.7317H21.2399V7.36584Z' fill='%2326262B'/%3E%3Cpath d='M28.6071 7.36584H21.2402V14.7317H28.6071V7.36584Z' fill='%23FFD400'/%3E%3Cpath d='M35.9723 7.36584H28.6064V14.7317H35.9723V7.36584Z' fill='%2326262B'/%3E%3Cpath d='M43.3386 7.36584H35.9727V14.7317H43.3386V7.36584Z' fill='%23FFD400'/%3E%3Cpath d='M50.7048 7.36584H43.3389V14.7317H50.7048V7.36584Z' fill='%2326262B'/%3E%3Cpath d='M6.50849 14.7322H-0.857422V22.0985H6.50849V14.7322Z' fill='%23FFD400'/%3E%3Cpath d='M13.8737 14.7322H6.50781V22.0985H13.8737V14.7322Z' fill='%2326262B'/%3E%3Cpath d='M21.2399 14.7322H13.874V22.0985H21.2399V14.7322Z' fill='%23FFD400'/%3E%3Cpath d='M28.6071 14.7322H21.2402V22.0985H28.6071V14.7322Z' fill='%2326262B'/%3E%3Cpath d='M35.9723 14.7322H28.6064V22.0985H35.9723V14.7322Z' fill='%23FFD400'/%3E%3Cpath d='M43.3386 14.7322H35.9727V22.0985H43.3386V14.7322Z' fill='%2326262B'/%3E%3Cpath d='M50.7048 14.7322H43.3389V22.0985H50.7048V14.7322Z' fill='%23FFD400'/%3E%3Cpath d='M6.50849 22.0985H-0.857422V29.4643H6.50849V22.0985Z' fill='%2326262B'/%3E%3Cpath d='M13.8737 22.0985H6.50781V29.4643H13.8737V22.0985Z' fill='%23FFD400'/%3E%3Cpath d='M21.2399 22.0985H13.874V29.4643H21.2399V22.0985Z' fill='%2326262B'/%3E%3Cpath d='M28.6071 22.0985H21.2402V29.4643H28.6071V22.0985Z' fill='%23FFD400'/%3E%3Cpath d='M35.9723 22.0985H28.6064V29.4643H35.9723V22.0985Z' fill='%2326262B'/%3E%3Cpath d='M43.3386 22.0985H35.9727V29.4643H43.3386V22.0985Z' fill='%23FFD400'/%3E%3Cpath d='M50.7048 22.0985H43.3389V29.4643H50.7048V22.0985Z' fill='%2326262B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_460_15460'%3E%3Crect width='50' height='29' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") center no-repeat;
      width: 50px;
      height: 29px;
      background-size: contain !important; }
      @media (max-width: 991.98px) {
        .section-process .process-step.process-step--end .process-step__icon {
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2; } }
      @media (max-width: 575.98px) {
        .section-process .process-step.process-step--end .process-step__icon {
          width: 34px;
          height: 20px; } }
    @media (max-width: 991.98px) {
      .section-process .process-step.process-step--end .process-step__point {
        display: none; } }
    @media (max-width: 991.98px) {
      .section-process .process-step.process-step--end .process-step__point::before {
        background: url("data:image/svg+xml,%3Csvg width='1' height='60' viewBox='0 0 1 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.5' y1='60' x2='0.500003' y2='-2.18557e-08' stroke='%239797BA' stroke-dasharray='2 2'/%3E%3C/svg%3E%0A") center no-repeat;
        width: 1px;
        height: 60px; } }
    @media (max-width: 991.98px) {
      .section-process .process-step.process-step--end .process-step__content {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3; } }
    .section-process .process-step .process-step__label {
      color: var(--color-dark);
      font-size: 14px;
      font-weight: 600;
      line-height: 24px;
      text-transform: uppercase;
      padding: 0 12px;
      border-radius: 100px;
      background: var(--color-accent);
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content; }
      @media (max-width: 767.98px) {
        .section-process .process-step .process-step__label {
          font-size: 12px;
          line-height: 120%;
          padding: 4px 10px; } }
    @media (max-width: 991.98px) {
      .section-process .process-step .process-step__point {
        position: relative; } }
    .section-process .process-step .process-step__point::before {
      position: relative;
      content: '';
      display: block;
      background: url("data:image/svg+xml,%3Csvg width='20' height='75' viewBox='0 0 20 75' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' rx='10' fill='%2326262B'/%3E%3Crect x='5' y='5' width='10' height='10' rx='5' fill='%23FFD400'/%3E%3Crect x='6' y='68' width='7' height='7' rx='3.5' fill='%239797BA'/%3E%3Cline x1='9.5' y1='70' x2='9.5' y2='20' stroke='%239797BA' stroke-dasharray='2 2'/%3E%3C/svg%3E%0A") center no-repeat;
      width: 20px;
      height: 75px;
      z-index: 1; }
    .section-process .process-step .process-step__content {
      color: var(--color-dark);
      font-family: "Tektur", sans-serif;
      font-size: 18px;
      font-weight: 600;
      line-height: 24px;
      text-transform: uppercase;
      overflow: hidden;
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      line-clamp: 1;
      text-overflow: ellipsis; }
      @media (max-width: 767.98px) {
        .section-process .process-step .process-step__content {
          font-size: 16px;
          line-height: 110%; } }
  @media (max-width: 991.98px) {
    .section-process .desktop-only {
      display: none !important; } }
  .section-process .process-step__mobile-block {
    display: none; }
    @media (max-width: 991.98px) {
      .section-process .process-step__mobile-block {
        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;
        gap: 6px; } }

.section-schedule {
  overflow: hidden; }
  @media (max-width: 991.98px) {
    .section-schedule {
      background-color: var(--color-light);
      margin-top: 40px; } }
  .section-schedule .schedule__header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 29% 28.8% 22% 1fr;
    grid-template-columns: 29% 28.8% 22% 1fr;
    gap: 10px;
    padding: 18px 24px;
    background-color: var(--color-light); }
    @media (max-width: 1199.98px) {
      .section-schedule .schedule__header {
        -ms-grid-columns: 24% 27% 22% 1fr;
        grid-template-columns: 24% 27% 22% 1fr; } }
    @media (max-width: 991.98px) {
      .section-schedule .schedule__header {
        display: none; } }
    .section-schedule .schedule__header .schedule__col {
      color: var(--color-primary);
      font-family: "Tektur", sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 22px;
      text-transform: uppercase; }
      .section-schedule .schedule__header .schedule__col:last-child {
        margin-left: auto; }
  .section-schedule .schedule__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 29% 28.8% 22% 1fr;
    grid-template-columns: 29% 28.8% 22% 1fr;
    gap: 10px;
    padding: 18px 24px; }
    .section-schedule .schedule__row:nth-child(even) {
      background-color: var(--color-light); }
    @media (max-width: 1199.98px) {
      .section-schedule .schedule__row {
        -ms-grid-columns: 24% 27% 22% 1fr;
        grid-template-columns: 24% 27% 22% 1fr; } }
    @media (max-width: 991.98px) {
      .section-schedule .schedule__row {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        padding: 20px 0;
        gap: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
        .section-schedule .schedule__row:first-child {
          padding-top: 0; } }
    .section-schedule .schedule__row .schedule__col {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 10px;
      color: var(--color-dark);
      font-size: 17px;
      font-weight: 500;
      line-height: 26px; }
      @media (max-width: 991.98px) {
        .section-schedule .schedule__row .schedule__col {
          display: -ms-grid;
          display: grid;
          -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr); }
          .section-schedule .schedule__row .schedule__col::before {
            content: attr(data-label);
            color: var(--color-primary);
            font-family: "Tektur", sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: 110%;
            text-transform: uppercase; } }
      @media (max-width: 767.98px) {
        .section-schedule .schedule__row .schedule__col {
          font-size: 14px;
          line-height: 120%; } }
      .section-schedule .schedule__row .schedule__col:last-child {
        margin-left: auto; }
        @media (max-width: 991.98px) {
          .section-schedule .schedule__row .schedule__col:last-child {
            margin: 0; } }
      .section-schedule .schedule__row .schedule__col .schedule__col-wrapp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 10px; }
        @media (max-width: 767.98px) {
          .section-schedule .schedule__row .schedule__col .schedule__col-wrapp {
            gap: 6px; } }
      .section-schedule .schedule__row .schedule__col .ic {
        color: var(--color-primary);
        width: 20px;
        height: 20px; }
        @media (max-width: 767.98px) {
          .section-schedule .schedule__row .schedule__col .ic {
            width: 14px;
            height: 14px; } }
    .section-schedule .schedule__row .schedule__col--format .badge {
      font-size: 14px;
      font-weight: 600;
      line-height: 24px;
      text-transform: uppercase;
      padding: 0 10px;
      border-radius: 100px; }
      @media (max-width: 767.98px) {
        .section-schedule .schedule__row .schedule__col--format .badge {
          font-size: 12px; } }
      .section-schedule .schedule__row .schedule__col--format .badge.badge--offline {
        color: var(--white-color);
        background-color: var(--color-primary); }
      .section-schedule .schedule__row .schedule__col--format .badge.badge--online {
        color: var(--color-dark);
        background-color: var(--color-accent); }
  .section-schedule .btn-main {
    margin-top: 30px; }
    @media (max-width: 991.98px) {
      .section-schedule .btn-main {
        display: none; } }

.section-stats .section-stats__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px; }
  @media (max-width: 1199.98px) {
    .section-stats .section-stats__list {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767.98px) {
    .section-stats .section-stats__list {
      gap: 0;
      border: 1px solid rgba(0, 0, 0, 0.12); } }

.section-stats .section-stats__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px; }
  @media (max-width: 767.98px) {
    .section-stats .section-stats__item {
      padding: 14px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 4px;
      border: none; }
      .section-stats .section-stats__item:nth-child(even) {
        border-left: 1px solid rgba(0, 0, 0, 0.12); }
      .section-stats .section-stats__item:not(:nth-child(1)):not(:nth-child(2)) {
        border-top: 1px solid rgba(0, 0, 0, 0.12); } }
  .section-stats .section-stats__item .section-stats__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media (max-width: 767.98px) {
      .section-stats .section-stats__item .section-stats__content {
        gap: 6px; } }
  .section-stats .section-stats__item .section-stats__image {
    display: block;
    width: 34px;
    height: 34px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 8px; }
    @media (max-width: 991.98px) {
      .section-stats .section-stats__item .section-stats__image {
        margin-top: 4px; } }
    @media (max-width: 767.98px) {
      .section-stats .section-stats__item .section-stats__image {
        width: 24px;
        height: 24px;
        margin-top: 0; } }
  .section-stats .section-stats__item .section-stats__text {
    color: var(--color-primary);
    font-family: "Tektur", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .section-stats .section-stats__item .section-stats__text {
        font-size: 48px;
        line-height: 100%; } }
    @media (max-width: 767.98px) {
      .section-stats .section-stats__item .section-stats__text {
        font-size: 28px; } }
  .section-stats .section-stats__item .section-stats__title {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0; }
    @media (max-width: 767.98px) {
      .section-stats .section-stats__item .section-stats__title {
        font-size: 14px;
        line-height: 120%;
        text-align: center; } }

.section-services-slider {
  overflow: hidden; }
  .section-services-slider.bg-gray .service-card::before,
  .section-services-slider.bg-gray .service-card-additional::before {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--color-light);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    right: -30px;
    top: -30px; }
  .section-services-slider.bg-gray .service-card::after,
  .section-services-slider.bg-gray .service-card-additional::after {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--color-light);
    -webkit-transform: rotate(140deg);
        -ms-transform: rotate(140deg);
            transform: rotate(140deg);
    position: absolute;
    left: -30px;
    bottom: -30px; }
  .section-services-slider .service-card,
  .section-services-slider .service-card-additional {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%; }
    .section-services-slider .service-card .service-card__header,
    .section-services-slider .service-card .service-card-additional__header,
    .section-services-slider .service-card-additional .service-card__header,
    .section-services-slider .service-card-additional .service-card-additional__header {
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
      height: 100%; }
      @media (max-width: 767.98px) {
        .section-services-slider .service-card .service-card__header,
        .section-services-slider .service-card .service-card-additional__header,
        .section-services-slider .service-card-additional .service-card__header,
        .section-services-slider .service-card-additional .service-card-additional__header {
          padding-bottom: 18px;
          margin-bottom: 18px; } }
    .section-services-slider .service-card .service-card__title,
    .section-services-slider .service-card .service-card-additional__title,
    .section-services-slider .service-card-additional .service-card__title,
    .section-services-slider .service-card-additional .service-card-additional__title {
      color: var(--color-primary);
      font-family: "Tektur", sans-serif;
      font-size: 26px;
      font-weight: 600;
      line-height: 32px;
      margin-bottom: 15px; }
      @media (max-width: 767.98px) {
        .section-services-slider .service-card .service-card__title,
        .section-services-slider .service-card .service-card-additional__title,
        .section-services-slider .service-card-additional .service-card__title,
        .section-services-slider .service-card-additional .service-card-additional__title {
          font-size: 22px;
          line-height: 110%;
          margin-bottom: 10px; } }
    .section-services-slider .service-card .service-card__desc,
    .section-services-slider .service-card .service-card-additional__desc,
    .section-services-slider .service-card-additional .service-card__desc,
    .section-services-slider .service-card-additional .service-card-additional__desc {
      color: var(--color-gray);
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      padding-bottom: 0;
      margin: 0;
      width: 100%; }
    .section-services-slider .service-card .service-card__include,
    .section-services-slider .service-card-additional .service-card__include {
      display: none; }
    .section-services-slider .service-card .service-card__footer,
    .section-services-slider .service-card .service-card-additional__footer,
    .section-services-slider .service-card-additional .service-card__footer,
    .section-services-slider .service-card-additional .service-card-additional__footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      gap: 18px;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      border: none;
      padding: 0; }
      @media (max-width: 991.98px) {
        .section-services-slider .service-card .service-card__footer,
        .section-services-slider .service-card .service-card-additional__footer,
        .section-services-slider .service-card-additional .service-card__footer,
        .section-services-slider .service-card-additional .service-card-additional__footer {
          display: -ms-grid;
          display: grid;
          -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 991.98px) {
      .section-services-slider .service-card .service-card__footer,
      .section-services-slider .service-card-additional .service-card__footer {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-wrap: unset;
            flex-wrap: unset;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
        .section-services-slider .service-card .service-card__footer .service-card__info,
        .section-services-slider .service-card-additional .service-card__footer .service-card__info {
          width: -webkit-fit-content;
          width: -moz-fit-content;
          width: fit-content; }
        .section-services-slider .service-card .service-card__footer .btn,
        .section-services-slider .service-card-additional .service-card__footer .btn {
          width: auto; } }
    @media (max-width: 991.98px) {
      .section-services-slider .service-card .service-card-additional__footer .service-card-additional__info:nth-child(2),
      .section-services-slider .service-card-additional .service-card-additional__footer .service-card-additional__info:nth-child(2) {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-left: auto; }
      .section-services-slider .service-card .service-card-additional__footer .btn,
      .section-services-slider .service-card-additional .service-card-additional__footer .btn {
        -ms-grid-row: 2;
        grid-row: 2;
        grid-column: 1/-1;
        width: 100%; } }
    .section-services-slider .service-card .service-card__info .service-card__label,
    .section-services-slider .service-card .service-card__info .service-card-additional__label,
    .section-services-slider .service-card .service-card-additional__info .service-card__label,
    .section-services-slider .service-card .service-card-additional__info .service-card-additional__label,
    .section-services-slider .service-card-additional .service-card__info .service-card__label,
    .section-services-slider .service-card-additional .service-card__info .service-card-additional__label,
    .section-services-slider .service-card-additional .service-card-additional__info .service-card__label,
    .section-services-slider .service-card-additional .service-card-additional__info .service-card-additional__label {
      color: var(--color-gray);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      text-transform: uppercase; }
    .section-services-slider .service-card .service-card__info .service-card__price,
    .section-services-slider .service-card .service-card__info .service-card-additional__price,
    .section-services-slider .service-card .service-card-additional__info .service-card__price,
    .section-services-slider .service-card .service-card-additional__info .service-card-additional__price,
    .section-services-slider .service-card-additional .service-card__info .service-card__price,
    .section-services-slider .service-card-additional .service-card__info .service-card-additional__price,
    .section-services-slider .service-card-additional .service-card-additional__info .service-card__price,
    .section-services-slider .service-card-additional .service-card-additional__info .service-card-additional__price {
      color: var(--color-dark);
      font-size: 20px;
      font-weight: 600;
      line-height: 24px; }
  .section-services-slider .service-card {
    background-color: var(--white-color); }
    .section-services-slider .service-card .service-card__footer .service-card__info {
      -ms-grid-columns: 45% 1fr;
      grid-template-columns: 45% 1fr; }
    .section-services-slider .service-card .service-card__info-item .service-card__info-label {
      color: var(--color-primary);
      margin-bottom: 0; }
    .section-services-slider .service-card .service-card__info-item .service-card__duration,
    .section-services-slider .service-card .service-card__info-item .service-card__price {
      color: var(--color-primary);
      font-size: 24px;
      font-weight: 600;
      line-height: 24px; }
      @media (max-width: 767.98px) {
        .section-services-slider .service-card .service-card__info-item .service-card__duration,
        .section-services-slider .service-card .service-card__info-item .service-card__price {
          font-size: 20px;
          line-height: 110%;
          margin: 0; } }

.section-promo-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .section-promo-banner .promo-banner {
    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;
    padding: 62px 46px;
    height: 100%;
    background-size: cover !important;
    min-height: 315px;
    clip-path: polygon(100% 27.168%, 100% 100%, 4.485% 100%, 0% 73.41%, 0% 0%, 96.25% 0%, 100% 27.168%); }
    @media (max-width: 767.98px) {
      .section-promo-banner .promo-banner {
        padding: 40px;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    @media (max-width: 575.98px) {
      .section-promo-banner .promo-banner {
        padding: 20px 14px;
        min-height: 550px;
        clip-path: polygon(100% 27.168%, 100% 100%, 6.485% 100%, 0% 93.41%, 0% 0%, 93.25% 0%, 100% 6.168%); }
        .section-promo-banner .promo-banner::before {
          display: none; } }
    .section-promo-banner .promo-banner .promo-banner__img {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: var(--color-light); }
      .section-promo-banner .promo-banner .promo-banner__img picture, .section-promo-banner .promo-banner .promo-banner__img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
  .section-promo-banner .promo-banner__content {
    position: relative; }
    @media (max-width: 767.98px) {
      .section-promo-banner .promo-banner__content {
        width: 100%; } }
  .section-promo-banner .promo-banner__title {
    color: var(--white-color);
    font-family: "Tektur", sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 42px;
    text-transform: uppercase;
    margin-bottom: 10px; }
    @media (max-width: 767.98px) {
      .section-promo-banner .promo-banner__title {
        font-size: 22px;
        line-height: 110%; } }
  .section-promo-banner .promo-banner__subtitle {
    color: var(--color-accent);
    font-family: "Tektur", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis;
    margin-bottom: 10px; }
    @media (max-width: 767.98px) {
      .section-promo-banner .promo-banner__subtitle {
        font-size: 16px;
        line-height: 110%; } }
  .section-promo-banner .promo-banner__text {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis; }
    @media (max-width: 767.98px) {
      .section-promo-banner .promo-banner__text {
        font-size: 14px;
        line-height: 140%; } }
  .section-promo-banner .btn {
    margin-top: 20px; }
    @media (max-width: 767.98px) {
      .section-promo-banner .btn {
        margin-top: 18px; } }
    @media (max-width: 575.98px) {
      .section-promo-banner .btn {
        width: 100%; } }
  .section-promo-banner .promo-banner__start {
    position: absolute;
    right: 44px;
    top: 27px;
    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;
    text-align: center;
    width: 110px;
    height: 110px;
    -webkit-transform: rotate(12.535deg);
        -ms-transform: rotate(12.535deg);
            transform: rotate(12.535deg);
    border-radius: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFD400));
    background: linear-gradient(180deg, #FFFFFF 0%, #FFD400 100%);
    z-index: 1; }
    @media (max-width: 767.98px) {
      .section-promo-banner .promo-banner__start {
        width: 90px;
        height: 90px; } }
    @media (max-width: 575.98px) {
      .section-promo-banner .promo-banner__start {
        right: 22px;
        top: 47%; } }
    .section-promo-banner .promo-banner__start::before {
      content: '';
      position: absolute;
      background-color: var(--color-primary);
      border-radius: 100%;
      inset: 3px; }
    .section-promo-banner .promo-banner__start .promo-banner__start-label {
      position: relative;
      color: var(--white-color);
      font-family: "Tektur", sans-serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 28px;
      text-transform: uppercase; }
      @media (max-width: 767.98px) {
        .section-promo-banner .promo-banner__start .promo-banner__start-label {
          font-size: 18px;
          line-height: 110%; } }
    .section-promo-banner .promo-banner__start .promo-banner__start-date {
      position: relative;
      color: var(--color-accent);
      font-family: "Tektur", sans-serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 28px;
      text-transform: uppercase; }
      @media (max-width: 767.98px) {
        .section-promo-banner .promo-banner__start .promo-banner__start-date {
          font-size: 18px;
          line-height: 110%; } }

.section-promo-banner-branches .promo-banner__title {
  color: var(--color-dark); }

.section-promo-banner-branches .promo-banner__text {
  color: var(--color-dark); }

.section-branch-location {
  margin-top: 0; }
  .section-branch-location .branch-location__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 49% 1fr;
    grid-template-columns: 49% 1fr; }
    @media (max-width: 991.98px) {
      .section-branch-location .branch-location__inner {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%; } }
  .section-branch-location .branch-location__panel {
    padding: 54px 26px 40px;
    background-color: var(--color-primary);
    clip-path: polygon(4.042% 0%, 0% 8.125%, 0% 100%, 100% 100%, 100% 0%, 4.042% 0%); }
    @media (max-width: 767.98px) {
      .section-branch-location .branch-location__panel {
        padding: 20px 14px; } }
    .section-branch-location .branch-location__panel .branch-location__title {
      color: var(--white-color);
      font-family: "Tektur", sans-serif;
      font-size: 32px;
      font-weight: 600;
      line-height: 32px;
      text-transform: uppercase;
      margin-bottom: 24px; }
      @media (max-width: 1199.98px) {
        .section-branch-location .branch-location__panel .branch-location__title {
          font-size: 26px;
          line-height: 28px; } }
      @media (max-width: 767.98px) {
        .section-branch-location .branch-location__panel .branch-location__title {
          font-size: 22px;
          line-height: 110%;
          margin-bottom: 0; } }
    .section-branch-location .branch-location__panel .branch-location__meta {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 12px;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 34px; }
      @media (max-width: 1199.98px) {
        .section-branch-location .branch-location__panel .branch-location__meta {
          padding-bottom: 24px; } }
      @media (max-width: 767.98px) {
        .section-branch-location .branch-location__panel .branch-location__meta {
          gap: 8px;
          padding: 12px 0; } }
    .section-branch-location .branch-location__panel .branch-location__city {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 4px; }
      .section-branch-location .branch-location__panel .branch-location__city .ic {
        color: var(--color-accent);
        width: 16px;
        height: 16px; }
        @media (max-width: 767.98px) {
          .section-branch-location .branch-location__panel .branch-location__city .ic {
            width: 14px;
            height: 14px; } }
      .section-branch-location .branch-location__panel .branch-location__city .branch-location__city-name {
        color: var(--white-color);
        font-size: 20px;
        font-weight: 600;
        line-height: 24px; }
        @media (max-width: 767.98px) {
          .section-branch-location .branch-location__panel .branch-location__city .branch-location__city-name {
            font-size: 14px;
            line-height: 120%; } }
    .section-branch-location .branch-location__panel .branch-location__metro {
      color: var(--white-color);
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.08);
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      padding: 4px 14px; }
      @media (max-width: 767.98px) {
        .section-branch-location .branch-location__panel .branch-location__metro {
          font-size: 14px;
          line-height: 120%;
          padding: 2px 10px; } }
    .section-branch-location .branch-location__panel .branch-location__phones {
      padding: 34px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
      @media (max-width: 1199.98px) {
        .section-branch-location .branch-location__panel .branch-location__phones {
          padding: 24px 0; } }
      @media (max-width: 767.98px) {
        .section-branch-location .branch-location__panel .branch-location__phones {
          padding: 12px 0; } }
      .section-branch-location .branch-location__panel .branch-location__phones .branch-location__phones-title {
        color: var(--white-color);
        font-size: 14px;
        font-weight: 500;
        line-height: 18px;
        text-transform: uppercase;
        margin-bottom: 8px; }
        @media (max-width: 767.98px) {
          .section-branch-location .branch-location__panel .branch-location__phones .branch-location__phones-title {
            display: none; } }
      .section-branch-location .branch-location__panel .branch-location__phones .branch-location__phones-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 14px; }
        .section-branch-location .branch-location__panel .branch-location__phones .branch-location__phones-list .branch-location__phone {
          color: var(--white-color);
          font-size: 20px;
          font-weight: 600;
          line-height: 24px; }
          @media (max-width: 767.98px) {
            .section-branch-location .branch-location__panel .branch-location__phones .branch-location__phones-list .branch-location__phone {
              font-size: 14px;
              line-height: 120%; } }
    .section-branch-location .branch-location__panel .btn-main {
      margin-top: 34px; }
      @media (max-width: 1199.98px) {
        .section-branch-location .branch-location__panel .btn-main {
          margin-top: 24px; } }
      @media (max-width: 991.98px) {
        .section-branch-location .branch-location__panel .btn-main {
          margin-top: 18px auto 0; } }
      @media (max-width: 575.98px) {
        .section-branch-location .branch-location__panel .btn-main {
          width: 100%; } }
  .section-branch-location .branch-location__map iframe {
    min-height: 300px; }
    @media (max-width: 767.98px) {
      .section-branch-location .branch-location__map iframe {
        min-height: 220px; } }
  .section-branch-location .branch-location__inner .branch-location__panel {
    opacity: 0; }
  .section-branch-location .branch-location__inner .branch-location__map {
    opacity: 0; }
  .section-branch-location .branch-location__inner .branch-location__meta > div,
  .section-branch-location .branch-location__inner .branch-location__phone,
  .section-branch-location .branch-location__inner .branch-location__phones-title {
    opacity: 0; }

.section-related-branches {
  overflow: hidden; }
  .section-related-branches .map-popup .map-popup__info {
    margin-top: 15px; }
  @media (pointer: fine) {
    .section-related-branches .map-popup:hover .map-popup__inner {
      background-color: var(--color-primary); }
    .section-related-branches .map-popup:hover .map-popup__city,
    .section-related-branches .map-popup:hover .map-popup__link,
    .section-related-branches .map-popup:hover .map-popup__address {
      color: var(--white-color); }
    .section-related-branches .map-popup:hover .map-popup__metro {
      color: var(--white-color);
      background: rgba(255, 255, 255, 0.12); }
    .section-related-branches .map-popup:hover .map-popup__links,
    .section-related-branches .map-popup:hover .map-popup__phones {
      border-top: 1px solid rgba(255, 255, 255, 0.12); }
      .section-related-branches .map-popup:hover .map-popup__links .map-popup__phones-label,
      .section-related-branches .map-popup:hover .map-popup__links .map-popup__phone-link,
      .section-related-branches .map-popup:hover .map-popup__phones .map-popup__phones-label,
      .section-related-branches .map-popup:hover .map-popup__phones .map-popup__phone-link {
        color: var(--white-color); }
    .section-related-branches .map-popup:hover .btn {
      color: var(--white-color);
      border: 1px solid transparent; } }
  @media (pointer: fine) {
    .section-related-branches .map-popup .map-popup__link:hover {
      color: var(--color-accent); } }
  @media (pointer: fine) {
    .section-related-branches .map-popup .btn:hover {
      color: var(--color-dark); } }
  .section-related-branches .bottom-actions {
    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-top: 30px; }
    @media (max-width: 767.98px) {
      .section-related-branches .bottom-actions {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        gap: 20px;
        margin-top: 20px; }
        .section-related-branches .bottom-actions .btn {
          margin: 0 auto; } }
    .section-related-branches .bottom-actions .carousel-nav {
      margin: 0; }

@media (max-width: 767.98px) {
  .section-faq .title-wrap {
    -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; } }

.section-faq .title-wrap .section-subtitle {
  margin-top: 0;
  width: 32%;
  line-height: 125%; }
  @media (max-width: 991.98px) {
    .section-faq .title-wrap .section-subtitle {
      width: 50%; } }
  @media (max-width: 767.98px) {
    .section-faq .title-wrap .section-subtitle {
      display: block;
      width: 100%; } }

.section-faq .block-cta-box {
  position: sticky;
  top: 30px; }

.section-faq .faq-item {
  padding: 24px;
  background-color: var(--color-light);
  clip-path: polygon(100% 22.735%, 100% 100%, 1.796% 100%, 0% 77.544%, 0% 0%, 98.181% 0%, 100% 22.735%); }
  @media (pointer: fine) {
    .section-faq .faq-item:hover .arrow-wrap .ic,
    .section-faq .faq-item:hover .ic-question,
    .section-faq .faq-item:hover .faq-question {
      color: var(--color-accent); } }
  @media (max-width: 1199.98px) {
    .section-faq .faq-item {
      padding: 20px; } }
  @media (max-width: 767.98px) {
    .section-faq .faq-item {
      padding: 14px; } }
  .section-faq .faq-item:not(:last-child) {
    margin-bottom: 8px; }
    @media (max-width: 767.98px) {
      .section-faq .faq-item:not(:last-child) {
        margin-bottom: 6px; } }
  .section-faq .faq-item.active {
    clip-path: polygon(100% 22.735%, 100% 100%, 2.796% 100%, 0% 93.544%, 0% 0%, 97.181% 0%, 100% 6.735%); }
    .section-faq .faq-item.active .arrow-wrap .ic {
      color: var(--color-accent);
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  .section-faq .faq-item .faq-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    cursor: pointer; }
    @media (max-width: 767.98px) {
      .section-faq .faq-item .faq-heading {
        gap: 10px; } }
  .section-faq .faq-item .ic-question {
    color: var(--color-primary);
    width: 24px;
    min-width: 24px;
    height: 24px;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .section-faq .faq-item .ic-question {
        width: 18px;
        min-width: 18px;
        height: 18px; } }
  .section-faq .faq-item .faq-question {
    color: #000;
    font-family: "Tektur", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .section-faq .faq-item .faq-question {
        font-size: 14px;
        line-height: 120%; } }
  .section-faq .faq-item .arrow-wrap {
    margin-left: auto; }
    .section-faq .faq-item .arrow-wrap .ic {
      color: var(--color-dark);
      width: 16px;
      min-width: 16px;
      height: 16px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 767.98px) {
        .section-faq .faq-item .arrow-wrap .ic {
          width: 14px;
          min-width: 14px;
          height: 14px; } }
  .section-faq .faq-item .faq-answer {
    display: none;
    margin-top: 16px;
    margin-left: 40px; }
    @media (max-width: 767.98px) {
      .section-faq .faq-item .faq-answer {
        margin-top: 10px;
        margin-left: 0; } }

.section-error {
  margin-top: 0; }
  @media (max-width: 767.98px) {
    .section-error {
      margin-top: 57px; } }
  .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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px; }
    @media (max-width: 767.98px) {
      .section-error .section-error-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 0;
        text-align: center; } }
  .section-error .section-error-content {
    max-width: 445px;
    width: 100%; }
    @media (max-width: 767.98px) {
      .section-error .section-error-content {
        max-width: 100%;
        margin-bottom: 34px; } }
  .section-error .section-error-title {
    color: var(--color-primary);
    font-family: "Tektur", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
    margin-bottom: 24px; }
    @media (max-width: 767.98px) {
      .section-error .section-error-title {
        font-size: 32px;
        line-height: 90%;
        margin-bottom: 14px; } }
  .section-error .section-error-message {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .section-error .section-error-message {
        font-size: 22px;
        line-height: 110%; } }
  .section-error .section-error-text {
    color: var(--color-gray);
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 14px; }
    @media (max-width: 767.98px) {
      .section-error .section-error-text {
        font-size: 14px;
        line-height: 140%; } }
  .section-error .btn-border {
    margin-top: 34px; }
    @media (max-width: 767.98px) {
      .section-error .btn-border {
        margin: 14px auto 0; } }

.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; }

.page-post-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 348px;
  grid-template-columns: 1fr 348px;
  gap: 110px; }
  @media (max-width: 1199.98px) {
    .page-post-grid {
      gap: 32px; } }
  @media (max-width: 991.98px) {
    .page-post-grid {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 0; } }

.article-section-youtube .preview {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  margin-bottom: 24px; }
  .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: 56px;
    height: 56px; }
    @media (max-width: 767.98px) {
      .article-section-youtube .preview .play-btn {
        width: 40px;
        height: 40px; } }

.article-header {
  margin: 30px 0; }
  .article-header .author-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 10px; }
    .article-header .author-wrap .author-img {
      border: 1px solid rgba(0, 0, 0, 0.3);
      border-radius: 999px;
      overflow: hidden; }
    .article-header .author-wrap .author-position {
      font-size: 0.875em;
      margin-bottom: 4px; }
  .article-header .article-rubrics-wrap {
    margin-bottom: 10px; }

.article__aside-sticky {
  position: sticky;
  top: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content; }
  @media (max-width: 991.98px) {
    .article__aside-sticky {
      display: none; } }
  .article__aside-sticky .article-aside-nav {
    padding: 24px 20px;
    background: var(--color-light); }
    .article__aside-sticky .article-aside-nav .article-aside-nav__title {
      color: var(--color-primary);
      font-family: "Tektur", sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: 24px;
      text-transform: uppercase; }
    .article__aside-sticky .article-aside-nav .article-aside-nav__item {
      padding: 24px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
      .article__aside-sticky .article-aside-nav .article-aside-nav__item:last-child {
        border-bottom: none; }
      .article__aside-sticky .article-aside-nav .article-aside-nav__item .article-aside-nav__date {
        color: var(--color-gray);
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        margin-bottom: 8px; }
      .article__aside-sticky .article-aside-nav .article-aside-nav__item .article-aside-nav__name {
        color: var(--color-dark);
        font-family: "Tektur", sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        text-transform: uppercase;
        margin-bottom: 14px;
        overflow: hidden;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        text-overflow: ellipsis; }
      .article__aside-sticky .article-aside-nav .article-aside-nav__item .article-aside-nav__link {
        color: var(--color-dark);
        font-size: 14px;
        font-weight: 500;
        line-height: 18px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 8px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        -webkit-transition: .3s ease;
        transition: .3s ease; }
        @media (pointer: fine) {
          .article__aside-sticky .article-aside-nav .article-aside-nav__item .article-aside-nav__link:hover {
            color: var(--color-accent); } }
        .article__aside-sticky .article-aside-nav .article-aside-nav__item .article-aside-nav__link .ic {
          color: var(--color-accent);
          width: 16px;
          height: 16px; }
  .article__aside-sticky .actions-wrapp {
    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: 24px; }
    .article__aside-sticky .actions-wrapp .btn {
      width: 100%; }

.articles-latest {
  overflow: hidden; }
  .articles-latest .swiper-slide {
    height: auto !important; }
    .articles-latest .swiper-slide .article-card {
      height: 100%; }
      .articles-latest .swiper-slide .article-card .article-content {
        height: 100%; }
  .articles-latest .articles-bottom-actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 1199.98px) {
      .articles-latest .articles-bottom-actions {
        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-top: 24px; } }
  @media (max-width: 1199.98px) and (max-width: 767.98px) {
    .articles-latest .articles-bottom-actions {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 20px;
      margin-top: 20px; } }
    @media (max-width: 1199.98px) {
        .articles-latest .articles-bottom-actions .btn-border {
          margin: 0; } }
  .articles-latest .carousel-nav {
    margin: 0;
    display: none; }
    @media (max-width: 1199.98px) {
      .articles-latest .carousel-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .articles-latest .btn-border {
    margin: 24px auto 0; }
    @media (max-width: 767.98px) {
      .articles-latest .btn-border {
        margin: 20px auto 0; } }

.page-post-video .article__content,
.page-post-text .article__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 42.5% 1fr;
  grid-template-columns: 42.5% 1fr;
  gap: 30px;
  margin-bottom: 82px; }
  @media (max-width: 991.98px) {
    .page-post-video .article__content,
    .page-post-text .article__content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      gap: 0;
      margin-bottom: 40px; } }
  @media (max-width: 767.98px) {
    .page-post-video .article__content,
    .page-post-text .article__content {
      margin-bottom: 20px; } }
  @media (max-width: 991.98px) {
    .page-post-video .article__content .article__image-wrap,
    .page-post-text .article__content .article__image-wrap {
      margin-top: 20px; } }
  .page-post-video .article__content .article__image-wrap picture,
  .page-post-text .article__content .article__image-wrap picture {
    height: 100%; }
  .page-post-video .article__content .article__image,
  .page-post-text .article__content .article__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    clip-path: polygon(0% 0%, 92.301% 0%, 100% 13.623%, 100% 100%, 7.612% 100%, 0% 87.971%, 0% 0%); }
  .page-post-video .article__content .article__header .section-title,
  .page-post-text .article__content .article__header .section-title {
    color: var(--color-dark); }
  .page-post-video .article__content .article__rubric-badge,
  .page-post-text .article__content .article__rubric-badge {
    display: block;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--color-accent);
    margin-bottom: 14px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .page-post-video .article__content .article__rubric-badge:hover,
      .page-post-text .article__content .article__rubric-badge:hover {
        -webkit-transform: translate(1.1);
            -ms-transform: translate(1.1);
                transform: translate(1.1); } }
    @media (max-width: 767.98px) {
      .page-post-video .article__content .article__rubric-badge,
      .page-post-text .article__content .article__rubric-badge {
        font-size: 12px;
        font-weight: 600;
        line-height: 120%;
        padding: 4px 12px;
        margin-bottom: 20px; } }
  .page-post-video .article__content .article__date,
  .page-post-text .article__content .article__date {
    display: block;
    color: var(--color-gray);
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 14px; }
    @media (max-width: 767.98px) {
      .page-post-video .article__content .article__date,
      .page-post-text .article__content .article__date {
        font-size: 14px;
        line-height: 120%;
        margin-top: 20px; } }

.rubrics-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px; }
  @media (max-width: 991.98px) {
    .rubrics-nav {
      gap: 8px;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      white-space: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
      margin: 0 -10px 20px;
      padding: 0 10px; } }
  .rubrics-nav .rubric {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    max-width: 218px;
    width: 100%;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .rubrics-nav .rubric:hover {
        border: 1px solid var(--color-accent); } }
    @media (max-width: 991.98px) {
      .rubrics-nav .rubric {
        font-size: 18px; } }
    @media (max-width: 767.98px) {
      .rubrics-nav .rubric {
        font-size: 16px;
        line-height: 110%;
        border-radius: 6px;
        padding: 13px 14px;
        max-width: none;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content; } }
    .rubrics-nav .rubric.active {
      border: 1px solid var(--color-accent);
      background: var(--color-accent); }

.articles-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  @media (max-width: 1199.98px) {
    .articles-grid {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 991.98px) {
    .articles-grid {
      gap: 8px; } }
  @media (max-width: 575.98px) {
    .articles-grid {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }

.article-card {
  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;
  z-index: 1;
  clip-path: polygon(100% 5.493%, 100% 100%, 5.527% 100%, 0.115% 94.507%, 0.115% 0%, 100% 0%, 100% 5.493%); }
  @media (pointer: fine) {
    .article-card:hover .article-img img {
      -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
              transform: scale(1.2); } }
  .article-card .article-img-wrapp {
    position: relative; }
  .article-card .article-img {
    position: relative;
    overflow: hidden;
    display: block; }
    .article-card .article-img img {
      width: 100%;
      height: 250px;
      -o-object-fit: cover;
         object-fit: cover;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 575.98px) {
        .article-card .article-img img {
          height: 209px; } }
  .article-card .article-content {
    padding: 20px 24px 24px;
    background-color: var(--color-light); }
    @media (max-width: 767.98px) {
      .article-card .article-content {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 10px 0;
        padding: 20px 14px 14px; } }
  .article-card .article-rubric-badge {
    position: absolute;
    bottom: -12px;
    left: 24px;
    display: block;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 100px;
    background-color: var(--color-accent);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .article-card .article-rubric-badge:hover {
        background-color: var(--white-color); } }
    @media (max-width: 767.98px) {
      .article-card .article-rubric-badge {
        bottom: -11px;
        left: 14px;
        height: 22px;
        font-size: 12px;
        line-height: 22px; } }
  .article-card .article-title {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 8px;
    height: 48px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .article-card .article-title {
        -ms-grid-row: 1;
        grid-row: 1;
        grid-column: 1/-1;
        font-size: 16px;
        line-height: 110%;
        margin: 0;
        height: 35px; } }
    @media (max-width: 575.98px) {
      .article-card .article-title {
        height: auto; } }
  .article-card .article-date {
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .article-card .article-date {
        -ms-grid-row: 2;
        grid-row: 2;
        font-size: 12px;
        line-height: 120%; } }
  .article-card .article-text-wrapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 8px;
    margin-top: 12px; }
    @media (max-width: 767.98px) {
      .article-card .article-text-wrapp {
        -ms-grid-row: 2;
        grid-row: 2;
        margin: 0;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
  .article-card .article-text {
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (max-width: 767.98px) {
      .article-card .article-text {
        display: none; } }
  .article-card .arrow-wrapp {
    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: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent);
    border: 1px solid var(--color-accent);
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .article-card .arrow-wrapp:hover {
        background-color: transparent; }
        .article-card .arrow-wrapp:hover .ic {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); } }
    @media (max-width: 767.98px) {
      .article-card .arrow-wrapp {
        width: 36px;
        min-width: 36px;
        height: 36px; } }
    .article-card .arrow-wrapp .ic {
      color: var(--color-dark);
      width: 16px;
      height: 16px;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
      @media (max-width: 767.98px) {
        .article-card .arrow-wrapp .ic {
          width: 12px;
          height: 12px; } }

.article-card.article-card-video .article-img {
  position: relative; }
  .article-card.article-card-video .article-img:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: 56px;
    height: 56px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='57' height='56' viewBox='0 0 57 56' fill='none'%3E%3Ccircle cx='28.9883' cy='28' r='28' fill='%23FFD400'/%3E%3Cpath d='M32.9883 28.5L24.9883 22V35L32.9883 28.5Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain !important;
    z-index: 2; }
    @media (max-width: 767.98px) {
      .article-card.article-card-video .article-img:before {
        width: 40px;
        height: 40px; } }

.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-dark);
    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-dark); }
    .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-dark);
  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-dark); }
  .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-dark);
    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-dark);
    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-dark);
      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-dark);
      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-dark);
      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%;
        background: var(--color-dark);
        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-dark); }

.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; }

@media (max-width: 767.98px) {
  .page-main {
    padding-bottom: 0 !important; } }

body:has(.page-main) #page-header,
body:has(.page-about) #page-header,
body:has(.page-product) #page-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: transparent;
  -webkit-transition: .4s ease;
  transition: .4s ease; }
  @media (max-width: 991.98px) {
    body:has(.page-main) #page-header.sticky-header,
    body:has(.page-about) #page-header.sticky-header,
    body:has(.page-product) #page-header.sticky-header {
      position: fixed;
      background-color: var(--color-primary); } }

@media (max-width: 991.98px) {
  body:has(.page-main) .section-map-interaction .section-header .title-sm {
    display: none; } }

.page-services .section-choose-category .section-header {
  padding-top: 50px; }
  @media (max-width: 767.98px) {
    .page-services .section-choose-category .section-header {
      padding-top: 40px; } }

body:has(.page-product) .btn-callback-sticky {
  bottom: 80px; }

.page-branch .section-branch-location:has(+ .section-choose-category) {
  margin-bottom: 0; }

.page-regular .page-content {
  margin-bottom: 82px; }
  @media (max-width: 991.98px) {
    .page-regular .page-content {
      margin-bottom: 70px; } }
  @media (max-width: 767.98px) {
    .page-regular .page-content {
      margin-bottom: 40px; } }
  .page-regular .page-content:has(+ .section-faq) {
    margin-bottom: 0; }

.page-reviews .reviews {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; }
  @media (max-width: 1199.98px) {
    .page-reviews .reviews {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 991.98px) {
    .page-reviews .reviews {
      gap: 12px; } }
  @media (max-width: 767.98px) {
    .page-reviews .reviews {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 8px; } }
  @media (max-width: 575.98px) {
    .page-reviews .reviews .review-item {
      height: 250px; } }
  @media (max-width: 767.98px) {
    .page-reviews .reviews .review-item .review-item-link {
      left: 10px;
      bottom: 10px; } }
  @media (max-width: 767.98px) {
    .page-reviews .reviews .review-item .name {
      font-size: 12px;
      padding: 4px 6px 4px 24px;
      margin-left: -20px; } }

.page-branches .view-toggle__tabs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px; }
  @media (max-width: 767.98px) {
    .page-branches .view-toggle__tabs {
      gap: 8px;
      margin-bottom: 20px; } }
  .page-branches .view-toggle__tabs .view-toggle__btn {
    color: var(--color-dark);
    font-family: "Tektur", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    outline: none;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    -webkit-transition: .3s ease;
    transition: .3s ease; }
    @media (pointer: fine) {
      .page-branches .view-toggle__tabs .view-toggle__btn:hover:not(.is-active) {
        -webkit-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
                transform: translateY(-2px);
        -webkit-box-shadow: 0 4px 12px rgba(255, 212, 0, 0.6) !important;
                box-shadow: 0 4px 12px rgba(255, 212, 0, 0.6) !important;
        border: 1px solid transparent; } }
    @media (max-width: 767.98px) {
      .page-branches .view-toggle__tabs .view-toggle__btn {
        font-size: 16px;
        line-height: 110%;
        border-radius: 6px;
        padding: 13px 14px; } }
    .page-branches .view-toggle__tabs .view-toggle__btn.is-active {
      background: var(--color-accent);
      border: 1px solid var(--color-accent); }

.page-branches .branch-list {
  display: none; }
  .page-branches .branch-list .branch-filters {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px; }
    @media (max-width: 767.98px) {
      .page-branches .branch-list .branch-filters {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        gap: 20px;
        margin-bottom: 20px; } }
    .page-branches .branch-list .branch-filters .branch-filters__field {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 100%; }
      .page-branches .branch-list .branch-filters .branch-filters__field .branch-filters__label {
        color: var(--color-dark);
        font-size: 14px;
        font-weight: 500;
        line-height: 18px;
        text-transform: uppercase;
        margin-bottom: 8px; }
        @media (max-width: 767.98px) {
          .page-branches .branch-list .branch-filters .branch-filters__field .branch-filters__label {
            font-size: 12px;
            line-height: 120%; } }
      .page-branches .branch-list .branch-filters .branch-filters__field .jq-selectbox.opened {
        z-index: 3 !important; }
        .page-branches .branch-list .branch-filters .branch-filters__field .jq-selectbox.opened .jq-selectbox__select {
          border: 1px solid #D9D9D9;
          border-radius: 12px 12px 0 0 !important; }
      .page-branches .branch-list .branch-filters .branch-filters__field .jq-selectbox .jq-selectbox__select {
        border: 1px solid rgba(255, 255, 255, 0.24);
        background: var(--color-light);
        padding: 5px 16px;
        border-radius: 0 !important; }
        .page-branches .branch-list .branch-filters .branch-filters__field .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text {
          color: var(--color-primary);
          font-size: 16px;
          font-weight: 400;
          line-height: 24px; }
  .page-branches .branch-list .branch-list__city {
    margin-bottom: 30px; }
  .page-branches .branch-list .branch-list__city-title {
    color: var(--color-primary);
    font-family: "Tektur", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 30px; }
    @media (max-width: 767.98px) {
      .page-branches .branch-list .branch-list__city-title {
        font-size: 22px;
        line-height: 110%;
        margin-bottom: 20px; } }
  .page-branches .branch-list .branch-list__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 16px; }
    @media (max-width: 1199.98px) {
      .page-branches .branch-list .branch-list__grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 767.98px) {
      .page-branches .branch-list .branch-list__grid {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        gap: 8px; } }
    .page-branches .branch-list .branch-list__grid .map-popup {
      position: static !important;
      display: block !important;
      z-index: unset; }
      .page-branches .branch-list .branch-list__grid .map-popup .map-popup__inner {
        position: relative;
        clip-path: none;
        overflow: hidden;
        padding: 27px 23px 32px; }
        .page-branches .branch-list .branch-list__grid .map-popup .map-popup__inner::before {
          content: '';
          width: 50px;
          height: 50px;
          background: var(--white-color);
          -webkit-transform: rotate(140deg);
              -ms-transform: rotate(140deg);
                  transform: rotate(140deg);
          position: absolute;
          right: -30px;
          top: -30px; }
        .page-branches .branch-list .branch-list__grid .map-popup .map-popup__inner::after {
          content: '';
          width: 50px;
          height: 50px;
          background: var(--white-color);
          -webkit-transform: rotate(140deg);
              -ms-transform: rotate(140deg);
                  transform: rotate(140deg);
          position: absolute;
          left: -30px;
          bottom: -30px; }
        @media (max-width: 767.98px) {
          .page-branches .branch-list .branch-list__grid .map-popup .map-popup__inner {
            padding: 20px 14px; } }
      @media (max-width: 767.98px) {
        .page-branches .branch-list .branch-list__grid .map-popup .map-popup__address {
          font-size: 14px;
          font-weight: 600;
          line-height: 120%; } }
      .page-branches .branch-list .branch-list__grid .map-popup .map-popup__phones {
        padding: 15px 0; }
        @media (max-width: 767.98px) {
          .page-branches .branch-list .branch-list__grid .map-popup .map-popup__phones {
            padding: 11px 0; } }
        @media (max-width: 767.98px) {
          .page-branches .branch-list .branch-list__grid .map-popup .map-popup__phones .map-popup__phones-label {
            display: none; } }
        @media (max-width: 767.98px) {
          .page-branches .branch-list .branch-list__grid .map-popup .map-popup__phones .map-popup__phone-link {
            font-size: 14px;
            font-weight: 600;
            line-height: 120%; } }
      .page-branches .branch-list .branch-list__grid .map-popup .map-popup__info {
        margin-top: 15px; }
      @media (max-width: 767.98px) {
        .page-branches .branch-list .branch-list__grid .map-popup .map-popup__metro,
        .page-branches .branch-list .branch-list__grid .map-popup .map-popup__city {
          font-size: 12px; } }
      @media (pointer: fine) {
        .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__inner {
          background-color: var(--color-primary); }
        .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__city,
        .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__link,
        .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__address {
          color: var(--white-color); }
        .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__metro {
          color: var(--white-color);
          background: rgba(255, 255, 255, 0.12); }
        .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__links,
        .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__phones {
          border-top: 1px solid rgba(255, 255, 255, 0.12); }
          .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__links .map-popup__phones-label,
          .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__links .map-popup__phone-link,
          .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__phones .map-popup__phones-label,
          .page-branches .branch-list .branch-list__grid .map-popup:hover .map-popup__phones .map-popup__phone-link {
            color: var(--white-color); }
        .page-branches .branch-list .branch-list__grid .map-popup:hover .btn {
          color: var(--white-color);
          border: 1px solid transparent; } }
      @media (pointer: fine) {
        .page-branches .branch-list .branch-list__grid .map-popup .map-popup__link:hover {
          color: var(--color-accent); } }
      @media (pointer: fine) {
        .page-branches .branch-list .branch-list__grid .map-popup .btn:hover {
          color: var(--color-dark); } }
