@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto/RobotoCondensed-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto/RobotoCondensed-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CyrillicGoth";
  src: url("../fonts/cyrillicgoth/CyrillicGoth.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Casanova";
  src: url("../fonts/casanova/Casanova.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --light-background: #e0e5ec;
  --light-shadow-dark: #bebebe;
  --light-shadow-light: #ffffff;
  --dark-background: #333333;
  --dark-shadow-dark: #2b2b2b;
  --dark-shadow-light: #3b3b3b;
  --dark-shadow-middle: #666666;
  --text-color-light: #333333;
  --text-color-dark: #e0e5ec;
  --accent-color-light: #fffd73;
  --accent-color-dark: #b38b29;
  --icon-color-light: #333333;
  --icon-color-dark: #e0e5ec;
  --icon-color-hover: #fffd73;
  --color-accent:#fdb813;
  --color-accent-rgb: 253, 184, 19;
  --color-accent-link: #fffd73;
  --color-warning: #721c24;
  --color-dark: #000000;
  --gradient: linear-gradient(
    45deg,
    var(--color-accent) 64%,
    var(--accent-color-light) 136%
  );
  --border: 0.0625rem solid var(--light-shadow-dark);
  --shadow: 0 0 0 0.1875rem var(--dark-shadow-light);
  --font-family-base: "Roboto", sans-serif;
  --font-family-accent: "Roboto Condensed", sans-serif;
  --container-width: 120rem;
  --container-padding-x: 4rem;
  --section-padding: 4rem;
  --transition-duration: 0.3s;
  --100vw: calc(100vw - var(--scrollbar-width));
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 87.5rem;
    --container-padding-x: 3rem;
    --section-padding: 3rem;
  }
}
@media (width <= 63.99875rem) {
  :root {
    --container-padding-x: 1rem;
    --section-padding: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  :root {
    --container-padding-x: 0.25rem;
    --section-padding: 0.5rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-family: var(--font-family-base);
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  flex-direction: column;
}

main {
  flex-grow: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-family-base);
  text-wrap: balance;
  font-weight: 600;
}
h1--accent,
.h1--accent,
h2--accent,
.h2--accent,
h3--accent,
.h3--accent,
h4--accent,
.h4--accent,
h5--accent,
.h5--accent,
h6--accent,
.h6--accent {
  color: var(--color-accent);
}
h1--upcase,
.h1--upcase,
h2--upcase,
.h2--upcase,
h3--upcase,
.h3--upcase,
h4--upcase,
.h4--upcase,
h5--upcase,
.h5--upcase,
h6--upcase,
.h6--upcase {
  text-transform: uppercase;
}
h1--center,
.h1--center,
h2--center,
.h2--center,
h3--center,
.h3--center,
h4--center,
.h4--center,
h5--center,
.h5--center,
h6--center,
.h6--center {
  text-align: center;
}

h1,
.h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 4.5rem);
  line-height: 1.05;
}

h2,
.h2 {
  font-size: clamp(1.75rem, 1.4rem + 1.75vw, 3.5rem);
  line-height: 1.3;
}

h3,
.h3 {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
}

p,
.p {
  --paragraphMarginBottom: 1.5rem;
  text-wrap: pretty;
}
p--center,
.p--center {
  text-align: center;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-accent);
  }
}
a[class] {
  text-decoration: none;
}

.wrapper--center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  content-visibility: auto;
  border-radius: 1rem;
}

.title-page {
  color: var(--color-accent);
  font-family: "CyrillicGoth", "Lucida Sans", "Trebuchet MS", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .title-page {
    line-height: 1.2;
  }
}

.slogan-page {
  font-family: var(--font-family-accent);
  font-size: clamp(1.125rem, 0.9rem + 1.125vw, 2.25rem);
  font-style: italic;
  font-weight: 600;
  text-align: center;
  padding-top: 1.25rem;
}

.shadow__text {
  text-shadow: 0.0625rem 0.0625rem 0.125rem var(--dark-shadow-middle);
}

.block-links {
  margin-block: 3.75rem;
}
.block-links__item {
  font-family: var(--font-family-accent);
  font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
  font-style: italic;
  font-weight: 600;
}
.block-links__line {
  width: 90%;
}

::-webkit-scrollbar {
  width: 0.625rem;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
  border-radius: 3.75rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-accent);
}

::selection {
  background: var(--color-accent);
  color: var(--text-color-dark);
  text-shadow: none;
}

body.light-theme ::-webkit-scrollbar-track {
  background-color: var(--light-background);
}

body.dark-theme ::-webkit-scrollbar-track {
  background-color: var(--dark-shadow-light);
}

/* Light Theme */
body.light-theme {
  background-color: var(--light-background);
  color: var(--text-color-light);
  --background-color: var(--light-background);
  --shadow-dark: var(--light-shadow-dark);
  --shadow-light: var(--light-shadow-light);
  --icon-color: var(--icon-color-light);
}

