body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
body p,
body h1,
body h2,
body h3,
body h4 {
  padding: 0;
  margin: 0;
}
body h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 78.02px;
  text-align: center;
  color: #fff;
}
body .description {
  font-size: 32px;
  font-weight: 600;
  line-height: 39.01px;
  text-align: center;
  color: #fff;
}
body h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 68.26px;
}
body .section-head {
  text-align: center;
}
body .section-head p {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.26px;
  padding-top: 16px;
}
body .p-section {
  padding: 120px 0;
}
body .pt-content {
  padding-top: 40px;
}
body .scroll-top {
  position: fixed;
  z-index: 999;
  bottom: 15%;
  right: 20px;
  cursor: pointer;
  display: none;
}
body .scroll-top img {
  width: 48px;
  height: auto;
}
body .scroll-top img:hover {
  content: url('/public/scrollToTopHover.webp');
}
@media screen and (max-width: 991px) {
  body h1 {
    font-size: 32px;
    line-height: 39.01px;
  }
  body h2 {
    font-size: 30px;
    line-height: 40px;
  }
  body .section-head p {
    font-size: 18px;
    line-height: 27px;
    padding-top: 8px;
  }
  body .description {
    font-size: 18px;
  }
  body .p-section {
    padding: 40px 0;
  }
  body .pt-content {
    padding-top: 24px;
  }
  body .scroll-top {
    display: none !important;
  }
}

.container {
  --container-max-width: 1680px;
  width: calc(100% - 120px);
  max-width: var(--container-max-width);
  margin: 0 auto;
}
@media screen and (max-width: 1819px) {
  .container {
    --container-max-width: calc(100vw - 140px);
  }
}
@media screen and (max-width: 991px) {
  .container {
    --container-max-width: 767px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    --container-max-width: 540px;
  }
}
@media screen and (max-width: 575px) {
  .container {
    --container-max-width: calc(100% - 32px);
    max-width: var(--container-max-width);
    width: 100%;
  }
}

