*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
pre{
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}

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

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

button {
  background: none;
  cursor: pointer;
  padding: 0;
  border: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

:focus,
:active {
  outline: none;
}
:root{
    --green-color: #46B749;
    --green1-color: #588F27;
    --dark-color: #333333;
    --grey-color: #888888;
    --grey2-color: #555555;
    --light-grey-color: #F8F8F8;
    --white-color: #FFFFFF;
}
body{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}


.flex{
  display: flex;
}
.flex-wrap{
  flex-wrap: wrap;
}
.flex-column{
  flex-direction: column;
}
.jcsb{
  justify-content: space-between;
}
.jcc{
  justify-content: center;
}
.gap5{
  gap: 5px;
}
.gap10{
  gap: 10px;
}
.gap16{
  gap: 16px;
}
.gap24{
  gap: 24px;
}
.gap32{
  gap: 32px;
}
.hidden{
  opacity: 0;
  display: none;
}
.flex-grow1{
  flex-grow: 1;
}
.black-svg{
  filter: brightness(0) invert(0);
}
.aic{
  align-items: center;
}
.ais{
  align-items: flex-start !important;
}
.center{
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
}
.button-green{
  background: var(--green1-color);
  border-radius: 5px;
  padding: 16px;
  font-weight: 600;
  color: var(--white-color);
  font-size: 16px;
  width: max-content;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
}
.button-green:disabled{
  opacity: 50%;
  pointer-events: none;
}
.button-green:hover{
  background: #44731B;
  transition: 0.3s;
}
.about-us-in-numbers-item{
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    border-radius: 10px;
    background: var(--light-grey-color);
    flex-grow: 1;
    align-items: center;
}
.about-us-in-numbers-item span:first-child{
    font-weight: 700;
    font-size: 28px;
    color: var(--dark-color);
}
.invert-color{
  filter: invert(1);
}
.relative{
  position: relative;
}
.dialog{
  width: 100%;
  height: 100%;
  z-index: 5;
  position: fixed;
  left: 0;
  top: 0;
  background: var(--white-color);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dialog-close{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 35px;
    line-height: 1;
    z-index: 99999;
}
.partners img{
  max-width: 350px;
  min-width: 300px;
}

@media (max-width: 780px) {
  body{
    font-size: 14px;
  }
}
@media (max-width: 430px) {
    .button-green {
      padding: 12px;
      font-size: 14px;
      width: 100%;
    }
    .about-us-in-numbers{
      gap: 8px;
      flex-direction: column;
    }
    .about-us-in-numbers-item span:first-child{
      font-size: 18px;
    }
    .main .about-us-in-numbers-item{
      padding: 0;
    }
    .about-us-in-numbers-item{
      gap: 8px;
    }
}
