html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  height: 100vh;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}
*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(226, 154, 19, 0.5);
}
strong {
  font-weight: 600;
}
.margin--botom--md {
  margin-bottom: 4.8rem !important;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9.6rem;
  padding: 0 4.8rem;
  background-color: #fef5e6;
}
.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
  display: inline-block;
  border-radius: 1.5rem;
  padding: 1.6rem 3.2rem;
  text-transform: capitalize;
  margin-bottom: 3.2rem;
  cursor: pointer;
}
.btn--right:link,
.btn--right:visited {
  color: #555;
  font-size: 1.8rem;
  background-color: #eee;
  font-weight: 600;
}
.btn--left:link,
.btn--left:visited {
  background-color: #f59f00;
  color: #403737;
  font-size: 2.5rem;
}
.btn--left:hover,
.btn--left:active {
  background-color: #c47f00;
  transition: all 0.4s ease;
  color: #fff;
}
.btn--right:hover,
.btn--right:active {
  background-color: #fff;
  box-shadow: inset 0 0 0 3px #fef5e6;
  transition: all 0.5s ease;
}
.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
  margin-bottom: 9.6rem;
}
.center--align {
  align-self: center;
}
.grid--two--col {
  grid-template-columns: repeat(2, 1fr);
}
.grid--three--col {
  grid-template-columns: repeat(3, 1fr);
}
.grid--four--col {
  grid-template-columns: repeat(4, 1fr);
}
.grid--five--col {
  grid-template-columns: repeat(5, 1fr);
}
.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}
.primary-heading {
  padding-top: 3.5rem;
  font-family: "Rubik", sans-serif;
  font-size: 5.2rem;
  line-height: 1.05;
  font-weight: 700;
  color: #333;
  margin-bottom: 3.2rem;
}
.teruary-heading {
  display: block;
  color: #c47f00;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.9px;
  line-height: 1.5;
}
.secondary-heading {
  font-family: "Rubik", sans-serif;
  font-size: 4.4rem;
  line-height: 1.05;
  font-weight: 700;
  color: #333;
  margin-bottom: 6.4rem;
}
.subheading {
  font-family: "Rubik", sans-serif;
  font-size: 4.2rem;
  line-height: 1.05;
  font-weight: 700;
  color: #333;
}
.text-container {
  align-self: center;
}
