@import url(https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap);
@charset "UTF-8";
/**
 * This injects Tailwind's base styles, which is a combination of
 * Normalize.css and some additional base styles.
 *
 * You can see the styles here:
 * https://github.com/tailwindcss/tailwindcss/blob/master/css/base.css
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/base";
 */
@tailwind base;
/**
 * This injects any component classes registered by plugins.
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/components";
 */
@tailwind components;
/**
 * Here you would add any of your custom component classes; stuff that you'd
 * want loaded *before* the utilities so that the utilities could still
 * override them.
 *
 * Example:
 *
 * .btn { ... }
 * .form-input { ... }
 *
 * Or if using a preprocessor or `postcss-import`:
 *
 * @import "components/buttons";
 * @import "components/forms";
 */
/**
 * This injects all of Tailwind's utility classes, generated based on your
 * config file.
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/utilities";
 */
@tailwind utilities;
/**
 * Here you would add any custom utilities you need that don't come out of the
 * box with Tailwind.
 *
 * Example :
 *
 * .bg-pattern-graph-paper { ... }
 * .skew-45 { ... }
 *
 * Or if using a preprocessor or `postcss-import`:
 *
 * @import "utilities/background-patterns";
 * @import "utilities/skew-transforms";
 */
html {
  font-family: "Open Sans", sans-serif;
}

html, body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  -moz-osx-font-smoothing: grayscale;
  background: #040404;
}

.ct-60 {
  margin-top: -7rem;
}

:root {
  --oldblack: #11141b; /* Default light mode value */
}

.dark {
  --oldblack: #131417; /* Different value for dark mode */
}

@media screen and (max-width: 768px) {
  .ct-60 {
    margin-top: 0px;
    padding-top: 3rem;
  }
  .container-menu {
    width: 100%;
  }
}
.bgfw-container {
  width: 100%;
  overflow: hidden;
  display: block;
}

.bg {
  width: 100.5% !important;
  margin-bottom: -1px;
  margin-left: -1px;
  box-sizing: border-box;
  display: block;
  background: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.scale {
  transform: scale(1.1, 0.85); /* Equal to scaleX(2) scaleY(0.5) */
  transform-origin: left;
}

.heading {
  max-width: 300px;
}
.heading .icon {
  width: 87px;
  min-width: 87px;
  height: 87px;
  max-height: 87px;
  border-width: 4px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.14);
}

.icon-blue {
  background: rgb(4, 190, 254);
  background: linear-gradient(to top, rgb(4, 190, 254) 0%, rgb(68, 129, 235) 100%);
}

