:root {
  --white: #fff;
  --gray: #777;
  --white-aa: #ffffff88;
  --white-a: #ffffffaa;
  --black: #020817;
  --red: #c81e3a;
  --red-a: #c81e3acc;
  --orange: #f9821a;
  --orange-a: #f9821a22;
  --blue: #1ca0f2;
  --blue-a: #1ca0f2aa;
  --gray-blue: #64748b;
  --gray-light: #e2e8f0;
  --green: #1eb854;
  --green-a: #1eb854aa;
  --header-height: 80px;
  --logo-circle: 40px;
  --logo-mini-circle: calc(var(--logo-circle) / 3);
  --logo-gradient: var(--orange), var(--red);
  --base-width: calc(100% - 60px);
  --max-width: 1400px;
  --font-base: 20px;
  --font-sz: calc(var(--font-base) - 4px);
  --font-h1: calc(var(--font-base) * 2.5);
  --font-h2: calc(var(--font-base) * 2);
  --font-h3: calc(var(--font-base) * 1.75);
  --font-h4: calc(var(--font-base) * 1.5);
  --font-h5: calc(var(--font-base) * 1.25);
  --font-small: calc(var(--font-base) * 0.65);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: 0;
  box-sizing: border-box;
  color: var(--black);
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-size: var(--font-sz);
  line-height: 1.5;
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
  vertical-align: baseline;
  font-weight: 400;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: 0 0;
  border: none;
  outline: 0;
  border-radius: 0;
}

