@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
  --bg-color: #f0f0f0;
  --bg-color2: #f0f0f0aa;
  --color: #1b1b1b;
  --input-bg: #f0f0f0;
  --shadow-1: #a8a8a8;
  --shadow-2: #ffffff;
  --button: #ff5548;
  --button-ps: #ff554880;
}

[data-theme=dark] {
  --bg-color: #1a1a1a;
  --bg-color2: #1a1a1aaa;
  --color: #c0c0c0;
  --input-bg: #1b1b1b;
  --shadow-1: #1f1f1f;
  --shadow-2: #0c0c0c;
  --button: #b73743;
  --button-ps: #b7374380;
}
[data-theme=dark] .map {
  box-shadow: 10px 10px 10px rgba(12, 12, 12, 0.5019607843) !important;
}

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

::-webkit-scrollbar {
  width: 0.3em;
}
::-webkit-scrollbar-thumb {
  background-color: #b73743;
  border-radius: 50vh;
}

@keyframes eating {
  0% {
    transform: scale(1) rotate(0);
  }
  8% {
    transform: scale(1) rotate(0);
  }
  28% {
    transform: scale(1) rotate(15deg);
  }
  48% {
    transform: scale(1) rotate(-15deg);
  }
  68% {
    transform: scale(1) rotate(15deg);
  }
  69% {
    opacity: 1;
    transform: scale(1) rotate(15deg);
  }
  70% {
    opacity: 0;
  }
  90% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes eating2 {
  0% {
    fill: #ffffff;
  }
  9% {
    fill: #ffffff;
  }
  10% {
    fill: #000000;
  }
  90% {
    fill: #000000;
  }
  95% {
    fill: #ffffff;
  }
}
@keyframes eating3 {
  0% {
    fill: #ffffff;
  }
  29% {
    fill: #ffffff;
  }
  30% {
    fill: #000000;
  }
  90% {
    fill: #000000;
  }
  95% {
    fill: #ffffff;
  }
}
@keyframes eating4 {
  0% {
    fill: #ffffff;
  }
  49% {
    fill: #ffffff;
  }
  50% {
    fill: #000000;
  }
  90% {
    fill: #000000;
  }
  95% {
    fill: #ffffff;
  }
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bg-color);
  position: relative;
}
body img, body svg {
  vertical-align: initial;
}

.loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  background-color: var(--bg-color);
  transition: 0.2s ease-out;
}
.loader svg {
  width: 20em;
  max-width: 70%;
  animation: eating 4s infinite forwards;
}
.loader svg .group1 {
  fill: #ffffff;
  animation: eating2 4s infinite forwards;
}
.loader svg .group2 {
  fill: #ffffff;
  animation: eating3 4s infinite forwards;
}
.loader svg .group3 {
  fill: #ffffff;
  animation: eating4 4s infinite forwards;
}

.pattern {
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern.webp");
  z-index: -1;
  position: absolute;
  background-size: 35em;
  opacity: 0.1;
}