.icon-green {
  background: #27ae60;
  background: linear-gradient(to bottom, #27ae60 0%, #2ecc71 100%);
}

.icon-pink {
  background: #8b60ed;
  background: linear-gradient(to bottom, #8b60ed 0%, #b372be 100%);
}

.bb-nav {
  border-bottom: 1px solid #ebebeb;
}

.icon-red {
  background: #ec454f;
  background: linear-gradient(to bottom, #eb3b5a 0%, #f44881 100%);
}

.icon-orange {
  background: rgb(255, 172, 68);
  background: linear-gradient(to bottom, rgb(252, 96, 45) 0%, rgb(255, 172, 68) 100%);
}

.icon-yellow {
  background: #ffc63b;
  background: linear-gradient(to top, #ffc63b 0%, #f19a1a 100%);
}

.mw-250 {
  max-width: 260px;
}

.lline {
  height: 7px;
  border: 1px;
  background: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .heading {
    max-width: 240px;
  }
  .heading .icon {
    width: 67px;
    min-width: 67px;
    height: 67px;
    max-height: 67px;
  }
}
@media screen and (max-width: 640px) {
  .heading {
    max-width: 100%;
  }
  .heading .icon {
    width: 77px;
    min-width: 77px;
    height: 77px;
    max-height: 77px;
  }
  .mw-250 {
    max-width: 100%;
  }
}
section#course-header {
  position: relative;
  overflow: hidden;
}

.lesson-number {
  width: 70px;
  min-width: 70px;
  height: 70px;
  max-height: 70px;
  border-width: 4px;
}

@media screen and (max-width: 640px) {
  .lesson-number {
    width: 55px;
    min-width: 55px;
    height: 55px;
    max-height: 55px;
    border-width: 4px;
  }
}
.lesson-number-big {
  width: 100px;
  min-width: 100px;
  height: 100px;
  max-height: 100px;
  border-width: 4px;
}

.hands-on-sidebar {
  width: 460px;
}

.learn-sidebar {
  width: 285px;
}
.learn-sidebar ul li h2 {
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875em;
}
.learn-sidebar ul li h2:hover {
  transform: translate3d(5px, 0, 0);
}
.learn-sidebar ul a.is-active li ul {
  display: block;
}

.bullet {
  width: 7px;
  height: 7px;
  display: block;
  transition: all 0.05s linear;
}

.lesson-content:not(.lesson-content .hands-on) {
  max-width: 42rem;
}
.lesson-content:not(.lesson-content .hands-on) p:not(.hands-on p, .quiz-box p) {
  line-height: 1.8rem;
  margin-bottom: 2rem;
}
.lesson-content:not(.lesson-content .hands-on) h2:not(.hands-on h2), .lesson-content:not(.lesson-content .hands-on) h3:not(.hands-on h3), .lesson-content:not(.lesson-content .hands-on) h4:not(.hands-on h4) {
  font-weight: bold;
  color: #11141b;
  margin-bottom: 1.5rem;
}
.dark .lesson-content:not(.lesson-content .hands-on) h2:not(.hands-on h2), .dark .lesson-content:not(.lesson-content .hands-on) h3:not(.hands-on h3), .dark .lesson-content:not(.lesson-content .hands-on) h4:not(.hands-on h4) {
  color: #f7f8f8;
}
.lesson-content:not(.lesson-content .hands-on) h2 {
  line-height: 2.3rem;
  font-size: 1.875rem;
}
.lesson-content:not(.lesson-content .hands-on) h3 {
  font-size: 1.125rem;
}
.lesson-content:not(.lesson-content .hands-on) h4:not(.hands-on h4) {
  font-size: 1rem;
}
.lesson-content:not(.lesson-content .hands-on) h2:not(h2:first-child) {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 640px) {
  .lesson-content h2:not(.hands-on h2) {
    line-height: 2.3rem;
    font-size: 1.375rem;
  }
}
a.is-active li > h2 {
  text-decoration: underline;
  text-decoration-color: #00a96a;
}

.quiz-box .answer {
  cursor: pointer;
  transition: 0.3s all ease;
}
.quiz-box .answer * {
  transition: 0.3s all ease;
}
.quiz-box .answer:hover span {
  color: rgba(255, 255, 255, 0.5);
}
.quiz-box .answer:hover > div:not(.border-green-1) {
  border-color: rgba(255, 255, 255, 0.5);
}
.quiz-box .custom-answer {
  background: #1b202b;
  width: 120px;
  height: 120px;
  border: 2px solid #1b202b;
  border-radius: 10px;
  transition: 0.3s all ease;
}
.quiz-box .custom-answer.active {
  border: 2px solid #00a96a;
}
.quiz-box .custom-answer:hover {
  border: 2px solid #00a96a;
}
.quiz-box p {
  margin-bottom: 0px;
  line-height: 1.8rem;
}
.quiz-box .quiz-bullet {
  width: 20px;
  height: 20px;
}
.quiz-box .quiz-bullet .inner-bullet {
  width: 8px;
  height: 8px;
  transition: 0.3s all ease;
}

pre {
  word-wrap: normal;
  white-space: pre-wrap;
  margin-bottom: 40px !important;
}

.code-playground pre {
  white-space: pre;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

.code-playground code {
  padding: 20px 25px !important;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: none;
  line-height: 2;
}

pre.hljs::-moz-selection,
pre.hljs ::-moz-selection,
code.hljs::-moz-selection,
code.hljs ::-moz-selection {
  text-shadow: none;
  background-color: #5a5f80;
}

pre.hljs::-moz-selection, pre.hljs ::-moz-selection, code.hljs::-moz-selection, code.hljs ::-moz-selection {
  text-shadow: none;
  background-color: #5a5f80;
}

pre.hljs::selection,
pre.hljs ::selection,
code.hljs::selection,
code.hljs ::selection {
  text-shadow: none;
  background-color: #5a5f80;
}

pre.line-numbers {
  position: relative;
  padding-left: 3.8em;
  counter-reset: linenumber;
}

pre.line-numbers > code {
  position: relative;
  white-space: inherit;
}

.line-numbers .line-numbers-rows {
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: 100%;
  left: -3.8em;
  width: 3em;
  /* works for line-numbers below 1000 lines */
  letter-spacing: -1px;
  border-right: 1px solid #999;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.line-numbers-rows > span {
  pointer-events: none;
  display: block;
  counter-increment: linenumber;
}

.line-numbers-rows > span:before {
  content: counter(linenumber);
  color: #999;
  display: block;
  padding-right: 0.8em;
  text-align: right;
}

pre > code {
  font-family: Inconsolata, monospace !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  vertical-align: middle !important;
  line-height: 1.8 !important;
  box-shadow: 4px 4px 15px 0 rgba(36, 37, 38, 0.08);
}

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #282a36;
  border-radius: 10px;
}

.hljs-built_in,
.hljs-selector-tag,
.hljs-section,
.hljs-link {
  color: #50fa7b;
}

.hljs-keyword {
  color: #ff79c6;
}

.hljs-attribute {
  color: #ffb86c;
}

.hljs,
.hljs-subst, .hljs-selector-id {
  color: #f8f8f2;
}

.hljs-title,
.hljs-attr,
.hljs-meta-keyword {
  font-style: italic;
  color: #50fa7b;
}

.hljs-string,
.hljs-meta,
.hljs-name,
.hljs-type,
.hljs-symbol,
.hljs-bullet,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
  color: #f1fa8c;
}

.hljs-comment,
.hljs-quote,
.hljs-deletion {
  color: #6272a4;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-title,
.hljs-section,
.hljs-doctag,
.hljs-type,
.hljs-name,
.hljs-strong {
  font-weight: bold;
}

.hljs-literal,
.hljs-number {
  color: #bd93f9;
}

.hljs-emphasis {
  font-style: italic;
}

.code-playground .hljs:not(.checkcode) {
  background: #1d1e1f;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
}

.switch .toggle-track.disabled {
  cursor: not-allowed !important;
}

.toggle-track {
  position: relative;
  width: 40px;
  height: 22px;
  background: #d1d6ee;
  border-radius: 11px;
  transition: background 0.15s linear;
}

.toggle-circle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.15s ease-in-out;
}

.toggle-track:hover {
  background: #cacfe6;
}

.toggle-circle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.15s ease-in-out;
  filter: drop-shadow(0 0.5px 0.5px rgba(0, 9, 61, 0.1));
}

.switch.active .toggle-circle {
  transform: translateX(18px);
}

.switch.active .toggle-track {
  background: #275efe;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.browser .proxy {
  height: 35px;
  border-right: 1px solid #EBEDF0;
}
.browser .proxy.dark {
  border-right: 1px solid #27292a;
}
.browser .proxy.dark .proxy-link {
  color: #707070;
}
.browser .proxy.dark .proxy-link:hover {
  color: #D3D3D3;
}
.browser .proxy.dark .switch .toggle-circle {
  background-color: #707070;
  transition: 0.15s all ease-in-out;
}
.browser .proxy.dark .toggle-track {
  background: #27292a;
}
.browser .proxy.dark .toggle-track:hover .toggle-circle {
  background-color: #D3D3D3;
}
.browser .proxy.dark .switch.active .toggle-track {
  background: #275efe;
}
.browser .proxy.dark .switch.active .toggle-track .toggle-circle {
  background-color: #D3D3D3;
}
.browser .browser-content.dark {
  border-color: #0D0E10;
  border-top: none;
}
.browser iframe, .browser .start-page {
  margin-top: -1px;
  border-top: 1px solid #EBEDF0;
  background-color: #DDD;
}
.browser iframe.dark, .browser .start-page.dark {
  background: #131417;
  border-top: none;
}
.browser .start-page.dark h4 {
  color: #fafafa;
}
.browser .start-page.dark p {
  color: #fafafa;
  opacity: 0.6;
}
.browser .searchbar {
  height: 80px;
  letter-spacing: 0.2px;
  border-left: 1px solid rgba(0, 0, 0, 0.8);
  border-right: 1px solid rgba(0, 0, 0, 0.8);
}
.browser .searchbar.dark {
  background: #0D0E10;
  border-left: 1px solid #0D0E10;
  border-right: 1px solid #0D0E10;
}
.browser .searchbar .settings {
  background: #EBEDF0;
  border-radius: 6px;
  white-space: nowrap;
}
.browser .searchbar .settings.dark {
  background: #27292a;
  color: #707070;
}
.browser .searchbar .search-input {
  border: 1px solid #EBEDF0;
}
.browser .searchbar .search-input.dark {
  background: #131417;
  color: #848990;
  border: 1px solid #131417;
}
.browser .topbar {
  background: #EBEDF0;
  height: 50px;
  border-bottom: 0px;
}
.browser .topbar.dark {
  background: #131417;
  border-left: 1px solid #131417;
  border-right: 1px solid #131417;
  border-top: 1px solid #131417;
}
.browser .topbar .controllers {
  height: 50px;
}
.browser .topbar .controllers .browser-btn {
  border: 1px;
  border-radius: 6px;
  width: 33px;
  height: 33px;
  margin-bottom: -3px;
}
.browser .topbar .controllers .browser-btn.dark {
  background: #191c1f;
  color: #707070;
}
.browser .topbar .controllers span {
  width: 10px;
  height: 10px;
}
.browser .topbar .controllers span > span {
  width: 4px;
  height: 4px;
}
.browser .topbar .controllers .red {
  background: #ed6b61;
}
.browser .topbar .controllers .yellow {
  background: rgba(255, 179, 0, 0.9);
}
.browser .topbar .controllers .green {
  background: #00BC78;
}
.browser .current-tab {
  background: #fff;
  width: auto;
  height: 41px;
  margin-bottom: -1px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.browser .current-tab.dark {
  background: #0D0E10;
  color: #848990;
}
.browser .tab {
  background: transparent;
  width: auto;
  height: 36px;
  margin-bottom: -1px;
  border-radius: 10px;
}
.browser .tab:hover {
  background: #fff;
}
.browser .tab:hover .tab-delimiter {
  display: none;
}
.browser .tab .tab-delimiter {
  background: #fff;
}
.browser .tab.dark {
  color: #707070;
}
.browser .tab.dark:hover {
  background: #191c1f;
}
.browser .tab.dark .tab-delimiter {
  background: #191c1f;
}
.browser .tab.dark:hover .tab-delimiter {
  display: none;
}
.browser .topbar .expand {
  height: 50px;
}
.browser.browser-sm .topbar {
  height: 40px;
}
.browser.browser-sm .searchbar {
  height: 48px;
}
.browser.browser-sm .tab, .browser.browser-sm .current-tab {
  height: 31px;
}
.browser.browser-sm .topbar .controllers {
  height: 35px;
}
.browser.browser-sm .topbar .controllers > span {
  width: 10px;
  height: 10px;
}

.top-100 {
  top: 100px;
}

.learn-sidebar ul h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
.dark .learn-sidebar ul h4 {
  color: rgba(255, 255, 255, 0.3);
}

.upnext {
  max-width: 1035px;
}

@media screen and (max-width: 1023px) {
  .learn-sidebar {
    width: 0px;
  }
  .learn-sidebar > ul {
    display: none;
  }
  .learn-sidebar.mobile {
    width: 100vw;
    position: fixed;
    top: 0;
    padding-left: 100px;
    bottom: 0;
    left: -30px;
    background: #11141b;
    transform: translateX(-100vw);
    height: 100%;
    overflow-y: scroll;
  }
  .dark .learn-sidebar.mobile {
    background: #040404;
  }
  .learn-sidebar.mobile > ul {
    display: block;
  }
  .learn-sidebar.mobile > ul li {
    color: #fff;
  }
  .learn-sidebar.mobile > ul h4 {
    color: rgba(255, 255, 255, 0.5);
  }
  .learn-sidebar.mobile .mod-heading {
    color: rgba(255, 255, 255, 0.3);
  }
  .learn-sidebar.mobile .mod-heading h3 {
    color: #fff;
  }
  .learn-sidebar.mobile .mod-heading span {
    color: rgba(255, 255, 255, 0.3);
  }
  .learn-sidebar.mobile .chapter-pills {
    color: #fff;
  }
  .dark .learn-sidebar.mobile .chapter-pills {
    color: rgba(255, 255, 255, 0.6);
  }
  .learn-sidebar.mobile .chapter-pills .active {
    color: #000;
  }
  .dark .learn-sidebar.mobile .chapter-pills .active {
    color: rgba(255, 255, 255, 0.6);
  }
}
.slideOut {
  animation-name: slideOut;
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: forwards;
}

.slideIn {
  animation-name: slideIn;
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: forwards;
}
@keyframes slideIn {
  0% {
    left: 0;
  }
  to {
    left: calc(100vw - 56px);
  }
}
@keyframes slideOut {
  0% {
    left: calc(100vw - 56px);
  }
  to {
    left: 0;
  }
}
.fixed {
  width: 100%;
  position: fixed !important;
}

.icon-more {
  fill: #00a96a;
  width: 4px;
  height: 18px;
}

.icon-close {
  transition: 0.3s all ease;
  fill: #11141b;
  width: 14px;
  height: 14px;
}

.icon-close:hover {
  transform: scale(1.15);
}

.mobile-lesson-nav.slideIn {
  height: 100%;
  background: #fff;
  transition: background 0.7s, height 0.1 linear 0.5s;
}
.dark .mobile-lesson-nav.slideIn {
  background: #040404;
}

.mobile-lesson-nav.hidden {
  transform: translate3d(0, 0, 0);
  transition: 0.1s all ease-out;
}

.icon-test {
  background: #2c3e50;
  background: linear-gradient(to bottom, #34495e 0%, #2c3e50 100%);
}

.nav-logo {
  height: 45px;
}

.nav-logo-general {
  height: 35px;
}

.footer-logo {
  height: 45px;
  margin-top: -15px;
}

.custom-container {
  max-width: 1400px;
}

.container-menu {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1663px) {
  .cmr {
    margin-right: 0px;
  }
}
.showwq {
  display: none;
  transition: all 1s ease-in;
}

.showq {
  display: block;
}

.quizPFadeOut-enter-active, .quizPFadeOut-leave-active {
  transition: opacity 0.7s ease-in;
}

.quizPFadeOut-enter, .quizPFadeOut-leave-to {
  transition: opacity 0.4s ease-out;
  opacity: 0;
}

.fadeBtn-enter-active, .fadeBtn-leave-active {
  transition: opacity 0.7s ease;
  transition-delay: 0.81s;
}

.fadeBtn-enter, .fadeBtn-leave-to {
  transition: opacity 0.3s ease-out;
  opacity: 0;
}

.fade-enter-active, .fade-leave-active, .fadefeedback-enter-active, .fadefeedback-leave-active {
  transition: opacity 0.7s ease-in;
}

.fade-enter, .fade-leave-to, .fadefeedback-enter, .fadefeedback-leave-to {
  transition: opacity 0.3s ease-out;
  opacity: 0;
}

.fadeFast-enter-active, .fadeFast-leave-active {
  transition: opacity 0.15s ease-in;
}

.fadeFast-enter, .fadeFast-leave-to {
  transition: opacity 0.2s ease-out;
  opacity: 0;
}

.fadefeedback-leave-active {
  display: none;
}

.slide-fade-enter-active {
  transition: all 0.3s ease;
}

.slide-fade-leave-active {
  transition: all 0.4s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter {
  transform: translateX(35px);
  opacity: 0;
}

.slide-fade-leave-to {
  transform: translateX(-15px);
  opacity: 0;
}

.expand-enter-active, .expand-leave-active {
  transition: all 1s ease;
  overflow: hidden;
}

.expand-enter, .expand-leave-to {
  opacity: 0;
}

.quiz-box {
  transition: all 3s ease;
}

.pb {
  transition: all 2s ease;
}

.shows {
  display: block !important;
}

.nav-avatar {
  width: 40px;
  height: 40px;
}

.large-av {
  width: 100px;
  height: 100px;
  margin: auto;
}

.dashboard-av {
  width: 100px;
  height: 100px;
}

.mid-av, .forum-av {
  min-width: 60px;
  min-height: 60px;
  max-height: 60px;
  min-width: 60px;
}

.forum-av {
  margin: auto;
}

.forum-av-sm {
  min-width: 50px;
  min-height: 50px;
  max-height: 50px;
  min-width: 50px;
  margin: auto;
}

.badge {
  width: 65px;
  height: 65px;
}

.bell-tip {
  top: 9px;
  right: 13px;
}

.notification.label {
  width: 70px;
}

span.l {
  text-align: center;
  min-width: 70px;
  max-width: 70px;
  width: 70px;
}

.notification-bell {
  left: -4px;
  top: 13px;
}

.quiz-title {
  line-height: 39px;
}

/* Forum */
.fixed-sidebar-forum {
  width: 350px;
}

.labline {
  width: 25px;
  height: 3px;
  margin-top: 9px;
}

.labstart {
  border: 0px;
  margin-right: -1px;
  margin-bottom: -1px;
  border-bottom-right-radius: 1.2rem;
  border-top-left-radius: 1.2rem;
}

.labcard, .lab-chapter, .labline, .labstart {
  transition: all 0.3s ease;
}

abbr {
  position: relative;
}
abbr span:not(.intext-tooltip) {
  white-space: nowrap;
  text-decoration-line: none;
  text-decoration-style: initial;
  text-decoration-color: initial;
  text-decoration: none;
  cursor: help;
  position: relative;
  background-color: #e4fff5;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: #00a96a;
}
.dark abbr span:not(.intext-tooltip) {
  background-color: inherit;
}
abbr .intext-tooltip {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0px;
  pointer-events: none;
  opacity: 0;
  white-space: normal;
  line-height: 1.5;
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateY(1rem) translateX(-50%);
  top: 100%;
  margin-top: 0.5rem;
  width: 12rem;
  background-color: rgb(17, 19, 20);
  color: rgb(255, 255, 255);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.247059) 0px 1px 2px, rgba(0, 0, 0, 0.247059) 0px 4px 8px;
  transition-duration: 200ms, 500ms;
  transition-timing-function: ease-in-out, cubic-bezier(0.2, 1, 0.2, 1);
  transition-delay: initial, initial;
  transition-property: opacity, transform;
}
abbr .intext-tooltip.image {
  padding: 0px;
}
abbr .intext-tooltip.image img {
  border-radius: 20px;
}

abbr:hover span.intext-tooltip, abbr:active span.intext-tooltip, abbr:focus span.intext-tooltip, abbr.abbr-active span.intext-tooltip {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0rem) translateX(-50%);
}

div.intext-img span {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 1rem;
  margin-bottom: 40px;
  font-size: 0.875rem;
}

div.intext-redirect {
  padding: 1.5rem 1rem;
  border-left: 1px solid #dfe0e0;
  background-color: #f6f7f7;
  margin-top: 1rem;
  margin-bottom: 40px;
  font-size: 0.9rem;
}
div.intext-redirect span, div.intext-redirect a {
  display: block;
}
div.intext-redirect a {
  margin-top: 1rem;
  color: #00a96a;
  display: flex;
  align-items: center;
  font-weight: 600;
}
div.intext-redirect svg {
  margin-left: 15px;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
  transition-delay: initial;
  transition-property: transform;
}
div.intext-redirect a:hover svg {
  transform: translateX(0.5rem);
}

div.intext-note {
  padding: 1rem 1rem;
  border-left: 4px solid #00a96a;
  border-radius: 10px;
  background-color: rgba(0, 169, 106, 0.1);
  margin-top: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.dark div.intext-note {
  background-color: rgba(0, 169, 106, 0.1);
}
.dark div.intext-note b, .dark div.intext-note strong {
  color: #fff;
}

.bgg {
  border: 1px solid rgb(237, 240, 242);
}

.arrow {
  --active: #000;
  --border: rgba(0, 0, 0, .12);
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
}
.arrow.left {
  transform: scaleX(-1);
}
.arrow i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.arrow i:before, .arrow i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.arrow i:before {
  transform: rotate(-40deg);
}
.arrow i:after {
  transform: rotate(40deg);
}
.arrow:before, .arrow:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.arrow svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}

.intext-code {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 2px;
  padding: 0 5px;
  border: 1px solid #e6e6e6;
  background-color: #f2f2f2;
  border-radius: 3px;
}
.intext-code.green {
  border: 1px solid #00a96a !important;
  background-color: #00a96a !important;
  color: #fff !important;
  padding: 1px 7px !important;
}
.intext-code.dark {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #c9d1d9;
  background-color: #21262d;
  border-color: #30363d;
}
.dark .intext-code {
  color: #c9d1d9;
  background-color: #21262d;
  border-color: #30363d;
}

.g-text-shadow {
  text-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px;
}

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

.hands-on-progress {
  background: rgb(24, 28, 38);
  transition: opacity 0.1s, transform 0.18s cubic-bezier(0.3, 0, 0, 1.3);
  list-style-type: none;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}
.hands-on-progress.isShown {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.hands-on-progress.top.under {
  top: 72px;
  left: 0px;
}
.hands-on-progress.top.left {
  top: 0px;
  left: 110px;
}

.handsOnIn-enter-active, .handsOnIn-leave-active {
  opacity: 1;
  transform: translateX(0px);
  transition: opacity 0.1s, transform 0.28s cubic-bezier(0.3, 0, 0, 1);
}

.handsOnIn-enter-from, .handsOnIn-leave-to {
  opacity: 0;
  transform: translateX(100px);
}

.handsOnIn-leave-from {
  opacity: 1;
  transform: translateX(0);
}

.hands-on-box {
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-color: #292C31 transparent;
  scrollbar-width: thin;
}

.hands-on-box::-webkit-scrollbar {
  width: 18px;
}

.hands-on-box::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 100px;
}

.hands-on-box::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 5px solid transparent;
  background-clip: content-box;
  background-color: rgba(31, 36, 51, 0.5);
}

.bullet-point-delimiter {
  width: 2px;
  margin-left: 3px;
}

.lesson-h-table {
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 36px;
}
.dark .lesson-h-table strong, .dark .lesson-h-table td {
  color: rgba(255, 255, 255, 0.8);
}
.dark .lesson-h-table tr {
  border-bottom: 1px solid #222222;
}
.lesson-h-table td {
  line-height: 1.5;
  padding: 16px 24px 16px 0;
  vertical-align: top;
  min-width: 120px;
  text-align: left;
}
.lesson-h-table td ul li:not(ul li:last-child) {
  margin-bottom: 10px;
}
.lesson-h-table td:first-child:not(.lesson-h-table.in-text-table td:first-child) {
  font-weight: 600;
}
.lesson-h-table tr {
  background: transparent;
  border-bottom: 1px solid #dadce0;
  border-top: 0;
  height: 48px;
}
.lesson-h-table tr:nth-child(2) td:last-child {
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .lesson-h-table tr {
    padding: 28px 0px;
  }
  .lesson-h-table tr:first-child {
    border-top: 1px solid #dadce0;
  }
  .lesson-h-table td {
    display: block;
  }
  .lesson-h-table td:first-child {
    margin-bottom: -20px;
    padding-top: 22px;
    font-size: 20px;
  }
  .lesson-h-table td:last-child {
    margin-bottom: 8px;
  }
}
.lesson-content a:not(.quiz-box a, .hands-on a) {
  color: #262626;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  outline: none;
}
.dark .lesson-content a:not(.quiz-box a, .hands-on a) {
  color: #00a96a;
}
.lesson-content a.nolink:not(.hands-on a.nolink) {
  color: #262626;
  text-decoration: none;
  font-style: italic;
}
.dark .lesson-content a.nolink:not(.hands-on a.nolink) {
  color: rgba(255, 255, 255, 0.8);
}
.lesson-content p:not(.checkp, .quiz-box p, .hands-on p) {
  color: #262626;
}
.dark .lesson-content p:not(.checkp, .quiz-box p, .hands-on p) {
  color: rgba(255, 255, 255, 0.8);
}
.dark .lesson-content p:not(.checkp, .quiz-box p, .hands-on p) strong {
  color: rgba(255, 255, 255, 0.8);
}
.lesson-content a:hover:not(.quiz-box a, .hands-on a) {
  color: #706d6e;
}
.dark .lesson-content a:hover:not(.quiz-box a, .hands-on a) {
  color: #fff;
}
.lesson-content .tldr-ul {
  margin-left: -1.5rem;
}

.lesson-content > ol > li, .lesson-content .quiz-box ol > li {
  list-style: none;
  line-height: 1.8rem;
  margin-left: 1.5rem;
  margin-bottom: 0.2rem;
  counter-increment: li;
}
.dark .lesson-content > ol > li strong, .dark .lesson-content .quiz-box ol > li strong {
  color: rgba(255, 255, 255, 0.8);
}
.dark .lesson-content > ul > li strong {
  color: rgba(255, 255, 255, 0.8);
}
.lesson-content > ol > li::before, .lesson-content .quiz-box ol > li::before, .lesson-content .hands-on-box ol > li::before {
  content: counter(li, decimal) ".";
  margin-bottom: 1.5rem;
  left: -1.5rem;
  margin-right: 7px;
  font-weight: 600;
}
.dark .lesson-content > ol > li::before, .dark .lesson-content .quiz-box ol > li::before, .dark .lesson-content .hands-on-box ol > li::before {
  color: #fff;
}
.lesson-content > ul, .lesson-content > ol, .lesson-content .quiz-box ol, .lesson-content .quiz-box ul {
  margin-bottom: 1.6rem;
  margin-top: 0.5rem;
  margin-top: -10px;
}
.lesson-content > ul > li::before, .lesson-content .quiz-box ul > li::before {
  content: "●";
  margin-right: 10px;
}
.dark .lesson-content > ul > li::before, .dark .lesson-content .quiz-box ul > li::before {
  color: #fff;
}
.lesson-content > ul > li, .lesson-content .quiz-box ol > li {
  list-style: none;
  line-height: 1.8rem;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.lesson-content .quiz-box ol > li::before, .lesson-content .quiz-box ul > li::before {
  color: rgba(255, 255, 255, 0.9);
}
.lesson-content .quiz-box ol > li, .lesson-content .quiz-box ul > li {
  margin-left: 0px;
}

.hands-on-box ol > li {
  counter-increment: li;
}

.hands-on-box ol > li::before {
  content: counter(li, decimal) ".";
  margin-bottom: 1.5rem;
  left: -1.5rem;
  margin-right: 7px;
  font-weight: 600;
  color: inherit;
}

.hands-on-progress ul li::before {
  content: none;
}

.hands-on-box ul li, .hands-on-box ol li {
  margin-bottom: 0.8rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.hands-on-box ol > li::before, .hands-on-box ul li::before {
  color: #fff;
}

.hands-on-box ol li > ul li {
  margin-left: 50px;
}

.hands-on-box ul li {
  list-style: disc;
  margin-left: 20px;
}

.hands-on-box p {
  line-height: 1.6 !important;
}

blockquote {
  border-left: 5px solid #f2f2f2;
  padding-left: 1em;
  margin-bottom: 2rem;
  margin-left: 1rem;
  margin-bottom: 2rem !important;
}
blockquote span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dark blockquote {
  border-left: 5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
}
blockquote.urls-dark {
  border-left: 4px solid rgba(255, 255, 255, 0.1);
}
blockquote span {
  display: block;
  margin-top: 1.6rem;
}
blockquote p {
  font-style: italic;
  color: rgba(0, 0, 0, 0.6) !important;
  margin-bottom: 0 !important;
}
.dark blockquote p {
  color: rgba(255, 255, 255, 0.6) !important;
}
blockquote.urls-dark p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 25px;
}

.tw-text-transparent-25 {
  background: hsla(0, 0%, 100%, 0.15);
  margin-top: 1px;
}

.t25eo {
  transition: all 0.18s ease-in-out;
  -moz-transition: all 0.18s ease-in-out;
  -webkit-transition: all 0.18s ease-in-out;
}

#lesson-widget-modal {
  width: 0px;
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.35s;
}

.socials i {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  outline: none;
}

.socials a:hover i {
  color: #fff;
}
@keyframes mouseanim {
  from {
    top: 10px;
  }
  to {
    top: 4px;
  }
}
.mouse {
  position: relative;
  width: 1.4rem;
  height: 2.15rem;
  border: 2px solid #00a96a;
  border-radius: 1rem;
}

.mouse::before {
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #00a96a;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.2, 1, 0.2, 1);
  animation-delay: initial;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: initial;
  animation-play-state: initial;
  animation-name: mouseanim;
}

@media screen and (min-width: 1024px) {
  .mw600 {
    width: 580px;
  }
}
a.link {
  color: #262626;
  text-decoration: underline;
  cursor: auto;
  text-decoration: underline;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  outline: none;
}

.last-update {
  text-transform: none !important;
}

.feedback-modal {
  background-image: url("/images/feedback.svg");
  background-size: cover;
}

.placeholderwh::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.placeholderwh::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.leaderboard-level {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -2px;
  right: 5px;
}

@media screen and (max-width: 640px) {
  .footerpl {
    padding-left: 0px;
  }
}
@media screen and (max-width: 380px) {
  .footermtpl {
    padding-left: 0px !important;
  }
}
.courses-bg {
  bottom: -2px;
}

.toggle-switch[data-s125] {
  flex-shrink: 0;
}

.toggle-switch[data-s124] {
  width: 40px;
  height: 24px;
  position: relative;
  display: inline-block;
}

.toggle-switch input[data-s124] {
  width: 0;
  height: 0;
  opacity: 0;
}

input:checked + .slider[data-s124] {
  background-color: transparent;
  border: 2px solid #00a96a;
}

.slider.round[data-s124] {
  border-radius: 34px;
}

.slider[data-s124] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.4s;
}

