@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

html {
  font-size: 62.5%;
}

body {
  color: #000;
  background: #DFDFDF;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}

body.noscroll {
  overflow-y: hidden;
  height: calc(100vh - 98px);
}

section {
  padding: 88px 80px;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  /*max-width: 1120px;*/
  margin: auto;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

ul li {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.dnone {
  display: none;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

h2 {
  font-size: 4.2rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: normal;
}

h3 {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: normal;
}

p {
  padding-top: 24px;
}

.button.primary {
  cursor: pointer;
  border-radius: 40px;
  padding: 16px 24px;
  line-height: 1;
  display: inline-flex;
  background: #fff;
  color: #6B9C46;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.button.primary img {
  margin-left: 9px;
}

.button.secondary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.button.secondary img {
  margin-left: 16px;
  padding: 15px;
  background: #81BB56;
  border-radius: 25px;
}

.button-green{
  border-radius: 40px;
  border: none;
  font-family: Montserrat, sans-serif;
  background: #5E8A3E;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  cursor: pointer;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 80px;
  background: none;
  z-index: 10;
  position: relative;
}

header.fixed-header {
  position: sticky;
  top: 0;
  left: 0px;
  z-index: 100;
  background: #fff;
}

header.fixed-header .logo img {
  filter: invert(1);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger img {
  filter: invert(1);
}

header.fixed-header .hamburger img {
  filter: none;
}

header .nav a {
  padding: 11px 24px 0;
  line-height: 1;
  color: #fff;
  position: relative;
}

header.fixed-header .nav a {
  color: #000;
}

header .nav a.active:before, header .nav a:hover:before {
  content: '';
  position: absolute;
  top: -38px;
  left: 19px;
  width: calc(100% - 38px);
  height: 6px;
  border-radius: 4px;
  background: #6B9C46;
}

header .nav a:last-child {
  padding-right: 0;
}

header .nav a:last-child.active:before, header .nav a:last-child:hover:before {
  width: calc(100% - 19px);
}

header .nav a.active, header .nav a:hover {
  font-weight: 700;
}

#home {
  margin-top: -120px;
  padding: 0 80px;
  max-width: unset;
  background: #6B9C46 url('../images/home-bg.webp') no-repeat;
  background-size: cover;
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.home-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 240px 0 252px;
  max-width: 611px;
}

.home-content .button {
  margin-top: 32px;
  align-items: center;
}

#about .container {
  padding-top: 88px;
}

#about .flex-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 66px;
  align-items: flex-start;
  padding-top: 0;
}

#about .flex-container img {
  border-radius: 40px;
}

#about h2 {
  padding-bottom: 24px;
}

#about .button {
  padding-top: 33px;
}

.projects {
  display: flex;
  gap: 45px;
  margin-top: 48px;
}

.project {
  width: calc((100% / 3) - 30px);
  position: relative;
}

.project img {
  border-radius: 40px;
  width: 100%;
}

.project-detail {
  position: absolute;
  bottom: 0;
  padding: 32px;
  color: #fff;
}

.project-detail h3 {
  font-size: 2.4rem;
}

.project-detail p {
  font-size: 2.4rem;
  padding-top: 16px;
}

#quote {
  background: url('../images/quote-bg.webp') no-repeat;
  background-size: cover;
}

.quote-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 220px 0;
}

.quote-content h3 {
  line-height: 1.4;
  max-width: 1083px;
}

.quote-content p {
  padding-top: 40px;
  font-size: 2.0rem;
  line-height: 1.4;
}

#benefits {
  padding-bottom: 0;
}

.benefit {
  position: relative;
  /*max-width: 1120px;*/
  margin: auto;
  margin-top: 48px;
  border-radius: 40px;
}

.benefit:nth-of-type(1) {
  background: url('../images/1.webp') no-repeat;
  background-size: cover;
  background-position: center;
}

.benefit:nth-of-type(2) {
  background: url('../images/2.webp') no-repeat;
  background-size: cover;
  background-position: center;
}

