/*
Theme Name: My Theme
Theme URI:  My Theme
Author: Minh
Author URI:  My Theme
Description:  My Theme
Version: 1.0

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,600;1,8..60,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
  margin: 0;
  padding: 0;
}

html {

  min-height: 100%;
}

body {
  background: none;
  color: #333;
  font-size: 15px;
  line-height: 22px;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  font-weight: 500;
  overflow-x: hidden;
}

h1,
h2 {
  font-weight: 700;
}

a,
a:hover {
  text-decoration: none;
  color: #53a20d;
  transition: all 200ms ease-in-out;
}

button {
  transition: all 200ms ease-in-out;
}

li {
  list-style: none outside none;
}

ul {
  margin: 0;
  padding: 0;
}

img {
  border: 0 none;
  max-width: 100%;
}

.clear {
  clear: both;
}

/*SCROLL*/
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #aaa;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}

body,
html {
  scrollbar-color: #aaa #f1f1f1;
  scrollbar-width: thin;
}

.container {
  max-width: 1200px;
  width: 95%;
  position: relative;
  z-index: 5;
}

.btn {
  padding: 8px;
  font-size: 15px;
  min-width: 120px;
  border-radius: 30px;
}

.btn-primary {
  background: linear-gradient(180deg, rgba(176, 213, 133, 1) 0%, rgba(125, 194, 67, 1) 100%);
  color: #fff !important;
  border: 0 !important;
  padding: 10px 20px;
  font-weight: bold;
}

.btn-primary svg {
  font-size: 25px;
}

.btn-primary:hover {
  opacity: 0.7;
}

.padding-main {
  padding: 60px 0;
}

.title-main {
  margin-bottom: 30px;
  text-align: center;
}

.title-main h2 {
  color: #7DC243;
  font-size: 40px;
  font-family: "Pacifico", cursive;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}

.title-main h2::before,
.title-main h2::after {
  content: ' ';
  width: 70px;
  height: 3px;
  border-radius: 50%;
  background-color: #7DC243;
}

.title-main h2 span {
  flex: 1;
}

.title-main p {
  font-size: 16px;
}

.btn.block {
  width: 100%;
  display: block;
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

.row {
  margin: 0 -7px;
}

.col-sm-6 {
  padding: 0 7px;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 300ms;
}

.header.show {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-color: #38974C;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header .logo img {
  height: 60px;
}

.phone-header {
  display: block;
  padding: 7px 10px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: flex;
  gap: 5px;
  align-items: center;
  background-color: #fff;
}

.phone-header img {
  height: 18px;
}

.menu li {
  float: left;
  position: relative;
  margin-right: 20px;
}

.menu li a {
  color: #fff;
  display: block;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
  border-radius: 5px;
  font-weight: bold;
}

.menu li a::before {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

.menu li a span {
  display: inline-block;
  transition: all 0.3s ease-in-out;
  padding-top: 2px;
}

.menu li a i {
  margin-left: 3px;
}

.menu>ul>li.active>a {
  color: #ffffff;
}

.menu>ul>li.active>a::before {
  background-color: #ffffff;
}

.menu li a:hover {
  color: #F18412;
}

.show-menu {
  display: none;
}

.right-header {
  display: flex;
  align-items: center;
}

.right-header i {
  font-size: 20px;
}

/* Banner */
.banner {
  background: #38974C;
  background: radial-gradient(circle, rgba(56, 151, 76, 1) 0%, rgba(0, 63, 41, 1) 100%);
  padding: 150px 0 150px 0;
  color: #fff;
  position: relative;
}

.banner h1 {
  font-size: 50px;
  text-transform: uppercase;
}

.banner h1 span {
  display: block;
}

.txt-row {
  display: flex;
  align-items: center;
}

.col-txt {
  width: 50%;
}

.bg-img,
.bg-img1 {
  position: absolute;
}

.bg-img img,
.bg-img1 img {
  width: 100px;
}

.bg-img {
  right: 0;
  top: 30%;
}

.bg-img1 {
  left: 0;
  bottom: 10%;
}


/* section info */
.info-section {
  position: relative;
  margin-top: -150px;
}

.box-info {
  background: #D5EFDB;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

.box-icon {
  width: 100px;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 50%;
  padding: 10px;
  border: 1px dashed #53a20d;
}

.box-icon img {
  width: 100%;
}

.box-info h3 {
  font-size: 18px;
  font-weight: bold;
}

.box-info p {
  margin-bottom: 0;
}

/* section product */

.box-product {
  margin-bottom: 15px;
  display: block;
  color: #333;
}

.box-product-img {
  position: relative;
  padding-top: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.box-product-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms;
}

.box-product:hover .box-product-img img {
  transform: scale(1.1, 1.1);
}

.box-product-txt {
  padding-top: 15px;
  text-align: center;
}

.box-product-txt h3 {
  font-size: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.box-product-txt p {
  font-weight: bold;
  font-size: 18px;
  color: #53a20d;
}

/* feature section */
.bg-green {
  background-color: #F0FFF3;
}

.row-feature {
  display: flex;
}

.left-feature,
.right-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2vh 0;
}

.box-feature {
  position: relative;
  background-color: #fff;
  padding: 15px 40px 15px 30px;
  font-size: 16px;
  font-weight: bold;
  min-height: 100px;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
  border-radius: 10px;
  margin: 10px 0;
}

.number-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, rgba(176, 213, 133, 1) 0%, rgba(125, 194, 67, 1) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  right: -25px;
}

.img-feature {
  flex: 1;
}

.img-feature img {
  width: 100%;
}

.right-feature .box-feature {
  justify-content: flex-start;
  text-align: left;
  padding: 15px 20px 15px 40px;
}

.right-feature .number-box {
  left: -25px;
  right: auto;
}

/* Video section */
.item-video {
  position: relative;
  margin-bottom: 12px;
}

.item-video-img {
  position: relative;
  padding-top: 65%;
  overflow: hidden;
  border-radius: 10px;
}

.item-video-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 200ms ease-in-out;
}

.item-video:hover .item-video-img img {
  transform: scale(1.1);
}

.item-video-img::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  border-radius: 5px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.item-video-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
}

