/** @format */
/*
- FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98


- COLOURS
Primary: #e67e22
Tints: #fef2eb
Shades: 
Grey: #555 ||  #333
Accents:

--- ICONS

--- SHADOWS

--- BORDER RADIUS

--- WHITESPACES
- SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

      */

.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.gird {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
  /* align-items: center; */
  /* -row-gap: 9.6rem; */
}

.gird--2-cols {
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-columns: 1fr 1fr; */
}
.gird--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.gird--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.gird--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.primary-heading,
.secondary-heading .tertiary-heading {
  font-weight: 700;
  color: #333333;
  letter-spacing: -0.5px;
}
.primary-heading {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.secondary-heading {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
  color: #333333;
}

.tertiary-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.sub-heading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #e67e22;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  background-color: #e67e22;
  font-size: 1.8rem;
  color: #fff;
  display: inline-block;
  padding: 1.6rem 3.2rem;
  border-radius: 0.9rem;
  text-decoration: none;
  transition: all 300ms;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn--full:link,
.btn--full:visited {
  background-color: #e67e22;
}
.btn--full:hover,
.btn--full:active {
  background-color: #cf711f;
}
.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #555;
  color: #fff;
}
.btn-form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}
.list-items {
  font-size: 1.8rem;
  align-items: center;
  display: flex;
  gap: 1.4rem;
}
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.list-icon {
  height: 3rem;
  width: 3rem;
  color: #e67e22;
}

/* helper classes */
.centre-text {
  text-align: center;
}
.margin-right-sm {
  margin-right: 1.6rem !important;
}
.margin-right-medium {
  margin-bottom: 4.8rem;
}

.link:visited,
.link:link {
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  display: inline-block;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}
.cols-4-margin-btn {
  margin-top: 9.6rem;
}
/* * :focus {
  box-shadow: 0 0 0 0.8rem hsla(28, 80%, 52%, 0.297);
} */
