* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Rubik-Regular;
  src: url('../fonts/Rubik-Regular.ttf');
}

@font-face {
  font-family: Rubik-Bold;
  src: url('../fonts/Rubik-Bold.ttf');
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: Rubik-Regular;
  font-weight: 400;
  line-height: 1;
  color: #555;
  overflow-x: hidden;
}

/* Utility Classes */
.btn:link,
.btn:visited,
.btn {
  font-family: inherit;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 0.9rem;
  border: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn--form {
  background: #45260a;
  color: #fdf2e9;
  padding: 1.2rem;
  align-self: end;
}

.btn--form:hover {
  color: #555;
  background: #fff;
}

.btn:hover,
.btn {
  cursor: pointer;
}

.btn-full:link,
.btn-full:visited {
  color: #fff;
  background: #e67e22;
  margin-right: 1.5rem;
}

.btn-full:hover,
.btn-full:active {
  background: #cf711f;
}

.btn-outline:link,
.btn-outline:visited {
  background: #fff;
  color: #555;
}

.btn-outline:hover,
.btn-outline:active {
  background-color: #fdf2e9;
  /* border: 3px solid #fff; */
  box-shadow: inset 0 0 0 3px #fff;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
}

.grid-footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid-center-v {
  align-items: center;
}

.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.heading-primary {
  font-family: Rubik-Bold;
  font-size: 4.2rem;
  line-height: 1.08;
  margin-bottom: 3rem;
  font-weight: 700;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3.1rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  color: #333;
  letter-spacing: -0.5px;
}

strong {
  font-weight: 500;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 2px solid transparent;
}

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