button {
  cursor: pointer;
  background: 0 0;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

* {
  -webkit-tap-highlight-color: transparent;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

::placeholder {
  color: inherit;
  opacity: .7;
}

details>summary {
  list-style: none;
}

details>summary::-webkit-details-marker {
  display: none;
}

fieldset {
  min-width: 0;
}

legend {
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

:focus {
  outline: 0;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

svg:not(:root) {
  overflow: hidden;
}

meter,
progress {
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.spring {
  flex-grow: 1;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.scroll-none {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.scroll-none::-webkit-scrollbar-thumb {
  background-color: var(--gray);
  border-radius: 1px;
}

.scroll-none::-webkit-scrollbar-track {
  background-color: var(--gray);
}

.scroll-none::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.container {
  width: var(--base-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.row {
  width: calc(100% + 20px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -10px;
}

.col {
  align-self: stretch;
  padding: 0 10px;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 20%;
}

.bgi {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

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

h1 {
  font-size: var(--font-h1);
}

h2 {
  font-size: var(--font-h2);
}

h3 {
  font-size: var(--font-h3);
}

h4 {
  font-size: var(--font-h4);
}

h5 {
  font-size: var(--font-h5);
}

.media-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  height: auto;
  border-radius: 10px;
}

.media-wrapper:before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%;
}

.media-wrapper .media-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body {
  padding-top: var(--header-height);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid var(--gray-light);
  background-color: var(--white-a);
  backdrop-filter: blur(8px);
  z-index: 1002;
}

header .logo,
header .container {
  display: flex;
  align-items: center;
  height: 100%;
}

header .logo,
header .buttons {
  width: 30%;
}

.header-nav {
  width: 40%;
}

.header-nav .nav-list {
  display: flex;
  gap: 10px;
  justify-content: center;
}

header .buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
}

header .buttons a {
  padding: 6px 20px;
  opacity: .9;
  border-radius: 6px;
  color: var(--white);
  transition: .2s;
}

header .buttons a.bg-orange {
  background-color: var(--orange);
}

header .buttons a.bg-blue {
  background-color: var(--blue);
}

header .buttons a:hover {
  opacity: .7;
}

.menu-toggle {
  display: none;
  min-width: 24px;
  height: 24px;
  background: 0 0;
  border: none;
  cursor: pointer;
}

.menu-toggle .menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--green);
  position: absolute;
  left: 0;
  transition: all .3s;
  transform: translateY(-1px);
}

.menu-toggle .menu-toggle-icon::before,
.menu-toggle .menu-toggle-icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--green);
  position: absolute;
  left: 0;
  transition: all .3s;
}

.menu-toggle .menu-toggle-icon::before {
  top: -8px;
}

.menu-toggle .menu-toggle-icon::after {
  top: 8px;
}

.menu-toggle.active .menu-toggle-icon {
  background: 0 0;
}

.menu-toggle.active .menu-toggle-icon::before {
  transform: rotate(45deg);
  background-color: var(--orange);
  top: 0;
}

.menu-toggle.active .menu-toggle-icon::after {
  transform: rotate(-45deg);
  background-color: var(--orange);
  top: 0;
}

.menu-toggle .menu-toggle-text {
  color: var(--green);
  text-transform: uppercase;
}

.full-products .col-4 {
  margin-bottom: 20px;
}

.menu-toggle.active .menu-toggle-text {
  color: var(--orange);
}

.logo .circle {
  margin-top: calc(var(--logo-mini-circle) / -2);
  display: block;
  min-width: var(--logo-circle);
  min-height: var(--logo-circle);
  width: var(--logo-circle);
  height: var(--logo-circle);
  border-radius: 50%;
  background-image: linear-gradient(to bottom right, var(--logo-gradient));
  position: relative;
}

.logo .circle:before,
.logo .circle:after {
  content: '';
  position: absolute;
  display: block;
  width: var(--logo-mini-circle);
  height: var(--logo-mini-circle);
  border-radius: 50%;
}

.logo .circle:before {
  right: 0;
  top: 0;
  background-color: var(--green-a);
}

.logo .circle:after {
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--logo-mini-circle) / -2);
  background-color: var(--blue-a);
}

.logo-meta {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logo-meta span {
  display: block;
  width: 100%;
  line-height: 1;
}

.logo-meta span.logo-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-meta span.logo-sub {
  color: var(--gray-blue);
}

.navigation-overlay,
.body-nav {
  display: none;
}

.nav-list span {
  color: var(--gray-blue);
  transition: .2s;
}

.nav-list li:hover span,
.nav-list .active span {
  color: hsl(var(--black));
}

.breadcrumbs {
  width: var(--base-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumbs ol {
  display: flex;
  gap: 8px;
}

.breadcrumbs ol li:not(:last-child) a,
.breadcrumbs ol li:not(:last-child) a * {
  color: var(--blue);
}

.breadcrumbs ol li:not(:last-child) a:hover {
  text-decoration: underline;
}

.navigation-overlay.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: var(--white-a);
  backdrop-filter: blur(4px);
}

.body-nav.active {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  text-align: center;
}

.body-nav.active span {
  text-transform: uppercase;
}

.body-nav.active li {
  margin-bottom: 10px;
}

.card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 0 6px 0 var(--black);
  position: relative;
}

.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-a);
  backdrop-filter: blur(4px);
}

.card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about .media-wrapper {
  margin-bottom: 20px;
  box-shadow: 0 0 6px 0 var(--black);
}

.about .media-wrapper:before {
  padding-top: 120%;
}

.about .media-content {
  object-fit: cover;
}

.products .media-wrapper {
  width: 90%;
  margin-bottom: 20px;
}

.products .media-wrapper:before {
  padding-top: 130%;
}

small {
  display: block;
}

small,
small * {
  font-size: var(--font-small);
  color: var(--gray-blue);
}

.banner small {
  padding: 6px 10px;
  line-height: 1;
  background-color: var(--orange-a);
  border-radius: 10px;
  color: var(--orange);
  margin-bottom: 10px;
}

.products small {
  margin-bottom: 10px;
}

.description {
  color: var(--gray-blue);
  flex-grow: 1;
  margin-bottom: 20px;
}

.banner h2 {
  margin-bottom: 10px;
}

.banner h1,
.about h3 {
  margin-bottom: 20px;
}

.banner h5 {
  color: var(--blue);
  margin-bottom: 20px;
}

.button {
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--white);
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: start;
}