.benefit:nth-of-type(3) {
  background: url('../images/3.webp') no-repeat;
  background-size: cover;
  background-position: center;
}

.benefit:nth-of-type(4) {
  background: url('../images/4.webp') no-repeat;
  background-size: cover;
  background-position: center;
}

.benefit:nth-of-type(5) {
  background: url('../images/5.webp') no-repeat;
  background-size: cover;
  background-position: center;
}

.benefit-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 36px 72px 36px 128px;
  display: flex;
  justify-content: space-between;
}

.benefit:nth-of-type(even) .benefit-content {
  flex-direction: row-reverse;
}

.benefit-content .no {
  font-size: 7.0rem;
  font-weight: 700;
  line-height: 1;
  color: #81BB56;
  position: absolute;
  top: 24px;
}

.benefit:nth-of-type(odd) .benefit-content .no {
  left: 32px;
}

.benefit:nth-of-type(even) .benefit-content .no {
  right: 32px;
}

.benefit:nth-of-type(1) .benefit-title {
  padding: 96px 0 91px;
  width: 408px;
}

.benefit:nth-of-type(1) p {
  padding: 84px 0 55px;
  width: 258px;
}

.benefit:nth-of-type(2) .benefit-title {
  padding: 91px 0 42px;
  width: 276px;
}

.benefit:nth-of-type(2) p {
  padding: 215px 0 69px;
  width: 449px;
}

.benefit:nth-of-type(3) .benefit-title {
  padding: 114px 0 81px;
  width: 356px;
}

.benefit:nth-of-type(3) p {
  padding: 79px 0 68px;
  width: 313px;
}

.benefit:nth-of-type(4) .benefit-title {
  padding: 112px 0 71px;
  width: 276px;
}

.benefit:nth-of-type(4) p {
  padding: 214px 0 106px;
  width: 429px;
}

.benefit:nth-of-type(5) .benefit-title {
  padding: 137px 0 59px;
  width: 366px;
}

.benefit:nth-of-type(5) p {
  padding: 125px 0 51px;
  width: 381px;
}

.benefit:nth-of-type(1) .benefit-title img {
  background: url('../images/heart-pulses.svg') no-repeat;
  padding: 8px 2.5px 22px 14px;
  width: 46px;
}

.benefit:nth-of-type(2) .benefit-title img {
  margin-left: -25px;
  width: 100px;
}

.benefit:nth-of-type(3) .benefit-title img {
  margin-left: -5px;
  width: 60px;
}

.benefit:nth-of-type(4) .benefit-title img {
  width: 80px;
}

.benefit:nth-of-type(5) .benefit-title img {
  background: url('../images/leaf-building.svg') no-repeat;
  background-size: contain;
  padding: 22px 22px 0 1px;
  width: 80px;
}

.benefit-content p {
  font-size: 2.0rem;
}

#services {
  padding-bottom: 0;
}

.services-container {
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.service {
  padding: 24px 24px 72px;
  color: #fff;
  border-radius: 40px;
  flex-basis: 0;
  flex-grow: 1;
}

.service:first-child {
  background: #81BB56;
}

.service:nth-child(2) {
  background: #6B9C46;
}

.service:nth-child(3) {
  background: #537936;
}

.service .no {
  font-size: 7.0rem;
  font-weight: 700;
  line-height: 1;
}

.service-title {
  padding-top: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.service h3 {
  font-size: 2.0rem;
  line-height: 1.6;
}

.service p {
  padding-top: 32px;
}

#services h2.pdt {
  padding-top: 88px;
}

.sec-services-container {
  padding-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 48px;
}

.sec-service {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  width: calc((100% / 3) - 32px);
}

.sec-service img {
  width: 100%;
}

.service-detail {
  color: #000;
  padding: 24px 32px;
}

.service-detail h3 {
  font-size: 2.4rem;
  line-height: 1;
}

#news {
  padding-bottom: 0;
}