body.light-theme .header,
body.light-theme .section,
body.light-theme .footer {
  box-shadow: 0.5rem 0.5rem 1rem var(--shadow-dark), -0.5rem -0.5rem 1rem var(--shadow-light);
  background-color: var(--background-color);
  color: var(--text-color-light);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

body.light-theme .theme-switcher, body.light-theme .button-nav {
  background-color: var(--background-color);
  color: var(--color-accent);
  box-shadow: 0.3125rem 0.3125rem 0.625rem var(--shadow-dark), -0.3125rem -0.3125rem 0.625rem var(--shadow-light);
  transition: all 0.3s ease;
  border: none;
}

body.light-theme .theme-switcher:hover, body.light-theme .button-nav:hover {
  box-shadow: 0.1875rem 0.1875rem 0.5rem var(--shadow-dark), -0.1875rem -0.1875rem 0.5rem var(--shadow-light);
}

body.light-theme .theme-switcher:active, body.light-theme .button-nav:active {
  box-shadow: inset 0.1875rem 0.1875rem 0.5rem var(--shadow-dark), inset -0.1875rem -0.1875rem 0.5rem var(--shadow-light);
}

body.light-theme .header__nav-link {
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

body.light-theme .header__nav-link:hover {
  color: var(--accent-color-light);
}

body.light-theme .header__nav-link:active {
  box-shadow: inset 0.125rem 0.125rem 0.3125rem var(--shadow-dark), inset -0.125rem -0.125rem 0.3125rem var(--shadow-light);
}

body.light-theme button,
body.light-theme input[type=text],
body.light-theme textarea {
  box-shadow: 0.3125rem 0.3125rem 0.625rem var(--shadow-dark), -0.3125rem -0.3125rem 0.625rem var(--shadow-light);
}

body.light-theme .header__logo {
  background-color: var(--background-color);
  color: var(--text-color-light);
  box-shadow: inset 0.2rem 0.2rem 0.5rem var(--shadow-dark), inset -0.2rem -0.2rem 0.5rem var(--shadow-light);
  transition: all 0.3s ease;
  border: none;
}

body.light-theme .title-page {
  text-shadow: 0.1rem 0.1rem 0.2rem var(--dark-shadow-dark);
}

/* Dark Theme */
body.dark-theme {
  background-color: var(--dark-background);
  color: var(--text-color-dark);
  --background-color: var(--dark-background);
  --shadow-dark: var(--dark-shadow-dark);
  --shadow-light: var(--dark-shadow-light);
  --icon-color: var(--icon-color-dark);
}

body.dark-theme .header,
body.dark-theme .section,
body.dark-theme .footer {
  box-shadow: 0.5rem 0.5rem 1rem var(--shadow-dark), -0.5rem -0.5rem 1rem var(--shadow-light);
  background-color: var(--background-color);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

body.dark-theme .theme-switcher, body.dark-theme .button-nav {
  background-color: var(--background-color);
  color: var(--color-accent);
  box-shadow: 0.3125rem 0.3125rem 0.625rem var(--shadow-dark), -0.3125rem -0.3125rem 0.625rem var(--shadow-light);
  transition: all 0.3s ease;
}

body.dark-theme .theme-switcher:hover, body.dark-theme .button-nav:hover {
  box-shadow: 0.1875rem 0.1875rem 0.5rem var(--shadow-dark), -0.1875rem -0.1875rem 0.5rem var(--shadow-light);
}

body.dark-theme .theme-switcher:active, body.dark-theme .button-nav:active {
  box-shadow: inset 0.1875rem 0.1875rem 0.5rem var(--shadow-dark), inset -0.1875rem -0.1875rem 0.5rem var(--shadow-light);
}

body.dark-theme .header__nav-link {
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

body.dark-theme .header__nav-link:hover {
  color: var(--accent-color-dark);
}

body.dark-theme .header__nav-link:active {
  box-shadow: inset 0.125rem 0.125rem 0.3125rem var(--shadow-dark), inset -0.125rem -0.125rem 0.3125rem var(--shadow-light);
}

body.dark-theme .header__logo {
  background-color: var(--background-color);
  color: var(--text-color-light);
  box-shadow: inset 0.2rem 0.2rem 0.5rem var(--shadow-dark), inset -0.2rem -0.2rem 0.5rem var(--shadow-light);
  transition: all 0.3s ease;
}

body.dark-theme .title-page {
  text-shadow: 0.1rem 0.1rem 0.2rem var(--color-dark);
}

.header {
  display: flex;
  width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.25rem;
  margin: 1.875rem 0;
  border-radius: 1rem;
}
@media (width <= 90.06125rem) {
  .header {
    margin: 0.25rem 0 1.25rem 0;
  }
}
@media (width <= 47.99875rem) {
  .header {
    padding: 0.5rem;
  }
}
@media (width <= 26.24875rem) {
  .header {
    padding: 0.25rem;
  }
}

.header__logo {
  flex-shrink: 1;
  align-self: flex-start;
  max-width: 100%;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.25rem;
  padding: 0.75rem;
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .header__logo {
    margin: 0.5rem 0 0.75rem 0.375rem;
    padding: 0.75rem;
  }
}

.header__logo-img {
  max-width: 3.875rem;
  height: auto;
}
@media (width <= 26.24875rem) {
  .header__logo-img {
    max-width: clamp(1.875rem, 1.475rem + 2vw, 3.875rem);
  }
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media (width <= 26.24875rem) {
  .header__nav {
    gap: 0;
  }
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  list-style: none;
  padding: 0.375rem 0.5rem;
  margin: 0;
  gap: 1.5rem;
}
@media (width <= 47.99875rem) {
  .header__nav-list {
    gap: 0.5rem;
  }
}
@media (width <= 26.24875rem) {
  .header__nav-list {
    gap: 0.375rem;
  }
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  opacity: 0.6;
  font-size: 1rem;
}
.breadcrumbs__link {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all var(--transition-duration);
}
.breadcrumbs__link:hover {
  color: var(--color-accent);
  background: rgba(var(--dark-background), 0.1);
}
.breadcrumbs__link:focus-visible {
  outline: 0.25rem solid var(--dark-background);
  outline-offset: 0.25rem;
}
.breadcrumbs__current {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
  font-weight: 500;
}
@media (width <= 47.99875rem) {
  .breadcrumbs {
    padding: 0.75rem 0;
    margin-bottom: 1rem;
  }
  .breadcrumbs__list {
    gap: 0.25rem;
  }
  .breadcrumbs__item:not(:last-child)::after {
    margin-left: 0.25rem;
    font-size: 0.875rem;
  }
}

body.dark-theme .breadcrumbs__link {
  color: var(--text-color-dark);
}
body.dark-theme .breadcrumbs__link:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}
body.dark-theme .breadcrumbs__current {
  color: var(--text-color-dark);
}
body.dark-theme .breadcrumbs__item:not(:last-child)::after {
  color: var(--text-color-dark);
}

body.light-theme .breadcrumbs__link {
  color: var(--text-color-light);
}
body.light-theme .breadcrumbs__link:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}
body.light-theme .breadcrumbs__current {
  color: var(--text-color-light);
}
body.light-theme .breadcrumbs__item:not(:last-child)::after {
  color: var(--text-color-light);
}

.hero {
  padding-top: 0.5rem;
}

.footer {
  padding: 1.875rem 0;
  margin-top: 2.5rem;
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .footer {
    padding: 1.875rem 0.25rem;
  }
}
.footer__full-width-search {
  padding: 0.5rem;
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21.25rem, 1fr));
  gap: 1.25rem;
}
.footer__copyright {
  text-align: center;
  font-size: 1rem;
  margin-top: 1.25rem;
}
.footer__share {
  padding: 0.5rem;
}
.footer__links-list {
  display: flex;
  list-style: none;
  margin: 0;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem;
}
.footer__links-list li {
  width: 100%;
  padding: 0.125rem 1rem;
  font-family: var(--font-family-accent);
  font-size: 1.5rem;
  font-weight: 600;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  background: var(--light-background);
  box-shadow: 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  border-radius: 0.5rem;
  cursor: pointer;
}
.footer__links-list li:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0.25rem 0.25rem 0.5rem var(--light-shadow-dark), -0.25rem -0.25rem 0.5rem var(--light-shadow-light);
}
.footer__links-list li:focus {
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.125rem;
}
.footer__text address {
  font-family: var(--font-family-accent);
  font-size: 1.375rem;
  text-shadow: 0.09375rem 0.09375rem 0.1875rem var(--dark-shadow-dark);
}
.footer__sitemap {
  display: flex;
  padding-top: 0.5rem;
}
.footer__counters {
  display: inline-flex;
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem;
}
.footer__form input,
.footer__form textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: none;
  font: inherit;
  box-shadow: var(--shadow);
  background: var(--background-color);
  color: inherit;
  resize: vertical;
}
.footer__form button {
  width: 100%;
  margin-top: 1.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  border: 0.25rem solid var(--color-accent);
  font: inherit;
  font-weight: 600;
  background: var(--light-shadow-light);
  color: var(--text-color-light);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.2s;
}
.footer__form button:hover {
  background: var(--color-accent);
  color: var(--light-shadow-light);
  border: 0.25rem solid var(--light-shadow-light);
  transform: translateY(-0.0625rem);
}
.footer__form button:focus {
  background: var(--color-accent);
  color: var(--light-shadow-light);
  border: 0.25rem solid var(--light-shadow-light);
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.125rem;
}

