/* Button */
.btn {
  cursor: pointer;
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.btn-primary {
  background: #f4f4f4;
  color: #333;
  padding: 10px 2rem;
  border: solid 1px var(--primary-color);
}

.btn-secondary {
  background: var(--secondary-color);
}

.btn-light {
  background: var(--bg-light);
}
.btn:hover {
  opacity: 0.7;
}

.dn-btn.btn {
  color: #fff;
  border: none;
  padding: 15px 0;
}

.card {
  background: #fff;
  padding: 1rem;
}

.category {
  display: inline-block;
  color: #fff;
  font-size: 0.55rem;
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  border-radius: 15px;
  margin-bottom: 0.5rem;
  max-width: 6rem;
  text-align: center;
}
.category-inf {
  background: var(--bg-light);
}
.category-hea {
  background: var(--secondary-color);
}
.category-gen {
  background: var(--fourth-color);
}

.bg-dark {
  background: var(--dark-color);
  color: #fff;
}

.bg-light {
  background: var(--bg-light);
}

.bg-secondary {
  background: var(--secondary-color);
  color: #fff;
}

.py-1 {
  padding: 1rem 0;
}
.py-2 {
  padding: 1rem 0;
}

/* About icons */
.flex-items {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 1rem;
}

.flex-items > div {
  padding: 1.4rem;
  flex-direction: row;
}

/* Icons */
.flex-items .icons img {
  max-width: 120px;
  max-height: 120px;
  margin-top: 2rem;
}

/* Flex-columns */
.flex-columns.flex-reverse .row {
  flex-direction: row-reverse;
}
.flex-columns .row {
  display: flex;
  flex-direction: row;
  flex-wrap: 100%;
  flex: 1;
}

.flex-columns .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.flex-columns .column .column-1 {
  line-height: 0;
}

.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-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
}

.flex-columns h2 {
  font-size: 3rem;
  font-weight: 100;
}

.flex-columns h4 {
  margin-bottom: 1.3rem;
}

.flex-columns p {
  margin: 1.3rem 0;
}

/* Section Header */
.section-header {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.section-padding {
  padding: 20px 20px 0;
}
.section-margin {
  margin-top: 4rem;
}
/* Gallery */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
  max-width: 1350;
}

.gal {
  display: grid;
  border: #ccc solid 1px;
  height: 220px;
}

.gal:hover {
  opacity: 0.7;
}

.photos .row {
  max-height: 700px;
}

/* Donation */
