:root {
  --primary-color: #c44b4b;
  --secondary-color: #f5a226;
  --light-color: #dee1e9;
  --dark-color: #333;
  --max-width: 1100px;
  --light-font: #fdfdfd;
}

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

.text-secondary {
  color: var(--secondary-color);
}

/* Button */
.btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  color: #444 !important;
  background-color: var(--secondary-color) !important;
  border: none;
  border-radius: 5px;
}

.btn:hover {
  opacity: 0.9;
  color: #333;
  background: #fdf6ee;
}

.btn-primary,
.bg-primary {
  background-color: var(--secondary-color);
  color: #444;
}

.btn-secondary,
.bg-secondary {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-dark,
.bg-dark {
  background-color: #333 !important;
  color: #f4f4f4 !important;
}

.btn-dark:hover {
  background-color: #333 !important;
  color: #f4f4f4;
}

.btn-light {
  background-color: var(--primary-color) !important;
  color: #f4f4f4 !important;
}
.bg-light {
  background-color: var(--light-color) !important;
  color: #333 !important;
}

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

.btn-darkoutline {
  background: transparent;
  border: 1px solid #333;
}

.btn-darkoutline:hover {
  color: #fdf6ee;
  background: #333;
}

/* Flex items */
.flex-items {
  display: flex;
  text-align: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.team-flex-items {
  vertical-align: middle;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.flex-items > div {
  padding: 20px;
}

/* Flex columns */
.flex-columns.flex-reverse .row {
  flex-direction: row-reverse;
}

.flex-columns .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  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-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;
}

/* Section header */
.section-header {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.section-padding {
  padding: 20px 20px 40px;
}

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

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

/* Copied over from Udemy finished project. Could be conflicting with my CSS above */
/* .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
  overflow: hidden;
}

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

.text-primary {
  color: #c44b4b;
}

.bg-light {
  background: #b9a589;
  color: #333;
}

.bg-dark {
  background: #333;
  color: #fff;
}

.bg-primary {
  background: #c44b4b;
  color: #fff;
}

.l-heading {
  font-size: 4rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  color: #fff !important;
}

.m-heading {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.py-1 {
  padding: 1.5rem 0;
}
.py-2 {
  padding: 2rem 0;
}
.py-3 {
  padding: 3rem 0;
}

.p-1 {
  padding: 1.5rem;
}
.p-2 {
  padding: 2rem;
}
.p-3 {
  padding: 3rem;
}

.btn {
  display: inline-block;
  color: #fff;
  background: #c44b4b;
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 5px;
}

.btn:hover {
  background: #c44b4b;
}

.btn-dark {
  background: #333;
  color: #fff;
}

.list {
  margin: 0.5rem 0;
  list-style: none;
}

.list li {
  padding: 0.5rem 0;
  border-bottom: #444 dotted 1px;
} */
