/* --------------- Config ---------------- */
.box-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box-container {
  display: grid;
  grid-template-rows: 1fr 3fr 1fr;

  height: 200px;
  width: 450px;

  padding: 30px;
  margin: 0 10px;

  opacity: 0;
  filter: blur(2px);
  transform: translateX(-50px);
  transition: all 0.8s;

}

.box-body {
  line-height: 1.3;
}
.box-heading-container > h3 {
  margin-top: -16px;
}

@media (max-width: 768px) {
  .box-container {
    width: auto;
    height: 360px;
    margin: 0 5px;
  }
}

.divider {
  height: 100px;
  width: 0;
  margin: 20px 0;
}

.hidden-transition-up {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(100%);
  transition: all 1s;
}

.show-transition-up {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.show-box-container {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

body {
  background-color: pink;
}

h1 {
  font-size: 128px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 24px;
}

h6 {
  font-size: 15px;
}

p {
  font-size: 16px;
}

.bold {
  font-weight: bold;
}

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

.capitalize {
  text-transform: capitalize;
}

.section-header {
  padding: 0 0 60px 0;
  text-align: center;
}

.section-header > p {
  margin: -30px 0 30px 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

b {
  font-family: 'Lato', sans-serif;
  color: var(--yellow)
}

@media (max-width: 728px) {
  .no-small-display {
    display: none;
  }
}

@media (max-width: 800px) {
  .no-medium-display {
    display: none;
  }
}
