:root {
  --black: #000000;
  --white: #ffffff;
  --color-3: #f9f9f9;
  --color-4: #f2f2e6;
  --color-5: #616605;
  --color-6: #6d7305;
  --color-7: #242602;
  --background-primary: var(--color-3);
  --background-secondary: var(--color-4);
  --background-dark-tone: #24260289;
  --background-light-tone: #61660576;
  --background-image-gradient: linear-gradient(
      to right bottom,
      var(--background-dark-tone),
      var(--background-light-tone)
    ),
    url("../content/img/img2.jpg");
  --text-main: #333333;
  --text-light: #555555;
  --text-inverse: #ffffff;
  --border-color: #e0e0e0;
  --box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  --font-family-base: "Poppins", sans-serif;
  --font-size-base: 1.8rem;
  --font-size-small: 1.4rem;
  --font-size-large: 2rem;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --links: bold 1.8rem/1.8rem var(--font-family-base);
  --p: 1.8rem/3rem var(--font-family-base);
  --subtext: 1.2rem/2rem var(--font-family-base);
  --transition: 0.3s ease-in-out;
  --shadow: #00000030 0px 0px 10px 0px;
  --shadowdark: #00000030 0px 5px 10px 5px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family-base);
  line-height: 1;
  font-weight: 400;
  color: var(--text-light);
  overflow-x: hidden;
}
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}
.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}
.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--center-v {
  align-items: center;
}
.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
}
.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
  text-align: left;
}
.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 8rem;
}
.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.subheading {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-6);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
  display: inline-block;
  width: 240px;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  margin-bottom: 1.6rem;
  border-radius: 11px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  text-align: center;
}
.btn--full:link,
.btn--full:visited {
  background-color: var(--color-6);
  color: var(--white);
  border: 1px var(--color-4) solid;
}
.btn--full:hover,
.btn--full:active {
  background-color: var(--color-5);
}
.btn--outline:link,
.btn--outline:visited {
  background-color: var(--white);
  color: var(--text-light);
}
.btn--outline:hover,
.btn--outline:active {
  background-color: var(--color-4);
  box-shadow: inset 0 0 0 3px var(--white);
}
.btn--form {
  background-color: var(--color-7);
  color: var(--color-4);
  align-self: end;
  padding: 1.2rem;
}
.btn--form:hover {
  background-color: var(--white);
  color: var(--text-light);
}
.link:link,
.link:visited {
  display: inline-block;
  color: var(--color-6);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: var(--transition);
}
.link:hover,
.link:active {
  color: var(--color-5);
  border-bottom: 1px solid transparent;
}
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}
.list-icon {
  font-size: 3rem;
  height: 3rem;
  color: var(--color-6);
}
*:focus-visible {
  outline: 2px solid var(--color-5);
  outline-offset: 2px;
}
.margin-right-sm {
  margin-right: 1.6rem !important;
}
.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}
.center-text {
  text-align: center;
}
strong {
  font-weight: 500;
}
.left-text {
  text-align: left;
}