input:checked + .slider[data-s124]:before {
  background-color: #00a96a;
  transform: translateX(16px);
}

.slider.round[data-s124]:before {
  border-radius: 50%;
}

.slider[data-s124]:before {
  height: 16px;
  width: 16px;
  position: absolute;
  left: 2px;
  bottom: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  transition: 0.4s;
}

.post-body {
  line-height: 2;
  color: rgba(31, 36, 51, 0.8);
}

.markdown-preview h1, .markdown-preview h2, .markdown-preview h3, .markdown-preview h4, .markdown-preview h5, .post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .html-body h1, .html-body h2, .html-body h3, .html-body h4, .html-body h5 {
  font-weight: 700;
  color: rgb(31, 36, 51);
}
.markdown-preview h1, .post-body h1, .html-body h1 {
  font-size: 1.25rem;
}
.markdown-preview h2, .post-body h2, .html-body h2 {
  font-size: 1.125rem;
}
.markdown-preview h3, .post-body h3, .html-body h3 {
  font-size: 1.07rem;
}
.markdown-preview h4, .markdown-preview h5, .post-body h4, .post-body h5, .html-body h4, .html-body h5 {
  font-size: 1rem;
}

.post-footer .post-footer-actions {
  visibility: hidden;
}

.reply.answer:hover .post-footer-actions {
  visibility: visible;
}

