* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: #F5F1E6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
}
.plant-img {
  position: absolute;
  top: -22%;
  right: -20%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.triangle-img {
  position: absolute;
  top: 0;
  left: -20%;
  width: 55%;
  height: 80%;
  object-fit: cover;
  z-index: 2;
}
.header_content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  box-sizing: border-box;
  color: white;
  flex-wrap: wrap;
  text-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
}
.header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
}
.header_logo img {
  height: 60px;
  margin-bottom: 30px;
}
.header_top_right {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-bottom: 116px;
}
.header_nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav_links {
  display: flex;
  gap: 20px;
}
.nav_links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}
.header_lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(12px, 4vw, 20px);
  color: white;
  z-index: 10;
  cursor: pointer;
}
.header_lang img {
  width: clamp(18px, 2vw, 24px);
  height: auto;
}
.header_lang .arrow {
  font-size: inherit;
}
.lang_menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: white;
  color: black;
  border-radius: 6px;
  padding: 4px 0;
  list-style: none;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
  cursor: pointer;
}
.lang_menu li {
  padding: 6px 12px;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: none;
}
.lang_menu li:hover {
  color: white;
}
.lang_menu.hidden {
  display: none;
}
.burger_menu {
  display: none;
}
.header_left {
  display: flex;
  justify-content: left;
  width: 50%;
  min-width: 300px;
}
.menu_list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  font-size: 14px;
}
.menu_list li {
  margin-bottom: 15px;
}
.menu_list a {
  color: #ffffff !important;
  text-decoration: none !important;
}
.header_right {
  display: flex;
  justify-content: right;
  width: 50%;
  min-width: 300px;
}
.header_text {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-top: 10px;
  text-align: right;
}
.header_text h1 {
  font-size: 24px;
  margin-bottom: 10px;
}
.header_text p {
  font-size: 16px;
}
.white-bottom {
  position: relative;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
  z-index: 3;
}
.white-img {
  width: 100%;
  height: 80%;
  display: block;
  margin-bottom: -100px;
}
.icon_row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 40px;
  flex-wrap: wrap;
}
.icon_row img {
  width: 60px;
  height: auto;
  margin: 10px;
}
/* RESPONSIVE */
@media (max-width: 968px) {
.plant-img {
  position: absolute;
  top: 0;
  right: -20%;
  width: 100%;
  height: 80%;
  object-fit: cover;
  z-index: 1;
}
.triangle-img {
  position: absolute;
  top: 0;
  left: -15%;
  width: 57%;
  height: 70%;
  object-fit: cover;
  z-index: 2;
}
.header_content {
  padding: 40px 20px;
}
.header_logo img {
  margin-bottom: 30px;
}
.header_top_right {
  gap: 30px;
  margin-bottom: 116px;
}
.header_nav {
  gap: 25px;
}
.nav_links {
  gap: 15px;
}
.nav_links a {
  font-size: 12px;
}
.header_lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(12px, 4vw, 20px);
  color: white;
  z-index: 10;
  cursor: pointer;
}
.header_left {
  width: 25%;
}
.menu_list li {
  margin-bottom: 15px;
  font-size: 13px;
  margin-right: 10px;
}
.header_right {
  width: 55%;
}
.header_text {
  margin-top: 10px;
}
.header_text h1 {
  font-size: 22px;
}
.header_text p {
  font-size: 14px;
}
.white-bottom {
  padding-top: 0;
  padding-bottom: 80px;
}
.icon_row img {
  width: 40px;
  height: auto;
  margin: 25px;
}}
@media (max-width: 768px) {
.header {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  overflow: visible;
  position: relative;
}
.header_content {
  flex-direction: column;
  padding: 0;
  margin: 0;
  align-items: center;
  text-align: center;
  text-shadow: none;
}
.plant-img,
.triangle-img,
.white-img,
.icon_row,
.menu_list,
.nav_links,
.header_text {
  display: none !important;
}
.header_top {
  background-color: #113d22;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 10px 0 10px;
}
.header_logo img {
  margin-left: 50px;
  height: 60px;
  margin-bottom: 0;
}
.header_top_right {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 0;
  margin-bottom: 0;
}
.header_lang {
  position: relative;
  gap: 6px;
  font-size: 20px;
  margin-left: auto;
}
.burger_menu {
  width: 43px;
  height: 43px;
  display: flex;
  position: absolute;
  top: 22px;
  left: 1%;
  z-index: 999;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.burger_lines {
  width: 30px;
  height: 19px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger_lines span {
  height: 2.5px;
  background-color: white;
  border-radius: 3px;
  transition: 0.3s;
  transform-origin: center;
}
.burger_menu.open .burger_lines span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
  background-color: white;
}
.burger_menu.open .burger_lines span:nth-child(2) {
  transform: rotate(-45deg) translateY(-8px);
  background-color: white;
}
.burger_menu.open .burger_lines span:nth-child(3) {
  opacity: 0;
}
.nav_links.show {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  background: #F5F1E6;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 998;
}
.nav_links.show a {
  padding: 10px;
  font-size: 16px;
  color: black;
  text-decoration: none;
  text-align: center;
}
.white-bottom {
  padding-bottom: 0;
}
.mobile_wrapper {
  position: relative;
  width: 100%;
}
.plant-mobile-img {
  width: 100%;
  height: auto;
  display: block;
}
.mobile-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: white;
}
.mobile-text-overlay h1 {
  position: absolute;
  top: 10px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  padding: 0 10px;
}
.mobile-text-overlay p {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  margin: 0;
  padding: 0 10px;
}}
@media (min-width: 769px) {
.mobile_wrapper {
  display: none;
}}
/* HEADER */

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 90px 30px 40px;
  max-width: 1300px;
  margin: 0 auto;
  background-color: #113d22;
  color: white;
  clip-path: polygon(0 0, 50% 16%, 100% 0, 100% 100%, 0 100%);
}
.footer_left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 50px;
}
.footer_logo {
  margin-bottom: 30px;
}
.footer_logo img {
  height: 80px;
}
.footer_contact .footer_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 20px;
}
.footer_contact .footer_item img {
  width: 25px;
  margin-right: 15px;
}
.no-autolink {
  pointer-events: none;
  user-select: text;
  color: inherit;
  text-decoration: none;
}
.footer_right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}
.footer_right_tittle {
  font-size: 20px;
  margin-bottom: 20px;
}
.footer_clients img {
  width: 70%;
  height: auto;
  border-radius: 20px;
}
.logo {
  display: none;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.footer {
  flex-direction: column;
  align-items: center;
  clip-path: none;
  padding: 20px;
}
.logo {
  order: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}
.logo img {
  width: 70%;
}
.footer_left {
  order: 2;
  margin-left: 0;
}
.footer_contact .footer_item {
  text-align: left;
  font-size: 20px;
}
.footer_contact .footer_item img {
  width: 30px;
}
.footer_right {
  order: 1;
  min-width: 100%;
  margin-bottom: 30px;
  margin-top: 0;
}
.footer_right_tittle {
  font-size: 20px;
}
.footer_clients img {
  width: 80%;
  height: auto;
}
.footer_logo {
  display: none;
}}
/* FOOTER */

/* MAIN */
.feature_section {
  background-color: #F5F1E6;
  padding: 0 20px 60px 20px;
}
.feature_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
.feature_card {
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature_img_wrapper {
  position: relative;
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}
.feature_img_wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.feature_text {
  padding: 20px;
}
.feature_card h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.feature_card p {
  font-size: 15px;
  line-height: 1.4;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.feature_section {
  padding: 30px 0;
}
.feature_card p {
  font-size: 18px;
}}

.info_section {
  background-color: white;
  padding: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.info_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
}
.info_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f5f1e6;
  height: 100%;
  box-sizing: border-box;
}
.info_img_wrapper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 12%, 50% 0%, 100% 12%, 100% 100%, 0% 100%);
}
.info_img_wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.info_text {
  padding: 20px;
}
.info_text h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.info_text p {
  font-size: 15px;
  line-height: 1.4;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.info_section {
  padding: 30px 0;
}
.info_section p {
  font-size: 18px;
}}
/* MAIN */


