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

:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #48B862;
  --yellow-footer: #48B862;
  --gray-light: #f4f4f4;
  --gray-border: #d0d0d0;
  --charcoal: #4d4d4d;
  --sage: #b8c9b9;
  --footer-grad-start: #e1efd2;
  --footer-grad-end: #e6f2f7;
  --font: "Barlow", sans-serif;
  --font-display: "Archivo", sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
}

html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge */
  overscroll-behavior-x: none;
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  padding-top: 76px;
  overscroll-behavior-x: none;
}

.page {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
.logo,
.footer-brand,
.btn,
.service-caption strong {
  font-family: var(--font-display);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}