.trending-label {
  color: #fff;
  font-size: 15px;
  padding: 6px 8px;
  margin-left: 15px;
}

.channel-label {
  width: 145px;
}
.channel-label.blue {
  border-color: rgb(4, 190, 254);
  color: rgb(4, 190, 254);
}
.channel-label.blue:hover {
  background: rgb(4, 190, 254);
}
.channel-label.green {
  border-color: #27ae60;
  color: #27ae60;
}
.channel-label.green:hover {
  background: #27ae60;
}
.channel-label.red {
  border-color: #ec454f;
  color: #ec454f;
}
.channel-label.red:hover {
  background: #ec454f;
}
.channel-label.yellow {
  border-color: #ffc63b;
  color: #ffc63b;
}
.channel-label.yellow:hover {
  background: #ffc63b;
}
.channel-label:hover {
  color: #fff;
}

.board-search {
  font-size: 15px;
  width: 280px;
}
.board-search input::-moz-placeholder {
  color: rgba(31, 36, 51, 0.5);
}
.board-search input::placeholder {
  color: rgba(31, 36, 51, 0.5);
}

.rotate {
  transform: scale(-1, 1);
  margin-bottom: -3px;
}

.animate__wobble {
  display: inline-block;
  background: rgb(183, 21, 64);
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
  85% {
    background: rgba(183, 21, 64, 0.8);
  }
  90% {
    background: rgba(183, 21, 64, 0.4);
  }
  100% {
    background: transparent;
  }
}
.animate__found {
  background: rgb(39, 174, 96);
  color: #fff;
  display: inline-block;
  line-height: 1.625;
  border-radius: 6px;
}

.animate_wobble_solid {
  background: rgb(183, 21, 64);
  color: #fff;
  line-height: 1.625;
  border-radius: 6px;
}

.animate__heartBeat {
  background: rgb(39, 174, 96);
  color: #fff;
  animation-name: heartBeat;
  animation-duration: 0.81s;
  animation-timing-function: ease-in-out;
}

.animate__heartBeatSm {
  animation-name: heartBeatSm;
  animation-duration: 0.81s;
  animation-timing-function: ease-in-out;
}
@keyframes heartBeatSm {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.05);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.pg-metadata {
  background: #27292a;
  color: #717275;
}

.pg-item {
  border-left: 1px solid #1d1e1f;
}

.menu-dots {
  width: 20px;
  margin-left: auto;
  opacity: 0.6;
}
.menu-dots:hover {
  opacity: 1;
}

.vfm__container.thread-modal, .vfm__container.reply-modal {
  display: flex;
}

.thread-modal .vfm__content, .reply-modal .vfm__content {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  height: auto;
  width: 1200px;
  box-shadow: none;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  /* top: 100px !important; */
  background: #fff;
}

@media screen and (max-width: 640px) {
  .thread-modal .vfm__content, .reply-modal .vfm__content {
    width: 100% !important;
    left: 0px !important;
  }
  .modal-x {
    display: block;
    right: 27px;
  }
}
.vfm__overlay, .vfm--overlay {
  /* background: rgba(17,20,27, 0.65); */
  background: rgba(11, 14, 18, 0.75) !important;
}

.post-body, .markdown-preview {
  width: 100%;
  margin-top: 35px;
  resize: none;
  outline: none;
}

.markdown-preview {
  min-height: 132px;
  max-height: 352px;
}

.post-title::-moz-placeholder, .post-body::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  /* color: #787B84; */
  color: #b4b6b9;
  /* color: rgba(0,0,0,0.3); */
  opacity: 1; /* Firefox */
}

.post-title::placeholder, .post-body::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  /* color: #787B84; */
  color: #b4b6b9;
  /* color: rgba(0,0,0,0.3); */
  opacity: 1; /* Firefox */
}

.thread-modal-fade-enter,
.thread-modal-fade-leave-active {
  opacity: 0;
  transform: translateY(80px);
}

.thread-modal .modal-body, .reply-modal .modal-body {
  padding: 0px 100px;
  padding-top: 40px;
}

.texteditor-add {
  min-width: 105px;
}

.hljs-ln-numbers {
  color: #6e7681;
  padding-right: 15px !important;
}

.ͼ1.cm-focused {
  outline: none;
}

.cm-editor {
  max-width: 100%;
}

.container {
  max-width: 1200px !important;
}

.curr-bg {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
  z-index: -1;
  width: 100%;
  --conic-size: 600px;
  height: var(--conic-size);
  margin-bottom: calc(-1 * var(--conic-size));
}

.curr-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, #040404);
}

.courses-img {
  pointer-events: none;
  position: relative;
  overflow: hidden;
}

.courses-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, #040404 100%), linear-gradient(to right, #040404 0, transparent 20%, transparent 80%, #040404 100%), linear-gradient(150deg, #040404 20%, transparent 30%);
}