.nav {
  width: 100%;
  position: fixed;
  z-index: 99;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.nav .logo img {
  width: 122px;
  height: auto;
}
.nav .menu ul {
  list-style: none;
  display: flex;
  gap: 64px;
}
.nav .menu ul a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 29.26px;
}
.nav .hotline {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
}
.nav .hotline p {
  color: #49a71c;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: left;
}
.nav .hotline .number {
  font-size: 20px;
  line-height: 24.38px;
}
.nav .toggle-button {
  display: none;
}
.nav .menu-mobile {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background-color: #f4f9f1;
  display: none;
}
.nav .menu-mobile .content {
  display: flex;
  flex-direction: column;
}
.nav .menu-mobile svg {
  float: right;
  padding: 24px;
}
.nav .menu-mobile svg path {
  stroke: #49a71c;
}
.nav .menu-mobile ul {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.nav .menu-mobile ul li {
  padding: 14px;
}
.nav .menu-mobile ul a {
  color: #49a71c;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 29.26px;
}
@media screen and (max-width: 1400px) {
  .nav .logo img {
    width: 74px;
    height: auto;
  }
  .nav .menu ul a {
    font-size: 18px;
  }
  .nav .hotline .number {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .nav .menu {
    display: none;
  }
  .nav .toggle-button {
    display: block;
  }
  .nav .hotline {
    position: fixed;
    right: 16px;
    bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .nav .container {
    height: 66px;
  }
}
@media screen and (max-width: 575px) {
  .nav .menu-mobile {
    width: 100%;
  }
}

.banner {
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background-color: linear-gradient(180deg, #8adf62 0%, #277800 100%);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 100px;
}
.banner::after {
  content: "";
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 160px;
}
.banner .image {
  text-align: center;
}
.banner .image img {
  max-width: 893px;
  width: 100%;
  height: auto;
}
.banner .slogan {
  min-height: 200px;
  background-color: #fff;
  box-shadow: 6px 12px 20px 0px rgba(73, 73, 73, 0.1019607843);
  border-radius: 24px;
  padding: 64px 80px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.banner .slogan p {
  font-size: 32px;
  font-weight: 700;
  line-height: 39.01px;
  text-align: center;
  color: #001955;
}
.banner .slogan .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding-top: 40px;
}
.banner .slogan .boxes .box {
  flex: 1 1 200px;
  background-color: #49a71c;
  text-align: center;
  padding: 32px;
  border-radius: 16px;
}
.banner .slogan .boxes .box p {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .banner .slogan {
    padding: 32px 16px;
    margin-top: 16px;
  }
  .banner .slogan p {
    font-size: 20px;
    line-height: 30px;
  }
  .banner .slogan .boxes {
    padding-top: 16px;
  }
  .banner .slogan .boxes .box img {
    width: 40px;
    height: 40px;
  }
  .banner .slogan .boxes .box p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 991px) {
  .banner {
    padding-top: 90px;
  }
}

.service .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.service .content .img-service {
  max-width: 693px;
  width: 100%;
  height: auto;
}
.service .content .boxes {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 402px;
  width: 100%;
}
.service .content .boxes .box {
  border-radius: 16px;
  background-color: #f4f9f1;
  padding: 24px 0;
  text-align: center;
  width: 100%;
}
.service .content .boxes .box img {
  padding-bottom: 16px;
}
.service .content .boxes .box p {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: #001955;
}
@media screen and (max-width: 991px) {
  .service .content {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .service .content .boxes {
    gap: 16px;
    flex: 1 1 210px;
  }
  .service .content .boxes .box img {
    padding-bottom: 12px;
  }
  .service .content .boxes .box p {
    font-size: 18px;
    line-height: 27px;
  }
  .service .content > div:nth-child(2) {
    order: 3;
  }
}

.solutions {
  background-color: #f3f6f8;
}
.solutions .section-head {
  max-width: 1240px;
  margin: 0 auto;
}
.solutions .content {
  display: flex;
  justify-content: center;
  gap: 90px;
}
.solutions .content .image {
  width: 40%;
  text-align: right;
}
.solutions .content .image img {
  max-width: 479px;
  max-height: 215px;
  width: 100%;
  height: auto;
}
.solutions .content .boxes {
  width: 75%;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 24px;
}
.solutions .content .boxes .box {
  flex: 1 1 303px;
  background-color: #fff;
  width: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solutions .content .boxes .box p {
  padding: 32px 34px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: #001955;
}
.solutions .content .boxes .box:last-child {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .solutions .content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .solutions .content .image,
  .solutions .content .boxes {
    text-align: center;
    width: 100%;
  }
  .solutions .content .image {
    max-width: 300px;
  }
  .solutions .content .boxes {
    gap: 16px;
  }
  .solutions .content .boxes .box p {
    padding: 24px;
    font-size: 16px;
    line-height: 24px;
  }
}

.features .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 58px;
}
.features .content .img-service {
  max-width: 693px;
  width: 100%;
  height: auto;
}
.features .content .boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 544px;
  width: 100%;
}
.features .content .boxes .box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.features .content .boxes .box p {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #001955;
}
@media screen and (max-width: 991px) {
  .features .content {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .features .content .boxes {
    gap: 12px;
    flex: 1 1 150px;
  }
  .features .content .boxes .box {
    align-items: flex-start;
    gap: 10px;
  }
  .features .content .boxes .box img {
    padding-bottom: 12px;
    width: 32px;
    height: auto;
  }
  .features .content .boxes .box p {
    font-size: 14px;
    line-height: 27px;
  }
  .features .content > div:nth-child(2) {
    order: 3;
  }
}

.benefit {
  background-color: #f3f6f8;
}
.benefit .content .boxes {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.benefit .content .boxes .box {
  max-width: 582px;
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 48px;
}
.benefit .content .boxes .box .box-content p {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  color: #49a71c;
  border-bottom: 2px solid #dadada;
  padding-bottom: 16px;
}
.benefit .content .boxes .box .box-content ul {
  padding-inline-start: 20px;
}
.benefit .content .boxes .box .box-content li {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #49a71c;
  padding-bottom: 16px;
}
.benefit .content .boxes .box .box-content li span {
  color: #001955;
  display: block;
}
@media screen and (max-width: 991px) {
  .benefit .content .boxes {
    gap: 16px;
    flex-wrap: wrap;
  }
  .benefit .content .boxes .box {
    padding: 24px 16px;
    gap: 16px;
  }
  .benefit .content .boxes .box img {
    width: 64px;
    height: auto;
  }
  .benefit .content .boxes .box .box-content p {
    font-size: 22px;
    line-height: 33px;
  }
  .benefit .content .boxes .box .box-content li {
    padding-bottom: 8px;
  }
  .benefit .content .boxes .box .box-content li span {
    font-size: 16px;
    line-height: 24px;
  }
}

.why-tma .container {
  max-width: 1396px;
  width: calc(100% - 32px);
}
.why-tma .content .content-top {
  display: flex;
  gap: 64px;
}
.why-tma .content .content-top .member {
  width: 60%;
  max-width: 754px;
}
.why-tma .content .content-top .member p {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: #49a71c;
}
.why-tma .content .content-top .member .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  padding-top: 40px;
}
.why-tma .content .content-top .member .logos img {
  width: 100%;
  max-width: 227.62px;
}
.why-tma .content .content-top .information {
  width: 40%;
  max-width: 100%;
}
.why-tma .content .content-top .information p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  padding-bottom: 24px;
  color: #001955;
}
.why-tma .content .content-bot {
  margin-top: 64px;
  background-color: #f4f9f1;
  padding: 40px 90px;
  border-radius: 24px;
  display: flex;
  justify-content: space-evenly;
  gap: 60px;
}
.why-tma .content .content-bot .box {
  text-align: center;
  max-width: 243px;
}
.why-tma .content .content-bot .box img {
  width: 40px;
  height: auto;
}
.why-tma .content .content-bot .box p {
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
}
.why-tma .content .content-bot .box span {
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  padding-top: 8px;
}
@media screen and (max-width: 1199px) {
  .why-tma .content .content-top {
    gap: 40px;
  }
  .why-tma .content .content-bot {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991px) {
  .why-tma .content .content-top {
    flex-direction: column;
    gap: 24px;
  }
  .why-tma .content .content-top .member,
  .why-tma .content .content-top .logos,
  .why-tma .content .content-top .information {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .why-tma .content .content-top .member .logos {
    gap: 24px;
  }
  .why-tma .content .content-top .member .logos img {
    max-width: 140px;
  }
  .why-tma .content .content-top .member p {
    font-size: 22px;
    line-height: 33px;
  }
  .why-tma .content .content-top .information p {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 16px;
  }
  .why-tma .content .content-bot {
    margin-top: 8px;
    padding: 24px;
    gap: 32px;
  }
  .why-tma .content .content-bot .box span {
    font-size: 16px;
  }
}

.ecosystem {
  background-color: #49a71c;
  background-image: url("/public/bg-ecosystem.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.ecosystem h2 {
  color: #fff;
}
.ecosystem .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.ecosystem .content .box {
  padding: 40px;
  background-color: #fff;
  border-radius: 40px;
  max-width: 640px;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
}
.ecosystem .content .box p {
  font-size: 32px;
  font-weight: 700;
  line-height: 39.01px;
}
.ecosystem .content .box span {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 27px;
  padding-top: 16px;
  display: block;
}
.ecosystem .content .box .form {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ecosystem .content .box .form input {
  height: 48px;
  background-color: #f4f9f1;
  border-radius: 40px;
  border: unset;
  padding-left: 24px;
}
.ecosystem .content .box .form input::-moz-placeholder {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
  color: #afafaf;
}
.ecosystem .content .box .form input::placeholder {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
  color: #afafaf;
}
.ecosystem .content .box button {
  width: 200px;
  height: 48px;
  gap: 10px;
  opacity: 0px;
  background-color: #49a71c;
  border-radius: 24px;
  border: unset;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  color: #fff;
  float: right;
  margin-top: 54px;
}
.ecosystem .content .image img {
  max-width: 792px;
  max-height: 676.07px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .ecosystem .content {
    flex-direction: column;
  }
  .ecosystem .content .box {
    padding: 24px 16px;
  }
  .ecosystem .content .box p {
    font-size: 24px;
    line-height: 29.26px;
  }
  .ecosystem .content .box span {
    font-size: 16px;
    line-height: 24px;
    padding-top: 0;
  }
  .ecosystem .content .box .form {
    padding-top: 24px;
    gap: 16px;
  }
  .ecosystem .content .box button {
    margin-top: 24px;
    width: 100%;
  }
}

.partner .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.partner .content .logo img {
  max-width: 402px;
  height: 140px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .partner .content {
    gap: 8px;
  }
  .partner .content .logo {
    flex: 1 1 160px;
  }
  .partner .content .logo img {
    max-width: 100%;
    height: auto;
  }
}

footer {
  background-color: #053767;
  padding-top: 80px;
  color: #fff;
}
footer .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 48px;
  gap: 24px;
}
footer .content .logo img {
  max-width: 162px;
  height: auto;
}
footer .content .info-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
footer .content .info-contact .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
}
footer .content .info-contact .info {
  display: flex;
  gap: 40px;
}
footer .content .info-contact .info .mail {
  max-width: 500px;
}
footer .content .info-contact .info .phone div,
footer .content .info-contact .info .mail div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
}
footer .content .info-contact .info .phone div p,
footer .content .info-contact .info .phone div a,
footer .content .info-contact .info .mail div p,
footer .content .info-contact .info .mail div a {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  color: #fff;  
}
footer .content .follow-us p {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  color: #fff;
  padding-bottom: 16px;
}
footer .content .follow-us .icons {
  display: flex;
  gap: 12px;
}
footer .copyright {
  padding: 24px 0 40px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.5px;
  text-align: center;
}
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #FFF;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media screen and (max-width: 1550px) {
  footer .content .info-contact {
    gap: 24px;
  }
}
@media screen and (max-width: 991px) {
  footer {
    padding-top: 40px;
  }
  footer .content {
    flex-direction: column;
    padding-bottom: 24px;
  }
  footer .content .info-contact {
    flex-direction: column;
    gap: 12px;
  }
  footer .content .info-contact .info {
    flex-direction: column;
    gap: 0;
  }
  footer .copyright {
    font-size: 13px;
    line-height: 19.5px;
    padding: 24px 0;
  }
  footer .content .info-contact .info .phone div,
  footer .content .info-contact .info .mail div {
    padding-bottom: 8px;
    gap: 10px;
  }
  footer .content .info-contact .info .phone div p,
  footer .content .info-contact .info .phone div a,
  footer .content .info-contact .info .mail div p,
  footer .content .info-contact .info .mail div a {
    font-size: 16px;
    line-height: 24px;
  }
  footer .content .info-contact .info .phone div svg,
  footer .content .info-contact .info .mail div svg {
    width: 16px;
    height: 16px;
  }
  footer .content .follow-us p {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 12px;
  }
}
/*# sourceMappingURL=home.css.map */