@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

:root {
  --col-100: hsl(0,0%,100%);
  --col-97: hsl(0,0%,97%);
  --col-95: hsl(0,0%,95%);
  --col-90: hsl(0,0%,90%);
  --col-comp: hsl(39, 32%, 21%);
  --col-comp-hover: hsl(39, 32%, 15%);
  --col-main: hsl(75, 41%, 31%);
  --col-main-hover: hsl(75, 41%, 25%);
  --col-green-bg: hsl(66, 46%, 80%);
  --col-text: hsl(0, 0%, 15%);
  --col-desc-text: hsl(0, 0%, 35%);
  --col-muted: hsl(0, 0%, 70%);
  --sp2px: 0.125rem;
  --sp4px: 0.25rem;
  --sp8px: 0.5rem;
  --sp12px: 0.75rem;
  --sp16px: 1rem;
  --sp24px: 1.5rem;
  --sp32px: 2rem;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 64px;
  line-height: 125%;
  font-weight: 600;
}

h2 {
  font-size: 39.56px;
  line-height: 125%;
  font-weight: 600;
}

h3 {
  font-size: 24.45px;
  line-height: 125%;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

.col_comp {
  color: var(--col-comp);
}

.col_comp {
  color: var(--col-comp);
}

.div_sp2px {
  height: var(--sp2px);
  width: var(--sp2px);
}

.div_sp4px {
  height: var(--sp4px);
  width: var(--sp4px);
}

.div_sp8px {
  height: var(--sp8px);
  width: var(--sp8px);
}

.div_sp12px {
  height: var(--sp12px);
  width: var(--sp12px);
}

.div_sp16px {
  display: flex;
  height: var(--sp16px);
  width: var(--sp16px);
}

.div_sp24px {
  height: var(--sp24px);
  width: var(--sp24px);
}

.main_btn {
  all: unset;
  height: 40px;
  border-radius: 20px;
  background-color: var(--col-comp);
  cursor: pointer;
  z-index: 99;
}
.main_btn span {
  padding: 0 24px;
  color: var(--col-100);
  font-weight: 500;
}
.main_btn:hover {
  background-color: var(--col-comp-hover);
}

.sub_btn {
  all: unset;
  height: 36px;
  border-radius: 20px;
  border: 2px solid var(--col-muted);
  cursor: pointer;
  z-index: 99;
}
.sub_btn span {
  padding: 0 24px;
  color: var(--col-muted);
  font-weight: 600;
}
.sub_btn:hover {
  border-color: var(--col-comp);
}
.sub_btn:hover span {
  color: var(--col-comp);
}

.container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--col-light);
  flex-direction: column;
  position: relative;
}
.container .overflow_container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.container .overflow_container .overflow_display {
  display: flex;
  flex-direction: column;
}
.container .overflow_container .overflow_display1 {
  display: flex;
  flex-direction: column;
}

.section_banner {
  display: flex;
  flex-direction: row;
  background-color: var(--col-green-bg);
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 16px;
}
.section_banner .svg_cont {
  padding-left: 3px;
  display: flex;
}
.section_banner span {
  font-size: 14px;
  font-weight: 500px;
  color: hsl(75, 42%, 15%);
  padding-right: 4px;
}

.card_banner {
  display: flex;
  flex-direction: row;
  background-color: var(--col-green-bg);
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 8px;
  border-radius: 16px;
}

.o_none {
  opacity: 0;
}

.d_none {
  display: none;
}/*# sourceMappingURL=root-app.css.map */