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

  /* outline: 1px solid red; */
}

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

body {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #555;

  /* margin: 0 auto; */
  overflow-x: hidden;
}

/***********************/
/* GENERAL REUSABLE COMPONENTS */
/***********************/

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

.grid {
  width: auto;
  display: grid;
  justify-items: center;
  align-items: center;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
}

.grid:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

.grid--center-h {
  justify-content: center;
}

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

.heading-primary {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 6.2rem;
  line-height: 1.05;
  margin-bottom: 2.4rem;
}

.heading-secondary {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 4.4rem;
  line-height: 1.2;
  letter-spacing: 0.9px;
}

.heading-tertiary {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}

.subheading {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;

  color: #a5a58d;
}

.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;

  display: inline-block;

  font-family: inherit;

  border: none;
  border-radius: 9px;

  transition: all 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.btn--full:link,
.btn--full:visited {
  background-color: #a5a58d;
  color: #fff;
}

.btn--full:active,
.btn--full:hover {
  transform: translateY(-3px);
  background-color: #898e7c;
}

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

.btn--outline:active,
.btn--outline:hover {
  transform: translateY(-3px);
  background: none;
  box-shadow: inset 0 0 0 3px #555;
}

*:focus,
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px 2px rgba(165, 165, 141, 0.4);
  transition: box-shadow 0.3s ease, border 0.3s ease;

  border-radius: 9px;
}

/***********************/
/* HELPER CLASSES */
/***********************/

.margin-right-xsm {
  margin-right: 1.2rem !important;
}

.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-right-md {
  margin-right: 2.4rem !important;
}

.margin-bootm-zero {
  margin-bottom: 0;
}

.margin-bottom-xsm {
  margin-bottom: 2.4rem !important;
}

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

.margin-bottom-lg {
  margin-bottom: 6.4rem !important;
}

.margin-bottom-xlg {
  margin-bottom: 8rem !important;
}

.padding-lg {
  padding: 4.8rem !important;
}

.btn--padding-sm {
  padding: 1.2rem 2rem !important;
}

.btn--padding-md {
  padding: 1.6rem 3.2rem !important;
}

.btn--no-translate:hover {
  transform: none !important;
}

.text-transform--capitalize {
  text-transform: capitalize !important;
}

strong {
  font-weight: 600 !important;
}

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

.filter--brightness-default {
  filter: brightness(1) !important;
}

/* .justify-item--start {
  justify-self: start !important;
}

.justify-item--end {
  justify-self: end !important;
} */