.news-container {
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
}

.news-container a {
  width: calc((100% / 5) - 12px);
  flex-basis: 0;
  flex-grow: 1;
}

.news-item {
  position: relative;
}

.news-item img {
  width: 100%;
}

.news-item h3 {
  position: absolute;
  bottom: 0;
  padding: 32px 24px;
  color: #fff;
  font-size: 2.0rem;
  line-height: 1.4;
}

#faq {
  padding-bottom: 0;
}

#faq .container {
  display: flex;
  justify-content: space-between;
  gap: 143px;
}

#faq h2 {
  max-width: 248px;
  padding-top: 85px;
}

/*.faq-container {
  max-width: 745px;
}*/

.faq-item {
  border: 1px solid #537936;
  border-radius: 40px;
  margin-bottom: 24px;
}

.faq-item:last-of-type {
  margin-bottom: 0;
}

.faq-question {
  padding: 24px 56px 24px 32px;
  font-size: 2.0rem;
  line-height: 1.2;
  letter-spacing: normal;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '';
  height: 16px;
  width: 16px;
  background: url('../images/plus.svg') no-repeat;
  position: absolute;
  right: 32px;
  top: calc(50% - 8px);
  transition: transform 0.5s ease;
}

.faq-item.active .faq-question::after {
  background: url('../images/minus.svg') no-repeat;
  background-position: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: normal;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 0 0;
  margin: 0 32px 24px;
  border-top: 1px solid #789462;
}

.faq-answer p {
  padding-top: 0;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  padding: 52px 0 24px;
}

.contact {
  display: flex;
  gap: 6px;
  align-items: center;
  line-height: 1.2;
}

.contact:nth-of-type(2) img {
  margin-top: 15px;
}

.contact:last-of-type {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  width: 282px;
}

.contact-content-new{
  margin-top: 48px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
}

.contact-details{
  background: #5E8A3E;
  border-radius: 40px;
  padding: 48px;
  color: #fff;
}

.contact-details ul li{
  display: flex;
  align-items: center;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

.contact-details ul li img{
  width: 50px;
  margin-right: 20px;
}

.contact-details ul li span{
  display: block;
  float: left;
  width: 70px;
  align-self: flex-start;
}

.contact-details ul li img.wd1{
  width: 60px;
  margin-left: -4px;
}

.contact-details a{
  color: #fff;
}

.contact-form{
  padding: 48px 54px;
  flex: 1;
}

#LoaderImg {
  width: 60px;
  margin-right: 20px;
  display: none;
  filter: invert(1);
}

#FormSubmitBtn:disabled {
  background: #AEAFAD;
}

.success-screen {
  display: none;
  padding: 88px 0;
  text-align: center;
}

.success-screen img {
  width: 150px;
  margin: auto;
}

.success-screen h3 {
  padding-top: 14px;
  font-size: 2.0rem;
  line-height: 1.1;
}

.success-screen p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.form-group{
  position: relative;
  margin-bottom: 34px;
}

.form-group.dflex{
  display: flex;
  justify-content: space-between;
}

.form-group.dflex > div{
  width: 47.5%;
}

.form-group label{
  font-size: 12px;
}

.form-group .form-control{
  font-family: Montserrat, sans-serif;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-bottom: solid 1px #000;
  line-height: 35px;
  font-size: 16px;
  font-weight: 500;
}

.form-group .info{
  font-size: 10px;
  display: block;
  padding-top: 2px;
  color: #ff0000;
}

.button-wrap{
  text-align: right;
  padding: 20px 0px;
  display: flex;
  justify-content: flex-end;
}

input:focus{
  border: none;
  outline: none;
}

footer {
  padding: 87px 80px 62px;
  background: #5E8A3E;
  color: #fff;
  text-align: center;
  margin-top: 12px;
}

footer img {
  margin: auto;
  width: 266px;
}

.footer p {
  padding-top: 40px;
}