body.dark-theme .footer__links-list li {
  background: var(--dark-background);
  color: var(--text-color-dark);
  box-shadow: 0.125rem 0.125rem 0.25rem var(--dark-shadow-dark), -0.125rem -0.125rem 0.25rem var(--dark-shadow-light);
}
body.dark-theme .footer__links-list li:hover {
  box-shadow: 0.25rem 0.25rem 0.5rem var(--dark-shadow-dark), -0.25rem -0.25rem 0.5rem var(--dark-shadow-light);
}
body.dark-theme .footer__text address {
  text-shadow: 0.09375rem 0.09375rem 0.1875rem var(--light-shadow-dark);
}

.theme-switcher {
  position: relative;
  width: 3.75rem;
  height: 5rem;
  padding: 0;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.theme-switcher::before {
  content: "";
  position: absolute;
  bottom: 0.375rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--background-color);
  box-shadow: -0.1875rem -0.1875rem 0.375rem rgba(255, 255, 255, 0.1), 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.2);
}

.theme-switcher::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  width: 2.25rem;
  height: 1.25rem;
  border-radius: 0.1875rem;
  box-shadow: inset 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.2), inset -0.125rem -0.125rem 0.3125rem rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
}

.theme-switcher span {
  position: absolute;
  bottom: 1.375rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  box-shadow: inset 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
  background-color: var(--color-accent);
}

.theme-switcher:hover span {
  background-color: var(--icon-color-hover);
}

.theme-switcher svg path {
  fill: var(--color-accent);
}

.theme-switcher:hover svg path {
  fill: var(--icon-color-hover);
}

@media (hover: none) {
  .theme-switcher:hover span {
    background-color: var(--color-accent);
  }
  .theme-switcher:hover svg path {
    fill: var(--color-accent);
  }
}
.theme-switcher.is-active svg path {
  fill: var(--icon-color-hover);
}

.theme-switcher.is-active span {
  background-color: var(--icon-color-hover);
}

.icon-switcher__headlight {
  position: absolute;
  bottom: 3.4rem;
  width: 1.125rem;
  height: auto;
}

.icon-switcher__home {
  position: absolute;
  bottom: 2.975rem;
  width: 1rem;
  height: auto;
}

.icon-switcher__motorbike {
  position: absolute;
  bottom: 2.52rem;
  width: 1.7rem;
  height: auto;
}

.icon-switcher__car {
  position: absolute;
  bottom: 2.5rem;
  width: 1.7rem;
  height: auto;
}

.button-nav {
  position: relative;
  width: 3.75rem;
  height: 5rem;
  padding: 0;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  border: none;
  outline: none;
}

.button-nav::before {
  content: "";
  position: absolute;
  bottom: 0.375rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--background-color);
  box-shadow: -0.1875rem -0.1875rem 0.375rem rgba(255, 255, 255, 0.1), 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.2);
}

.button-nav::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  width: 2.25rem;
  height: 1.25rem;
  border-radius: 0.1875rem;
  box-shadow: inset 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.2), inset -0.125rem -0.125rem 0.3125rem rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
}

.button-nav span {
  position: absolute;
  bottom: 1.375rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  box-shadow: inset 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
  background-color: var(--color-accent);
}

.button-nav:hover span {
  background-color: var(--icon-color-hover);
}

.button-nav svg path {
  fill: var(--color-accent);
}

.button-nav:hover svg path {
  fill: var(--icon-color-hover);
}

/* @include hover {
  background-color: var(--icon-color-hover);   
} */
/* .button-nav:hover svg path {
  @include hover {
    fill: var(--icon-color-hover);   
  }
}
 */
.slider-neumorphism {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.25rem;
  margin: 1.25rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--background-color);
  box-shadow: 0.5rem 0.5rem 1rem var(--shadow-dark), -0.5rem -0.5rem 1rem var(--shadow-light);
}
.slider-neumorphism__content {
  position: relative;
  width: 100%;
  height: 10.625rem;
  margin-top: 1.25rem;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0.25rem 0.25rem 0.5rem var(--shadow-dark), -0.25rem -0.25rem 0.5rem var(--shadow-light);
}
.slider-neumorphism__grid {
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  gap: 1.25rem;
  padding: 0.625rem;
  width: 200%;
  animation: slide 40s linear infinite;
}
.slider-neumorphism__grid:hover {
  animation-play-state: paused;
}
.slider-neumorphism__image-item {
  position: relative;
  width: 6.25rem;
  height: 9.375rem;
  border-radius: 0.625rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0.25rem 0.25rem 0.5rem var(--shadow-dark), -0.25rem -0.25rem 0.5rem var(--shadow-light);
}
.slider-neumorphism__image-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.625rem;
}
.slider-neumorphism__image-item:hover {
  transform: scale(1.05);
  box-shadow: 0.375rem 0.375rem 0.75rem var(--shadow-dark), -0.375rem -0.375rem 0.75rem var(--shadow-light);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1600px - 20rem));
  }
}
body.light-theme .slider-neumorphism {
  --background-color: var(--light-background);
  --shadow-dark: var(--light-shadow-dark);
  --shadow-light: var(--light-shadow-light);
}

body.dark-theme .slider-neumorphism {
  --background-color: var(--dark-background);
  --shadow-dark: var(--dark-shadow-dark);
  --shadow-light: var(--dark-shadow-light);
}

.shadow__inside {
  margin: 1.25rem;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: inset 0.25rem 0.25rem 0.625rem var(--shadow-dark), inset -0.25rem -0.25rem 0.625rem var(--shadow-light);
  transition: all 0.3s ease;
}
@media (width <= 47.99875rem) {
  .shadow__inside {
    margin: 0.75rem;
    padding: 1rem 0.5rem;
  }
}

