/* stylelint-disable */
:root {
  --clr-primary-200: #b6d550;
  --clr-primary-400: #4a4a4a;
  --clr-neutral-100: #fff;
  --clr-neutral-900: #000000;
  --ff-p: 'Lato', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--ff-p);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background-image: url('xyz');
}

body,
h1,
h2,
h3,
p {
  margin: 0;
}

a:link,
a:visited,
a:hover {
  color: lightskyblue;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  color: #ffffff;
}
a:active {
  color: #ffffff;
  text-decoration: none;
  font-weight: normal;
}

ul {
  display: flex;
  list-style: none;
  gap: 1.5em;
  padding: 0;
  justify-content: space-between;
}

li {
  margin: 0;
}

p {
  font-size: 1rem;
}

h1 {
  color: var(--clr-neutral-100);
  line-height: 1;
  font-size: 4rem;
  padding: 0.5em;
}

h2 {
  font-size: 2.25rem;
  color: var(--clr-primary-400);
  padding: 1.5em;
}

h3 {
  font-size: 1.75rem;
  color: var(--clr-primary-400);
  padding: 0.5em;
}

h5 {
  font-size: 1.25rem;
  color: var(--clr-primary-400);
  padding: 0;
  margin: 0;
  padding-bottom: 0.25em;
}

header,
section {
  padding: 1rem 0;

  @media (min-width: 40em) {
    header,
    section {
      padding: 7rem 0;
    }
  }
}

figure {
  width: 300px;
}

figcaption {
  font-size: 0.75rem;
  padding-left: 3em;
}

span {
  font-size: 0.85rem;
}

img {
  display: block;
  max-width: 100%;
}

.title-desc {
  color: var(--clr-neutral-100);
  margin-bottom: 0 !important;
}

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

.logo_img {
  height: 40px;
}

.container {
  margin-inline: auto;
  width: min(90%, 70.5rem);
}

.container-logo {
  margin-left: 24px;
  width: min(90%, 70.5rem);
}

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

.common-section-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 2em;
}

.container-margin {
  margin-top: 2em;
}

.align-center {
  display: flex;
  align-items: center;
  text-align: center;
}

@media (min-width: 40em) {
  .split {
    flex-direction: row;
  }

  .split > * {
    flex-basis: 100%;
  }

  .split > * + * {
    margin-left: 2em;
  }
}

.container--narrow {
  max-width: 34rem;
}

.bg-light {
  background-color: var(--clr-primary-200);
}

.bg-dark {
  color: var(--clr-neutral-100);
  background-color: var(--clr-neutral-900);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 2rem;
}

.link {
  font-size: 1rem;
}

.link:hover {
  text-decoration: underline !important;
}

.links-container {
  display: flex;
  gap: 16px;
  padding-left: 1rem;
}

@media (max-width: 40em) {
  .links-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* INTRO SECTION STYLES */
.intro-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

/* PURPOSE SECTION STYLES */
.purpose-section-image-container {
  display: flex;
  justify-content: center;
}

.purpose-section-image {
  box-shadow: 0 4px 20px rgb(0 0 0 / 25%);
}

.purpose-section-list {
  display: flex;
  flex-direction: column;
}

.purpose-section-details {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* USECASE SECTION STYLES */
.usecase-section-circle {
  width: 100px;
  text-align: center;
  border-radius: 100px;
  height: 100px;
  line-height: 100%;
  border: 0.0625rem solid rgb(220, 220, 220);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.usecase-section-circle.selected {
  background-color: var(--clr-primary-200);
}

.usecase-item-icon {
  height: 40px;
}

.usecase-section-item {
  margin: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  justify-content: center;
}

@media (max-width: 40em) {
  .usecase-section-container {
    display: flex;
    flex-direction: column;
  }
}

/* FOOTER STYLES */
.page-footer {
  background: #1d2124;
  display: flex;
  flex-flow: row wrap;
  padding: 1em;
}

.page-footer > div:first-child {
  margin-right: auto;
}

.footer-bottom-wrapper {
  font-size: 1rem;
  color: var(--clr-neutral-100);
}
/* stylelint-enable */