header {
  width: 100%;
  height: 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1em;
  font-weight: 600;
  position: sticky;
  top: 0;
  background: var(--bg-color2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
}
header i {
  font-size: 1.5em;
  padding: 0.2em;
  color: #b73743;
  transition: 0.2s ease-out;
}
header i.fa-bars {
  display: none;
}
header i:hover {
  cursor: pointer;
  color: #ff5448;
}
header .nigiriIcon {
  height: 50%;
  width: max-content;
}
header .nigiriIcon img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
header ul {
  list-style: none;
  display: flex;
  gap: 0.5em;
  text-transform: uppercase;
  margin-left: auto;
  margin-bottom: 0;
  z-index: 10;
  position: relative;
}
header ul .fakeHeader {
  height: 4em;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  padding-left: 1em;
  opacity: 0;
  visibility: hidden;
}
header ul a {
  color: #b73743;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 50vh;
  background-color: rgba(255, 85, 72, 0);
  transition: 0.2s ease-out;
}
header ul a.active {
  background-color: rgba(255, 84, 72, 0.8);
  color: var(--bg-color);
}
header ul a:hover {
  background-color: rgba(255, 84, 72, 0.8);
  color: var(--bg-color);
}
header .themeSwitcher {
  height: 50%;
  aspect-ratio: 2/1;
  margin-left: 1em;
}
header .themeSwitcher input {
  display: none;
}
header .themeSwitcher input:checked + .toggle .circle {
  transform: translateX(0);
  border: 3px solid #685f93;
}
header .themeSwitcher .toggle {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.2em;
  background-color: var(--bg-color);
  border-radius: 50vh;
  overflow: hidden;
  border: 2px solid rgba(192, 192, 192, 0.5019607843);
}
header .themeSwitcher .toggle label {
  width: 100%;
  height: 100%;
  position: absolute;
}
header .themeSwitcher .toggle label:hover {
  cursor: pointer;
}
header .themeSwitcher .toggle .circle {
  height: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid rgba(255, 84, 72, 0.8);
  background-color: var(--bg-color);
  transform: translateX(calc(150% - 0.2em));
  transition: 0.3s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  pointer-events: none;
  position: absolute;
}
header .themeSwitcher .toggle .sun {
  height: 70%;
  aspect-ratio: 1/1;
  margin-left: 0.1em;
}
header .themeSwitcher .toggle .moon {
  height: 70%;
  aspect-ratio: 1/1;
  margin-right: 0.1em;
}

footer {
  width: 100%;
  height: 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1em;
  color: #b73743;
  font-weight: 600;
  font-size: clamp(0.6em, -0.875em + 8.333vw, 1em);
}
footer .social {
  height: 100%;
  width: max-content;
  display: flex;
  gap: 1em;
  align-items: center;
}
footer .social .pic {
  height: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .social .pic a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  text-decoration: none;
}
footer .social .pic i {
  font-size: 1.5em;
  color: #b73743;
  transition: 0.2s ease-out;
}
footer .social .pic i:hover {
  color: #ff5448;
}

@media (max-width: 800px) {
  header i.fa-bars {
    display: initial;
  }
  header .nigiriIcon {
    display: none;
  }
  header ul {
    width: 100%;
    height: 100vh;
    position: fixed;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    top: 0;
    left: 0;
    background-color: var(--bg-color);
    font-size: 1.2em;
    transform: translateX(-100%);
    transform-origin: left;
    transition: 0.3s ease-out;
  }
  header ul.active {
    transform: translateX(0);
  }
  header ul .fakeHeader {
    visibility: visible;
    opacity: 1;
  }
  header ul li {
    width: 50%;
    display: flex;
    align-items: center;
  }
}
.container1 {
  width: 100%;
  min-height: calc(100vh - 4em);
  display: flex;
  flex-direction: column;
  padding: 1em 2em;
  gap: 2em;
}
.container1 h2 {
  font-size: clamp(2em, -0.875em + 8.333vw, 3em);
  font-weight: 800;
  color: #b73743;
}
.container1 .container-fluid {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin: 0;
}
.container1 .container-fluid .row {
  gap: 2em;
}
.container1 .container-fluid .row .pic {
  width: 40%;
  height: 15em;
  border-radius: 25px;
  overflow: hidden;
  padding: 0;
}
.container1 .container-fluid .row .pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.container1 .container-fluid .row .info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}
.container1 .container-fluid .row .info h3 {
  font-size: clamp(1.5em, -0.875em + 8.333vw, 1.8vw);
  font-weight: 700;
  color: #ff5548;
}
.container1 .container-fluid .row .info p {
  font-size: clamp(0.9em, -0.875em + 8.333vw, 1.1vw);
  font-weight: 500;
  color: var(--color);
}

@media (max-width: 800px) {
  .container1 h2 {
    text-align: center;
  }
  .container1 .container-fluid {
    gap: 5em;
  }
  .container1 .container-fluid .row .order-2 {
    order: initial !important;
  }
  .container1 .container-fluid .row .pic,
.container1 .container-fluid .row .info {
    width: 100%;
  }
}

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