@font-face {
  font-family: "Manrope-Regular";
  src: url("../fonts/manrope/Manrope-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope-Medium";
  src: url("../fonts/manrope/Manrope-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope-SemiBold";
  src: url("../fonts/manrope/Manrope-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope-Bold";
  src: url("../fonts/manrope/Manrope-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope-ExtraBold";
  src: url("../fonts/manrope/Manrope-ExtraBold.ttf") format("truetype");
}

* {
  font-family: "Manrope-Regular";
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
}

.heading-text, .font-bold, .bg-metode-mitoksin .metode-info h2, .bg-chart-eficiency .efi-heading h2, .bg-comparison-products .comp-title, .bg-top-products h2.title, .bg-product-solution .solution-header h2, .bg-product-solution .wrp-list-solution .box-solution h4 {
  font-family: "Manrope-Bold";
}

.font-medium, .bg-toxevade-info .toxe-info h4, .bg-toxevade-premium .text-promo h2, .bg-top-products .box-product h3 {
  font-family: "Manrope-Medium";
}

.font-extrabold, .heading-section {
  font-family: "Manrope-ExtraBold";
}

.font-regular, footer .para-head p.info, footer .info-ftr .head-title {
  font-family: "Manrope-Regular";
}

.font-semibold, .bg-product-solution .wrp-list-solution .box-solution.box-premium .badge-premium .text {
  font-family: "Manrope-SemiBold";
}

body {
  overflow-x: hidden;
}

body.is-loading {
  height: 100vh !important;
  overflow: hidden !important;
}

br.heading {
  position: relative;
}

p {
  line-height: 1.6;
}

.heading-title-line {
  position: relative;
  text-transform: uppercase;
  padding-left: 42px;
  font-size: .95em;
  letter-spacing: 5px;
  color: #E57C1B;
  margin-bottom: 20px;
}

.heading-title-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: #E57C1B;
}

.heading-section {
  font-size: 1.8em;
  text-transform: capitalize;
}

.main-container {
  width: 90%;
  margin: 0 auto;
  max-width: 1300px;
}

.bg-loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  background-color: #FCFCFF;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
}

.bg-loading-animation.is-loading {
  opacity: 1;
  visibility: visible;
}

.bg-loading-animation img {
  pointer-events: none;
  width: 600px;
  height: auto;
}

header {
  width: 100%;
  height: 100vh;
  background-color: #1F1F1F;
  overflow: hidden;
  position: relative;
}

header .bg-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .5s;
  transition: .5s;
}

header .bg-navbar.scrolled {
  height: 80px;
  background-color: #0B0708;
}

header .bg-navbar .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .bg-navbar .wrapper .list-menu ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .bg-navbar .wrapper .list-menu ul li:not(:last-child) {
  margin-right: 30px;
}

header .bg-navbar .wrapper .list-menu ul li a {
  color: #fff;
  text-decoration: none;
}

header .bg-navbar .wrapper .list-menu ul li a:hover {
  text-decoration: underline;
}

header .bg-navbar .wrapper .list-menu ul li button {
  -webkit-transition: .4s;
  transition: .4s;
  padding: 10px 25px;
  border-radius: 50px;
  outline: none;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1.5px solid #fff;
}

header .bg-navbar .wrapper .list-menu ul li button:hover {
  background-color: #fff;
  color: #1F1F1F;
}

header .bg-navbar .wrapper .list-menu ul li .icon-bars {
  cursor: pointer;
  font-size: 1.2em;
  color: #fff;
}

header .bg-navbar-mobile {
  -webkit-transition: .5s;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  height: 100vh;
  background-color: #0B0708;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
}

header .bg-navbar-mobile.opened {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

header .bg-navbar-mobile .mob-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}

header .bg-navbar-mobile .mob-header ul li i.icon-close {
  font-size: 1.6em;
  color: #fff;
  cursor: pointer;
}

header .bg-navbar-mobile .mob-menu {
  padding-top: 20px;
}

header .bg-navbar-mobile .mob-menu ul li:not(:last-child) {
  margin-bottom: 30px;
}

header .bg-navbar-mobile .mob-menu ul li a {
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
}

header .bg-navbar-mobile .mob-menu ul li a:hover {
  text-decoration: underline;
}

header .bg-navbar-mobile .mob-menu ul li button {
  -webkit-transition: .4s;
  transition: .4s;
  width: 100%;
  padding: 14px 25px;
  border-radius: 50px;
  font-size: 1.05em;
  outline: none;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1.5px solid #fff;
}

header .bg-navbar-mobile .mob-menu ul li button:hover {
  background-color: #fff;
  color: #1F1F1F;
}

header .toggle-lang a {
  position: relative;
}

header .toggle-lang a.selected-lang {
  text-decoration: underline !important;
}

header .toggle-lang a:not(:last-child) {
  margin-right: 15px;
}

header .toggle-lang a:first-child::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(10px, -45%);
          transform: translate(10px, -45%);
  right: 0;
  width: 2px;
  height: 80%;
  background-color: #fff;
}

