@charset "UTF-8";
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/RobotoSlab-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/RobotoSlab-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/RobotoSlab-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

section.padding-top {
  padding-top: 2rem;
}
section.padding-bottom {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  section.padding-top {
    padding-top: 4rem;
  }
  section.padding-bottom {
    padding-bottom: 4rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% + 1rem));
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
button {
  cursor: pointer;
  border: none;
}

.button {
  transition: background-color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.button.primary {
  background-color: #ff9da0;
  color: #012924;
}
.button.primary:hover {
  background-color: color-mix(in srgb, #ff9da0 90%, #012924);
}
.button.primary:active {
  background-color: color-mix(in srgb, #ff9da0 70%, #012924);
}
.button.secondary {
  background-color: transparent;
  color: #012924;
  border: 1px solid #cecece;
}
.button.secondary:hover {
  background-color: color-mix(in srgb, #cecece 30%, white);
}
.button.secondary:active {
  background-color: color-mix(in srgb, #cecece 50%, white);
}

:root {
  --nav-link-color: #374151;
  --nav-hover-bg: color-mix(in srgb, #F7F9F2, black 5%);
  --nav-active-bg: color-mix(in srgb, #F7F9F2, black 15%);
  --nav-border-color: #e5e7eb;
  --nav-transition: all 0.2s ease;
}

nav {
  position: relative;
  background-color: transparent;
}

.nav-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}

.mobile-menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: var(--nav-transition);
}
.mobile-menu-button:hover {
  background-color: var(--nav-hover-bg);
}
.mobile-menu-button:focus {
  outline: 2px solid #012924;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}
.mobile-menu-button svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: var(--nav-transition);
}
.mobile-menu-button svg.menu-icon {
  display: block;
}
.mobile-menu-button svg.close-icon {
  display: none;
}
.mobile-menu-button.menu-open svg.menu-icon {
  display: none;
}
.mobile-menu-button.menu-open svg.close-icon {
  display: block;
}

.logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .logo {
    align-items: stretch;
    justify-content: flex-start;
  }
}
.logo img {
  height: 5rem;
  width: auto;
}

.nav-links a {
  color: var(--nav-link-color);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  transition: var(--nav-transition);
  position: relative;
}
.nav-links a:hover {
  background-color: var(--nav-hover-bg);
}
.nav-links a:active {
  background-color: var(--nav-active-bg);
}

.desktop-nav {
  display: none;
}
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}

.language-switcher .lang-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.language-switcher .lang-link:hover {
  background-color: var(--nav-hover-bg);
}
.language-switcher .lang-link .flag-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.language-switcher .lang-link span {
  display: none;
}

.language-switcher-mobile {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--nav-border-color);
}
.language-switcher-mobile .lang-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  padding: 0.5rem;
  text-decoration: none;
  color: var(--nav-link-color);
  transition: var(--nav-transition);
  border-radius: 0.25rem;
}
.language-switcher-mobile .lang-link:hover {
  background-color: var(--nav-hover-bg);
}
.language-switcher-mobile .lang-link .flag-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.language-switcher-mobile .lang-link span {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.mobile-menu {
  animation: slideDown 0.3s ease-out;
  display: none;
  background-color: #F7F9F2;
  border-bottom: 1px solid var(--nav-border-color);
  padding: 0.5rem;
  padding-top: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu:not(.hidden) {
  display: block;
}
.mobile-menu .mobile-nav-links a {
  color: var(--nav-link-color);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  transition: var(--nav-transition);
  position: relative;
  display: flex;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}
.mobile-menu .mobile-nav-links a:hover {
  background-color: var(--nav-hover-bg);
}
.mobile-menu .mobile-nav-links a:active {
  background-color: var(--nav-active-bg);
}
.mobile-menu .mobile-nav-links a:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 2rem;
  text-align: center;
  padding-bottom: 4rem;
}
.hero-text h1 {
  line-height: 1.2;
  font-size: 2.25rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}
.hero-text p {
  line-height: 1.5;
  font-size: 1rem;
  color: color-mix(in srgb, #012924 70%, white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* Hero section: Slideshow */
.hero-slideshow {
  display: flex;
  gap: 2rem;
  animation: slideLeft 60s linear infinite;
  width: -moz-max-content;
  width: max-content;
  padding: 0 2rem;
}
.hero-slideshow img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border-radius: 1rem;
  aspect-ratio: 4/3;
}
.hero-slideshow img.square {
  aspect-ratio: 1/1;
}

/* Print styles */
@media print {
  .hero-slideshow {
    display: none;
  }
}
/* Media queries */
@media (min-width: 576px) {
  .hero-text h1 {
    font-size: 2.75rem;
  }
  .hero-text p {
    font-size: 1.125rem;
  }
  .hero-slideshow img {
    height: 360px;
  }
}
@media (min-width: 768px) {
  .hero-text {
    padding-bottom: 6rem;
  }
  .hero-text h1 {
    font-size: 3.25rem;
  }
  .hero-text p {
    font-size: 1.25rem;
  }
  .hero-slideshow img {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
  .hero-text p {
    font-size: 1.375rem;
  }
  .hero-slideshow img {
    height: 440px;
  }
}
@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 4rem;
  }
  .hero-text p {
    font-size: 1.375rem;
  }
  .hero-slideshow img {
    height: 480px;
  }
}
.offerings {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.offerings .heading {
  text-align: center;
  max-width: 60rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.offerings .heading.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.offerings .heading h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.offerings .heading p {
  font-size: 1rem;
  color: #808080;
}
.offerings .grid {
  display: grid;
  gap: 1rem;
}

.offering {
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.offering.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.offering .icon {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, transform 0.3s ease;
}
.offering .icon.animate-in {
  opacity: 1;
  transform: scale(1);
}
.offering.first {
  background-color: color-mix(in srgb, #BBD8EC 60%, white);
}
.offering.first p {
  color: color-mix(in srgb, #BBD8EC 50%, black);
}
.offering.first .icon {
  background-color: #BBD8EC;
}
.offering.second {
  background-color: color-mix(in srgb, #D6E5BE 60%, white);
}
.offering.second p {
  color: color-mix(in srgb, #D6E5BE 50%, black);
}
.offering.second .icon {
  background-color: #D6E5BE;
}
.offering.third {
  background-color: color-mix(in srgb, #FAE1A7 60%, white);
}
.offering.third p {
  color: color-mix(in srgb, #FAE1A7 50%, black);
}
.offering.third .icon {
  background-color: #FAE1A7;
}
.offering.fourth {
  background-color: color-mix(in srgb, #FFCBE1 60%, white);
}
.offering.fourth p {
  color: color-mix(in srgb, #FFCBE1 50%, black);
  margin-bottom: 1rem;
}
.offering.fourth a {
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}
.offering.fourth .icon {
  background-color: #FFCBE1;
}
.offering h3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.offering p {
  text-align: justify;
  font-size: 1rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .offerings .heading {
    margin-bottom: 4rem;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .first {
    grid-column: 1/2;
  }
  .second {
    grid-column: 2/3;
  }
  .third {
    grid-column: 1/2;
  }
  .fourth {
    grid-column: 2/3;
  }
}
@media (min-width: 992px) {
  .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .first {
    grid-column: 1/4;
  }
  .second {
    grid-column: 4/6;
  }
  .third {
    grid-column: 1/3;
  }
  .fourth {
    grid-column: 3/6;
  }
}
.teachers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.teachers .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.teachers .heading.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.teachers h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.teachers h2 .highlight {
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.teachers h2 .orange {
  color: #FF964F;
  background-color: color-mix(in srgb, #FF964F 30%, white);
}
.teachers h2 .brown {
  color: #836953;
  background-color: color-mix(in srgb, #836953 30%, white);
}
.teachers p {
  font-size: 1rem;
  color: #808080;
  text-align: justify;
}
.teachers img {
  width: 100%;
  max-height: 26rem;
  border-radius: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.teachers img.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .teachers {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
  .teachers .heading {
    grid-column: 1/2;
    text-align: left;
  }
  .teachers img {
    height: 26rem;
    grid-column: 2/2;
  }
}
.pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.pricing .heading {
  text-align: center;
  max-width: 60rem;
  margin-bottom: 2rem;
}
.pricing .heading h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.05s, transform 0.4s ease-out 0.05s;
}
.pricing .heading p {
  font-size: 1rem;
  color: #808080;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
}
.pricing.in-view .heading h2,
.pricing.in-view .heading p {
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.15s, transform 0.4s ease-out 0.15s;
}

.pricing.in-view .pricing-grid {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.pricing-card:nth-child(1) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.25s, transform 0.4s ease-out 0.25s;
}
.pricing-card:nth-child(2) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.35s, transform 0.4s ease-out 0.35s;
}
.pricing-card:nth-child(3) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.45s, transform 0.4s ease-out 0.45s;
}
.pricing-card.best-offer {
  border: 2px solid #4CAF50;
  transform: scale(1.02);
}
.pricing-card .best-offer-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #4CAF50;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.pricing-card > p {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.pricing-card .price-container {
  color: #2E4A3D;
}
.pricing-card .price-container .price {
  font-size: 3rem;
  font-weight: 700;
}
.pricing-card .price-container span:last-child {
  font-size: 1rem;
}
.pricing-card .price-container .discount {
  font-size: 0.875rem;
}
.pricing-card hr {
  border: none;
  height: 1px;
  background: rgba(1, 41, 36, 0.15);
  margin: 1rem 0;
}
.pricing-card .includes-section {
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-card .includes-section .includes-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.pricing-card .button {
  width: 100%;
  color: white;
  margin-top: auto;
  text-align: center;
}

.disclaimer {
  font-size: 0.875rem;
  color: #808080;
  margin: 1rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.55s, transform 0.4s ease-out 0.55s;
}

.pricing.in-view .pricing-card {
  opacity: 1;
  transform: translateY(0);
}
.pricing.in-view .pricing-card.best-offer {
  transform: scale(1.02);
}

.pricing.in-view .disclaimer {
  opacity: 1;
  transform: translateY(0);
}

.lesson-includes {
  display: grid;
  gap: 1rem;
  width: 100%;
}
.lesson-includes > div:nth-child(1) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
}
.lesson-includes > div:nth-child(2) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
}
.lesson-includes > div:nth-child(3) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out 0.3s, transform 0.4s ease-out 0.3s;
}
.lesson-includes h3 {
  font-size: 1rem;
  color: #012924;
  margin-bottom: 1rem;
}
.lesson-includes h4 {
  font-size: 0.875rem;
  color: #808080;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.lesson-includes.in-view > div {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .pricing .heading {
    margin-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  .lesson-includes {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.contact {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.contact.in-view {
  opacity: 1;
}
.contact div {
  background-color: #012924;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}
.contact div h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact div p {
  color: #F8FCD4;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact div {
    padding: 4rem 2rem;
  }
}
footer {
  margin: 2rem 0;
}
footer .footer-content {
  display: grid;
  gap: 2rem;
  text-align: center;
}
footer .footer-content img {
  height: 5rem;
  width: auto;
  margin: 0 auto;
}
footer .footer-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #012924;
}
footer .footer-content .footer-contact .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-content .footer-contact .contact-info img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.25rem;
  color: #ff9da0;
}
footer .footer-content .footer-contact .contact-info div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
footer .footer-content .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .footer-content .footer-contact a,
footer .footer-content .footer-links a {
  color: #012924;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
footer .footer-content .footer-contact a:hover,
footer .footer-content .footer-links a:hover {
  color: #ff9da0;
}
footer .footer-content .footer-social .social-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
footer .footer-content .footer-social .social-links a img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(0.2);
  transition: filter 0.3s ease;
}
footer .footer-content .footer-social .social-links a img:hover {
  filter: brightness(0) invert(0.5) sepia(1) saturate(5) hue-rotate(320deg);
}

@media (min-width: 768px) {
  footer {
    margin: 4rem 0;
  }
  footer .footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: left;
    align-items: start;
    gap: 4rem;
  }
  footer .footer-content img {
    grid-column: span 1;
  }
  footer .footer-content .footer-contact .contact-info {
    align-items: flex-start;
  }
  footer .footer-content .footer-contact .contact-info {
    align-items: flex-start;
  }
  footer .footer-content .footer-social .social-links {
    justify-content: flex-start;
  }
}
.privacy-policy h1 {
  font-size: 2rem;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #F7F9F2;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  color: #012924;
}

.list li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.list li::before {
  content: "✓";
  text-align: center;
  color: #4CAF50;
  background-color: rgba(76, 175, 80, 0.2);
  border-radius: 50%;
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  line-height: 1.25em;
  margin-right: 8px;
}
.list li:last-child {
  margin-bottom: 0;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  button {
    border: 1px solid black !important;
  }
}/*# sourceMappingURL=styles.css.map */