@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --green5: #0252390d;
  --green80: #025239cc;
  --green: #025239;
  --white: #fdfffd;
  --white5: #fdfffd0d;
  --contWidth: 1440px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  min-width: 375px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--green);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body:has(.modal.opened) {
  overflow: hidden;
}

body:has(.mobile-menu.opened) {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 500;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  outline: none;
}

button {
  cursor: pointer;
}

label {
  cursor: pointer;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
}
@media (max-width: 1024px) {
  main {
    gap: 96px;
  }
}
@media (max-width: 768px) {
  main {
    gap: 80px;
  }
}

.main-title {
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .main-title {
    font-size: 20px;
  }
}

.lh {
  line-height: 1.6;
}

.general-button {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: var(--green);
  border-radius: 5px;
  transition: 0.3s all cubic-bezier(0.34, 1.56, 0.64, 1);
}
.general-button span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.general-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.general-button svg path {
  stroke: var(--white);
}
.general-button.active {
  background-color: #02422e;
}
@media (hover: hover) {
  .general-button:hover {
    background-color: var(--green80);
    box-shadow: 0 8px 20px rgba(2, 82, 57, 0.2);
    transform: translateY(-3px);
  }
}

.general-button--light {
  background-color: var(--green5);
}
.general-button--light span {
  color: var(--green);
}
.general-button--light svg path {
  stroke: var(--green);
}
@media (hover: hover) {
  .general-button--light:hover span {
    color: var(--white);
  }
  .general-button--light:hover svg path {
    stroke: var(--white);
  }
}

.general-button--white {
  background-color: var(--white);
}
.general-button--white span {
  color: var(--green);
}
.general-button--white svg path {
  stroke: var(--green);
}
@media (hover: hover) {
  .general-button--white:hover span {
    color: var(--white);
  }
  .general-button--white:hover svg path {
    stroke: var(--white);
  }
}/*# sourceMappingURL=style.css.map */