/* Text Colors */
.text-primary {
  color: #f00;
}

.text-secondary {
  color: #999;
}

.text-bold {
  font-weight: 800;
}
.text-brand {
  font-family: "Goldman", cursive;
}

/* Text Alignment */
.text-center {
  text-align: center;
}
/* Buttons */
.btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  border: none;
  border-radius: 5px;
  opacity: 0.8;
}

.btn:hover {
  opacity: 1;
}

.btn-primary,
.bg-primary {
  background-color: #f00;
  color: #fff;
}
.btn-secondary,
.bg-secondary {
  background: #999;
  color: #fff;
}
.btn-dark,
.bg-dark {
  background: #333;
  color: #fff;
}
.btn-light,
.bg-light {
  background: #f4f4f4;
  color: #333;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
}

.btn-pill {
  cursor: pointer;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  border: none;
  border-radius: 40px;
}
/* Container */
.container {
  max-width: 1080px;
  width: 80%;
  margin: auto;
}

/* Flex items */
.flex-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-items div {
  flex: 0 0 33.333333%;
  padding: 20px;
}

.flex-items img {
  max-width: 11rem;
}

/* Flex columns */
.flex-columns.flex-reverse .row {
  flex-direction: row-reverse;
}
.flex-columns .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  /* width: 100%; */
}

.flex-columns .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.flex-columns .column .column-1,
.flex-columns .column .column-2 {
  height: 100%;
}

.flex-columns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-columns .column .column-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
}

.flex-columns h2 {
  font-size: 40px;
  font-weight: 100;
}

.flex-columns h4 {
  margin-bottom: 10px;
}

.flex-columns p {
  margin: 20px 0;
}

.img-cover {
  object-fit: cover;
}
/* Section */
section ul li::before {
  content: "\2022";
  color: #f00;
  font-weight: bold;
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1rem; /* Also needed for space (tweak if needed) */
  margin-left: 1rem; /* Also needed for space (tweak if needed) */
}

section ul li {
  display: list-item;
  text-align: left;
}

/* Section header */
.section-header {
  margin-bottom: 30px;
  text-align: center;
}

.section-header h2 {
  font-size: 40px;
  margin: 20px 0;
}

.section-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 40px;
}

/* Flex grid */
.flex-grid .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.flex-grid .column {
  flex: 33.3%;
  max-width: 33.3%;
  padding: 0 4px;
}

/* Grid */
.grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-items img {
  /* aspect-ratio: 1/1; */
  width: 100%;
  object-fit: contain;
}

@media (max-width: 880px) {
  .flex-columns .column .column-1 {
    display: none;
  }
  .flex-columns .row {
    flex-direction: column;
  }
  .grid-items {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .grid-items > div:first-child {
    /* display: none; */
  }
}