.heading-gradient {
  background: linear-gradient(to right bottom, rgb(255, 255, 255) 30%, hsla(0, 0%, 100%, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: unset;
}

.tg {
  -webkit-box-decoration-break: clone;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: unset;
}

.tg1 {
  background-image: linear-gradient(106.62deg, rgb(232, 78, 56) 6.68%, rgb(186, 44, 184) 82.69%);
}

.tg2 {
  background-image: linear-gradient(124.31deg, rgb(70, 227, 183) 0.18%, rgb(82, 124, 172) 89.2%);
}

/* .tg3 {
    background-image: linear-gradient(106.62deg, #FA9892 6.68%, #F25C53 82.69%);
} */
.tg3 {
  background-image: linear-gradient(90deg, rgb(255, 248, 85) 0.04%, rgb(70, 227, 183) 100.04%);
}

.tg4 {
  background-image: linear-gradient(129.06deg, rgb(154, 106, 255) 0%, rgb(96, 255, 199) 88.16%);
}

.tg5 {
  background-image: linear-gradient(285.49deg, rgb(245, 55, 249) -14.61%, rgb(247, 190, 43) 106.06%);
}

.tg6 {
  background-image: linear-gradient(285.49deg, rgb(245, 255, 249) -14.61%, rgb(27, 190, 43) 106.06%);
}

.tg7 {
  background-image: linear-gradient(285.49deg, rgb(24, 221, 229) -14.61%, #FA9892 106.06%);
}

.button-bg {
  background: linear-gradient(47deg, #4F5459 60%, #AAB4BF 100%);
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1px;
}

.button-bg:hover {
  background: linear-gradient(47deg, #61686e 60%, #d7dbe1 100%);
}

.button {
  background: linear-gradient(#0F0F12, #141418);
  letter-spacing: 0.35px;
}

.button-bg:hover .button {
  background: linear-gradient(#18181d, #1d1d23);
}

.dark .dotted-right {
  background-image: linear-gradient(0deg, rgb(41, 41, 41) 25%, transparent 25%);
  background-position: 100%;
  background-repeat: repeat-y;
  background-size: 1px 4px;
}

.dark .dotted-top {
  background-image: linear-gradient(90deg, rgb(41, 41, 41) 25%, transparent 25%);
  background-position: top;
  background-repeat: repeat-x;
  background-size: 4px 1px;
}

.dark .dotted-bottom {
  background-image: linear-gradient(90deg, rgb(41, 41, 41) 25%, transparent 25%);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 4px 1px;
}

.imgx {
  max-width: none;
  width: 150%;
  height: auto;
  margin-left: -15%;
  margin-bottom: -25%;
  transform-style: preserve-3d;
}

.img-container::after {
  --color-bg-primary: rgb(4, 4, 4);
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--color-bg-primary) 100%), linear-gradient(to right, var(--color-bg-primary) 0, transparent 20%, transparent 80%, var(--color-bg-primary) 100%), linear-gradient(150deg, var(--color-bg-primary) 20%, transparent 30%);
}

.dark .dotted-y {
  background-image: linear-gradient(90deg, rgb(41, 41, 41) 25%, transparent 25%), linear-gradient(90deg, rgb(41, 41, 41) 25%, transparent 25%);
  background-position: top, bottom;
  background-repeat: repeat-x, repeat-x;
  background-size: 4px 1px, 4px 1px;
}

.custom-bbb {
  --color-border: color-mix(in oklab, oklch(.274 .006 286.033) 60%, transparent);
  border-color: var(--color-border);
}

.dark .intext-img img:not(img.no-invert) {
  filter: invert(93%) hue-rotate(180deg);
}
.dark .intext-img span {
  color: rgba(255, 255, 255, 0.8);
}

/* Global tooltip styling */
.v-popper__inner {
  background-color: oklch(14.1% 0.005 285.823) !important;
  border-radius: 0.75rem !important;
  border: 1px solid #262626 !important;
  color: white !important;
  padding: 0.375rem 0.75rem !important;
  font-size: 0.875rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  /* Animation on inner element */
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease !important;
}

/* Hide arrows completely */
.v-popper__arrow-container {
  display: none !important;
}

/* Shown state - base */
.v-popper__popper:not(.v-popper__popper--hidden):not(.v-popper__popper--hide-to) .v-popper__inner {
  opacity: 1 !important;
  transform: scale(1) translateX(0) translateY(0) !important;
  filter: blur(0) !important;
}

/* Hidden states with directional transitions */
/* Bottom placement - slide from top */
.v-popper__popper--hidden[data-popper-placement^=bottom] .v-popper__inner,
.v-popper__popper--hide-to[data-popper-placement^=bottom] .v-popper__inner {
  opacity: 0 !important;
  transform: scale(0.9) translateY(-10px) !important;
  filter: blur(4px) !important;
}

/* Top placement - slide from bottom */
.v-popper__popper--hidden[data-popper-placement^=top] .v-popper__inner,
.v-popper__popper--hide-to[data-popper-placement^=top] .v-popper__inner {
  opacity: 0 !important;
  transform: scale(0.9) translateY(10px) !important;
  filter: blur(4px) !important;
}

/* Right placement - slide from left */
.v-popper__popper--hidden[data-popper-placement^=right] .v-popper__inner,
.v-popper__popper--hide-to[data-popper-placement^=right] .v-popper__inner {
  opacity: 0 !important;
  transform: scale(0.9) translateX(-10px) !important;
  filter: blur(4px) !important;
}

/* Left placement - slide from right */
.v-popper__popper--hidden[data-popper-placement^=left] .v-popper__inner,
.v-popper__popper--hide-to[data-popper-placement^=left] .v-popper__inner {
  opacity: 0 !important;
  transform: scale(0.9) translateX(10px) !important;
  filter: blur(4px) !important;
}

/* Fallback for any other placements */
.v-popper__popper--hidden .v-popper__inner,
.v-popper__popper--hide-to .v-popper__inner {
  opacity: 0 !important;
  transform: scale(0.9) !important;
  filter: blur(4px) !important;
}
/**
 * This injects Tailwind's base styles, which is a combination of
 * Normalize.css and some additional base styles.
 *
 * You can see the styles here:
 * https://github.com/tailwindcss/tailwindcss/blob/master/css/base.css
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/base";
 */
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*! tailwindcss v3.4.13 | MIT License | https://tailwindcss.com
 */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: "Open Sans", "Figtree"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

/**
 * This injects any component classes registered by plugins.
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/components";
 */

.\!container {
  width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 200px) {
  .\!container {
    max-width: 200px !important;
  }
  .container {
    max-width: 200px;
  }
}

@media (min-width: 380px) {
  .\!container {
    max-width: 380px !important;
  }
  .container {
    max-width: 380px;
  }
}

@media (min-width: 640px) {
  .\!container {
    max-width: 640px !important;
  }
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .\!container {
    max-width: 768px !important;
  }
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .\!container {
    max-width: 1024px !important;
  }
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .\!container {
    max-width: 1280px !important;
  }
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1400px) {
  .\!container {
    max-width: 1400px !important;
  }
  .container {
    max-width: 1400px;
  }
}

/**
 * Here you would add any of your custom component classes; stuff that you'd
 * want loaded *before* the utilities so that the utilities could still
 * override them.
 *
 * Example:
 *
 * .btn { ... }
 * .form-input { ... }
 *
 * Or if using a preprocessor or `postcss-import`:
 *
 * @import "components/buttons";
 * @import "components/forms";
 */

/**
 * This injects all of Tailwind's utility classes, generated based on your
 * config file.
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/utilities";
 */
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0;
}
.inset-x-0 {
  left: 0;
  right: 0;
}
.-bottom-\[2px\] {
  bottom: -2px;
}
.-right-\[9px\] {
  right: -9px;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.top-0 {
  top: 0;
}
.top-\[50px\] {
  top: 50px;
}
.top-\[60px\] {
  top: 60px;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.z-\[10\] {
  z-index: 10;
}
.z-\[1\] {
  z-index: 1;
}
.z-\[99\] {
  z-index: 99;
}
.order-first {
  order: -9999;
}
.order-last {
  order: 9999;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.-mx-8 {
  margin-left: -2rem;
  margin-right: -2rem;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.-mb-1 {
  margin-bottom: -0.25rem;
}
.-mb-2 {
  margin-bottom: -0.5rem;
}
.-mb-20 {
  margin-bottom: -5rem;
}
.-mb-4 {
  margin-bottom: -1rem;
}
.-mb-5 {
  margin-bottom: -1.25rem;
}
.-mb-6 {
  margin-bottom: -1.5rem;
}
.-mb-\[2px\] {
  margin-bottom: -2px;
}
.-ml-1 {
  margin-left: -0.25rem;
}
.-ml-16 {
  margin-left: -4rem;
}
.-ml-2 {
  margin-left: -0.5rem;
}
.-ml-3 {
  margin-left: -0.75rem;
}
.-ml-4 {
  margin-left: -1rem;
}
.-ml-5 {
  margin-left: -1.25rem;
}
.-mr-1 {
  margin-right: -0.25rem;
}
.-mr-7 {
  margin-right: -1.75rem;
}
.-mr-\[1px\] {
  margin-right: -1px;
}
.-mr-\[6px\] {
  margin-right: -6px;
}
.-mt-1 {
  margin-top: -0.25rem;
}
.-mt-10 {
  margin-top: -2.5rem;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.-mt-20 {
  margin-top: -5rem;
}
.-mt-3 {
  margin-top: -0.75rem;
}
.-mt-5 {
  margin-top: -1.25rem;
}
.-mt-8 {
  margin-top: -2rem;
}
.-mt-\[100px\] {
  margin-top: -100px;
}
.-mt-\[12px\] {
  margin-top: -12px;
}
.-mt-\[1px\] {
  margin-top: -1px;
}
.-mt-\[2px\] {
  margin-top: -2px;
}
.-mt-\[5px\] {
  margin-top: -5px;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-32 {
  margin-bottom: 8rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-48 {
  margin-bottom: 12rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-\[25px\] {
  margin-bottom: 25px;
}
.mb-\[2px\] {
  margin-bottom: 2px;
}
.mb-\[3px\] {
  margin-bottom: 3px;
}
.ml-0 {
  margin-left: 0px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-10 {
  margin-left: 2.5rem;
}
.ml-12 {
  margin-left: 3rem;
}
.ml-16 {
  margin-left: 4rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-8 {
  margin-left: 2rem;
}
.ml-\[12px\] {
  margin-left: 12px;
}
.ml-\[2px\] {
  margin-left: 2px;
}
.ml-\[36px\] {
  margin-left: 36px;
}
.ml-\[40px\] {
  margin-left: 40px;
}
.ml-auto {
  margin-left: auto;
}
.mr-0 {
  margin-right: 0px;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-1\.5 {
  margin-right: 0.375rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-16 {
  margin-right: 4rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mr-8 {
  margin-right: 2rem;
}
.mr-auto {
  margin-right: auto;
}
.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[13px\] {
  margin-top: 13px;
}
.mt-\[15px\] {
  margin-top: 15px;
}
.mt-\[1px\] {
  margin-top: 1px;
}
.mt-\[2px\] {
  margin-top: 2px;
}
.mt-\[3px\] {
  margin-top: 3px;
}
.mt-auto {
  margin-top: auto;
}
.\!block {
  display: block !important;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}
.h-12 {
  height: 3rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-36 {
  height: 9rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-5 {
  height: 1.25rem;
}
.h-\[100px\] {
  height: 100px;
}
.h-\[104px\] {
  height: 104px;
}
.h-\[10px\] {
  height: 10px;
}
.h-\[13px\] {
  height: 13px;
}
.h-\[15px\] {
  height: 15px;
}
.h-\[17px\] {
  height: 17px;
}
.h-\[18px\] {
  height: 18px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[200px\] {
  height: 200px;
}
.h-\[23px\] {
  height: 23px;
}
.h-\[24px\] {
  height: 24px;
}
.h-\[25px\] {
  height: 25px;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[32px\] {
  height: 32px;
}
.h-\[33px\] {
  height: 33px;
}
.h-\[350px\] {
  height: 350px;
}
.h-\[38px\] {
  height: 38px;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[46px\] {
  height: 46px;
}
.h-\[48px\] {
  height: 48px;
}
.h-\[50px\] {
  height: 50px;
}
.h-\[55px\] {
  height: 55px;
}
.h-\[60px\] {
  height: 60px;
}
.h-\[61px\] {
  height: 61px;
}
.h-\[7px\] {
  height: 7px;
}
.h-\[8px\] {
  height: 8px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.min-h-\[100px\] {
  min-height: 100px;
}
.min-h-\[200px\] {
  min-height: 200px;
}
.min-h-\[250px\] {
  min-height: 250px;
}
.min-h-\[377px\] {
  min-height: 377px;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/4 {
  width: 25%;
}
.w-2 {
  width: 0.5rem;
}
.w-2\/6 {
  width: 33.333333%;
}
.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-4\/6 {
  width: 66.666667%;
}
.w-5 {
  width: 1.25rem;
}
.w-5\/12 {
  width: 41.666667%;
}
.w-6\/12 {
  width: 50%;
}
.w-64 {
  width: 16rem;
}
.w-7\/12 {
  width: 58.333333%;
}
.w-9\/12 {
  width: 75%;
}
.w-\[10px\] {
  width: 10px;
}
.w-\[116px\] {
  width: 116px;
}
.w-\[13px\] {
  width: 13px;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[153px\] {
  width: 153px;
}
.w-\[15px\] {
  width: 15px;
}
.w-\[170px\] {
  width: 170px;
}
.w-\[17px\] {
  width: 17px;
}
.w-\[18px\] {
  width: 18px;
}
.w-\[1px\] {
  width: 1px;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[23px\] {
  width: 23px;
}
.w-\[26px\] {
  width: 26px;
}
.w-\[33px\] {
  width: 33px;
}
.w-\[350px\] {
  width: 350px;
}
.w-\[38px\] {
  width: 38px;
}
.w-\[3px\] {
  width: 3px;
}
.w-\[40px\] {
  width: 40px;
}
.w-\[500px\] {
  width: 500px;
}
.w-\[550px\] {
  width: 550px;
}
.w-\[55px\] {
  width: 55px;
}
.w-\[60px\] {
  width: 60px;
}
.w-\[62px\] {
  width: 62px;
}
.w-\[70\%\] {
  width: 70%;
}
.w-\[7px\] {
  width: 7px;
}
.w-\[98px\] {
  width: 98px;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.min-w-0 {
  min-width: 0;
}
.min-w-\[780px\] {
  min-width: 780px;
}
.max-w-\[1000px\] {
  max-width: 1000px;
}
.max-w-\[270px\] {
  max-width: 270px;
}
.max-w-\[280px\] {
  max-width: 280px;
}
.max-w-\[40px\] {
  max-width: 40px;
}
.max-w-\[750px\] {
  max-width: 750px;
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-screen-xl {
  max-width: 1280px;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-none {
  flex: none;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.origin-top-right {
  transform-origin: top right;
}
.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-32 {
  --tw-translate-x: 8rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-5 {
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-90 {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[85\%\] {
  --tw-scale-x: 85%;
  --tw-scale-y: 85%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {
  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-default {
  cursor: default;
}
.cursor-ew-resize {
  cursor: ew-resize;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.list-disc {
  list-style-type: disc;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.auto-cols-max {
  grid-auto-columns: max-content;
}
.grid-flow-col {
  grid-auto-flow: column;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-rows-7 {
  grid-template-rows: repeat(7, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-px {
  gap: 1px;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre {
  white-space: pre;
}
.whitespace-pre-line {
  white-space: pre-line;
}
.text-wrap {
  text-wrap: wrap;
}
.text-nowrap {
  text-wrap: nowrap;
}
.break-words {
  overflow-wrap: break-word;
}
.break-all {
  word-break: break-all;
}
.rounded-\[10px\] {
  border-radius: 10px;
}
.rounded-\[20px\] {
  border-radius: 20px;
}
.rounded-\[5px\] {
  border-radius: 5px;
}
.rounded-\[6px\] {
  border-radius: 6px;
}
.rounded-\[inherit\] {
  border-radius: inherit;
}
.rounded-custom {
  border-radius: 2.8rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-icon {
  border-radius: 1.2rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-xl {
  border-radius: 0.85rem;
}
.rounded-b-icon {
  border-bottom-right-radius: 1.2rem;
  border-bottom-left-radius: 1.2rem;
}
.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-l-none {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.rounded-r-none {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rounded-t-icon {
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.rounded-t-none {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.rounded-t-xl {
  border-top-left-radius: 0.85rem;
  border-top-right-radius: 0.85rem;
}
.rounded-br-none {
  border-bottom-right-radius: 0;
}
.rounded-tl-none {
  border-top-left-radius: 0;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-\[1px\] {
  border-width: 1px;
}
.border-\[2px\] {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-0 {
  border-bottom-width: 0px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l {
  border-left-width: 1px;
}
.border-l-0 {
  border-left-width: 0px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-dashed {
  border-style: dashed;
}
.border-none {
  border-style: none;
}
.border-\[\#164916\] {
  --tw-border-opacity: 1;
  border-color: rgb(22 73 22 / var(--tw-border-opacity));
}
.border-\[\#252525\] {
  --tw-border-opacity: 1;
  border-color: rgb(37 37 37 / var(--tw-border-opacity));
}
.border-\[\#26282C\] {
  --tw-border-opacity: 1;
  border-color: rgb(38 40 44 / var(--tw-border-opacity));
}
.border-\[\#2c2e32\] {
  --tw-border-opacity: 1;
  border-color: rgb(44 46 50 / var(--tw-border-opacity));
}
.border-\[\#5a1a1a\] {
  --tw-border-opacity: 1;
  border-color: rgb(90 26 26 / var(--tw-border-opacity));
}
.border-\[\#d4d4d4cc\] {
  border-color: #d4d4d4cc;
}
.border-\[\#ededed\] {
  --tw-border-opacity: 1;
  border-color: rgb(237 237 237 / var(--tw-border-opacity));
}
.border-\[rgba\(247\2c 251\2c 255\2c 0\.1\)\] {
  border-color: rgba(247,251,255,0.1);
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(4 4 4 / var(--tw-border-opacity));
}
.border-blackop-05 {
  border-color: rgba(31, 36, 51, 0.05);
}
.border-blackop-1 {
  border-color: rgba(31, 36, 51, 0.1);
}
.border-blackop-2 {
  border-color: rgba(31, 36, 51, 0.2);
}
.border-blackop-4 {
  border-color: rgba(31, 36, 51, 0.4);
}
.border-blackop-5 {
  border-color: rgba(31, 36, 51, 0.5);
}
.border-blackop-9 {
  border-color: rgba(31, 36, 51, 0.9);
}
.border-darkgray {
  --tw-border-opacity: 1;
  border-color: rgb(19 20 23 / var(--tw-border-opacity));
}
.border-green-1 {
  --tw-border-opacity: 1;
  border-color: rgb(0 169 106 / var(--tw-border-opacity));
}
.border-red {
  --tw-border-opacity: 1;
  border-color: rgb(245 72 72 / var(--tw-border-opacity));
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-whiteop-05 {
  border-color: rgba(255, 255, 255, 0.05);
}
.border-whiteop-1 {
  border-color: rgba(255, 255, 255, 0.1);
}
.border-whiteop-2 {
  border-color: rgba(255, 255, 255, 0.2);
}
.border-whiteop-3 {
  border-color: rgba(255, 255, 255, 0.3);
}
.border-whiteop-5 {
  border-color: rgba(255, 255, 255, 0.5);
}
.border-whiteop-6 {
  border-color: rgba(255, 255, 255, 0.6);
}
.bg-\[\#000\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-\[\#00a96a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 169 106 / var(--tw-bg-opacity));
}
.bg-\[\#0D0E10\] {
  --tw-bg-opacity: 1;
  background-color: rgb(13 14 16 / var(--tw-bg-opacity));
}
.bg-\[\#0a2e0a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(10 46 10 / var(--tw-bg-opacity));
}
.bg-\[\#131417\] {
  --tw-bg-opacity: 1;
  background-color: rgb(19 20 23 / var(--tw-bg-opacity));
}
.bg-\[\#1a1c1e\] {
  --tw-bg-opacity: 1;
  background-color: rgb(26 28 30 / var(--tw-bg-opacity));
}
.bg-\[\#252525\] {
  --tw-bg-opacity: 1;
  background-color: rgb(37 37 37 / var(--tw-bg-opacity));
}
.bg-\[\#26282C\] {
  --tw-bg-opacity: 1;
  background-color: rgb(38 40 44 / var(--tw-bg-opacity));
}
.bg-\[\#27292a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(39 41 42 / var(--tw-bg-opacity));
}
.bg-\[\#3B3C40\] {
  --tw-bg-opacity: 1;
  background-color: rgb(59 60 64 / var(--tw-bg-opacity));
}
.bg-\[\#3a0a0a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(58 10 10 / var(--tw-bg-opacity));
}
.bg-\[\#EBEDF0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(235 237 240 / var(--tw-bg-opacity));
}
.bg-\[\#dddddd\] {
  --tw-bg-opacity: 1;
  background-color: rgb(221 221 221 / var(--tw-bg-opacity));
}
.bg-\[\#ebebeb\] {
  --tw-bg-opacity: 1;
  background-color: rgb(235 235 235 / var(--tw-bg-opacity));
}
.bg-\[\#eeeeee\] {
  --tw-bg-opacity: 1;
  background-color: rgb(238 238 238 / var(--tw-bg-opacity));
}
.bg-\[\#fafafa\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}
.bg-\[\#fff\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(4 4 4 / var(--tw-bg-opacity));
}
.bg-blackop-05 {
  background-color: rgba(31, 36, 51, 0.05);
}
.bg-blackop-1 {
  background-color: rgba(31, 36, 51, 0.1);
}
.bg-blackop-5 {
  background-color: rgba(31, 36, 51, 0.5);
}
.bg-blackop-6 {
  background-color: rgba(31, 36, 51, 0.6);
}
.bg-blackop-9 {
  background-color: rgba(31, 36, 51, 0.9);
}
.bg-darkgray {
  --tw-bg-opacity: 1;
  background-color: rgb(19 20 23 / var(--tw-bg-opacity));
}
.bg-green-03 {
  background-color: rgba(0, 169, 106, 0.3);
}
.bg-green-1 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 169 106 / var(--tw-bg-opacity));
}
.bg-green-2 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 118 74 / var(--tw-bg-opacity));
}
.bg-oldblack {
  background-color: var(--oldblack);
}
.bg-red {
  --tw-bg-opacity: 1;
  background-color: rgb(245 72 72 / var(--tw-bg-opacity));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-whiteop-05 {
  background-color: rgba(255, 255, 255, 0.05);
}
.bg-whiteop-1 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-whiteop-2 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-whiteop-3 {
  background-color: rgba(255, 255, 255, 0.3);
}
.bg-whiteop-5 {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-whiteop-6 {
  background-color: rgba(255, 255, 255, 0.6);
}
.bg-whiteop-7 {
  background-color: rgba(255, 255, 255, 0.7);
}
.bg-whiteop-8 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bg-\[linear-gradient\(110deg\2c \#000103\2c 45\%\2c rgba\(247\2c 251\2c 255\2c 0\.1\)\2c 55\%\2c \#000103\)\] {
  background-image: linear-gradient(110deg,#000103,45%,rgba(247,251,255,0.1),55%,#000103);
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#0D0E10\] {
  --tw-gradient-from: #0D0E10 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 14 16 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#fcd34d\] {
  --tw-gradient-from: #fcd34d var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(252 211 77 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#f59e0b\] {
  --tw-gradient-to: #f59e0b var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-\[length\:200\%_100\%\] {
  background-size: 200% 100%;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-\[7px\] {
  padding: 7px;
}
.p-px {
  padding: 1px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[1px\] {
  padding-top: 1px;
  padding-bottom: 1px;
}
.py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px;
}
.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-\[7px\] {
  padding-top: 7px;
  padding-bottom: 7px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-1\.5 {
  padding-bottom: 0.375rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-48 {
  padding-bottom: 12rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-64 {
  padding-bottom: 16rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-0 {
  padding-left: 0px;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-20 {
  padding-left: 5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-0 {
  padding-right: 0px;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-5 {
  padding-right: 1.25rem;
}
.pr-7 {
  padding-right: 1.75rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-1\.5 {
  padding-top: 0.375rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-7 {
  padding-top: 1.75rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-\[61px\] {
  padding-top: 61px;
}
.pt-\[9px\] {
  padding-top: 9px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-\[\'Figtree\'\] {
  font-family: 'Figtree';
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4ixl {
  font-size: 2.65rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.text-\[1\.3rem\] {
  font-size: 1.3rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-smp {
  font-size: 0.92rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.italic {
  font-style: italic;
}
.leading-loose {
  line-height: 2;
}
.leading-normal {
  line-height: 1.5;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-relaxedp {
  line-height: 1.8;
}
.leading-snug {
  line-height: 1.375;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-\[\#40454D\] {
  --tw-text-opacity: 1;
  color: rgb(64 69 77 / var(--tw-text-opacity));
}
.text-\[\#525252\] {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity));
}
.text-\[\#6272a4\] {
  --tw-text-opacity: 1;
  color: rgb(98 114 164 / var(--tw-text-opacity));
}
.text-\[\#6CEFCE\] {
  --tw-text-opacity: 1;
  color: rgb(108 239 206 / var(--tw-text-opacity));
}
.text-\[\#A9ADB1\] {
  --tw-text-opacity: 1;
  color: rgb(169 173 177 / var(--tw-text-opacity));
}
.text-\[\#ABAFB4\] {
  --tw-text-opacity: 1;
  color: rgb(171 175 180 / var(--tw-text-opacity));
}
.text-\[\#a3a3a3\] {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity));
}
.text-\[\#ccc\] {
  --tw-text-opacity: 1;
  color: rgb(204 204 204 / var(--tw-text-opacity));
}
.text-\[\#eab308\] {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity));
}
.text-\[\#ffc82c\] {
  --tw-text-opacity: 1;
  color: rgb(255 200 44 / var(--tw-text-opacity));
}
.text-\[rgba\(171\2c 175\2c 180\2c 0\.5\)\] {
  color: rgba(171,175,180,0.5);
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(4 4 4 / var(--tw-text-opacity));
}
.text-blackop-3 {
  color: rgba(31, 36, 51, 0.3);
}
.text-blackop-4 {
  color: rgba(31, 36, 51, 0.4);
}
.text-blackop-5 {
  color: rgba(31, 36, 51, 0.5);
}
.text-blackop-6 {
  color: rgba(31, 36, 51, 0.6);
}
.text-blackop-7 {
  color: rgba(31, 36, 51, 0.7);
}
.text-blackop-8 {
  color: rgba(31, 36, 51, 0.8);
}
.text-blackop-9 {
  color: rgba(31, 36, 51, 0.9);
}
.text-gray {
  --tw-text-opacity: 1;
  color: rgb(120 123 132 / var(--tw-text-opacity));
}
.text-gray-2 {
  color: rgba(171, 175, 180, 0.7);
}
.text-green-1 {
  --tw-text-opacity: 1;
  color: rgb(0 169 106 / var(--tw-text-opacity));
}
.text-red {
  --tw-text-opacity: 1;
  color: rgb(245 72 72 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-whiteop-3 {
  color: rgba(255, 255, 255, 0.3);
}
.text-whiteop-4 {
  color: rgba(255, 255, 255, 0.4);
}
.text-whiteop-5 {
  color: rgba(255, 255, 255, 0.5);
}
.text-whiteop-6 {
  color: rgba(255, 255, 255, 0.6);
}
.text-whiteop-7 {
  color: rgba(255, 255, 255, 0.7);
}
.text-whiteop-8 {
  color: rgba(255, 255, 255, 0.8);
}
.text-whiteop-9 {
  color: rgba(255, 255, 255, 0.9);
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-black\/30::-moz-placeholder {
  color: rgb(4 4 4 / 0.3);
}
.placeholder-black\/30::placeholder {
  color: rgb(4 4 4 / 0.3);
}
.placeholder-gray-2\/30::-moz-placeholder {
  color: rgba(171, 175, 180, 0.3);
}
.placeholder-gray-2\/30::placeholder {
  color: rgba(171, 175, 180, 0.3);
}
.placeholder-whiteop-5::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.placeholder-whiteop-5::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-75 {
  opacity: 0.75;
}
.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-reasons {
  --tw-shadow: 0px 0px 40px 3px rgba(0,0,0,0.06);
  --tw-shadow-colored: 0px 0px 40px 3px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline-0 {
  outline-width: 0px;
}
.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-none {
  --tw-blur:  ;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-sm {
  --tw-blur: blur(4px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\[background\:color-mix\(in_oklab\2c oklch\(\.274_\.006_286\.033\)60\%\2c transparent\)\] {
  background: color-mix(in oklab,oklch(.274 .006 286.033)60%,transparent);
}
.\[border-color\:color-mix\(in_oklab\2c oklch\(\.274_\.006_286\.033\)60\%\2c transparent\)\] {
  border-color: color-mix(in oklab,oklch(.274 .006 286.033)60%,transparent);
}

/**
 * Here you would add any custom utilities you need that don't come out of the
 * box with Tailwind.
 *
 * Example :
 *
 * .bg-pattern-graph-paper { ... }
 * .skew-45 { ... }
 *
 * Or if using a preprocessor or `postcss-import`:
 *
 * @import "utilities/background-patterns";
 * @import "utilities/skew-transforms";
 */

html {

}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:bottom-0::after {
  content: var(--tw-content);
  bottom: 0;
}

.after\:left-0::after {
  content: var(--tw-content);
  left: 0;
}

.after\:h-px::after {
  content: var(--tw-content);
  height: 1px;
}

.after\:w-full::after {
  content: var(--tw-content);
  width: 100%;
}

.after\:origin-bottom-right::after {
  content: var(--tw-content);
  transform-origin: bottom right;
}

.after\:scale-x-0::after {
  content: var(--tw-content);
  --tw-scale-x: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:bg-white::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.after\:transition-transform::after {
  content: var(--tw-content);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.after\:duration-300::after {
  content: var(--tw-content);
  transition-duration: 300ms;
}

.after\:ease-in-out::after {
  content: var(--tw-content);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[102\%\]:hover {
  --tw-scale-x: 102%;
  --tw-scale-y: 102%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:cursor-pointer:hover {
  cursor: pointer;
}

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

.hover\:border-blackop-1:hover {
  border-color: rgba(31, 36, 51, 0.1);
}

.hover\:border-blackop-2:hover {
  border-color: rgba(31, 36, 51, 0.2);
}

.hover\:border-blackop-3:hover {
  border-color: rgba(31, 36, 51, 0.3);
}

.hover\:border-green-1:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 169 106 / var(--tw-border-opacity));
}

.hover\:border-transparent:hover {
  border-color: transparent;
}

.hover\:border-white:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.hover\:border-whiteop-05:hover {
  border-color: rgba(255, 255, 255, 0.05);
}

.hover\:border-whiteop-2:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.hover\:bg-\[\#26282C\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(38 40 44 / var(--tw-bg-opacity));
}

.hover\:bg-\[\#26282c\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(38 40 44 / var(--tw-bg-opacity));
}

.hover\:bg-black:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(4 4 4 / var(--tw-bg-opacity));
}

.hover\:bg-blackop-1:hover {
  background-color: rgba(31, 36, 51, 0.1);
}

.hover\:bg-darkgray:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(19 20 23 / var(--tw-bg-opacity));
}

.hover\:bg-darkgray-2:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 32 37 / var(--tw-bg-opacity));
}

.hover\:bg-green-1:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 169 106 / var(--tw-bg-opacity));
}

.hover\:bg-green-2:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 118 74 / var(--tw-bg-opacity));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.hover\:text-\[\#848990\]:hover {
  --tw-text-opacity: 1;
  color: rgb(132 137 144 / var(--tw-text-opacity));
}

.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgb(4 4 4 / var(--tw-text-opacity));
}

.hover\:text-blackop-8:hover {
  color: rgba(31, 36, 51, 0.8);
}

.hover\:text-green-1:hover {
  --tw-text-opacity: 1;
  color: rgb(0 169 106 / var(--tw-text-opacity));
}

.hover\:text-green-2:hover {
  --tw-text-opacity: 1;
  color: rgb(0 118 74 / var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:text-whiteop-6:hover {
  color: rgba(255, 255, 255, 0.6);
}

.hover\:text-whiteop-7:hover {
  color: rgba(255, 255, 255, 0.7);
}

.hover\:text-whiteop-8:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hover\:text-whiteop-9:hover {
  color: rgba(255, 255, 255, 0.9);
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:opacity-75:hover {
  opacity: 0.75;
}

.hover\:after\:origin-bottom-left:hover::after {
  content: var(--tw-content);
  transform-origin: bottom left;
}

.hover\:after\:scale-x-100:hover::after {
  content: var(--tw-content);
  --tw-scale-x: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.focus\:border-blackop-2:focus {
  border-color: rgba(31, 36, 51, 0.2);
}

.focus\:border-green-1:focus {
  --tw-border-opacity: 1;
  border-color: rgb(0 169 106 / var(--tw-border-opacity));
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:border-whiteop-2:focus {
  border-color: rgba(255, 255, 255, 0.2);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-1:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.group:hover .group-hover\:text-whiteop-7 {
  color: rgba(255, 255, 255, 0.7);
}

.group:hover .group-hover\:underline {
  text-decoration-line: underline;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.dark\:-ml-4:is(.dark *) {
  margin-left: -1rem;
}

.dark\:border-\[\#26262666\]:is(.dark *) {
  border-color: #26262666;
}

.dark\:border-\[\#26282C\]:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(38 40 44 / var(--tw-border-opacity));
}

.dark\:border-darkgray:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(19 20 23 / var(--tw-border-opacity));
}

.dark\:border-white:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.dark\:border-whiteop-05:is(.dark *) {
  border-color: rgba(255, 255, 255, 0.05);
}

.dark\:border-whiteop-1:is(.dark *) {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark\:border-whiteop-2:is(.dark *) {
  border-color: rgba(255, 255, 255, 0.2);
}

.dark\:bg-\[\#0D0E10\]:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(13 14 16 / var(--tw-bg-opacity));
}

.dark\:bg-\[\#111111\]:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(17 17 17 / var(--tw-bg-opacity));
}

.dark\:bg-\[\#131417\]:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(19 20 23 / var(--tw-bg-opacity));
}

.dark\:bg-\[\#1D1F22\]:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(29 31 34 / var(--tw-bg-opacity));
}

.dark\:bg-\[\#222222\]:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(34 34 34 / var(--tw-bg-opacity));
}

.dark\:bg-\[\#26282C\]:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(38 40 44 / var(--tw-bg-opacity));
}

.dark\:bg-black:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(4 4 4 / var(--tw-bg-opacity));
}

.dark\:bg-darkgray:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(19 20 23 / var(--tw-bg-opacity));
}

.dark\:bg-darkgray-2:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(31 32 37 / var(--tw-bg-opacity));
}

.dark\:bg-white:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.dark\:bg-whiteop-05:is(.dark *) {
  background-color: rgba(255, 255, 255, 0.05);
}

.dark\:bg-whiteop-1:is(.dark *) {
  background-color: rgba(255, 255, 255, 0.1);
}

.dark\:bg-whiteop-7:is(.dark *) {
  background-color: rgba(255, 255, 255, 0.7);
}

.dark\:pb-8:is(.dark *) {
  padding-bottom: 2rem;
}

.dark\:pt-20:is(.dark *) {
  padding-top: 5rem;
}

.dark\:text-\[\#40454D\]:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(64 69 77 / var(--tw-text-opacity));
}

.dark\:text-\[\#A9ADB1\]:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(169 173 177 / var(--tw-text-opacity));
}

.dark\:text-black:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(4 4 4 / var(--tw-text-opacity));
}

.dark\:text-white:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dark\:text-whiteop-3:is(.dark *) {
  color: rgba(255, 255, 255, 0.3);
}

.dark\:text-whiteop-4:is(.dark *) {
  color: rgba(255, 255, 255, 0.4);
}

.dark\:text-whiteop-5:is(.dark *) {
  color: rgba(255, 255, 255, 0.5);
}

.dark\:text-whiteop-6:is(.dark *) {
  color: rgba(255, 255, 255, 0.6);
}

.dark\:text-whiteop-7:is(.dark *) {
  color: rgba(255, 255, 255, 0.7);
}

.dark\:text-whiteop-8:is(.dark *) {
  color: rgba(255, 255, 255, 0.8);
}

.dark\:text-whiteop-9:is(.dark *) {
  color: rgba(255, 255, 255, 0.9);
}

.dark\:hover\:border-whiteop-1:hover:is(.dark *) {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark\:hover\:border-whiteop-2:hover:is(.dark *) {
  border-color: rgba(255, 255, 255, 0.2);
}

.dark\:hover\:border-whiteop-3:hover:is(.dark *) {
  border-color: rgba(255, 255, 255, 0.3);
}

.dark\:hover\:bg-\[\#26282C\]:hover:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(38 40 44 / var(--tw-bg-opacity));
}

.dark\:hover\:bg-whiteop-05:hover:is(.dark *) {
  background-color: rgba(255, 255, 255, 0.05);
}

.dark\:hover\:text-white:hover:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dark\:hover\:text-whiteop-8:hover:is(.dark *) {
  color: rgba(255, 255, 255, 0.8);
}

.dark\:focus\:border-whiteop-1:focus:is(.dark *) {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 200px) {
  .xs\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .xs\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .xs\:text-3xl {
    font-size: 1.875rem;
  }
  .xs\:text-5xl {
    font-size: 3rem;
  }
}

@media (min-width: 380px) {
  .xm\:p-6 {
    padding: 1.5rem;
  }
  .xm\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .xm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xm\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .xm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .xm\:pl-1 {
    padding-left: 0.25rem;
  }
  .xm\:pr-10 {
    padding-right: 2.5rem;
  }
  .xm\:text-3xl {
    font-size: 1.875rem;
  }
  .xm\:text-4xl {
    font-size: 2.25rem;
  }
}

@media (min-width: 640px) {
  .sm\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .sm\:mb-12 {
    margin-bottom: 3rem;
  }
  .sm\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .sm\:mb-8 {
    margin-bottom: 2rem;
  }
  .sm\:ml-0 {
    margin-left: 0px;
  }
  .sm\:ml-4 {
    margin-left: 1rem;
  }
  .sm\:mr-4 {
    margin-right: 1rem;
  }
  .sm\:mr-6 {
    margin-right: 1.5rem;
  }
  .sm\:mt-0 {
    margin-top: 0px;
  }
  .sm\:mt-10 {
    margin-top: 2.5rem;
  }
  .sm\:mt-4 {
    margin-top: 1rem;
  }
  .sm\:mt-6 {
    margin-top: 1.5rem;
  }
  .sm\:mt-7 {
    margin-top: 1.75rem;
  }
  .sm\:block {
    display: block;
  }
  .sm\:inline-block {
    display: inline-block;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:w-1\/2 {
    width: 50%;
  }
  .sm\:w-2\/3 {
    width: 66.666667%;
  }
  .sm\:w-4\/6 {
    width: 66.666667%;
  }
  .sm\:w-48 {
    width: 12rem;
  }
  .sm\:w-\[200px\] {
    width: 200px;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:w-full {
    width: 100%;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:rounded-none {
    border-radius: 0;
  }
  .sm\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
  .sm\:bg-none {
    background-image: none;
  }
  .sm\:p-3 {
    padding: 0.75rem;
  }
  .sm\:p-8 {
    padding: 2rem;
  }
  .sm\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .sm\:pb-0 {
    padding-bottom: 0px;
  }
  .sm\:pb-32 {
    padding-bottom: 8rem;
  }
  .sm\:pr-10 {
    padding-right: 2.5rem;
  }
  .sm\:pr-5 {
    padding-right: 1.25rem;
  }
  .sm\:pt-10 {
    padding-top: 2.5rem;
  }
  .sm\:pt-24 {
    padding-top: 6rem;
  }
  .sm\:text-left {
    text-align: left;
  }
  .sm\:text-center {
    text-align: center;
  }
  .sm\:text-2xl {
    font-size: 1.5rem;
  }
  .sm\:text-4xl {
    font-size: 2.25rem;
  }
  .sm\:text-5xl {
    font-size: 3rem;
  }
  .sm\:text-base {
    font-size: 1rem;
  }
  .sm\:text-sm {
    font-size: 0.875rem;
  }
  .sm\:text-xs {
    font-size: 0.75rem;
  }
  .sm\:font-semibold {
    font-weight: 600;
  }
  .sm\:text-black {
    --tw-text-opacity: 1;
    color: rgb(4 4 4 / var(--tw-text-opacity));
  }
  .sm\:shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  .sm\:shadow-reasons {
    --tw-shadow: 0px 0px 40px 3px rgba(0,0,0,0.06);
    --tw-shadow-colored: 0px 0px 40px 3px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media (min-width: 768px) {
  .md\:static {
    position: static;
  }
  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .md\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .md\:mb-12 {
    margin-bottom: 3rem;
  }
  .md\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .md\:ml-5 {
    margin-left: 1.25rem;
  }
  .md\:ml-\[60px\] {
    margin-left: 60px;
  }
  .md\:ml-auto {
    margin-left: auto;
  }
  .md\:mr-auto {
    margin-right: auto;
  }
  .md\:mt-0 {
    margin-top: 0px;
  }
  .md\:mt-16 {
    margin-top: 4rem;
  }
  .md\:mt-20 {
    margin-top: 5rem;
  }
  .md\:mt-24 {
    margin-top: 6rem;
  }
  .md\:mt-3 {
    margin-top: 0.75rem;
  }
  .md\:block {
    display: block;
  }
  .md\:inline-block {
    display: inline-block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:w-10\/12 {
    width: 83.333333%;
  }
  .md\:w-2\/6 {
    width: 33.333333%;
  }
  .md\:w-4\/5 {
    width: 80%;
  }
  .md\:w-4\/6 {
    width: 66.666667%;
  }
  .md\:w-5\/12 {
    width: 41.666667%;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:border-b-0 {
    border-bottom-width: 0px;
  }
  .md\:bg-darkgray {
    --tw-bg-opacity: 1;
    background-color: rgb(19 20 23 / var(--tw-bg-opacity));
  }
  .md\:p-10 {
    padding: 2.5rem;
  }
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:p-16 {
    padding: 4rem;
  }
  .md\:p-7 {
    padding: 1.75rem;
  }
  .md\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .md\:pb-0 {
    padding-bottom: 0px;
  }
  .md\:pb-24 {
    padding-bottom: 6rem;
  }
  .md\:pl-5 {
    padding-left: 1.25rem;
  }
  .md\:pr-12 {
    padding-right: 3rem;
  }
  .md\:pt-0 {
    padding-top: 0px;
  }
  .md\:pt-10 {
    padding-top: 2.5rem;
  }
  .md\:pt-16 {
    padding-top: 4rem;
  }
  .md\:pt-20 {
    padding-top: 5rem;
  }
  .md\:pt-3 {
    padding-top: 0.75rem;
  }
  .md\:pt-32 {
    padding-top: 8rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  .md\:text-4ixl {
    font-size: 2.65rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
  }
  .md\:text-6xl {
    font-size: 4rem;
  }
  .md\:text-\[3\.5rem\] {
    font-size: 3.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
  }
  .md\:font-bold {
    font-weight: 700;
  }
  .md\:font-normal {
    font-weight: 400;
  }
  .md\:leading-relaxedp {
    line-height: 1.8;
  }
}

@media (min-width: 1024px) {
  .lg\:sticky {
    position: sticky;
  }
  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .lg\:ml-0 {
    margin-left: 0px;
  }
  .lg\:ml-\[89px\] {
    margin-left: 89px;
  }
  .lg\:mt-0 {
    margin-top: 0px;
  }
  .lg\:mt-24 {
    margin-top: 6rem;
  }
  .lg\:mt-7 {
    margin-top: 1.75rem;
  }
  .lg\:block {
    display: block;
  }
  .lg\:inline-block {
    display: inline-block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:max-h-\[calc\(100vh-300px\)\] {
    max-height: calc(100vh - 300px);
  }
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:w-10\/12 {
    width: 83.333333%;
  }
  .lg\:w-2\/3 {
    width: 66.666667%;
  }
  .lg\:w-3\/5 {
    width: 60%;
  }
  .lg\:w-4\/12 {
    width: 33.333333%;
  }
  .lg\:w-4\/5 {
    width: 80%;
  }
  .lg\:w-5\/12 {
    width: 41.666667%;
  }
  .lg\:w-6\/12 {
    width: 50%;
  }
  .lg\:w-8\/12 {
    width: 66.666667%;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:overflow-scroll {
    overflow: scroll;
  }
  .lg\:bg-transparent {
    background-color: transparent;
  }
  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lg\:pb-32 {
    padding-bottom: 8rem;
  }
  .lg\:pl-10 {
    padding-left: 2.5rem;
  }
  .lg\:pl-12 {
    padding-left: 3rem;
  }
  .lg\:pr-10 {
    padding-right: 2.5rem;
  }
  .lg\:pt-32 {
    padding-top: 8rem;
  }
  .lg\:text-left {
    text-align: left;
  }
  .lg\:text-1xl {
    font-size: 1.30rem;
  }
  .lg\:text-3xl {
    font-size: 1.875rem;
  }
  .lg\:text-5xl {
    font-size: 3rem;
  }
  .lg\:text-base {
    font-size: 1rem;
  }
  .lg\:text-lg {
    font-size: 1.125rem;
  }
  .lg\:text-xl {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .xl\:-ml-\[170px\] {
    margin-left: -170px;
  }
  .xl\:mt-32 {
    margin-top: 8rem;
  }
  .xl\:block {
    display: block;
  }
  .xl\:flex {
    display: flex;
  }
  .xl\:w-1\/3 {
    width: 33.333333%;
  }
  .xl\:w-6\/12 {
    width: 50%;
  }
  .xl\:w-8\/12 {
    width: 66.666667%;
  }
  .xl\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .xl\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .xl\:pb-0 {
    padding-bottom: 0px;
  }
  .xl\:pb-16 {
    padding-bottom: 4rem;
  }
  .xl\:pb-24 {
    padding-bottom: 6rem;
  }
  .xl\:pb-32 {
    padding-bottom: 8rem;
  }
  .xl\:pr-24 {
    padding-right: 6rem;
  }
  .xl\:pt-10 {
    padding-top: 2.5rem;
  }
  .xl\:pt-20 {
    padding-top: 5rem;
  }
  .xl\:pt-32 {
    padding-top: 8rem;
  }
  .xl\:pt-48 {
    padding-top: 12rem;
  }
  .xl\:text-3xl {
    font-size: 1.875rem;
  }
  .xl\:text-5xhl {
    font-size: 3.5rem;
  }
}