.shadow__inside--small {
  margin: 0;
  padding: 0.75rem 0.5rem;
  border-radius: 1rem;
  box-shadow: inset 0.25rem 0.25rem 0.625rem var(--shadow-dark), inset -0.25rem -0.25rem 0.625rem var(--shadow-light);
  transition: all 0.3s ease;
}

.shadow__outside,
.shadow__outside--small {
  border-radius: 1rem;
  background: var(--background-color);
  box-shadow: 0.5rem 0.5rem 1rem var(--shadow-dark), -0.5rem -0.5rem 1rem var(--shadow-light);
  transition: all 0.3s ease;
}

.shadow__outside {
  margin: 1.25rem;
  padding: 1.25rem;
}
@media (width <= 47.99875rem) {
  .shadow__outside {
    margin: 0.75rem;
    padding: 1rem 0.5rem;
  }
}

.shadow__outside--small {
  margin: 1rem;
  padding: 0.5rem 1rem;
}

.shadow__outside--extra-small {
  padding: 0;
  background: var(--background-color);
  box-shadow: 0.0625rem 0.0625rem 0.125rem var(--shadow-dark), -0.125rem -0.0625rem 0.125rem var(--shadow-light);
  transition: all 0.3s ease;
}

.doc-viewer {
  width: 100%;
  height: 100vh;
  min-height: 37.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--background-color);
  box-shadow: 0.5rem 0.5rem 1rem var(--shadow-dark), -0.5rem -0.5rem 1rem var(--shadow-light);
  border-radius: 1.5rem;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  transition: background 0.3s;
}

.doc-viewer__controls {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-around;
  align-items: center;
  margin-block: 1rem;
  z-index: 2;
  width: 100%;
}

.doc-viewer__zoom-in,
.doc-viewer__zoom-out,
.doc-viewer__zoom-reset {
  width: clamp(13.75rem, 11rem + 13.75vw, 27.5rem);
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  position: relative;
  font-family: var(--font-family-accent);
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  font-style: italic;
  font-weight: 600;
  height: 3rem;
  border-radius: 0.75rem;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: var(--background-color);
  transition: all 0.3s ease;
  box-shadow: 0.375rem 0.375rem 0.75rem var(--shadow-dark), -0.375rem -0.375rem 0.75rem var(--shadow-light);
}

.doc-viewer__zoom-in:hover,
.doc-viewer__zoom-out:hover,
.doc-viewer__zoom-reset:hover {
  box-shadow: 0.25rem 0.25rem 0.5rem var(--shadow-dark), -0.25rem -0.25rem 0.5rem var(--shadow-light);
}

.doc-viewer__zoom-in:active,
.doc-viewer__zoom-out:active,
.doc-viewer__zoom-reset:active {
  box-shadow: inset 0.25rem 0.25rem 0.5rem var(--shadow-dark), inset -0.25rem -0.25rem 0.5rem var(--shadow-light);
}

body.light-theme .doc-viewer__zoom-in,
body.light-theme .doc-viewer__zoom-out,
body.light-theme .doc-viewer__zoom-reset {
  color: var(--text-color-light);
}
body.light-theme .doc-viewer__zoom-in:hover,
body.light-theme .doc-viewer__zoom-out:hover,
body.light-theme .doc-viewer__zoom-reset:hover {
  color: var(--color-accent);
}

body.dark-theme .doc-viewer__zoom-in,
body.dark-theme .doc-viewer__zoom-out,
body.dark-theme .doc-viewer__zoom-reset {
  color: var(--text-color-dark);
}
body.dark-theme .doc-viewer__zoom-in:hover,
body.dark-theme .doc-viewer__zoom-out:hover,
body.dark-theme .doc-viewer__zoom-reset:hover {
  color: var(--color-accent);
}

.doc-viewer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--doc-viewer-gap, 1rem);
  scroll-behavior: smooth;
}

.doc-viewer__item {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.doc-viewer__figure {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
  aspect-ratio: 923/1305;
  background: var(--background-color);
  border-radius: 1rem;
  box-shadow: 0.25rem 0.25rem 0.75rem var(--shadow-dark), -0.25rem -0.25rem 0.75rem var(--shadow-light), inset 0.125rem 0.125rem 0.375rem var(--shadow-light), inset -0.125rem -0.125rem 0.375rem var(--shadow-dark);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.doc-viewer__image-wrapper {
  width: 100%;
  height: 100%;
  cursor: grab;
  position: absolute;
  top: 0;
  left: 0;
  transition: box-shadow 0.3s;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-viewer__image-wrapper:active {
  cursor: grabbing;
}

.doc-viewer__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transition: none;
}

.doc-viewer__caption {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text-color-light);
  text-align: center;
}

.doc-viewer__figure.is-zoomed .doc-viewer__image {
  transform: scale(1.7);
  cursor: zoom-out;
  z-index: 10;
}

.doc-viewer__image:active {
  outline: 0.125rem solid var(--color-accent);
}

@media (width <= 63.99875rem) {
  .doc-viewer {
    padding: 0.5rem;
    border-radius: 0.75rem;
  }
  .doc-viewer__item,
  .doc-viewer__figure {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .doc-viewer__image {
    border-radius: 0.375rem;
    max-height: 100vh;
  }
}
@media (width <= 47.99875rem) {
  .doc-viewer {
    padding: 0.25rem;
    border-radius: 0.5rem;
  }
  .doc-viewer__item,
  .doc-viewer__figure {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .doc-viewer__image {
    border-radius: 0.25rem;
    max-height: 80vh;
  }
}
.doc-viewer__list::-webkit-scrollbar {
  width: 0.6875rem;
}

.doc-viewer__list::-webkit-scrollbar-thumb {
  height: 2.5rem;
  background: var(--color-accent);
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0.25rem rgba(0, 0, 0, 0.3);
}

.doc-viewer__list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.25rem rgba(0, 0, 0, 0.3);
}

.doc-viewer__pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-color-light);
}

.doc-viewer__pagination-info {
  margin-right: 0.5rem;
}

.doc-viewer__pagination-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.doc-viewer__pagination-input {
  width: 5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid var(--shadow-dark);
  background: var(--background-color);
  color: var(--text-color-light);
  font-size: 1rem;
  text-align: center;
}

.doc-viewer__pagination-btn {
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: none;
  background: var(--background-color);
  font-family: var(--font-family-accent);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0.125rem 0.125rem 0.375rem var(--shadow-dark), -0.125rem -0.125rem 0.375rem var(--shadow-light);
  transition: box-shadow 0.2s;
}

