:root {
  --primary-green: #2bb24c;
  --primary-green-dark: #168c36;
  --primary-green-light: #eaf8ee;

  --dark-green: #0d3b21;
  --dark-green-light: #174f2d;

  --text-dark: #171717;
  --text-body: #626262;
  --text-white: #ffffff;

  --background-white: #ffffff;
  --background-light: #f7faf8;
  --background-soft: #f1f8f3;

  --border-light: #e6ebe7;

  --shadow-small: 0 5px 18px rgba(24, 73, 40, 0.07);
  --shadow-medium: 0 15px 35px rgba(24, 73, 40, 0.12);

  --container-width: 1180px;

  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-white);
  color: var(--text-dark);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}