.flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.self-auto {
  align-self: auto;
}

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

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

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

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

.self-baseline {
  align-self: baseline;
}

.flex-grow {
  flex-grow: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.p-0 {
  padding: 0px;
}

.m-0 {
  margin: 0px;
}

.gap-0 {
  gap: 0px;
}

.p-1 {
  padding: 4px;
}

.m-1 {
  margin: 4px;
}

.gap-1 {
  gap: 4px;
}

.p-2 {
  padding: 8px;
}

.m-2 {
  margin: 8px;
}

.gap-2 {
  gap: 8px;
}

.p-3 {
  padding: 12px;
}

.m-3 {
  margin: 12px;
}

.gap-3 {
  gap: 12px;
}

.p-4 {
  padding: 16px;
}

.m-4 {
  margin: 16px;
}

.gap-4 {
  gap: 16px;
}

.p-5 {
  padding: 20px;
}

.m-5 {
  margin: 20px;
}

.gap-5 {
  gap: 20px;
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.border-white {
  border-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.text-black {
  color: #000000;
}

.border-black {
  border-color: #000000;
}

.bg-gray-100 {
  background-color: #f7fafc;
}

.text-gray-100 {
  color: #f7fafc;
}

.border-gray-100 {
  border-color: #f7fafc;
}

.bg-gray-200 {
  background-color: #edf2f7;
}

.text-gray-200 {
  color: #edf2f7;
}

.border-gray-200 {
  border-color: #edf2f7;
}

.bg-gray-300 {
  background-color: #e2e8f0;
}

.text-gray-300 {
  color: #e2e8f0;
}

.border-gray-300 {
  border-color: #e2e8f0;
}

.bg-gray-400 {
  background-color: #cbd5e0;
}

.text-gray-400 {
  color: #cbd5e0;
}

.border-gray-400 {
  border-color: #cbd5e0;
}

.bg-gray-500 {
  background-color: #a0aec0;
}

.text-gray-500 {
  color: #a0aec0;
}

.border-gray-500 {
  border-color: #a0aec0;
}

.bg-gray-600 {
  background-color: #718096;
}

.text-gray-600 {
  color: #718096;
}

.border-gray-600 {
  border-color: #718096;
}

.bg-gray-700 {
  background-color: #4a5568;
}

.text-gray-700 {
  color: #4a5568;
}

.border-gray-700 {
  border-color: #4a5568;
}

.bg-gray-800 {
  background-color: #2d3748;
}

.text-gray-800 {
  color: #2d3748;
}

.border-gray-800 {
  border-color: #2d3748;
}

.bg-gray-900 {
  background-color: #1a202c;
}

.text-gray-900 {
  color: #1a202c;
}

.border-gray-900 {
  border-color: #1a202c;
}

.bg-red-500 {
  background-color: #f56565;
}

.text-red-500 {
  color: #f56565;
}

.border-red-500 {
  border-color: #f56565;
}

.bg-green-500 {
  background-color: #48bb78;
}

.text-green-500 {
  color: #48bb78;
}

.border-green-500 {
  border-color: #48bb78;
}

.bg-blue-500 {
  background-color: #4299e1;
}

.text-blue-500 {
  color: #4299e1;
}

.border-blue-500 {
  border-color: #4299e1;
}

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

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

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

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

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

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

.text-base {
  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;
}

.font-thin {
  font-weight: 100;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.w-0 {
  width: 0px;
}

.h-0 {
  height: 0px;
}

.w-1 {
  width: 4px;
}

.h-1 {
  height: 4px;
}

.w-2 {
  width: 8px;
}

.h-2 {
  height: 8px;
}

.w-3 {
  width: 12px;
}

.h-3 {
  height: 12px;
}

.w-4 {
  width: 16px;
}

.h-4 {
  height: 16px;
}

.w-5 {
  width: 20px;
}

.h-5 {
  height: 20px;
}

.w-6 {
  width: 24px;
}

.h-6 {
  height: 24px;
}

.w-7 {
  width: 28px;
}

.h-7 {
  height: 28px;
}

.w-8 {
  width: 32px;
}

.h-8 {
  height: 32px;
}

.w-9 {
  width: 36px;
}

.h-9 {
  height: 36px;
}

.w-10 {
  width: 40px;
}

.h-10 {
  height: 40px;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.border-0 {
  border-width: 0px;
}

.border-1 {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-3 {
  border-width: 3px;
}

.border-4 {
  border-width: 4px;
}

.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.transition {
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}

.grid-cols-1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-auto {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

@media (min-width: 991.98px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-rows-1 {
  display: grid;
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-2 {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows-5 {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows-6 {
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.row-span-1 {
  grid-row: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.row-span-3 {
  grid-row: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.row-span-4 {
  grid-row: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.row-span-5 {
  grid-row: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.row-span-6 {
  grid-row: span 6/span 6;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.row-span-7 {
  grid-row: span 7/span 7;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.row-span-8 {
  grid-row: span 8/span 8;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.row-span-9 {
  grid-row: span 9/span 9;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.row-span-10 {
  grid-row: span 10/span 10;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

.row-span-11 {
  grid-row: span 11/span 11;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

.row-span-12 {
  grid-row: span 12/span 12;
}

.auto-fit-cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}

.auto-fit-cols-minmax {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.auto-fill-cols-minmax {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.place-content-start {
  place-content: start;
}

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

.place-content-end {
  place-content: end;
}

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

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

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

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.seo {
  margin-block-end: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  background: var(--color-white-100);
}
.seo:has(+ .seo) {
  margin-block-end: 46px;
}
.seo__inner {
  display: flex;
  gap: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
}
.seo__inner:has(img) {
  display: grid;
  grid-template-columns: 2.5fr 3.5fr;
}
@media (max-width: 991.98px) {
  .seo__inner:has(img) {
    display: flex;
    flex-direction: column;
  }
}
.seo__inner.reverse {
  grid-template-columns: 3.5fr 2.5fr;
}
.seo__inner.reverse img {
  order: 2;
}
.seo__inner img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: clamp(0.625rem, 0.5rem + 0.63vw, 1.25rem);
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .seo__inner img {
    max-height: 320px;
  }
}
.seo__text-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.seo__description {
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: counter;
  max-height: 420px;
  overflow-y: auto;
  padding-inline-end: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem);
}
.seo__description :is(ul, ol) {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.325rem + 0.25vw, 0.625rem);
}
.seo__description :is(ul > li) {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.seo__description :is(ul > li)::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #ffa77a;
}
.seo__description :is(ol > li) {
  display: flex;
  align-items: start;
  gap: 8px;
}
.seo__description :is(ol > li)::before {
  counter-increment: counter;
  content: counter(counter) ".";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent-47);
}
.seo__description::-webkit-scrollbar {
  width: 3px;
}
.seo__description::-webkit-scrollbar-track {
  background: #f7f7f7;
}
.seo__description::-webkit-scrollbar-thumb {
  background: #ffa77a;
}

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