.banner .buttons .button:first-child {
  background-color: var(--orange);
}

.banner .buttons .button:last-child {
  background-color: var(--green);
}

.about .buttons .button:last-child {
  background-color: var(--green);
}

.about .card-content .row {
  flex-wrap: nowrap;
  gap: 10px;
}

.banner .card {
  padding: 50px 0;
}

footer {
  border-top: 1px solid var(--gray-light);
}

footer .container {
  display: flex;
  justify-content: space-between;
  width: var(--base-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

footer .container:first-child {
  margin-bottom: 40px;
  gap: 20px;
}

footer .container:first-child p,
footer .container:first-child p * {
  color: var(--gray);
}

footer .container:first-child h4 {
  margin-bottom: 8px;
}

footer .container:first-child ul {
  margin-bottom: 10px;
}

footer .container:first-child ul li {
  display: block;
  color: var(--gray);
}

footer .container:first-child ul a {
  color: var(--blue);
}

footer .container:first-child ul a:hover {
  text-decoration: underline;
}

footer .container:first-child .column:not(:last-child) {
  width: 33.333%;
  padding: 20px 0;
  text-align: center;
}

footer .container:first-child .column:first-child {
  text-align: left;
}

footer .container:first-child .column:last-child {
  padding: 20px 0;
  width: 200px;
  text-align: right;
}

section {
  padding: 5vh 0;
}

.banner {
  padding: 20vh 0;
}

.section-description {
  color: var(--gray);
  margin-bottom: 40px;
}

.col-1 .section-title {
  margin-bottom: 20px;
}

.col-1 .section-title,
.col-1 .section-description {
  text-align: center;
}

.section-button {
  display: flex;
  justify-content: end;
  align-items: center;
}

.section-button a {
  background-color: var(--blue);
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--white);
}

section.products {
  margin-bottom: 100px;
}

.card small.sub {
  display: block;
  width: 100%;
  line-height: 1rem;
  padding: 4px 20px;
  color: var(--orange);
  background-color: var(--orange-a);
  border-radius: 6px;
}

.card h1.title {
  line-height: 1;
}

.card h3.title {
  line-height: 1;
}

.card p.description {
  color: var(--gray-blue);
}

.card span.sub {
  display: block;
  color: var(--gray-blue);
}

.products span.sub {
  color: var(--gray-blue);
  margin-bottom: 10px;
}

.products p.description {
  margin-bottom: 10px;
}

.card p.sub {
  line-height: 1;
  color: var(--blue);
}

.card .buttons {
  display: flex;
  gap: 10px;
}

.card .buttons a {
  line-height: 1.25rem;
  padding: 8px 10px;
  color: var(--white);
  border-radius: 8px;
}

.card .image-wrapper {
  display: flex;
  gap: 8px;
}

.card .image-wrapper .image {
  border-radius: 10px;
  overflow: hidden;
}

.about .image-wrapper .image {
  height: 170px;
}

.products .image-wrapper .image {
  margin-bottom: 10px;
}

.card.blure {
  background-color: var(--white-a);
  backdrop-filter: blur(4px);
}

.card,
.bgi-blur {
  display: flex;
  flex-direction: column;
}

.card .bgi-blur h3.title {
  margin-bottom: 20px;
}

p.description {
  flex-grow: 1;
}

.card .bgi-blur {
  background-color: var(--white-aa);
  backdrop-filter: blur(4px);
  margin: -20px;
  padding: 20px;
  height: calc(100% + 40px);
}

.banner .card {
  padding: 40px 20px;
}

.banner .card small.sub {
  margin-bottom: 10px;
}

h1 {
  font-size: var(--font-h1);
}

.banner .card h1.title,
.banner .card p.sub,
.banner .card p.description {
  margin-bottom: 20px;
}

.bgi-blur {
  padding: 40px 20px;
}

.bgi-blur .image-wrapper,
.bgi-blur h1.title,
.bgi-blur p.sub,
.bgi-blur p.description {
  margin-bottom: 20px;
}

.color-buttons,
.category-buttons {
  margin-bottom: 20px;
}

.color-buttons {
  gap: 30px;
}

.color-buttons a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
}

