/* Utilities */

.none {
  display: none;
}
/* SECTIONS */

section {
  padding: 112px 64px;
  opacity: 1;
  transition:
    opacity 0.5s ease-in-out,
    transform 0.8s ease-in-out;
}
.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}
/* CONTAINERS */
.container {
  overflow: visible;
  margin: auto;
  max-width: 1200px;
}
/* CARDS */
.card-text,
.card-image {
  border-radius: 16px;
}
.card-text {
  padding: 32px;
}
/* lAYOUTS */
.row {
  display: flex;
  /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
  gap: 32px;
}
.row > * {
  flex: 1;
}
.card-stats-row {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}
.component-h {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 64px;
  width: 100%;
}
.component-h > * {
  flex: 1;
}
.component-h-2-1 {
  display: flex;
  gap: 64px;
  width: 100%;
}
.component-h-2-1>:nth-child(1){
flex: 2;
}
.component-h-2-1>:nth-child(2){
flex: 1;
}

.center {
  margin: auto;
}
.flex {
  display: flex;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.flex-start {
  align-items: flex-start;
}
.flex-between {
  display: flex;
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.component-v {
  display: flex;
  flex-direction: column;
  gap: 80px;
  height: 100%;
}
.content-0 {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.content-1 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.content-2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-5 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-1-2 {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 2fr;
}
.grid-3col {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
}
.grid-3col-1-3 {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 3fr;
}
.grid-center {
  justify-content: center;
  align-items: center;
}
.center {
  align-items: center;
  justify-content: center;
}
.gap-0 {
  gap: 0.5em;
}
.gap-1 {
  gap: 1em;
}
.gap-2 {
  gap: 2em;
}
.gap-3 {
  gap: 3em;
}
.gap-4 {
  gap: 4em;
}
.gap-5 {
  gap: 5em;
}

.gapY-1 {
  column-gap: 1em;
}
.gapY-2 {
  column-gap: 2em;
}
.gapY-3 {
  column-gap: 3em;
}
.gapY-4 {
  column-gap: 4em;
}
.gapY-5 {
  column-gap: 5em;
}

.gapY-15 {
  column-gap: 1.5em;
}
.gapY-25 {
  column-gap: 1.5em;
}
.gapY-35 {
  column-gap: 3.5em;
}
.gapY-45 {
  column-gap: 4.5em;
}
.gapY-55 {
  column-gap: 5.5em;
}

.gapX-1 {
  row-gap: 1em;
}
.gapX-2 {
  row-gap: 2em;
}
.gapX-3 {
  row-gap: 3em;
}
.gapX-4 {
  row-gap: 4em;
}
.gapX-5 {
  row-gap: 5em;
}

.gapX-15 {
  row-gap: 1.5em;
}
.gapX-25 {
  row-gap: 2.5em;
}
.gapX-35 {
  row-gap: 3.5em;
}
.gapX-45 {
  row-gap: 4.5em;
}
.gapX-55 {
  row-gap: 5.5em;
}
.maxw-80 {
  max-width: 80%;
}

/* BUTTONS */

.button-primary {
  background: #0b66c3;
  /* 0E1827 */
  border: 0;
  color: var(--complimentary);
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
}
.button-primary:hover {
  background-color: #65b2ff;
  color: var(--complimentary);
}
.button-secondary {
  background: transparent;
  /* 0E1827 */
  border: 1px solid rgba(2, 6, 6, 0.15);
  color: var(--complimentary);
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
}
.button-secondary:hover {
  background-color: rgb(150, 150, 15, 0.15);
  /* color: var(--complimentary); */
}
.button-text {
  border: none;
  letter-spacing: 4%;
  background: none;
  cursor: pointer;
  color: gray;
}
.button-text:hover {
  color: lightgray;
}
/* TEXT STYLES */
h1 {
  font-size: 72px;
  line-height: 100%;
  font-weight: bold;
}
h2 {
  font-size: 64px;
  line-height: 100%;
  font-weight: bold;
}
h3 {
  font-size: 56px;
  line-height: 100%;
  font-weight: bold;
}
h4 {
  font-size: 48px;
  line-height: 100%;
  font-weight: bold;
}
h5 {
  font-size: 40px;
  line-height: 100%;
  font-weight: bold;
}
h6 {
  font-size: 32px;
  line-height: 100%;
  font-weight: bold;
}
.body-l-regular {
  font-size: 24px;
  line-height: 140%;
}
.body-l-bold {
  font-size: 24px;
  line-height: 140%;
  font-weight: bold;
}
.body-m-regular {
  font-size: 20px;
  line-height: 140%;
}
.body-m-bold {
  font-size: 20px;
  line-height: 140%;
  font-weight: bold;
}
.body-s-regular {
  font-size: 16px;
  line-height: 160%;
}
.body-s-bold {
  font-size: 16px;
  line-height: 160%;
  font-weight: bold;
}
.label-ui-regular {
  font-size: 12px;
  line-height: 160%;
}
.label-ui-bold {
  font-size: 12px;
  line-height: 160%;
  font-weight: bold;
}
.label-s-regular {
  line-height: 180%;
  font-size: 10px;
}
.label-s-bold {
  line-height: 160%;
  font-size: 10px;
  font-weight: bold;
}
.text-center {
  text-align: center;
}

.icon {
  width: 48px;
  height: 48px;
}
.m-icon {
  width: 24px;
  height: 24px;
}
.s-icon {
  width: 16px;
  height: 16px;
}
/* COLORS */
.button-color {
  color: var(--button-color);
}
.main-body-color {
  color: var(--main-body-color);
}
.main-body-container {
  color: var(--main-body-container);
}

/* EFFECTS */
.umbra {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14);
}
.penumbra {
  box-shadow: 0 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.drop-shadow {
  box-shadow:
    0,
    4px,
    4px 0,
    rgba(0, 0, 0, 0.25);
}

/* Margin */
.my-1 {
  margin: 1rem 0;
}

.my-2 {
  margin: 1.5rem 0;
}

.my-3 {
  margin: 2rem 0;
}

.my-4 {
  margin: 3rem 0;
}
.mx-1 {
  margin: 0 5px;
}
.mx-2 {
  margin: 0 10px;
}
.mx-3 {
  margin: 0 15px;
}
.mx-4 {
  margin: 0 20px;
}
.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}
/* Padding */
.py-1 {
  padding: 1rem 0;
}
.py-2 {
  padding: 2rem 0;
}
.py-3 {
  padding: 3rem 0;
}
.py-4 {
  padding: 4rem 0;
}

.px-1 {
  padding: 0 1rem;
}
.px-2 {
  padding: 0 2rem;
}
.px-3 {
  padding: 0 3rem;
}
.px-4 {
  padding: 0 4rem;
}
@media (max-width: 992px) {
  /* TEXT STYLES */
  h1 {
    font-size: 64px;
    line-height: 100%;
    font-weight: bold;
  }
  h2 {
    font-size: 56px;
    line-height: 100%;
    font-weight: bold;
  }
  h3 {
    font-size: 48px;
    line-height: 100%;
    font-weight: bold;
  }
  h4 {
    font-size: 40px;
    line-height: 100%;
    font-weight: bold;
  }
  h5 {
    font-size: 32px;
    line-height: 100%;
    font-weight: bold;
  }
  h6 {
    font-size: 28px;
    line-height: 100%;
    font-weight: bold;
  }
  .body-l-regular {
    font-size: 20px;
    line-height: 160%;
  }
  .body-l-bold {
    font-size: 20px;
    line-height: 160%;
    font-weight: bold;
  }
  .body-m-regular {
    font-size: 18px;
    line-height: 160%;
  }
  .body-m-bold {
    font-size: 18px;
    line-height: 160%;
    font-weight: bold;
  }
  .body-s-regular {
    font-size: 15px;
    line-height: 160%;
  }
  .body-s-bold {
    font-size: 15px;
    line-height: 160%;
    font-weight: bold;
  }
  .label-ui-regular {
    font-size: 14px;
  }
  .label-ui-bold {
    font-size: 14px;
    font-weight: bold;
  }
  .label-s-regular {
    font-size: 12px;
  }
  .label-s-bold {
    font-size: 12px;
    font-weight: bold;
  }
}

@media (max-width: 768px) {
  /* LAYOUTS */
  .row {
    flex-direction: column;
  }
  /* .row{
  width: 70%;
} */
  .component-h > * {
    width: 100%;
  }
  .grid-1-2 {
    grid-template-columns: 1fr;
  }
  .component-h,
  .component-h-2-1 {
    flex-direction: column;
    gap: 32px;
  }
  .grid {
    display: block;
    width: 100%;
  }
  section {
    padding: 64px 32px;
  }
  .flex-between.foldable {
    flex-direction: column;
  }
  /* Nav Section */

  /* TEXT STYLES */
  h1 {
    font-size: 56px;
    line-height: 100%;
    font-weight: bold;
  }
  h2 {
    font-size: 48px;
    line-height: 100%;
    font-weight: bold;
  }
  h3 {
    font-size: 40px;
    line-height: 100%;
    font-weight: bold;
  }
  h4 {
    font-size: 32px;
    line-height: 100%;
    font-weight: bold;
  }
  h5 {
    font-size: 28px;
    line-height: 100%;
    font-weight: bold;
  }
  h6 {
    font-size: 20px;
    line-height: 100%;
    font-weight: bold;
  }
  .body-l-regular {
    font-size: 16px;
    line-height: 160%;
  }
  .body-l-bold {
    font-size: 16px;
    line-height: 160%;
    font-weight: bold;
  }
  .body-m-regular {
    font-size: 14px;
    line-height: 160%;
  }
  .body-m-bold {
    font-size: 14px;
    line-height: 160%;
    font-weight: bold;
  }
  .body-s-regular {
    font-size: 13px;
    line-height: 160%;
  }
  .body-s-bold {
    font-size: 13px;
    line-height: 160%;
    font-weight: bold;
  }
  .label-ui-regular {
    font-size: 12px;
    line-height: 160%;
  }
  .label-ui-bold {
    font-size: 12px;
    line-height: 160%;
    font-weight: bold;
  }
  .label-s-regular {
    line-height: 180%;
    font-size: 10px;
  }
  .label-s-bold {
    line-height: 160%;
    font-size: 10px;
    font-weight: bold;
  }
}

@media (max-width: 576px) {
  /* Layouts */
  section {
    padding: 64px 16px;
  }

  .component-h > * {
    width: 100%;
  }
  .component-h,
  .component-h-2-1 {
    flex-direction: column;
    gap: 32px;
  }
  .content-0 {
    gap: 32px;
  }
  .content-1 {
    gap: 24px;
  }
  .content-2 {
    gap: 16px;
  }
  .content-3 {
    gap: 8px;
  }
  .content-4 {
    gap: 4px;
  }
  .content-5 {
    gap: 2px;
  }

  .card-text {
    padding: 24px;
  }
  /* BUTTONS */

  .button-primary {
    background: #0b66c3;
    /* 0E1827 */
    border: 0;
    color: var(--complimentary);
    padding: 12px 6px;
  }
  .button-secondary {
    background: transparent;
    /* 0E1827 */
    border: 1px solid rgba(2, 6, 6, 0.15);
    color: var(--complimentary);
    padding: 12px 6px;
  }
  /* TEXT STYLES */
  h1 {
    font-size: 48px;
    line-height: 100%;
    font-weight: bold;
  }
  h2 {
    font-size: 36px;
    line-height: 100%;
    font-weight: bold;
  }
  h3 {
    font-size: 32px;
    line-height: 100%;
    font-weight: bold;
  }
  h4 {
    font-size: 28px;
    line-height: 100%;
    font-weight: bold;
  }
  h5 {
    font-size: 22px;
    line-height: 100%;
    font-weight: bold;
  }
  h6 {
    font-size: 20px;
    line-height: 100%;
    font-weight: bold;
  }
  .body-l-regular {
    font-size: 16px;
    line-height: 160%;
  }
  .body-l-bold {
    font-size: 16px;
    line-height: 160%;
    font-weight: bold;
  }
  .body-m-regular {
    font-size: 14px;
    line-height: 160%;
  }
  .body-m-bold {
    font-size: 14px;
    line-height: 160%;
    font-weight: bold;
  }
  .body-s-regular {
    font-size: 12px;
    line-height: 160%;
  }
  .body-s-bold {
    font-size: 12px;
    line-height: 160%;
    font-weight: bold;
  }
  .label-ui-regular {
    font-size: 11px;
  }
  .label-ui-bold {
    font-size: 11px;
    font-weight: bold;
  }
  .label-s-regular {
    font-size: 10px;
  }
  .label-s-bold {
    font-size: 10px;
    font-weight: bold;
  }
}