.item-video-txt h3 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

.play-video {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 18px;
}

.play-video::before {
  content: ' ';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
}

.a-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.item-pic {
  position: relative;
  margin-bottom: 12px;
}

.item-pic-img {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  border-radius: 5px;
}

.item-pic-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 200ms ease-in-out;
}

.item-pic:hover .item-pic-img img {
  transform: scale(1.1);
}

.item-pic-img::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  border-radius: 5px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.item-pic-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
}

.item-pic-txt h3 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 50px 0;
  color: #fff;
  position: relative;
}

.footer::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: url('assets/images/bg-footer.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.footer img {
  height: 20px;
  margin-bottom: 10px;
  display: block;
}

.footer a {
  color: #fff;
}

.footer li,
.footer p {
  margin-bottom: 10px;
}

.footer h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
}

.copyright {
  background-color: #615854;
  border-top: 1px solid #444444;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.toogle-a {
  display: none;
  position: absolute;
  top: 50%;
  left: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-top: -20px;
}

.toogle-a span {
  position: absolute;
  top: 5px;
  left: 8px;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.toogle-a span:nth-child(1) {
  top: 10px;
}

.toogle-a span:nth-child(2) {
  top: 18px;
}

.toogle-a span:nth-child(3) {
  top: 26px;
}

.copyright {
  background-color: #000;
  border-top: 1px solid #333;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.bg-bottom {
  background-image: url('assets/images/bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 200px;
  bottom: -50px;
  position: absolute;
}

.banner-inner {
  height: 350px;
  position: relative;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}

.box-about {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.box-about h2,
.about-1 h2 {
  text-transform: uppercase;
  color: #38974C;
  font-size: 25px;
  margin-bottom: 20px;
}

.box-about h3 {
  font-size: 20px;
  font-weight: bold;
}

.custom-pagination {
  margin-top: 20px;
}

.custom-pagination .page-item {
  margin: 0 3px;
}

.custom-pagination .page-link {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: none;
  background-color: #e5e5e5;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
  background-color: #d0d0d0;
  color: #000;
}

.custom-pagination .page-item.active .page-link {
  background: linear-gradient(180deg, rgba(176, 213, 133, 1) 0%, rgba(125, 194, 67, 1) 100%);
  color: #fff;
}

.custom-pagination .page-link:focus {
  box-shadow: none;
}

.custom-pagination .page-item:first-child .page-link,
.custom-pagination .page-item:last-child .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-item {
  font-size: 16px;
}

.breadcrumb-item.active {
  color: #fff;
}

.img-for {
  border: 1px solid #ddd;
  height: 400px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #eee;
}

.img-for img {
  max-width: 100%;
  max-height: 100%;
}

.img-nav {
  border: 1px solid #ddd;
  height: 80px;
}

.img-nav img {
  object-fit: cover;
}

.slider-nav {
  margin-top: 10px;
}

.slider-nav img {
  display: block;
}

.slider-nav .slick-slide {
  padding: 2px;
}

.slider-nav .slick-current .img-nav {
  border-color: #F6A429;
}

.slider-nav .slick-slide .img-nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-detail h2 {
  font-size: 25px;
  text-transform: uppercase;
}

.price-product {
  color: #53a20d;
  font-size: 20px;
  font-weight: bold;
}

.form-group {
  margin-bottom: 15px;
}

.form-contact {
  padding: 30px;
  background-color: #eee;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
}