header .header-content {
  bottom: 0;
  position: absolute;
}

header .header-content .container-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0ff;
}

header .header-content .banner-ctn {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

header .header-content .img-banner {
  position: relative;
}

header .header-content .img-banner img {
  position: absolute;
  -webkit-transform: translate(-100px, -80px);
          transform: translate(-100px, -80px);
  width: 500px;
  height: auto;
}

header .header-content .text-banner {
  padding-right: 30px;
  padding-bottom: 120px;
}

header .header-content .text-banner .banner-heading {
  font-size: 2.2em;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 30px;
}

header .header-content .text-banner p {
  color: #E2E2E2;
  line-height: 1.6;
  margin-bottom: 30px;
}

header .header-content .text-banner button {
  padding: 13px 50px;
  border-radius: 50px;
  outline: none;
  color: #fff;
  font-size: .9em;
  border: none;
  cursor: pointer;
  background-image: -webkit-gradient(linear, left top, right top, from(#CA1010), to(#3E0F0F));
  background-image: linear-gradient(to right, #CA1010, #3E0F0F);
}

header .header-content .text-banner button:hover {
  -webkit-filter: hue-rotate(10deg);
          filter: hue-rotate(10deg);
}

html[lang="en"] .header-content .text-banner {
  padding-bottom: 90px;
}

html[lang="en"] .header-content .img-banner img {
  -webkit-transform: translate(-100px, -55px);
          transform: translate(-100px, -55px);
  width: 500px;
}

.bg-about {
  margin-top: 80px;
}

.bg-about .about-info h1 {
  margin-bottom: 25px;
}

.bg-about .about-info p {
  color: #575757;
}

.bg-about .about-img img {
  width: 100%;
  height: auto;
}

.bg-toxin {
  position: relative;
  margin-top: 70px;
  padding: 6em 0;
  overflow: hidden;
  height: auto;
  width: 100%;
  background-color: #1F1F1F;
}

.bg-toxin::before {
  content: '';
  position: absolute;
  background-image: url("/img/pattern-toxin.svg");
  background-position: right;
  background-size: 80%;
  opacity: .05;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.bg-toxin .info-left h2 {
  text-transform: capitalize;
  line-height: 1.6;
  color: #fff;
}

.bg-toxin .info-left .wrp-list-fctr {
  margin-top: 60px;
}

.bg-toxin .info-left .wrp-list-fctr .box-fctr {
  padding-right: 30px;
  margin-bottom: 45px;
}

.bg-toxin .info-left .wrp-list-fctr .box-fctr h3.number {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 5px;
}

.bg-toxin .info-left .wrp-list-fctr .box-fctr p {
  color: #E2E2E2;
  font-size: .95em;
}

.bg-toxin .info-right .img-toxin {
  margin-bottom: 50px;
}

.bg-toxin .info-right .img-toxin img {
  width: 100%;
  height: 400px;
}

.bg-toxin .info-right .box-jamur {
  height: auto;
  padding: 2.5em;
  border-radius: 5px;
  background-color: #272727;
}

.bg-toxin .info-right .box-jamur .text h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
  color: #fff;
}

.bg-toxin .info-right .box-jamur .text p {
  color: #E2E2E2;
}

.bg-polar-molecul {
  margin-top: 70px;
}

.bg-polar-molecul .info-polar .img-polar img {
  width: 100%;
  height: 400px;
}

.bg-polar-molecul .info-molecul h2 {
  margin-bottom: 30px;
}

.bg-polar-molecul .info-molecul p {
  color: #575757;
  margin-bottom: 55px;
}

.bg-polar-molecul .info-molecul .detail-mol .img-mol img {
  width: 100%;
  height: 300px;
}

.bg-info-myco {
  margin-top: 80px;
}

.bg-info-myco .head-text {
  margin-bottom: 50px;
}

.bg-info-myco .head-text h2 {
  font-size: 1.8em;
  text-transform: capitalize;
}

.bg-info-myco ul.info-list li {
  margin-bottom: 40px;
}

.bg-info-myco ul.info-list li p {
  line-height: 1.6;
  color: #575757;
}

.bg-ayam-mitoksin {
  margin-top: 80px;
}

.bg-ayam-mitoksin .img-info {
  margin-bottom: 30px;
  height: clamp(450px, 36vh, 800px);
}

.bg-ayam-mitoksin .img-info img {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.bg-ayam-mitoksin .text-info h2 {
  margin-bottom: 30px;
}

.bg-ayam-mitoksin .text-info p {
  color: #575757;
  margin-bottom: 40px;
}

.bg-ayam-mitoksin .text-info .wrp-list-mtc ul li {
  margin-bottom: 40px;
}

.bg-ayam-mitoksin .text-info .wrp-list-mtc ul li .box-mtc {
  position: relative;
  padding-left: 30px;
}

.bg-ayam-mitoksin .text-info .wrp-list-mtc ul li .box-mtc::before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  top: 0;
  left: 0;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  border-radius: 50%;
  background-color: #D33333;
}

.bg-ayam-mitoksin .text-info .wrp-list-mtc ul li .box-mtc .title {
  margin-bottom: 6px;
}

.bg-ayam-mitoksin .text-info .wrp-list-mtc ul li .box-mtc .desc {
  color: #E57C1B;
  font-size: 1em;
}

.bg-toxevade-info {
  margin-top: 80px;
}

.bg-toxevade-info .toxe-info {
  padding-top: 25px;
}

.bg-toxevade-info .toxe-info h4 {
  font-size: 1.4em;
  text-transform: capitalize;
}

.bg-toxevade-info .toxe-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bg-toxevade-info .toxe-img img {
  width: 100%;
  height: 400px;
}

.bg-metode-mitoksin {
  margin-top: 80px;
  background-color: #1F1F1F;
  padding: 5em 4em;
}

.bg-metode-mitoksin .metode-info {
  padding-right: 40px;
}

.bg-metode-mitoksin .metode-info h2 {
  text-transform: capitalize;
  font-size: 1.6em;
  margin-bottom: 30px;
  color: #fff;
}

.bg-metode-mitoksin .metode-info p {
  margin-bottom: 40px;
  position: relative;
  color: #E2E2E2;
  padding-right: 40px;
}

.bg-metode-mitoksin .metode-info p.sideline {
  padding-left: 40px;
}

.bg-metode-mitoksin .metode-info p.sideline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  background-color: #e57c1b;
}

.bg-metode-mitoksin .metode-img {
  height: auto;
  margin-bottom: 30px;
}

.bg-metode-mitoksin .metode-img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.bg-toxevade-premium {
  margin-top: 85px;
}

.bg-toxevade-premium .wrapper-steps {
  margin-bottom: 60px;
}

.bg-toxevade-premium .wrapper-steps .img-steps img {
  width: 100%;
  height: 300px;
}

.bg-toxevade-premium .wrapper-steps .steps-desc {
  margin-top: -80px;
  text-align: center;
}

.bg-toxevade-premium .text-promo {
  width: 75%;
  text-align: center;
}

.bg-toxevade-premium .text-promo h2 {
  font-size: 1.7em;
  text-transform: capitalize;
  line-height: 1.6;
  margin-bottom: 40px;
}

.bg-toxevade-premium .text-promo p {
  color: #575757;
  text-align: center;
  width: 70%;
}

.bg-chart-eficiency {
  margin-top: 120px;
}

.bg-chart-eficiency .efi-heading {
  width: 50%;
  margin-bottom: 50px;
}

.bg-chart-eficiency .efi-heading h2 {
  letter-spacing: -0.5px;
  text-transform: capitalize;
  font-size: 1.6em;
  margin-bottom: 30px;
}

.bg-chart-eficiency .efi-heading p.desc {
  color: #575757;
}

.bg-chart-eficiency .efi-chart h4 {
  text-align: center;
  color: #E57C1B;
  font-size: 1.2em;
  margin-bottom: 15px;
}

.bg-chart-eficiency .efi-chart .data-chart {
  width: 100%;
  height: auto;
  padding: 5em;
  background-color: #1F1F1F;
}

.bg-chart-eficiency .efi-chart .data-chart .row-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.bg-chart-eficiency .efi-chart .data-chart .chart-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bg-chart-eficiency .efi-chart .chart-label {
  margin-top: 30px;
}

.bg-chart-eficiency .efi-chart .chart-label .product-label ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bg-chart-eficiency .efi-chart .chart-label .product-label ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.bg-chart-eficiency .efi-chart .chart-label .product-label ul li:not(:last-child) {
  margin-right: 50px;
}

.bg-chart-eficiency .efi-chart .chart-label .product-label ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--data-color);
}

.bg-chart-eficiency .efi-chart .chart-label .text-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.bg-chart-eficiency .info-efi {
  margin-top: 40px;
}

.bg-chart-eficiency .info-efi .text-efi p {
  color: #575757;
}

.bg-comparison-products {
  margin-top: 60px;
}

.bg-comparison-products .comp-title {
  margin-bottom: 40px;
  font-size: 1.4em;
  letter-spacing: -1px;
}

.bg-comparison-products .info-comp {
  margin-bottom: 40px;
}

.bg-comparison-products .info-comp h3 {
  font-size: 1.4em;
  margin-bottom: 5px;
}

.bg-comparison-products .info-comp p {
  color: #575757;
}

.bg-comparison-products .comp-toxevade {
  padding: 2em 3em;
  background-color: #1F1F1F;
}

.bg-comparison-products .comp-toxevade .comp-title {
  color: #fff;
}

.bg-comparison-products .comp-toxevade .info-comp h3 {
  color: #fff;
}

.bg-comparison-products .comp-toxevade .info-comp p {
  color: #E2E2E2;
}

.bg-top-products {
  margin-top: 80px;
}

.bg-top-products h2.title {
  font-size: 1.6em;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.bg-top-products .box-product {
  padding-right: 40px;
  margin-bottom: 40px;
}

.bg-top-products .box-product img {
  width: auto;
  height: 60px;
  margin-bottom: 20px;
}

.bg-top-products .box-product h3 {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.bg-top-products .box-product p {
  color: #575757;
}

.bg-product-solution {
  margin-top: 80px;
}

.bg-product-solution .solution-header {
  margin-bottom: 60px;
}

.bg-product-solution .solution-header h2 {
  margin-bottom: 35px;
  font-size: clamp(1.4em, 1.7rem, 4vw);
  letter-spacing: -1px;
  text-transform: capitalize;
}

.bg-product-solution .solution-header p {
  color: #575757;
}

.bg-product-solution .wrp-list-solution .box-solution {
  position: relative;
  border: 1.2px solid #1F1F1F;
  padding: 1.5em;
  height: auto;
  min-height: 290px;
}

.bg-product-solution .wrp-list-solution .box-solution img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.bg-product-solution .wrp-list-solution .box-solution h4 {
  letter-spacing: -1px;
  font-size: 1.4em;
  margin-bottom: 25px;
}

.bg-product-solution .wrp-list-solution .box-solution ul li {
  padding-bottom: 12px;
  border-bottom: 1px solid #575757;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bg-product-solution .wrp-list-solution .box-solution ul li:not(:last-child) {
  margin-bottom: 20px;
}

.bg-product-solution .wrp-list-solution .box-solution ul li span {
  color: #1F1F1F;
}

.bg-product-solution .wrp-list-solution .box-solution.box-premium {
  margin-bottom: 30px;
  background-color: #1F1F1F;
}

.bg-product-solution .wrp-list-solution .box-solution.box-premium .badge-premium {
  top: 0;
  right: 0;
  padding: .7em 1.2em;
  position: absolute;
  background-color: #e57c1b;
}

.bg-product-solution .wrp-list-solution .box-solution.box-premium .badge-premium .text {
  font-size: 1em;
  color: #fff;
}

.bg-product-solution .wrp-list-solution .box-solution.box-premium h4 {
  color: #fff;
}

.bg-product-solution .wrp-list-solution .box-solution.box-premium span {
  color: #E2E2E2;
}

footer {
  margin-top: 70px;
  height: auto;
  padding: 4em 0;
  background-color: #1F1F1F;
}

footer .para-head {
  width: 50%;
  margin-bottom: 70px;
  padding-right: 40px;
}

footer .para-head p.info {
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #E2E2E2;
}

footer .info-ftr .head-title {
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 20px;
}

footer .info-ftr .ftr-links {
  margin-bottom: 50px;
}

footer .info-ftr .ftr-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .info-ftr .ftr-links ul li {
  margin-bottom: 15px;
}

footer .info-ftr .ftr-links ul li:not(:last-child) {
  margin-right: 25px;
}

footer .info-ftr .ftr-links ul li a {
  color: #CFCFCF;
  text-decoration: none;
}

footer .info-ftr .ftr-links ul li a:hover {
  text-decoration: underline;
}

footer .info-ftr .ftr-data p {
  margin-bottom: 10px;
  color: #CFCFCF;
}

footer .info-ftr .ftr-email {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}

footer .info-ftr .ftr-email h3.email {
  color: #fff;
  font-size: clamp(1.5em, 3rem, 4vw);
}

@media (max-width: 576px) {
  br.heading {
    content: '';
  }
  .heading-section {
    font-size: 1.5em;
  }
  .header-content .text-banner {
    padding-bottom: 100px !important;
  }
  .header-content .text-banner h1 {
    font-size: 1.8em !important;
  }
  .bg-metode-mitoksin {
    padding: 2em 1.5em;
  }
  .bg-metode-mitoksin .metode-info {
    padding-right: 0 !important;
  }
  .bg-metode-mitoksin .metode-info p {
    padding-right: 0 !important;
  }
  .bg-toxin .info-right .box-jamur {
    padding: 2.5em 1.5em;
  }
  .bg-toxevade-premium .img-steps {
    height: 220px !important;
  }
  .bg-toxevade-premium .img-steps img {
    height: 100%;
  }
  .bg-toxevade-premium .steps-desc {
    margin-top: 10px !important;
  }
  .bg-toxevade-premium .text-promo {
    width: 100%;
  }
  .bg-toxevade-premium .text-promo h2 {
    font-size: 1.4em;
  }
  .bg-toxevade-premium .text-promo p {
    width: 100%;
  }
  .bg-top-products .box-product {
    padding-right: 0;
  }
  .reverse-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (max-width: 778px) {
  .show-link {
    display: none;
  }
  .hide-link {
    display: block !important;
  }
  .list-menu ul li:not(:last-child) {
    margin-right: 5px !important;
  }
  .bg-ayam-mitoksin {
    margin-top: -20px;
  }
  .bg-metode-mitoksin {
    padding: 2em 1.5em;
  }
  .bg-metode-mitoksin .metode-info {
    padding-right: 0 !important;
  }
  .bg-metode-mitoksin .metode-info p {
    padding-right: 0 !important;
  }
  .reverse-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (max-width: 991px) {
  .hide-link {
    display: none;
  }
  .reverse-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .bg-chart-eficiency .efi-heading {
    width: 100%;
  }
  .bg-chart-eficiency .efi-chart .data-chart {
    padding: 3em;
  }
  .bg-chart-eficiency .text-label {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .header-content .img-banner img {
    visibility: hidden;
    opacity: 0;
  }
  .bg-comparison-products .comp-toxevade {
    padding: 2em;
  }
  footer .para-head {
    width: 100%;
    padding-right: 0;
  }
}

@media (min-width: 1024px) {
  .hide-link {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */