:root {
  --color: #019a3f;
}

html,
body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.2;
}

.color {
  color: var(--color);
}

.logged-in {
  --toolbar: 32px;
}

.text-center {
  text-align: center;
}

.semibold {
  font-weight: 700;
}

.bold {
  font-weight: bold;
}

.black {
  font-weight: bolder;
}

.container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.header {
  width: 100%;
  height: 4rem;
  position: fixed;
  top: var(--toolbar, 0);
  left: 0;
  z-index: 900;
  background-color: var(--color);
  padding: 0 1rem;
}
.header .container {
  height: 4rem;
}

.nav {
  display: none;
  margin-left: auto;
}
@media (min-width: 768px) {
  .nav {
    display: block;
  }
}
.nav ul {
  display: flex;
  align-items: center;
}
.nav ul li {
  color: #fff;
}
.nav ul li a {
  font-weight: bold;
  display: block;
  padding: 10px 16px;
}

.identity {
  width: 180px;
  height: 100%;
}
.identity img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(10) grayscale(1);
}

.hero {
  width: 100%;
  height: auto;
  min-height: 100svh;
  position: relative;
  padding: 4rem 0;
  isolation: isolate;
  background-color: #d2d2d2;
  background-image: url("../assets/hero-fondo.webp");
  background-size: cover;
  background-attachment: fixed;
}
@media (min-width: 768px) {
  .hero {
    min-height: 75vh;
    max-height: 100svh;
  }
}
.hero > svg {
  position: absolute;
  pointer-events: none;
}
.hero #svg_1 {
  max-width: 90%;
  top: 0;
  left: 0;
}
.hero #svg_2 {
  width: 100%;
  max-width: 452px;
  max-height: 300px;
  aspect-ratio: 452/300;
  right: 0;
  bottom: 0;
}
.hero_btns a {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.hero_content {
  height: 100%;
  display: flex;
  align-items: center;
}
.hero_box {
  width: 100%;
  max-width: 600px;
  padding: 4rem 1rem;
}
.hero_title {
  font-size: clamp(2rem, 5vw, 60px);
  font-weight: 900;
  color: #121212;
  line-height: 1;
  margin: 1rem 0;
}
.hero_excerpt {
  font-size: 1.2rem;
  color: #121212;
  margin: 1rem 0;
}
.hero_img {
  width: 100%;
  max-width: 600px;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

.details {
  width: 100%;
  padding: 3rem 1rem;
  background-color: #000;
  color: #fff;
}
.details_title {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin: 1rem 0;
}
.details_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
}
.details_item {
  padding: 1rem;
  text-align: center;
}
.details_item > img {
  width: auto;
  height: 60px;
  margin: 0 auto;
}
.details_item > p {
  color: #c7c7c7;
  margin-top: 1rem;
}

.about {
  padding: 4rem 0;
}
.about_title {
  font-weight: bold;
  margin-bottom: 2rem;
  color: #fff;
}
.about_description {
  position: relative;
  z-index: 10;
  padding: 2rem 0;
}
.about_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_box {
  background-color: #000;
  padding: 1rem;
}
@media (min-width: 640px) {
  .about_box {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .about_box {
    padding: 4rem;
    translate: 2rem 0 0;
  }
}
.about_box p {
  margin-bottom: 1rem;
  color: #d2d2d2;
  line-height: 1.5;
}
.about_box b,
.about_box strong {
  color: var(--color);
}

.products {
  background-color: #fafafa;
  padding: 4rem 1rem;
}
.products_title {
  margin-bottom: 4rem;
}
.products_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  grid-template-rows: repeat(4, auto);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 10px;
  justify-content: center;
}

.product {
  max-width: 420px;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
}
.product:hover {
  scale: 1.1;
}
.product_title {
  color: var(--color);
}
.product_subtitle {
  color: #898989;
}
.product_features_list {
  color: #535353;
  filter: brightness(0.8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.product_features_list li {
  grid-column: span 3;
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.product_features_list li:has(> b) {
  font-size: 1rem;
  grid-column: span 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin: 20px 0;
}
.product_features_list li:has(> b) b {
  font-size: 0.8rem;
}
.product_features_list li:has(> b) em {
  font-size: 0.7rem;
}

.banner {
  width: 100%;
  min-height: 10rem;
  background-image: url("../assets/bg-banner.webp");
  background-size: cover;
  background-attachment: fixed;
  padding: 4rem 1rem;
}
.banner_img {
  width: auto;
  height: 100px;
  filter: invert(1);
  margin: 2rem;
}

.footer {
  width: 100%;
  padding: 1rem;
  background-color: #000;
  color: #fff;
}
.footer_content {
  padding: 2rem;
}
.footer_content > div {
  padding: 1rem 0;
}
.footer_info {
  padding: 1rem clamp(50px, 4vw, 1rem);
  filter: brightness(0.7);
}
.footer_title {
  width: -moz-max-content;
  width: max-content;
  border-bottom: solid 2px var(--color);
}
.footer p {
  margin-bottom: 20px;
}
.footer a:hover {
  color: var(--color) !important;
}

form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
form label {
  font-weight: bold;
}
form p {
  margin: 1rem 0;
}
form :where(input, textarea) {
  max-width: 100%;
  background-color: #242424;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
}

.gotop {
  width: 3rem;
  height: 3rem;
  background-color: var(--color);
  border-radius: 50%;
  color: #fff;
  position: fixed;
  font-size: 30px;
  z-index: 600;
  left: 1rem;
  bottom: 1rem;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: all 300ms;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.223));
}
.gotop.show {
  opacity: 1;
  pointer-events: all;
}

.btn-cta {
  width: 3rem;
  height: 3rem;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 600;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.223));
}

.btn,
[type=submit] {
  width: -moz-max-content;
  width: max-content;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: var(--color);
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 250ms ease;
}
.btn:hover,
[type=submit]:hover {
  filter: brightness(1.2);
}
.btn span,
[type=submit] span {
  font-weight: bold;
}
.btn > svg,
[type=submit] > svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.btn path,
[type=submit] path {
  stroke: #fff;
}

.w-full {
  width: 100%;
}

.w-1 {
  width: 8.333333%;
}

.w-2 {
  width: 16.666667%;
}

.w-3 {
  width: 25%;
}

.w-4 {
  width: 33.333333%;
}

.w-5 {
  width: 41.666667%;
}

.w-6 {
  width: 50%;
}

.w-7 {
  width: 58.333333%;
}

.w-8 {
  width: 66.666667%;
}

.w-9 {
  width: 75%;
}

.w-10 {
  width: 83.333333%;
}

.w-11 {
  width: 91.666667%;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-stretch {
  justify-content: stretch;
}

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

.justify-evenly {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-md {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.text-8xl {
  font-size: 6rem;
}

.text-9xl {
  font-size: 8rem;
}

.row {
  flex-direction: row;
}

.row-reverse {
  flex-direction: row-reverse;
}

.column {
  flex-direction: column;
}

.column-reverse {
  flex-direction: column-reverse;
}

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap;
}

@media (width >= 480px) {
  .xs\:w-full {
    width: 100%;
  }
  .xs\:w-1 {
    width: 8.333333%;
  }
  .xs\:w-2 {
    width: 16.666667%;
  }
  .xs\:w-3 {
    width: 25%;
  }
  .xs\:w-4 {
    width: 33.333333%;
  }
  .xs\:w-5 {
    width: 41.666667%;
  }
  .xs\:w-6 {
    width: 50%;
  }
  .xs\:w-7 {
    width: 58.333333%;
  }
  .xs\:w-8 {
    width: 66.666667%;
  }
  .xs\:w-9 {
    width: 75%;
  }
  .xs\:w-10 {
    width: 83.333333%;
  }
  .xs\:w-11 {
    width: 91.666667%;
  }
  .xs\:block {
    display: block;
  }
  .xs\:hidden {
    display: none;
  }
  .xs\:flex {
    display: flex;
  }
  .xs\:justify-center {
    justify-content: center;
  }
  .xs\:justify-start {
    justify-content: flex-start;
  }
  .xs\:justify-end {
    justify-content: flex-end;
  }
  .xs\:justify-stretch {
    justify-content: stretch;
  }
  .xs\:justify-between {
    justify-content: space-between;
  }
  .xs\:justify-evenly {
    justify-content: space-evenly;
  }
  .xs\:justify-around {
    justify-content: space-around;
  }
  .xs\:items-center {
    align-items: center;
  }
  .xs\:items-start {
    align-items: flex-start;
  }
  .xs\:items-end {
    align-items: flex-end;
  }
  .xs\:items-stretch {
    align-items: stretch;
  }
  .xs\:text-xs {
    font-size: 0.75rem;
  }
  .xs\:text-sm {
    font-size: 0.875rem;
  }
  .xs\:text-md {
    font-size: 1rem;
  }
  .xs\:text-lg {
    font-size: 1.125rem;
  }
  .xs\:text-xl {
    font-size: 1.25rem;
  }
  .xs\:text-2xl {
    font-size: 1.5rem;
  }
  .xs\:text-3xl {
    font-size: 1.875rem;
  }
  .xs\:text-4xl {
    font-size: 2.25rem;
  }
  .xs\:text-5xl {
    font-size: 3rem;
  }
  .xs\:text-6xl {
    font-size: 3.75rem;
  }
  .xs\:text-7xl {
    font-size: 4.5rem;
  }
  .xs\:text-8xl {
    font-size: 6rem;
  }
  .xs\:text-9xl {
    font-size: 8rem;
  }
  .xs\:row {
    flex-direction: row;
  }
  .xs\:row-reverse {
    flex-direction: row-reverse;
  }
  .xs\:column {
    flex-direction: column;
  }
  .xs\:column-reverse {
    flex-direction: column-reverse;
  }
  .xs\:wrap {
    flex-wrap: wrap;
  }
  .xs\:nowrap {
    flex-wrap: nowrap;
  }
}
@media (width >= 640px) {
  .sm\:w-full {
    width: 100%;
  }
  .sm\:w-1 {
    width: 8.333333%;
  }
  .sm\:w-2 {
    width: 16.666667%;
  }
  .sm\:w-3 {
    width: 25%;
  }
  .sm\:w-4 {
    width: 33.333333%;
  }
  .sm\:w-5 {
    width: 41.666667%;
  }
  .sm\:w-6 {
    width: 50%;
  }
  .sm\:w-7 {
    width: 58.333333%;
  }
  .sm\:w-8 {
    width: 66.666667%;
  }
  .sm\:w-9 {
    width: 75%;
  }
  .sm\:w-10 {
    width: 83.333333%;
  }
  .sm\:w-11 {
    width: 91.666667%;
  }
  .sm\:block {
    display: block;
  }
  .sm\:hidden {
    display: none;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:justify-stretch {
    justify-content: stretch;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:justify-evenly {
    justify-content: space-evenly;
  }
  .sm\:justify-around {
    justify-content: space-around;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:items-start {
    align-items: flex-start;
  }
  .sm\:items-end {
    align-items: flex-end;
  }
  .sm\:items-stretch {
    align-items: stretch;
  }
  .sm\:text-xs {
    font-size: 0.75rem;
  }
  .sm\:text-sm {
    font-size: 0.875rem;
  }
  .sm\:text-md {
    font-size: 1rem;
  }
  .sm\:text-lg {
    font-size: 1.125rem;
  }
  .sm\:text-xl {
    font-size: 1.25rem;
  }
  .sm\:text-2xl {
    font-size: 1.5rem;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
  }
  .sm\:text-4xl {
    font-size: 2.25rem;
  }
  .sm\:text-5xl {
    font-size: 3rem;
  }
  .sm\:text-6xl {
    font-size: 3.75rem;
  }
  .sm\:text-7xl {
    font-size: 4.5rem;
  }
  .sm\:text-8xl {
    font-size: 6rem;
  }
  .sm\:text-9xl {
    font-size: 8rem;
  }
  .sm\:row {
    flex-direction: row;
  }
  .sm\:row-reverse {
    flex-direction: row-reverse;
  }
  .sm\:column {
    flex-direction: column;
  }
  .sm\:column-reverse {
    flex-direction: column-reverse;
  }
  .sm\:wrap {
    flex-wrap: wrap;
  }
  .sm\:nowrap {
    flex-wrap: nowrap;
  }
}
@media (width >= 768px) {
  .md\:w-full {
    width: 100%;
  }
  .md\:w-1 {
    width: 8.333333%;
  }
  .md\:w-2 {
    width: 16.666667%;
  }
  .md\:w-3 {
    width: 25%;
  }
  .md\:w-4 {
    width: 33.333333%;
  }
  .md\:w-5 {
    width: 41.666667%;
  }
  .md\:w-6 {
    width: 50%;
  }
  .md\:w-7 {
    width: 58.333333%;
  }
  .md\:w-8 {
    width: 66.666667%;
  }
  .md\:w-9 {
    width: 75%;
  }
  .md\:w-10 {
    width: 83.333333%;
  }
  .md\:w-11 {
    width: 91.666667%;
  }
  .md\:block {
    display: block;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex {
    display: flex;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:justify-stretch {
    justify-content: stretch;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:justify-evenly {
    justify-content: space-evenly;
  }
  .md\:justify-around {
    justify-content: space-around;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:items-start {
    align-items: flex-start;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:items-stretch {
    align-items: stretch;
  }
  .md\:text-xs {
    font-size: 0.75rem;
  }
  .md\:text-sm {
    font-size: 0.875rem;
  }
  .md\:text-md {
    font-size: 1rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
  }
  .md\:text-7xl {
    font-size: 4.5rem;
  }
  .md\:text-8xl {
    font-size: 6rem;
  }
  .md\:text-9xl {
    font-size: 8rem;
  }
  .md\:row {
    flex-direction: row;
  }
  .md\:row-reverse {
    flex-direction: row-reverse;
  }
  .md\:column {
    flex-direction: column;
  }
  .md\:column-reverse {
    flex-direction: column-reverse;
  }
  .md\:wrap {
    flex-wrap: wrap;
  }
  .md\:nowrap {
    flex-wrap: nowrap;
  }
}
@media (width >= 1024px) {
  .lg\:w-full {
    width: 100%;
  }
  .lg\:w-1 {
    width: 8.333333%;
  }
  .lg\:w-2 {
    width: 16.666667%;
  }
  .lg\:w-3 {
    width: 25%;
  }
  .lg\:w-4 {
    width: 33.333333%;
  }
  .lg\:w-5 {
    width: 41.666667%;
  }
  .lg\:w-6 {
    width: 50%;
  }
  .lg\:w-7 {
    width: 58.333333%;
  }
  .lg\:w-8 {
    width: 66.666667%;
  }
  .lg\:w-9 {
    width: 75%;
  }
  .lg\:w-10 {
    width: 83.333333%;
  }
  .lg\:w-11 {
    width: 91.666667%;
  }
  .lg\:block {
    display: block;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:justify-center {
    justify-content: center;
  }
  .lg\:justify-start {
    justify-content: flex-start;
  }
  .lg\:justify-end {
    justify-content: flex-end;
  }
  .lg\:justify-stretch {
    justify-content: stretch;
  }
  .lg\:justify-between {
    justify-content: space-between;
  }
  .lg\:justify-evenly {
    justify-content: space-evenly;
  }
  .lg\:justify-around {
    justify-content: space-around;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:items-start {
    align-items: flex-start;
  }
  .lg\:items-end {
    align-items: flex-end;
  }
  .lg\:items-stretch {
    align-items: stretch;
  }
  .lg\:text-xs {
    font-size: 0.75rem;
  }
  .lg\:text-sm {
    font-size: 0.875rem;
  }
  .lg\:text-md {
    font-size: 1rem;
  }
  .lg\:text-lg {
    font-size: 1.125rem;
  }
  .lg\:text-xl {
    font-size: 1.25rem;
  }
  .lg\:text-2xl {
    font-size: 1.5rem;
  }
  .lg\:text-3xl {
    font-size: 1.875rem;
  }
  .lg\:text-4xl {
    font-size: 2.25rem;
  }
  .lg\:text-5xl {
    font-size: 3rem;
  }
  .lg\:text-6xl {
    font-size: 3.75rem;
  }
  .lg\:text-7xl {
    font-size: 4.5rem;
  }
  .lg\:text-8xl {
    font-size: 6rem;
  }
  .lg\:text-9xl {
    font-size: 8rem;
  }
  .lg\:row {
    flex-direction: row;
  }
  .lg\:row-reverse {
    flex-direction: row-reverse;
  }
  .lg\:column {
    flex-direction: column;
  }
  .lg\:column-reverse {
    flex-direction: column-reverse;
  }
  .lg\:wrap {
    flex-wrap: wrap;
  }
  .lg\:nowrap {
    flex-wrap: nowrap;
  }
}
@media (width >= 1280px) {
  .xl\:w-full {
    width: 100%;
  }
  .xl\:w-1 {
    width: 8.333333%;
  }
  .xl\:w-2 {
    width: 16.666667%;
  }
  .xl\:w-3 {
    width: 25%;
  }
  .xl\:w-4 {
    width: 33.333333%;
  }
  .xl\:w-5 {
    width: 41.666667%;
  }
  .xl\:w-6 {
    width: 50%;
  }
  .xl\:w-7 {
    width: 58.333333%;
  }
  .xl\:w-8 {
    width: 66.666667%;
  }
  .xl\:w-9 {
    width: 75%;
  }
  .xl\:w-10 {
    width: 83.333333%;
  }
  .xl\:w-11 {
    width: 91.666667%;
  }
  .xl\:block {
    display: block;
  }
  .xl\:hidden {
    display: none;
  }
  .xl\:flex {
    display: flex;
  }
  .xl\:justify-center {
    justify-content: center;
  }
  .xl\:justify-start {
    justify-content: flex-start;
  }
  .xl\:justify-end {
    justify-content: flex-end;
  }
  .xl\:justify-stretch {
    justify-content: stretch;
  }
  .xl\:justify-between {
    justify-content: space-between;
  }
  .xl\:justify-evenly {
    justify-content: space-evenly;
  }
  .xl\:justify-around {
    justify-content: space-around;
  }
  .xl\:items-center {
    align-items: center;
  }
  .xl\:items-start {
    align-items: flex-start;
  }
  .xl\:items-end {
    align-items: flex-end;
  }
  .xl\:items-stretch {
    align-items: stretch;
  }
  .xl\:text-xs {
    font-size: 0.75rem;
  }
  .xl\:text-sm {
    font-size: 0.875rem;
  }
  .xl\:text-md {
    font-size: 1rem;
  }
  .xl\:text-lg {
    font-size: 1.125rem;
  }
  .xl\:text-xl {
    font-size: 1.25rem;
  }
  .xl\:text-2xl {
    font-size: 1.5rem;
  }
  .xl\:text-3xl {
    font-size: 1.875rem;
  }
  .xl\:text-4xl {
    font-size: 2.25rem;
  }
  .xl\:text-5xl {
    font-size: 3rem;
  }
  .xl\:text-6xl {
    font-size: 3.75rem;
  }
  .xl\:text-7xl {
    font-size: 4.5rem;
  }
  .xl\:text-8xl {
    font-size: 6rem;
  }
  .xl\:text-9xl {
    font-size: 8rem;
  }
  .xl\:row {
    flex-direction: row;
  }
  .xl\:row-reverse {
    flex-direction: row-reverse;
  }
  .xl\:column {
    flex-direction: column;
  }
  .xl\:column-reverse {
    flex-direction: column-reverse;
  }
  .xl\:wrap {
    flex-wrap: wrap;
  }
  .xl\:nowrap {
    flex-wrap: nowrap;
  }
}