.doc-viewer__pagination-btn:hover {
  box-shadow: 0.0625rem 0.0625rem 0.1875rem var(--shadow-dark), -0.0625rem -0.0625rem 0.1875rem var(--shadow-light);
  color: var(--color-accent);
}

body.light-theme .doc-viewer__pagination,
body.light-theme .doc-viewer__pagination-info {
  color: var(--text-color-light);
}
body.light-theme .doc-viewer__pagination-input {
  background: var(--background-color);
  color: var(--text-color-light);
  border: 1px solid var(--shadow-dark);
}
body.light-theme .doc-viewer__pagination-btn {
  background: var(--background-color);
  color: var(--text-color-light);
}
body.light-theme .doc-viewer__pagination-btn:hover {
  color: var(--color-accent);
}

body.dark-theme .doc-viewer__pagination,
body.dark-theme .doc-viewer__pagination-info {
  color: var(--text-color-dark);
}
body.dark-theme .doc-viewer__pagination-input {
  background: var(--background-color);
  color: var(--text-color-dark);
  border: 1px solid var(--shadow-light);
}
body.dark-theme .doc-viewer__pagination-btn {
  background: var(--background-color);
  color: var(--text-color-dark);
}
body.dark-theme .doc-viewer__pagination-btn:hover {
  color: var(--color-accent);
}

.doc-viewer__frame {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 1.5rem;
  margin: 1rem;
  background: var(--background-color);
  box-shadow: 0.5rem 0.5rem 1rem var(--shadow-dark), -0.5rem -0.5rem 1rem var(--shadow-light);
  border-radius: 1rem;
  transition: background 0.3s;
}
@media (width <= 47.99875rem) {
  .doc-viewer__frame {
    padding: 0.75rem;
    margin: 0.75rem;
    border-radius: 0.75rem;
  }
}

.doc-viewer__frame--inside {
  min-width: 100%;
  min-height: 100dvh;
  max-width: 100%;
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .doc-viewer__frame--inside {
    border-radius: 0.75rem;
  }
}

.youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  border: none;
  overflow: hidden;
}

.article__title--inside {
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
  margin-bottom: 1.5rem;
}
.article__subtitle--inside {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  margin-bottom: 1.5rem;
}
.article__text {
  margin-bottom: var(--paragraphMarginBottom);
}
.article__text--strong {
  font-weight: 600;
}
.article__notice {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-style: italic;
}
.article__notice--strong {
  font-weight: 600;
  font-style: italic;
}
.article__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.article__img--big {
  border-radius: 1rem;
  margin-bottom: 1rem;
}
@media (width <= 47.99875rem) {
  .article__img--big {
    border-radius: 0.75rem;
  }
}

.slide-in-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.slide-in-bottom.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.slide-in-bottom.delay-1 {
  transition-delay: 0.1s;
}
.slide-in-bottom.delay-2 {
  transition-delay: 0.2s;
}
.slide-in-bottom.delay-3 {
  transition-delay: 0.3s;
}
.slide-in-bottom.delay-4 {
  transition-delay: 0.4s;
}
.slide-in-bottom.delay-5 {
  transition-delay: 0.5s;
}
.slide-in-bottom.delay-6 {
  transition-delay: 0.6s;
}
.slide-in-bottom.delay-7 {
  transition-delay: 0.7s;
}
.slide-in-bottom.delay-8 {
  transition-delay: 0.8s;
}
.slide-in-bottom.delay-9 {
  transition-delay: 0.9s;
}

