*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html, body {
  min-height: 100vh;
  scroll-behavior: smooth;
  margin: 0;
}

html {
  font-size: 0.625rem;
  scrollbar-color: var(--cl-blue-1) Canvas;
}
html.overflow {
  overflow: hidden;
}
html.overflow--sidecart {
  overflow: hidden;
}

body {
  font-size: var(--step-2);
  line-height: 1.6;
  color: var(--cl-gray-2);
  font-family: var(--fs-default);
}

textarea {
  font-family: var(--fs-default);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: inherit;
  transition: all ease-out 0.3s;
}
a:hover {
  color: inherit;
}

.btn-wrapper {
  padding: var(--spacing-20) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-15);
}
@media (max-width: 768px) {
  .btn-wrapper {
    justify-content: center;
  }
}

button {
  font-family: var(--fs-default);
  color: var(--cl-gray-1);
}

img {
  width: 100%;
  height: auto;
}
img[loading~=lazy] {
  animation: lazy 0.35s ease;
}

.rank-math-breadcrumb {
  padding: var(--spacing-15) 0;
  font-size: var(--step-0);
  overflow-x: auto;
}
@media (min-width: 992px) {
  .rank-math-breadcrumb {
    overflow-x: unset;
  }
}
.rank-math-breadcrumb a {
  color: var(--cl-blue-1);
}

.catalog {
  padding: var(--spacing-40);
  background: rgb(0, 80, 164);
  background: linear-gradient(125deg, rgb(0, 80, 164) 0%, rgb(2, 2, 103) 100%);
  color: var(--cl-white);
}
.catalog .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.catalog h4 {
  margin: var(--spacing-15);
  font-size: var(--step-4);
}
.catalog img {
  display: block;
  width: 24rem;
  border: solid 0.3rem var(--cl-yellow-1);
}
.catalog .btn {
  width: auto;
  color: var(--cl-blue-1);
  background-color: var(--cl-yellow-1);
}
.catalog .btn:hover {
  color: var(--cl-blue-1);
}/*# sourceMappingURL=globals.css.map */