@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "CreatoDisplay";
  src: url("../fonts/CreatoDisplay-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "CreatoDisplay";
  src: url("../fonts/CreatoDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CreatoDisplay";
  src: url("../fonts/CreatoDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "CreatoDisplay";
  src: url("../fonts/CreatoDisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
body {
  font-family: "CreatoDisplay", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  position: relative;
}

.bg-wallpaper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: white;
  overflow: hidden;
}
.loader .wallpaper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.loader .leaf-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  z-index: 1;
}
.loader .leaf-2 {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  z-index: 1;
}
.loader .line-1 {
  position: absolute;
  top: 30%;
  left: -30px;
  width: 128px;
  height: 256px;
  z-index: 1;
}
.loader .line-2 {
  position: absolute;
  bottom: -140px;
  right: -30px;
  width: 280px;
  height: 256px;
  z-index: 1;
}
.loader .logo-inside {
  width: 153px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 9999;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.loader .loading-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader .loading-container .text {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: #0e270f;
  font-style: italic;
  margin-bottom: 20px;
}
.loader .loading-container .loading-wrapper {
  background-color: #E0F4CE;
  padding: 3px;
  border-radius: 8px;
}
.loader .loading-container .loading-wrapper .loading {
  border-radius: 8px;
  overflow: å;
  width: 315px;
  height: 4px;
  --c: no-repeat linear-gradient(#608E3C 0 0);
  background: var(--c), var(--c), #E0F4CE;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}
@keyframes l16 {
  0% {
    background-position: -150% 0, -150% 0;
  }
  66% {
    background-position: 250% 0, -150% 0;
  }
  100% {
    background-position: 250% 0, 250% 0;
  }
}

.menu-open .close-menu {
  display: block !important;
  pointer-events: all !important;
}
.menu-open .menu-burger {
  display: none !important;
}

.header {
  padding: 50px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
@media screen and (max-width: 1180px) {
  .header {
    padding: 30px;
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .header {
    padding: 20px 30px;
  }
}
.header .logo {
  width: 150px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 640px) {
  .header .logo {
    width: 100px;
    height: 40px;
  }
}
.header .menu-burger {
  display: none;
}
@media screen and (max-width: 640px) {
  .header .menu-burger {
    display: block;
    margin-left: auto;
    cursor: pointer;
    z-index: 100;
    position: relative;
  }
}
.header .close-menu {
  display: none;
}
@media screen and (max-width: 640px) {
  .header .close-menu {
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 102;
    pointer-events: none;
  }
}
.header .menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  list-style: none;
}
@media screen and (max-width: 1180px) {
  .header .menu-list {
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .header .menu-list {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: 100%;
    width: 100%;
    z-index: 99;
    padding: 75px 45px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 44px;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
  }
  .header .menu-list.open {
    transform: translateX(0%);
  }
}
.header .menu-list .menu-title {
  display: none;
}
@media screen and (max-width: 640px) {
  .header .menu-list .menu-title {
    display: block;
    color: #608e3c;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
  }
}
.header .menu-list .pattern-container {
  display: none;
}
@media screen and (max-width: 640px) {
  .header .menu-list .pattern-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
  }
}
.header .menu-list .pattern-container .pat-1 {
  position: absolute;
  top: -20px;
  right: -10px;
  height: auto;
  width: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu-list .pattern-container .pat-2 {
  position: absolute;
  top: -100px;
  left: 0px;
  height: auto;
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu-list .pattern-container .pat-3 {
  position: absolute;
  top: 60vh;
  right: 0px;
  height: auto;
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu-list .pattern-container .pat-4 {
  position: absolute;
  top: 60vh;
  left: 0px;
  height: auto;
  width: 119px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu-list .pattern-container .pat-5 {
  position: absolute;
  top: 60vh;
  right: 40px;
  height: auto;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu-list li.active a {
  font-weight: 500;
}
.header .menu-list li.hide-desktop {
  display: none;
}
@media screen and (max-width: 640px) {
  .header .menu-list li.hide-desktop {
    display: block;
  }
}
.header .menu-list li a {
  color: #0e270f;
  leading-trim: both;
  text-edge: cap;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}
.header .menu-list li a:hover {
  color: #000;
}
@media screen and (max-width: 640px) {
  .header .menu-list li a {
    position: relative;
    z-index: 101;
    font-size: 18px;
  }
}
.header .button {
  text-decoration: none;
  border-radius: 17px;
  background: #608e3c;
  border: none;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 9px 36px;
}
@media screen and (max-width: 640px) {
  .header .button {
    display: none;
    position: relative;
    padding: 0px;
    background: none;
    color: #0e270f;
    font-weight: 300;
  }
}

.footer {
  z-index: 55;
  position: relative;
  margin-top: 120px;
}
@media screen and (max-width: 640px) {
  .footer {
    margin-top: 80px;
    padding: 0px 30px;
  }
}
.footer .green-leaf {
  position: absolute;
  width: 170px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  right: 50px;
  top: -80px;
  z-index: 52;
}
@media screen and (max-width: 640px) {
  .footer .green-leaf {
    width: 50px;
    right: 25px;
    top: -20px;
  }
}
.footer .inside {
  border-radius: 8px;
  background: #ebf8d6;
  padding: 75px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1180px) {
  .footer .inside {
    margin: 0 25px;
  }
}
@media screen and (max-width: 640px) {
  .footer .inside {
    margin: 0px;
    padding: 28px 45px;
  }
}
.footer .inside .line-1 {
  position: absolute;
  right: 0px;
  width: 300px;
  height: auto;
  top: 0px;
}
@media screen and (max-width: 640px) {
  .footer .inside .line-1 {
    width: 90px;
  }
}
.footer .inside .line-2 {
  position: absolute;
  left: 0px;
  width: 175;
  height: auto;
  bottom: 0px;
}
@media screen and (max-width: 640px) {
  .footer .inside .line-2 {
    width: 50px;
  }
}
.footer .inside p {
  color: #0e270f;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 137.5% */
  letter-spacing: 0.64px;
  margin-bottom: 12px;
}
@media screen and (max-width: 640px) {
  .footer .inside p {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 14px; /* 140% */
    letter-spacing: 0.4px;
    margin-bottom: 5px;
  }
}
.footer .inside a {
  color: #608e3c;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .footer .inside a {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
  }
}
.footer .sub-footer {
  padding: 40px 20px 25px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .footer .sub-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 10px;
  }
}
.footer .sub-footer .left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .footer .sub-footer .left {
    flex-direction: column;
    align-items: center;
  }
}
.footer .sub-footer .left .logo {
  width: 140px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .footer .sub-footer .left .logo {
    margin-bottom: 20px;
    width: 100px;
    height: 32px;
  }
}
.footer .sub-footer .left p {
  color: #608e3c;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 157.143% */
  letter-spacing: 0.56px;
}
@media screen and (max-width: 640px) {
  .footer .sub-footer .left p {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal; /* 80.146% */
    letter-spacing: 0.32px;
    text-align: center;
  }
}
.footer .sub-footer .left p span {
  color: #0e270f;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
  letter-spacing: 0.56px;
  padding-right: 5px;
}
@media screen and (max-width: 1180px) {
  .footer .sub-footer .left p span {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .footer .sub-footer .left p span {
    font-size: 8px;
    font-style: normal;
    font-weight: 300;
    line-height: normal; /* 80.146% */
    letter-spacing: 0.32px;
    display: inline-block;
    font-size: 12px;
  }
}
.footer .sub-footer .right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 640px) {
  .footer .sub-footer .right {
    align-items: center;
    margin-top: 28px;
  }
}
.footer .sub-footer .right .social {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .footer .sub-footer .right .social {
    margin-bottom: 0px;
  }
}
.footer .sub-footer .right .social img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100%;
}
.footer .sub-footer .right .links {
  display: flex;
  gap: 44px;
  list-style: none;
}
@media screen and (max-width: 1180px) {
  .footer .sub-footer .right .links {
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .footer .sub-footer .right .links {
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    display: none;
  }
}
.footer .sub-footer .right .links li a {
  color: #0e270f;
  leading-trim: both;
  text-edge: cap;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 157.143% */
  text-decoration: none;
}
.footer .sub-footer .right .links li a:hover {
  color: #608e3c;
}

.careers {
  position: relative;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .careers {
    padding: 0 30px;
  }
}
.careers .leaf-bg-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 640px) {
  .careers .leaf-bg-1 {
    width: 200px;
    right: -50px;
    top: -25px;
  }
}
.careers .line-bg-1 {
  position: absolute;
  top: -350px;
  left: -100px;
  width: 400px;
  height: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(-12.829deg);
}
@media screen and (max-width: 640px) {
  .careers .line-bg-1 {
    width: 100px;
    left: -25px;
    top: -25px;
  }
}
.careers .leaf-bg-2 {
  position: absolute;
  top: 1250px;
  left: -50px;
  width: 400px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 640px) {
  .careers .leaf-bg-2 {
    width: 100px;
    left: -25px;
    top: 300px;
  }
}
.careers .leaf-bg-3 {
  position: absolute;
  top: 1000px;
  left: 50px;
  width: 72.96px;
  height: 108.182px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 640px) {
  .careers .leaf-bg-3 {
    display: none;
  }
}
.careers .line-bg-2 {
  position: absolute;
  width: 100px;
  height: auto;
  top: 250px;
  right: -10px;
  transform: rotate(0deg);
}
@media screen and (max-width: 640px) {
  .careers .line-bg-2 {
    width: 51px;
  }
}
.careers .leaf-bg-4 {
  position: absolute;
  width: 225.642px;
  height: 244.914px;
  top: 200px;
  right: -10px;
}
@media screen and (max-width: 640px) {
  .careers .leaf-bg-4 {
    display: none;
  }
}
.careers .hero {
  padding: 40px 0;
}
.careers .hero h1 {
  color: #608e3c;
  font-size: 60px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  padding: 0 10%;
  margin-bottom: 56px;
}
@media screen and (max-width: 640px) {
  .careers .hero h1 {
    font-size: 22px;
    margin-bottom: 26px;
  }
}
.careers .hero h1 b {
  font-weight: 500;
  font-style: normal;
}
.careers .hero p {
  padding: 0 10%;
  color: #0e270f;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 640px) {
  .careers .hero p {
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 14px; /* 140% */
    letter-spacing: 0.6px;
  }
}
.careers .feature-list {
  margin-top: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 640px) {
  .careers .feature-list {
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
  }
}
.careers .feature-list .card {
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.careers .feature-list .card img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .careers .feature-list .card img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
  }
}
.careers .feature-list .card h2 {
  margin-bottom: 10px;
  color: #0e270f;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 640px) {
  .careers .feature-list .card h2 {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    margin-bottom: 8px;
  }
}
.careers .feature-list .card p {
  color: #0e270f;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 640px) {
  .careers .feature-list .card p {
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 14px; /* 140% */
    letter-spacing: 0.6px;
  }
}
.careers .opportunities {
  margin-top: 120px;
}
@media screen and (max-width: 640px) {
  .careers .opportunities {
    margin-top: 80px;
  }
}
.careers .opportunities h3 {
  color: #608e3c;
  text-align: center;
  font-size: 60px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
@media screen and (max-width: 640px) {
  .careers .opportunities h3 {
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
  }
}
.careers .opportunities ul {
  margin-top: 60px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
@media screen and (max-width: 640px) {
  .careers .opportunities ul {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.careers .opportunities ul li {
  padding: 20px 32px;
  border-radius: 8px;
  background: #ebf8d6;
}
@media screen and (max-width: 640px) {
  .careers .opportunities ul li {
    padding: 18px 24px;
  }
}
.careers .opportunities ul li h4 {
  color: #0e270f;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 640px) {
  .careers .opportunities ul li h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
  }
}
.careers .opportunities ul li p {
  margin-bottom: 24px;
  color: #0e270f;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.84px;
}
@media screen and (max-width: 640px) {
  .careers .opportunities ul li p {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.72px;
  }
}
.careers .opportunities ul li a {
  display: block;
  width: 100%;
  color: #365f38;
  text-align: right;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  text-decoration-line: underline;
}
@media screen and (max-width: 640px) {
  .careers .opportunities ul li a {
    font-size: 10px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.3px;
  }
}
@media screen and (max-width: 640px) {
  .careers .footer {
    padding: 0px;
  }
}/*# sourceMappingURL=careers.css.map */