@media (prefers-reduced-motion: reduce) {
  .slide-in-bottom,
  .link-car {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
.link__car {
  position: relative;
  padding: 0.375rem 0;
  overflow: hidden;
  transition: color var(--transition-duration) 1.5s;
}
.link__car::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.25rem;
  width: 0;
  background: var(--color-accent);
  transition: width 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.8s;
}
.link__car::after {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800' width='30' height='30' fill='%23fdb813'><path d='M152.7,374.3c38.6,0,69.9,31.3,69.9,69.9S191.3,514,152.7,514s-69.9-31.2-69.9-69.9S114.1,374.3,152.7,374.3 L152.7,374.3z M285.4,318.5c-8.7-18.8-7.4-18-26-14.3c-14.6,2.9-32.5,7.7-34.7,16.9c-1.1,4.7,2.1,9.4,9,14.3 c13.4,8,26.8,16.1,40.2,24.1c18.2,6.8,26.1,3.3,20.8-13.4C292.3,336,289.2,326.8,285.4,318.5L285.4,318.5z M644.7,411.7 c18,0,32.5,14.5,32.5,32.5s-14.6,32.5-32.5,32.5c-18,0-32.5-14.6-32.5-32.5C612.2,426.2,626.8,411.7,644.7,411.7L644.7,411.7z M152.7,411.7c18,0,32.5,14.5,32.5,32.5s-14.6,32.5-32.5,32.5c-18,0-32.5-14.6-32.5-32.5C120.2,426.2,134.8,411.7,152.7,411.7 L152.7,411.7z M499.6,367.3H344.8c-13.5-0.7-22.5-8.1-30.3-18.5L295.6,300c56,0,88.3-3.3,141,23.3 C460.7,335.4,481.6,348,499.6,367.3L499.6,367.3z M644.7,374.3c38.6,0,69.9,31.3,69.9,69.9S683.3,514,644.7,514 c-38.6,0-69.9-31.2-69.9-69.9S606.1,374.3,644.7,374.3L644.7,374.3z M534.2,353c59.2-11.6,181-12.4,231.5,17.3 c9.6,5.7,14.3,15.5,13,17.8s-0.6,0.8-1,1.1c8.2,5.9,15.6,12.2,22.3,18.8c-24.5,55.9-62.6,82.2-78.8,64.8 c46-151.7-212.9-151.1-152.2,5.4H241.3c14.1-156.2-173.7-174-173.3-18.4c0.1,7.7-2.3,12.3-6.6,14.6 c-13.3,7.1-37.9-5.3-46.3-17.4c-4.9-7-7.8-15.8-8.7-26.3c3.1-17,11.4-27.9,21.6-36.7L0,360.5c2.8-19.1,116.4-25.1,142.6-31.3 c26.6-6.2,53.1-16.3,79.7-26.4c88.2-26.7,152.4-20.8,236.5,12.4C486.4,326,511.3,338.7,534.2,353L534.2,353z'/></svg>");
  position: absolute;
  bottom: -1rem;
  left: -2.5rem;
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (any-hover: hover) {
  .link__car:hover {
    color: var(--color-accent);
    transition-delay: 0s;
  }
  .link__car:hover::before {
    width: 100%;
    transition-delay: 0s;
  }
  .link__car:hover::after {
    left: calc(100% - 2.5rem);
    transition-delay: 0.1s;
  }
}
@media (any-hover: none) {
  .link__car:active {
    color: var(--color-accent);
    transition-delay: 0s;
  }
  .link__car:active::before {
    width: 100%;
    transition-delay: 0s;
  }
  .link__car:active::after {
    left: calc(100% - 2.5rem);
    transition-delay: 0.1s;
  }
}

.link__car-three {
  padding: 1.00625rem 0;
}

.specifications__img--responsive {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-radius: 1rem;
}
.specifications__table {
  margin-top: 2rem;
}
.specifications__table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
}
.specifications__table-content {
  width: 100%;
  min-width: 50rem;
  border-collapse: separate;
  border-spacing: 0.5rem;
}
.specifications__table-header {
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  box-shadow: 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  border-radius: 0.5rem;
}
.specifications__table-header--main {
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.25rem;
}
.specifications__table-header--sub {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem;
}
.specifications__table-cell {
  padding: 0.75rem 1rem;
  vertical-align: top;
  background: var(--light-background);
  box-shadow: 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  border-radius: 0.5rem;
}
.specifications__table-cell--trim {
  width: 16.66%;
}
.specifications__table-cell--engine {
  width: 16.66%;
}
.specifications__table-cell--spec {
  width: 30%;
  font-weight: 600;
  font-size: 0.9375rem;
}
.specifications__table-cell--value {
  width: 70%;
  font-size: 0.875rem;
}
.specifications__table-cell--price {
  text-align: center;
  font-size: 1rem;
}
.specifications__table-cell--na {
  text-align: center;
  opacity: 0.6;
  font-style: italic;
  font-size: 0.875rem;
}
.specifications__table-section {
  font-weight: 800;
  text-align: center;
  padding: 1rem;
  font-size: 1.125rem;
  background: var(--light-background);
  box-shadow: 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  border-radius: 0.5rem;
}

body.dark-theme .specifications__table-cell, body.dark-theme .specifications__table-section, body.dark-theme .specifications__table-header {
  background: var(--dark-background);
  color: var(--text-color-dark);
  box-shadow: 0.125rem 0.125rem 0.25rem var(--dark-shadow-dark), -0.125rem -0.125rem 0.25rem var(--dark-shadow-light);
}

@media (width <= 63.99875rem) {
  .specifications__img--responsive {
    border-radius: 0.5rem;
  }
  .specifications__table-content {
    min-width: 37.5rem;
    border-spacing: 0 0.375rem;
  }
  .specifications__table-cell {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    box-shadow: 0.09375rem 0.09375rem 0.1875rem var(--light-shadow-dark), -0.09375rem -0.09375rem 0.1875rem var(--light-shadow-light);
    border-radius: 0.375rem;
  }
  .specifications__table-cell--spec {
    width: 35%;
    font-size: 1rem;
  }
  .specifications__table-cell--value {
    width: 65%;
    font-size: 0.875rem;
  }
  .specifications__table-cell--price {
    font-size: 0.875rem;
  }
  .specifications__table-cell--na {
    font-size: 0.875rem;
  }
  .specifications__table-header {
    font-size: 1rem;
  }
  .specifications__table-header--main {
    font-size: 1.125rem;
  }
  .specifications__table-header--sub {
    font-size: 0.875rem;
  }
  .specifications__table-section {
    font-size: 1rem;
    box-shadow: 0.09375rem 0.09375rem 0.1875rem var(--light-shadow-dark), -0.09375rem -0.09375rem 0.1875rem var(--light-shadow-light);
    border-radius: 0.375rem;
  }
}
@media (width <= 47.99875rem) {
  .specifications__table-content {
    min-width: 18.75rem;
    border-spacing: 0 0.25rem;
  }
  .specifications__table-cell {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    box-shadow: 0.0625rem 0.0625rem 0.125rem var(--light-shadow-dark), -0.0625rem -0.0625rem 0.125rem var(--light-shadow-light);
    border-radius: 0.25rem;
  }
  .specifications__table-cell--spec {
    width: 40%;
    font-size: 0.875rem;
  }
  .specifications__table-cell--value {
    width: 60%;
    font-size: 0.875rem;
  }
  .specifications__table-cell--price {
    font-size: 1rem;
  }
  .specifications__table-cell--na {
    font-size: 0.875rem;
  }
  .specifications__table-header {
    font-size: 1rem;
  }
  .specifications__table-header--main {
    font-size: 1rem;
  }
  .specifications__table-header--sub {
    font-size: 0.875rem;
  }
  .specifications__table-section {
    font-size: 1rem;
    box-shadow: 0.0625rem 0.0625rem 0.125rem var(--light-shadow-dark), -0.0625rem -0.0625rem 0.125rem var(--light-shadow-light);
    border-radius: 0.25rem;
  }
}
@media (width <= 63.99875rem) {
  body.dark-theme .specifications__table-cell, body.dark-theme .specifications__table-section, body.dark-theme .specifications__table-header {
    box-shadow: 0.09375rem 0.09375rem 0.1875rem var(--dark-shadow-dark), -0.09375rem -0.09375rem 0.1875rem var(--dark-shadow-light);
  }
}

@media (width <= 47.99875rem) {
  body.dark-theme .specifications__table-cell, body.dark-theme .specifications__table-section, body.dark-theme .specifications__table-header {
    box-shadow: 0.0625rem 0.0625rem 0.125rem var(--dark-shadow-dark), -0.0625rem -0.0625rem 0.125rem var(--dark-shadow-light);
  }
}

.download {
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.download__book {
  grid-column: 1/2;
  grid-row: 1/3;
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.download__img {
  grid-column: 2/3;
  grid-row: 1/2;
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.download__book--rek {
  grid-column: 2/3;
  grid-row: 2/3;
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.download__book {
  flex: 0 1 66.666%;
  max-width: 100%;
  max-height: 96.5%;
  font-size: 1.375rem;
  border-radius: 1rem;
  padding: 1.5rem;
  box-sizing: border-box;
  min-width: 0;
}
.download__link {
  font-size: 1.5rem;
  font-family: var(--font-family-accent);
  font-weight: 800;
}
.download__book--rek, .download__img {
  flex: 0 1 33.333%;
  max-width: 100%;
  border-radius: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  height: auto;
}
.download__img img {
  border-radius: 1rem;
  max-width: 100%;
  height: auto;
  display: block;
}
.download__title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.download__list {
  list-style: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.download__list li {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--light-background);
  box-shadow: 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  border-radius: 0.5rem;
  font-size: 1.125rem;
  box-sizing: border-box;
}

.download__link--full {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

@media (width <= 63.99875rem) {
  .download {
    display: flex;
    flex-direction: column;
  }
  .download__book, .download__img, .download__book--rek {
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
    order: unset;
  }
  .download__book {
    order: 1;
  }
  .download__book--rek {
    order: 2;
  }
  .download__img {
    order: 3;
  }
}
body.dark-theme .download__list li {
  background: var(--dark-background);
  color: var(--text-color-dark);
  box-shadow: 0.125rem 0.125rem 0.25rem var(--dark-shadow-dark), -0.125rem -0.125rem 0.25rem var(--dark-shadow-light);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background-color);
  z-index: 1000;
  padding: 0.5rem 1rem;
  display: none;
}
@media (width > 90.06125rem) {
  .progress-bar {
    display: block;
  }
}
.progress-bar__track {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 75rem;
  margin: 0 auto;
}
.progress-bar__selector {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: left 0.3s ease, width 0.3s ease;
  z-index: 2;
  width: 7.125rem;
  height: 2rem;
  left: var(--progress-bar-offset, 0);
}
.progress-bar__frame {
  width: 100%;
  height: 100%;
  border: 0.25rem solid var(--color-accent);
  background: transparent;
  border-radius: 0.25rem;
}
.progress-bar__sections {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.progress-bar__section {
  display: flex;
  gap: 0.125rem;
  padding: 0 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.progress-bar__section:hover .progress-bar__letter {
  color: var(--color-accent);
}
.progress-bar__section.active .progress-bar__letter {
  color: var(--color-accent);
}
.progress-bar__letter {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: var(--light-shadow-light);
  color: var(--color-dark);
  text-align: center;
  line-height: 1rem;
  font-size: 0.625rem;
  font-weight: 800;
  margin: 0 0.0625rem;
  border-radius: 0.0625rem;
  transition: color 0.3s ease;
}

@media (width > 90.06125rem) {
  body {
    padding-top: 3rem;
  }
}

.gsc-control-cse {
  border-color: transparent !important;
  background-color: transparent !important;
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .gsc-control-cse {
    border-radius: 0.5rem;
    margin: 0 !important;
    padding: 0 !important;
  }
}

form.gsc-search-box {
  background: transparent !important;
  border: 0.125rem solid var(--color-accent) !important;
  border-radius: 0.5rem !important;
}

.gsc-search-button-v2,
.gsc-search-button-v2:hover,
.gsc-search-button-v2:focus,
input.gsc-input,
.gsc-input-box,
.gsc-input-box-hover,
.gsc-input-box-focus,
.gsc-selected-option-container,
.gsc-tabHeader,
.gs-result .gs-image,
.gs-result .gs-promotion-image {
  border-radius: 0.5rem !important;
}

.gsc-results-wrapper-visible {
  border: 0.125rem solid var(--color-accent) !important;
  border-radius: 1rem;
  padding: 1rem;
}
@media (width <= 47.99875rem) {
  .gsc-results-wrapper-visible {
    border-radius: 0.5rem;
    margin: 0;
    padding: 0;
  }
}

.gsc-results {
  border-radius: 1rem;
  padding-top: 0.25rem;
  margin-top: 1rem;
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .gsc-results {
    border-radius: 0.5rem;
  }
}

.gsc-webResult.gsc-result {
  margin: 0.5rem !important;
  padding: 0.5rem !important;
  border: 0.125rem solid var(--color-accent) !important;
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .gsc-webResult.gsc-result {
    border-radius: 0.5rem;
    margin: 0.125rem !important;
    padding: 0 !important;
  }
}

.gsc-tabHeader.gsc-tabhActive,
.gsc-tabHeader.gsc-tabhInactive {
  margin: 0 0.5rem 0.5rem 0;
}

@media (width <= 47.99875rem) {
  .gs-web-image-box,
  .gs-promotion-image-box {
    float: none !important;
    text-align: justify !important;
  }
}

@media (width <= 47.99875rem) {
  .gs-web-image-box-portrait img.gs-image {
    object-fit: contain !important;
  }
}

@media (width <= 47.99875rem) {
  .gs-webResult.gs-result a.gs-title:link,
  .gs-webResult.gs-result a.gs-title:link b,
  .gs-imageResult a.gs-title:link,
  .gs-imageResult a.gs-title:link b {
    display: block !important;
  }
}

form.gsc-search-box {
  box-shadow: none !important;
}

.gsc-input-box {
  border: none !important;
  background: transparent !important;
}

.gsib_a {
  padding: 0 !important;
}

td#gs_tti50 input#gsc-i-id1 {
  padding-left: 10px !important;
}

.ad__top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ad__manual--desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .ad__manual--desktop {
    display: none;
  }
}
.ad__manual--tablet {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (width <= 63.99875rem) {
  .ad__manual--tablet {
    display: flex;
  }
}
@media (width <= 47.99875rem) {
  .ad__manual--tablet {
    display: none;
  }
}
.ad__manual--mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (width <= 47.99875rem) {
  .ad__manual--mobile {
    display: flex;
  }
}

@media (width <= 47.99875rem) {
  .guide,
  .workshop-manual,
  .links-download {
    padding: 1rem 0;
  }
}

.guide__grid,
.workshop-manual__grid,
.links-download__grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 1rem 0;
}
@media (width <= 47.99875rem) {
  .guide__grid,
  .workshop-manual__grid,
  .links-download__grid {
    gap: 1rem;
    margin: 1rem 0.5rem 0;
  }
}

.guide__grid {
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  justify-items: center;
}
@media (width <= 47.99875rem) {
  .guide__grid {
    grid-template-columns: 1fr;
  }
}

.workshop-manual__grid {
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
  justify-items: center;
}

.links-download__grid {
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1rem;
}
@media (width <= 47.99875rem) {
  .links-download__grid {
    grid-template-columns: 1fr;
  }
}

.guide__grid-item,
.workshop-manual__grid-item,
.links-download__grid--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--light-background);
  box-shadow: 0.5rem 0.5rem 1rem var(--light-shadow-dark), -0.5rem -0.5rem 1rem var(--light-shadow-light);
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .guide__grid-item:hover,
  .workshop-manual__grid-item:hover,
  .links-download__grid--item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0.75rem 0.75rem 1.5rem var(--light-shadow-dark), -0.75rem -0.75rem 1.5rem var(--light-shadow-light);
  }
}
@media (any-hover: none) {
  .guide__grid-item:active,
  .workshop-manual__grid-item:active,
  .links-download__grid--item:active {
    transform: translateY(-0.25rem);
    box-shadow: 0.75rem 0.75rem 1.5rem var(--light-shadow-dark), -0.75rem -0.75rem 1.5rem var(--light-shadow-light);
  }
}
@media (width <= 47.99875rem) {
  .guide__grid-item,
  .workshop-manual__grid-item,
  .links-download__grid--item {
    padding: 0.75rem;
  }
}

.guide__image,
.workshop-manual__image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  box-shadow: inset 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .guide__image:hover,
  .workshop-manual__image:hover {
    transform: scale(1.02);
  }
}
@media (any-hover: none) {
  .guide__image:active,
  .workshop-manual__image:active {
    transform: scale(1.02);
  }
}

.guide__link-image,
.workshop-manual__link-image {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .guide__link-image:hover,
  .workshop-manual__link-image:hover {
    transform: scale(1.02);
  }
}
@media (any-hover: none) {
  .guide__link-image:active,
  .workshop-manual__link-image:active {
    transform: scale(1.02);
  }
}

.guide__link,
.workshop-manual__link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: center;
  font-family: var(--font-family-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color-light);
  text-decoration: none;
  background: var(--light-background);
  border-radius: 0.5rem;
  box-shadow: 0.25rem 0.25rem 0.5rem var(--light-shadow-dark), -0.25rem -0.25rem 0.5rem var(--light-shadow-light);
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .guide__link:hover,
  .workshop-manual__link:hover {
    color: var(--color-accent);
    box-shadow: inset 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  }
}
@media (any-hover: none) {
  .guide__link:active,
  .workshop-manual__link:active {
    color: var(--color-accent);
    box-shadow: inset 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  }
}
@media (width <= 47.99875rem) {
  .guide__link,
  .workshop-manual__link {
    font-size: 0.875rem;
    padding: 0.625rem 0.75rem;
  }
}