.color-buttons a.active:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 80%;
  height: 80%;
  background-color: var(--white);
  border-radius: 50%;
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.category-buttons .col-3 a {
  background-color: var(--blue);
  padding: 10px 20px;
  color: var(--white);
  border-radius: 10px;
}

.category-buttons .col-3 a.active {
  background-color: var(--orange);
}

h2 {
  font-size: var(--font-h2);
}

h3 {
  font-size: var(--font-h3);
}

.address p {
  text-align: center;
}

.address p a {
  color: var(--blue);
}

.address .delivery p a {
  display: block;
  max-width: 300px;
  margin: 20px auto 0;
  color: var(--white);
  background-color: var(--blue);
  padding: 10px 20px;
  border-radius: 10px;
}

iframe {
  z-index: 1;
}

@media (max-width: 1200px) {
  .banner .col-2 {
    width: 70%;
  }
}

@media (max-width: 1050px) {
  .about .col-2 {
    width: 100%;
  }

  .about .col-2:first-child {
    margin-bottom: 20px;
  }

  .products .col-4 {
    width: 33.333%;
    margin-bottom: 20px;
  }

  .products .container .row:first-child {
    margin-bottom: 20px;
  }

  .products .container .row:first-child .col-2 {
    width: 100%;
  }
}

@media (max-width: 992px) {
  :root {
    --base-width: calc(100% - 20px);
  }

  header .container {
    justify-content: space-between;
  }

  header .container .logo {
    width: 80%;
  }

  .header-nav,
  header .buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 910px) {
  footer .container {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  footer .container * {
    text-align: center;
  }
}

@media (max-width: 810px) {
  .banner .col-2 {
    width: 80%;
  }

  .products .col-4 {
    width: 50%;
  }

  .products .media-wrapper {
    width: 80%;
  }

  footer .container:first-child .column:not(:last-child),
  footer .container:first-child .column:first-child {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .banner .col-2 {
    width: 90%;
  }

  .products .col-4 {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .banner .col-2 {
    width: 100%;
  }

  :root {
    --font-base: 16px;
    --font-sz: var(--font-base);
    --font-h1: calc(var(--font-base) * 2);
  }
}
.error-body{
	padding-top: 0;
}
.error-page {
	width: 100vw;
	height: 100vh;
	position: relative;
}
.error-page .content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.error-img{
	position: absolute;
	right: 0;
	background-color: var(--green-a);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.error-img h1{
	color: var(--white);
}
.error-content {
  	background-image: linear-gradient(to bottom right, var(--logo-gradient));
    width: 70vmin;
    height: 70vmin;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.error-content h2{
	width: 80%;
	margin: 0 auto 20px;
	color: var(--white);
}
.error-content p{
	width: 80%;
	margin: 0 auto 20px;
	color: var(--white);
}
.error-content .buttons{
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 10px;
	color: var(--white);
}
.error-content .buttons a{
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	padding: 10px 20px;
}
.error-page .buttons-wrapper{
	background-color: var(--blue-a);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translateY(-50%);
}
@media (max-width: 810px) {
	.error-img{
		width: 120px;
		height: 120px;
	}
	.error-content {
	    width: 80vmin;
	    height: 80vmin;
	}
	.error-page .buttons-wrapper{
		width: 120px;
		height: 120px;
	}
}
@media (max-width: 600px) {
	.error-img{
		width: 100px;
		height: 100px;
	}
	.error-content {
	    width: 90vmin;
	    height: 90vmin;
	}
	.error-page .buttons-wrapper{
		width: 80px;
		height: 80px;
	}
}
@media (max-height: 800px) {
	.error-img{
		width: 100px;
		height: 100px;
	}
	.error-content {
	    width: 80vmin;
	    height: 80vmin;
	}
	.error-page .buttons-wrapper{
		width: 80px;
		height: 80px;
	}
}