  html,
  body {
    overflow-x: clip;
  }

  .home-page {
    overflow: visible !important;
  }

  @media (max-width: 1023px) {
    .news-wrapper {
      height: auto !important;
    }

    .news-grid {
      display: grid !important;
      grid-template-columns: 1fr !important;
      grid-template-rows: none !important;
      gap: calc(20 * var(--scale)) !important;
      width: 100% !important;
    }

    .news-grid .news-card,
    .news-grid .news-card.featured,
    .news-grid .news-card.small {
      grid-column: auto !important;
      grid-row: auto !important;
      width: 100% !important;
      height: calc(496 * var(--scale)) !important;
      background: #f9f9f9 !important;
      border-radius: calc(24 * var(--scale)) !important;
      padding: calc(46 * var(--scale)) calc(42 * var(--scale)) !important;
      display: flex !important;
      flex-direction: column !important;
    }

    .news-grid .featured {
      border-radius: calc(24 * var(--scale)) !important;
    }

    .news-grid .featured > .card-bg-image {
      opacity: 0 !important;
    }

    .news-grid .featured .absolute {
      position: static !important;
      margin-top: 0 !important;
      padding-left: 0 !important;
    }

    .news-grid .featured .tag-label {
      border-color: #000 !important;
    }

    .news-grid .featured .tag-dot {
      border-color: #000 !important;
    }

    .news-grid .featured .tag-text {
      color: #000 !important;
    }

    .news-grid .featured .card-content {
      position: static !important;
      width: auto !important;
      margin-top: calc(33 * var(--scale)) !important;
    }

    .news-grid .featured .card-title,
    .news-grid .featured .card-title {
      color: #000 !important;
      font-size: calc(20 * var(--scale)) !important;
      line-height: calc(32 * var(--scale)) !important;
      font-weight: 400 !important;
    }

    .news-grid .featured .date-badge {
      position: absolute !important;
      top: auto !important;
      right: auto !important;
      bottom: calc(46 * var(--scale)) !important;
      left: calc(42 * var(--scale)) !important;
      align-items: flex-start !important;
    }


    .news-grid .featured .day {
      color: #000 !important;
      font-size: calc(60 * var(--scale)) !important;
      line-height: calc(80 * var(--scale)) !important;
    }

    .news-grid .featured .month {
      color: #000 !important;
      font-size: calc(12 * var(--scale)) !important;
      line-height: calc(18 * var(--scale)) !important;
    }
  }

  .header-wrapper {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
  }

  .header-main {
    width: 100%;
  }

  .header-content {
    width: 100%;
    max-width: none;
  }

  .menu {
    gap: calc(34 * var(--scale)) !important;
  }

  .menu-item-content {
    gap: calc(4 * var(--scale)) !important;
    white-space: nowrap;
  }





  .mobile-menu-toggle,
  .mobile-menu-panel {
    display: none;
  }

  @media (max-width: 1023px) {
    .header-wrapper {
      height: 65px;
      background: transparent;
    }

    .header-main {
      width: 100% !important;
      height: 65px;
      padding: 0 8px !important;
    }

    .header-content {
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-content .logo {
      width: 165px !important;
      height: 24px !important;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .header-content .logo img {
      width: 165px !important;
      height: auto !important;
      object-fit: contain;
    }

    .header-content .menu {
      display: none !important;
    }

    .submenu-dropdown {
      display: none !important;
    }

    .lang-switcher {
      display: flex !important;
      align-items: center;
      gap: 12px !important;
      margin-left: auto;
      color: #fff;
    }

    .lang-switcher .lang {
      font-size: 12px !important;
      line-height: 20px !important;
      color: #8f8f8f !important;
    }

    .lang-switcher .lang.active {
      color: #fff !important;
    }

    .lang-switcher .divider1 {
      display: block !important;
      width: 1px !important;
      height: 10px !important;
      background: rgba(255,255,255,.45) !important;
    }

    .mobile-menu-toggle {
      display: inline-flex;
      width: 30px;
      height: 24px;
      margin-left: 0;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      border-radius: 2px;
      background: #fff;
    }

    .mobile-menu-toggle span:nth-child(1) {
      width: 6px;
      align-self: flex-start;
    }

    .mobile-menu-toggle span:nth-child(2) {
      width: 24px;
    }

    .mobile-menu-toggle span:nth-child(3) {
      width: 24px;
    }

    .mobile-menu-toggle span:nth-child(4) {
      width: 6px;
      align-self: flex-start;
    }

    .mobile-menu-panel {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      min-height: 408px;
      background: #00110c;
      z-index: 9999;
      padding: 16px 16px 0;
      color: #fff;
      transform: translateY(-110%);
      opacity: 0;
      pointer-events: none;
      transition: transform .34s ease, opacity .28s ease;
      display: block;
    }

    .mobile-menu-panel.is-open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu-close {
      width: 100%;
      height: 17px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
      content: "";
      position: absolute;
      width: 20px;
      height: 2px;
      border-radius: 2px;
      background: #fff;
    }

    .mobile-menu-close::before {

      transform: rotate(45deg);
    }

    .mobile-menu-close::after {
      transform: rotate(-45deg);
    }

    .mobile-menu-list {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      color: #fff;
      font-size: 14px;
      line-height: 18px;
    }

    .mobile-menu-row {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #333;
      color: #fff;
      cursor: pointer;
    }

    .mobile-menu-row span {
      color: #fff;
      font-size: 14px;
    }

    .mobile-menu-row img {
      width: 14px;
      height: 14px;
      transition: transform .25s ease;
    }

    .mobile-subitems {
      display: none;
      padding: 6px 0 10px 14px;
      border-bottom: 1px solid #333;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 28px;
    }

    .mobile-menu-block.is-expanded .mobile-subitems {
      display: block;
    }

    .mobile-menu-block.is-expanded .mobile-menu-row img {
      transform: rotate(180deg);
    }

    .banner-content {
      padding-left: 13px !important;
      padding-right: 13px !important;
    }

    .about-section {
      width: 100% !important;
      height: auto !important;
      min-height: 1419px !important;
      overflow: hidden !important;
      background: #fff !important;
    }

    .about-wrapper {
      width: 100% !important;
      min-height: 1419px !important;
      padding: 91px 13px 116px !important;
      display: flex !important;
      flex-direction: column !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
    }

    .about-wrapper .top-row {
      display: block !important;
      width: 100% !important;
    }


    .about-wrapper .top-info {
      width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
    }

    .about-wrapper .tag-label {
      margin: 0 !important;
      width: fit-content !important;
    }

    .about-wrapper .section-title {
      width: 100% !important;
      margin-top: 33px !important;
      margin-bottom: 27px !important;
      color: #000 !important;
      font-size: 39px !important;
      line-height: 52px !important;
      font-weight: 500 !important;
      white-space: normal !important;
    }

    .about-wrapper .description-main {
      width: 100% !important;
      max-width: 364px !important;
      height: auto !important;
      color: #4d4d4d !important;
      font-size: 26px !important;
      line-height: 40.625px !important;
      font-weight: 500 !important;
      white-space: normal !important;
      overflow-wrap: break-word !important;
    }

    .about-wrapper .since-badge {
      display: block !important;
      top: 760px !important;
      right: 13px !important;
      color: #000 !important;
      font-size: 16px !important;
      line-height: 22px !important;
      z-index: 1 !important;
    }

    .about-wrapper .since-year {
      display: block !important;
      top: 792px !important;
      left: 13px !important;
      right: auto !important;
      width: calc(100vw - 26px) !important;
      color: #f9f9f9 !important;
      font-size: clamp(112px, 34vw, 150px) !important;
      line-height: .72 !important;
      opacity: 1 !important;
      transform: none !important;
      z-index: 0 !important;
      pointer-events: none !important;
      white-space: nowrap !important;
      overflow: hidden !important;
    }

    .about-wrapper .bottom-row {
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 0 !important;
      margin-top: 44px !important;
      width: 100% !important;
    }

    .about-wrapper .bottom-info {
      width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
    }

    .about-wrapper .description-sub {
      width: 100% !important;
      max-width: 364px !important;
      color: #4d4d4d !important;
      font-size: 13px !important;
      line-height: 22.75px !important;
      font-weight: 400 !important;
    }

    .about-wrapper .action-button {
      width: 115px !important;
      height: 39px !important;
      margin-top: 21px !important;
      padding: 8px 7px 8px 26px !important;
      border-radius: 24px !important;
      position: relative !important;
      z-index: 2 !important;
    }

    .about-wrapper .action-button span {
      font-size: 13px !important;
      line-height: 19.5px !important;
      white-space: nowrap !important;
    }

    .about-wrapper .btn-circle {
      width: 26px !important;
      height: 26px !important;
    }

    .about-wrapper .right-side {
      width: 100% !important;
      height: 194px !important;
      margin-top: 196px !important;
      flex-shrink: 0 !important;
      position: relative !important;
      z-index: 1 !important;
    }

    .about-wrapper .about-image {
      width: 100% !important;
      height: 194px !important;
      display: block !important;
      object-fit: cover !important;
      border-radius: 0 !important;
    }

    .about-wrapper .stats-section {
      width: 100% !important;
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      grid-template-rows: repeat(2, auto) !important;
      gap: 26px 0 !important;
      padding-top: 0 !important;
      margin-top: 34px !important;
      position: relative !important;
      z-index: 2 !important;
    }

    .about-wrapper .stat-item-wrapper {
      min-width: 0 !important;
      display: flex !important;
      justify-content: center !important;
    }

    .about-wrapper .stat-item {
      width: 100% !important;
      align-items: flex-start !important;
      gap: 6px !important;
    }

    .about-wrapper .stat-number {
      width: 100% !important;
      color: #00523a !important;
      font-size: 48.75px !important;
      line-height: 65px !important;
      font-weight: 500 !important;
    }

    .about-wrapper .stat-label {
      width: 100% !important;
      margin-top: 0 !important;
      font-size: 13px !important;
      line-height: 22.75px !important;
    }

    .about-wrapper .stat-divider {
      display: none !important;
    }
  }

  @media (max-width: 768px) {
    .quality-section .content-card {
      position: relative !important;
      overflow: hidden !important;
      padding-bottom: 56px !important;
    }

    .quality-section .left-nav {
      position: absolute !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      z-index: 20 !important;
      display: flex !important;
      flex-direction: row !important;
      width: 100% !important;
      height: 56px !important;
      border-radius: 0 0 16px 16px !important;
      overflow: hidden !important;
      background: transparent !important;
      box-shadow: none !important;
    }

    .quality-section .left-nav .nav-btn {
      flex: 1 1 50% !important;
      width: 50% !important;
      height: 56px !important;
      min-width: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      transition: background-color 0.2s ease, opacity 0.2s ease !important;
    }

    .quality-section .left-nav .nav-btn.up {
      border-right: 1px solid rgba(255, 255, 255, 0.36) !important;
      background: #afc8c0 !important;
    }

    .quality-section .left-nav .nav-btn.down {
      background: #00523a !important;
    }

    .quality-section .left-nav .nav-btn img {
      width: 20px !important;
      height: 20px !important;
      object-fit: contain !important;
      transform: rotate(180deg) !important;
    }
  }