.links-download__grid--item {
  padding: 0;
  overflow: hidden;
}
.links-download__grid--item .download__link {
  display: block;
  width: 100%;
  height: auto;
  min-height: 3.75rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-family: var(--font-family-accent);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color-light);
  text-decoration: none;
  background: var(--light-background);
  border-radius: 1rem;
  box-shadow: 0.25rem 0.25rem 0.5rem var(--light-shadow-dark), -0.25rem -0.25rem 0.5rem var(--light-shadow-light);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (any-hover: hover) {
  .links-download__grid--item .download__link:hover {
    color: var(--color-accent);
    box-shadow: inset 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  }
}
@media (any-hover: none) {
  .links-download__grid--item .download__link:active {
    color: var(--color-accent);
    box-shadow: inset 0.125rem 0.125rem 0.25rem var(--light-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--light-shadow-light);
  }
}
@media (width <= 47.99875rem) {
  .links-download__grid--item .download__link {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    min-height: 3.125rem;
  }
}

body.dark-theme .guide__grid-item,
body.dark-theme .workshop-manual__grid-item,
body.dark-theme .links-download__grid--item {
  background: var(--dark-background);
  box-shadow: 0.5rem 0.5rem 1rem var(--dark-shadow-dark), -0.5rem -0.5rem 1rem var(--dark-shadow-light);
}
@media (any-hover: hover) {
  body.dark-theme .guide__grid-item:hover,
  body.dark-theme .workshop-manual__grid-item:hover,
  body.dark-theme .links-download__grid--item:hover {
    box-shadow: 0.75rem 0.75rem 1.5rem var(--dark-shadow-dark), -0.75rem -0.75rem 1.5rem var(--dark-shadow-light);
  }
}
@media (any-hover: none) {
  body.dark-theme .guide__grid-item:active,
  body.dark-theme .workshop-manual__grid-item:active,
  body.dark-theme .links-download__grid--item:active {
    box-shadow: 0.75rem 0.75rem 1.5rem var(--dark-shadow-dark), -0.75rem -0.75rem 1.5rem var(--dark-shadow-light);
  }
}
body.dark-theme .guide__image,
body.dark-theme .workshop-manual__image {
  box-shadow: inset 0.125rem 0.125rem 0.25rem var(--dark-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--dark-shadow-light);
}
body.dark-theme .guide__link,
body.dark-theme .workshop-manual__link {
  background: var(--dark-background);
  color: var(--text-color-dark);
  box-shadow: 0.25rem 0.25rem 0.5rem var(--dark-shadow-dark), -0.25rem -0.25rem 0.5rem var(--dark-shadow-light);
}
@media (any-hover: hover) {
  body.dark-theme .guide__link:hover,
  body.dark-theme .workshop-manual__link:hover {
    color: var(--color-accent);
    box-shadow: inset 0.125rem 0.125rem 0.25rem var(--dark-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--dark-shadow-light);
  }
}
@media (any-hover: none) {
  body.dark-theme .guide__link:active,
  body.dark-theme .workshop-manual__link:active {
    color: var(--color-accent);
    box-shadow: inset 0.125rem 0.125rem 0.25rem var(--dark-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--dark-shadow-light);
  }
}
body.dark-theme .links-download__grid--item .download__link {
  background: var(--dark-background);
  color: var(--text-color-dark);
  box-shadow: 0.25rem 0.25rem 0.5rem var(--dark-shadow-dark), -0.25rem -0.25rem 0.5rem var(--dark-shadow-light);
}
@media (any-hover: hover) {
  body.dark-theme .links-download__grid--item .download__link:hover {
    color: var(--color-accent);
    box-shadow: inset 0.125rem 0.125rem 0.25rem var(--dark-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--dark-shadow-light);
  }
}
@media (any-hover: none) {
  body.dark-theme .links-download__grid--item .download__link:active {
    color: var(--color-accent);
    box-shadow: inset 0.125rem 0.125rem 0.25rem var(--dark-shadow-dark), inset -0.125rem -0.125rem 0.25rem var(--dark-shadow-light);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  background: rgba(var(--color-accent-rgb), 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-duration) ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.25rem);
}
@media (width > 90.06125rem) {
  .scroll-to-top {
    display: none;
  }
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top__arrow {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-dark);
  transition: transform var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .scroll-to-top:hover {
    background: var(--color-accent);
    transform: translateY(-0.125rem);
  }
  .scroll-to-top:hover .scroll-to-top__arrow {
    transform: translateY(-0.125rem);
  }
}
@media (any-hover: none) {
  .scroll-to-top:active {
    background: var(--color-accent);
    transform: translateY(-0.125rem);
  }
  .scroll-to-top:active .scroll-to-top__arrow {
    transform: translateY(-0.125rem);
  }
}
@media (width <= 47.99875rem) {
  .scroll-to-top {
    width: 2.75rem;
    height: 2.75rem;
    bottom: 1rem;
    right: 1rem;
  }
  .scroll-to-top__arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}

/*# sourceMappingURL=main.css.map */
