/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
.cd-horizontal-timeline {
  line-height: 1;
  /* HTML5 display-role reset for older browsers */
}
.cd-horizontal-timeline article,
.cd-horizontal-timeline aside,
.cd-horizontal-timeline details,
.cd-horizontal-timeline figcaption,
.cd-horizontal-timeline figure,
.cd-horizontal-timeline footer,
.cd-horizontal-timeline header,
.cd-horizontal-timeline hgroup,
.cd-horizontal-timeline menu,
.cd-horizontal-timeline nav,
.cd-horizontal-timeline section,
.cd-horizontal-timeline main {
  display: block;
}
.cd-horizontal-timeline ol,
.cd-horizontal-timeline ul {
  list-style: none;
}
.cd-horizontal-timeline blockquote,
.cd-horizontal-timeline q {
  quotes: none;
}
.cd-horizontal-timeline blockquote:before,
.cd-horizontal-timeline blockquote:after,
.cd-horizontal-timeline q:before,
.cd-horizontal-timeline q:after {
  content: '';
  content: none;
}
.cd-horizontal-timeline table {
  border-collapse: collapse;
  border-spacing: 0;
}
.cd-horizontal-timeline a {
  text-decoration: none;
}
/*==================================================*/
.cd-horizontal-timeline {
  opacity: 0;
  margin: 50px auto;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-horizontal-timeline::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-horizontal-timeline.loaded {
  /* show the timeline after events position has been set (using JavaScript) */
  opacity: 1;
}
.cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  width: 100%;
  /*max-width: 800px;*/
  margin: 0 auto;
}
.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}
.cd-horizontal-timeline .events-wrapper::after,
.cd-horizontal-timeline .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the timeline */
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px;
}
.cd-horizontal-timeline .events-wrapper::before {
  left: 0;
  /*background-image: -webkit-linear-gradient( left , #f8f8f8, rgba(248, 248, 248, 0));
  background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));*/
}
.cd-horizontal-timeline .events-wrapper::after {
  right: 0;
  /*background-image: -webkit-linear-gradient( right , #f8f8f8, rgba(248, 248, 248, 0));
  background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));*/
}
.cd-horizontal-timeline .events {
  /* this is the grey line/timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 49px;
  height: 2px;
  /* width will be set using JavaScript */
  background: #dfdfdf;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}
.cd-horizontal-timeline .filling-line {
  /* this is used to create the green line filling the timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #7ac33b;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-horizontal-timeline .events a {
  position: absolute;
  top: 12px;
  z-index: 2;
  text-align: center;
  font-size: 16px;
  padding-bottom: 15px;
  color: #7ac33b;
  /* fix bug on Safari - text flickering while timeline translates */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-horizontal-timeline .events a::after {
  /* this is used to create the event spot */
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -17px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  background-color: #f8f8f8;
  -webkit-transition:
    background-color 0.3s,
    border-color 0.3s;
  -moz-transition:
    background-color 0.3s,
    border-color 0.3s;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}
.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #7ac33b;
  border-color: #7ac33b;
}
.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
  font-weight: 700;
  font-size: 2rem;
}
.cd-horizontal-timeline .events a.selected::after {
  background-color: #7ac33b;
  border-color: #7ac33b;
}
.cd-horizontal-timeline .events a.older-event::after {
  border-color: #7ac33b;
}
@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline {
    margin: 50px auto;
  }
  .cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}
.cd-timeline-navigation a {
  /* these are the left/right arrows to navigate the timeline */
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  /* replace text with an icon */
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border-color: #7ac33b;
}
.cd-timeline-navigation a::after {
  /* arrow icon */
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.cd-timeline-navigation a.prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.cd-timeline-navigation a.next {
  right: 0;
}
/*.no-touch .cd-timeline-navigation a:hover {
  border-color: @BASE_COLOR;
}*/
.cd-timeline-navigation a:hover {
  background-color: #7ac33b;
}
.cd-timeline-navigation a.inactive {
  cursor: not-allowed;
  background-color: transparent;
  border-color: #dfdfdf;
}
.cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px;
}
/*.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}*/
.cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}
.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  /*margin: 2em 0;*/
  margin: 10px 0;
  overflow: hidden;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s;
}
.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0 5%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-horizontal-timeline .events-content li.enter-right,
.cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}
.cd-horizontal-timeline .events-content li.enter-left,
.cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}
.cd-horizontal-timeline .events-content li.leave-right,
.cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
}
.cd-horizontal-timeline .events-content li > * {
  max-width: 800px;
  margin: 0 auto;
}
/*.cd-horizontal-timeline .events-content h3 {
  font-weight: bold;
  font-size: 2.6rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}*/
.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;
}
.cd-horizontal-timeline .events-content em::before {
  content: '- ';
}
/*.cd-horizontal-timeline .events-content p {
  font-size: 1.4rem;
  color: #959595;
}*/
/*.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
  line-height: 1.6;
}*/
/*@media only screen and (min-width: 768px) {
  .cd-horizontal-timeline .events-content h2 {
    font-size: 7rem;
  }
  .cd-horizontal-timeline .events-content em {
    font-size: 2rem;
  }
  .cd-horizontal-timeline .events-content p {
    font-size: 1.8rem;
  }
}*/
@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.instagram-color {
  background:
    radial-gradient(
      circle farthest-corner at 35% 90%,
      #fec564,
      transparent 50%
    ),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 0 -25%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(
      ellipse farthest-corner at 20% -50%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(
      ellipse farthest-corner at 100% 0,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(
      ellipse farthest-corner at 60% -20%,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(
      #6559ca,
      #bc318f 30%,
      #e33f5f 50%,
      #f77638 70%,
      #fec66d 100%
    );
}
.facebook-color {
  background-color: #3b5999 !important;
}
.twitter-color {
  background-color: #55acee !important;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  position: relative;
  min-height: 100%;
}
html,
body {
  font-family: 'Raleway', sans-serif;
  color: #555555;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato', sans-serif;
  color: #555555;
  line-height: 1.3;
  margin: 0px;
}
h1.site,
h2.site,
h3.site,
h4.site,
h5.site,
h6.site {
  margin-bottom: 10px;
}
h1,
h2,
h3,
h4 {
  font-weight: 700;
}
h5,
h6 {
  font-weight: 600;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #555555;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
a:active,
a:hover,
a:focus {
  outline: 0 none;
  text-decoration: none;
}
button {
  background: none;
  outline: 0 none;
  border: none;
}
iframe {
  border: 0px;
}
input,
textarea {
  outline: none;
  max-width: 100%;
}
.container {
  padding: 15px;
}
::-moz-selection {
  background: #3c59b3;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #3c59b3;
  color: #fff;
  text-shadow: none;
}
.text-green {
  color: #7ac33b !important;
}
.container.page-content {
  position: relative;
  padding-top: 50px;
}
.pb-60 {
  padding-bottom: 60px;
}
.splide__pagination__page {
  opacity: 1 !important;
}
.splide__pagination__page.is-active {
  background-color: #7ac33b !important;
}
#product-inner-content {
  min-height: 550px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.no-pdl {
  padding-left: 0px !important;
}
.no-pdr {
  padding-right: 0px !important;
}
/* button */
.btn-primary {
  color: #fff;
  background-color: #7ac33b;
}
.btn-primary.btn-lg {
  padding: 10px 50px;
}
.btn-primary:hover {
  color: #7ac33b;
  background-color: #fff;
  border: 1px solid #7ac33b;
}
.btn-primary.rounded {
  border-radius: 30px;
}
.btn-primary .btn-icon {
  background-color: #9be45c;
  border-radius: 50%;
  font-size: 13px;
  padding: 5px 6px;
  margin-left: 20px;
}
.btn-line {
  border: 1px solid #cccccc;
  border-radius: 0px;
  background-color: #ffffff;
}
.btn-line.btn-lg {
  padding: 10px 50px;
}
.btn-line.green {
  color: #7ac33b;
  border-color: #7ac33b;
}
.btn-line.disabled,
.btn-line[disabled] {
  color: #d0d0d0;
  border-color: #d0d0d0;
}
.btn-line:not(.disabled):hover {
  color: #fff;
  background-color: #7ac33b;
}
.line-blue {
  border-color: #268fac !important;
  color: #268fac !important;
}
header {
  position: fixed;
  z-index: 2;
  background-color: #fff;
  top: 0;
  width: 100%;
  height: 80px;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header .logo a {
  display: block;
  outline: none;
  text-decoration: none;
}
header .logo img {
  object-fit: contain;
  height: 60px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header .navigation {
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*&:after {
			content: '';
			width: 100%;
			height: 1px;
			background-color: @COLOR_GREEN;
			position: absolute;
			bottom: 0;
			left: 0;

			@media only screen and (max-width: 767px) { display: none; }
			@media only screen and (min-width: 768px) { display: none; }
			@media only screen and (min-width: 992px) { display: block; }
		}*/
}
@media only screen and (min-width: 992px) {
  header .navigation {
    margin-top: 10px;
  }
}
header .navigation ul {
  position: relative;
  margin: 0;
  padding: 0;
}
header .navigation ul li {
  list-style: none;
  padding: 10px 0;
  border-bottom: solid 3px transparent;
}
header .navigation ul li.nav-menu {
  display: inline-block;
}
header .navigation ul li a {
  color: rgba(122, 195, 59, 0.8) !important;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header .navigation ul li a:hover,
header .navigation ul li a:active {
  color: #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header .navigation ul li.active {
  border-bottom: solid 3px #7ac33b;
}
header .navigation ul li.active a {
  color: #7ac33b;
  font-weight: 700;
}
header .navigation #form-search {
  position: relative;
  top: 7px;
  margin-right: -36px;
  float: right;
  display: none;
}
header .navigation #form-search:after {
  position: absolute;
  top: -1px;
  right: 11px;
  height: inherit;
  content: '\f002';
  font-family: FontAwesome;
  color: rgba(122, 195, 59, 0.8);
  font-size: 16px;
  line-height: 28px;
}
header .navigation #form-search input {
  width: 336px;
  outline: none;
  box-sizing: border-box;
  padding: 5px 10px;
  border: solid 1px #cacaca;
  color: #424242;
  padding-right: 36px;
  -khtml-border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
}
header .navigation #form-search input:focus {
  border: solid 1px #7ac33b;
}
header .navigation #nav-web {
  /* width */
  /* Track */
  /* Handle */
}
header .navigation #nav-web .dropdown-menu-header {
  position: absolute !important;
  min-width: 220px;
  text-align: center;
  left: unset;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-color: #7ac33b #fff;
  scrollbar-width: thin;
}
header .navigation #nav-web .dropdown-menu-header a {
  font-weight: 600;
  color: #b5b5b5;
  padding: 0 15px;
}
header .navigation #nav-web .dropdown-menu-header a:hover,
header .navigation #nav-web .dropdown-menu-header a:active {
  color: #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background: none;
  font-weight: 600;
}
header .navigation #nav-web .dropdown-menu-header::-webkit-scrollbar {
  width: 8px;
}
header .navigation #nav-web .dropdown-menu-header::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 0 3px 3px 0;
}
header .navigation #nav-web .dropdown-menu-header::-webkit-scrollbar-thumb {
  background: #7ac33b;
  border-radius: 2px;
}
header .navigation #nav-web .chevron::before {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: '';
  display: inline-block;
  height: 0.45em;
  left: 10px;
  position: relative;
  top: 7px;
  transform: rotate(-225deg);
  vertical-align: top;
  width: 7px;
  color: #7ac33b;
}
header .navigation #nav-opt a {
  cursor: pointer;
  padding: 10px;
}
header .navigation #nav-opt a#button-change-lang:after {
  content: '\f0d7';
  position: absolute;
  right: 5px;
  top: 3px;
  font-family: FontAwesome;
  font-size: 12px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header .navigation #nav-opt a#button-change-lang span {
  display: inline-block;
  width: 40px;
}
header
  .navigation
  #nav-opt
  .dropdown-lang-container.open
  a#button-change-lang:after {
  top: 2px;
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header .navigation #nav-opt .dropdown-lang {
  background-color: #fff;
  z-index: 2;
  font-size: 16px;
  color: #7ac33b;
  padding: 0;
  min-width: 80px;
  border: 0;
  overflow: hidden;
  left: auto;
  right: 0;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}
@media only screen and (min-width: 992px) {
  header .navigation #nav-opt .dropdown-lang {
    right: auto;
    left: 0;
  }
}
header .navigation #nav-opt .dropdown-lang button {
  display: block;
  width: 100%;
  padding-left: 15px;
  border: 0;
  background-color: #fff;
  text-align: left;
  outline: none;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header .navigation #nav-opt .dropdown-lang button.selected {
  background-color: #7ac33b;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header .navigation #nav-opt .dropdown-lang button:hover {
  background-color: #8dcc56;
  color: #fff;
}
header .navigation #nav-opt .dropdown-lang button:hover.selected {
  background-color: #6eaf35;
}
header .navigation #nav-opt .dropdown-lang button:disabled {
  background-color: unset;
  color: #979797;
}
header .navigation #nav-opt .dropdown-lang button:disabled:hover {
  background-color: unset;
  color: #979797;
}
header.small-header {
  height: 73px;
}
header.small-header .logo img {
  height: 50px;
}
header.small-header .navigation ul li a {
  font-size: 12px;
}
header #nav-mobile {
  position: absolute;
  top: 80px;
  width: 100%;
  display: none;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  border-top: solid 1px #e3e3e3;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
header #nav-mobile #form-search-mobile {
  position: relative;
  margin: 30px auto 15px;
  width: 70%;
}
header #nav-mobile #form-search-mobile input {
  position: relative;
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 10px;
  padding-right: 40px;
  border: solid 1px #7ac33b;
}
header #nav-mobile #form-search-mobile:after {
  position: absolute;
  top: 7px;
  right: 11px;
  height: inherit;
  content: '\f002';
  font-family: FontAwesome;
  color: rgba(151, 151, 151, 0.8);
  font-size: 20px;
  line-height: 28px;
}
header #nav-mobile ul {
  margin: 0;
  padding: 0 0 30px 0;
  text-align: center;
}
header #nav-mobile ul li {
  list-style: none;
}
header #nav-mobile ul li a {
  font-size: 16px;
  display: inline-block;
  width: 100%;
  padding: 15px 25px;
  text-decoration: none;
  color: #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header #nav-mobile .dropdown-menu-header-mobile {
  position: relative !important;
  text-align: center;
  left: unset;
  background: rgba(192, 192, 192, 0.2);
  box-shadow: none;
  border: none;
  width: 100%;
  padding-bottom: 0;
  max-height: 270px;
  overflow-y: auto;
  top: -50px !important;
  /* width */
  /* Track */
  /* Handle */
}
header #nav-mobile .dropdown-menu-header-mobile a {
  font-weight: 500;
  padding: 8px 25px;
}
header #nav-mobile .dropdown-menu-header-mobile a:hover,
header #nav-mobile .dropdown-menu-header-mobile a:active {
  color: #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background: none;
  font-weight: 600;
}
header #nav-mobile .dropdown-menu-header-mobile::-webkit-scrollbar {
  width: 8px;
}
header #nav-mobile .dropdown-menu-header-mobile::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0 3px 3px 0;
}
header #nav-mobile .dropdown-menu-header-mobile::-webkit-scrollbar-thumb {
  background: #7ac33b;
  border-radius: 2px;
}
header #nav-mobile .chevron::before {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: '';
  display: inline-block;
  height: 0.45em;
  left: 10px;
  position: relative;
  top: 7px;
  transform: rotate(-225deg);
  vertical-align: top;
  width: 7px;
  color: #7ac33b;
}
header #nav-mobile .dropdown-backdrop {
  display: none;
}
header .inner-header {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  header .inner-header {
    width: 750px;
  }
}
@media only screen and (min-width: 992px) {
  header .inner-header {
    width: 990px;
  }
}
@media only screen and (min-width: 1200px) {
  header .inner-header {
    width: 1250px;
  }
}
header .dropdown-toggle::after {
  display: none;
}
header .header-belt {
  padding: 10px 15px;
  height: 40px;
  width: 100%;
  background-color: white;
  border-top: solid 1px #e3e3e3;
}
@media only screen and (min-width: 768px) {
  header .header-belt {
    padding: 10px calc((100vw - 750px) / 2);
  }
}
@media only screen and (min-width: 992px) {
  header .header-belt {
    padding: 10px calc((100vw - 990px) / 2);
  }
}
header .header-belt ul.swiper-wrapper {
  list-style: none;
  padding: 0;
}
header .header-belt ul.swiper-wrapper li.swiper-slide {
  width: auto !important;
  padding: 0 20px;
}
.wrap {
  position: relative;
  z-index: 0;
  margin-top: 80px;
}
@media only screen and (max-width: 992px) {
  .wrap {
    margin-top: 120px;
  }
}
#career-header .splide .splide__track {
  height: calc(100vh - 80px);
}
#career-header .splide .splide__track .splide__list {
  height: calc(100vh - 80px);
}
#career-header .splide .splide__track .splide__list .splide__slide {
  height: auto !important;
}
#career-header .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
}
#career-content {
  padding-bottom: 100px;
  background-image: url(../images/career/bg-career.png);
  background-size: 100%;
  position: relative;
  padding-top: 15px;
}
#career-content .btn-vacancy {
  color: white;
  border-radius: 30px !important;
  border-color: #7ac33b;
}
#career-content .btn-vacancy span {
  font-size: 19px;
  color: #7ac33b;
  padding: 0 0 3px 0;
  width: 25px;
  height: 25px;
  background: #9be45c;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  border: 1px solid #7ac33b;
}
#career-content .btn-vacancy:hover {
  color: #7ac33b;
}
#career-content .btn-vacancy:hover span {
  background: white;
}
#career-content .btn-vacancy:focus {
  box-shadow: none;
}
@media only screen and (max-width: 480px) {
  #section-about-career {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
#career-inner-content {
  padding-bottom: 60px;
}
#career-inner-content .be-part-kn {
  position: relative;
  margin-top: 20px;
}
#career-inner-content .be-part-kn:hover .overlay {
  opacity: 1;
}
#career-inner-content .be-part-kn_img {
  width: 100%;
  height: 130px;
  max-width: 160px;
  margin: auto;
}
@media only screen and (max-width: 480px) {
  #career-inner-content .be-part-kn_img {
    height: 150px;
    display: grid;
    justify-content: center;
  }
}
#career-inner-content .be-part-kn_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#career-inner-content .be-part-kn_text {
  padding: 15px 20px;
  text-align: center;
}
#career-inner-content .be-part-kn_text p {
  line-height: 1.5;
  color: #7ac33b;
  font-weight: 600;
}
#career-inner-content .be-part-kn .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #7ac33b;
}
#career-inner-content .be-part-kn .text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 15px;
}
#career-inner-content #section-about-career {
  height: auto !important;
  margin: 10px auto;
}
.hero {
  position: relative;
  height: calc(100vh - 80px);
  background-color: #222;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 480px) {
  .hero {
    aspect-ratio: 1 / 1.56;
    width: 100%;
    height: auto;
    max-height: unset;
  }
}
@media only screen and (min-width: 992px) {
  .hero-new {
    aspect-ratio: 16 / 8;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
}
.hero.has-margin {
  margin-top: -85px;
}
.hero .background-hero {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .background-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .overlay-hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
}
.hero h1,
.hero .title-style {
  font-weight: 300;
  color: #ffffff;
  font-size: 4em;
  opacity: 0;
  position: absolute;
}
.hero h1 strong,
.hero .title-style strong {
  font-weight: 700;
}
.hero .background-webp {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .background-webp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero.contact {
  background-image: url(../images/contact/hero.png);
}
@media only screen and (max-width: 480px) {
  .hero.contact {
    background-image: url(../images/contact/hero-480.png);
  }
}
@media only screen and (min-width: 992px) {
  .hero.contact h1,
  .hero.contact .title-style {
    position: relative;
    padding-top: 15%;
  }
}
.hero.news {
  background-image: url(../images/health-corner/hero.jpg);
  height: calc(100vh - 150px);
}
@media only screen and (max-width: 480px) {
  .hero.news {
    background-image: url(../images/health-corner/hero-480.jpg);
    height: calc(100vh - 80px);
    background-position: unset;
  }
}
.hero.directors {
  background-image: url(../images/bg-directors/bod_bggreen4.webp);
  height: calc(100vh - 150px);
}
@media only screen and (max-width: 480px) {
  .hero.directors {
    background-image: url(../images/bg-directors/bod_bggreen-4804.webp);
    height: calc(100vh - 80px);
    background-position: unset;
  }
}
@media only screen and (max-width: 800px) {
  .hero.directors {
    background-position: center;
  }
}
.hero.health-corner {
  background-image: url(../images/health-corner/hero.jpg?v=1.1);
}
@media only screen and (max-width: 480px) {
  .hero.health-corner {
    background-image: url(../images/health-corner/hero-480.jpg?v=1.1);
  }
}
.hero.career {
  background-image: url(../images/career/hero.png);
}
.hero.detail-news {
  height: auto;
}
.hero#news-header {
  aspect-ratio: 2.88 / 1;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .hero#news-header {
    aspect-ratio: 0.96 / 1;
  }
}
.hero#landing-header {
  background: url('../../images/bg-home/1.webp');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .hero#landing-header {
    background: url('../../images/bg-home/1-480.webp');
    background-position: left center;
  }
  .hero#landing-header h1,
  .hero#landing-header .title-style {
    font-size: 1.8em;
  }
}
.hero#landing-header .background-webp {
  display: block;
}
@media only screen and (max-width: 767px) {
  .hero#landing-header .background-webp {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .hero#landing-header h1,
  .hero#landing-header .title-style {
    font-size: 2.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .hero#landing-header h1,
  .hero#landing-header .title-style {
    font-size: 3.5em;
  }
}
@media only screen and (max-width: 767px) {
  .hero#product-header h1,
  .hero#about-header h1,
  .hero#career-header h1,
  .hero#news-header h1,
  .hero#product-header .title-style,
  .hero#about-header .title-style,
  .hero#career-header .title-style,
  .hero#news-header .title-style {
    font-size: 1.8em;
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  .hero#product-header h1,
  .hero#about-header h1,
  .hero#career-header h1,
  .hero#news-header h1,
  .hero#product-header .title-style,
  .hero#about-header .title-style,
  .hero#career-header .title-style,
  .hero#news-header .title-style {
    font-size: 2.3em;
    text-align: right;
  }
}
@media only screen and (min-width: 1200px) {
  .hero#product-header h1,
  .hero#about-header h1,
  .hero#career-header h1,
  .hero#news-header h1,
  .hero#product-header .title-style,
  .hero#about-header .title-style,
  .hero#career-header .title-style,
  .hero#news-header .title-style {
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .hero#product-header h1,
  .hero#about-header h1,
  .hero#career-header h1,
  .hero#news-header h1,
  .hero#product-header .title-style,
  .hero#about-header .title-style,
  .hero#career-header .title-style,
  .hero#news-header .title-style {
    text-align: center;
    left: 0;
    right: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .hero#contact-header h1,
  .hero#contact-header .title-style {
    font-size: 1.8em;
  }
}
@media only screen and (min-width: 768px) {
  .hero#contact-header h1,
  .hero#contact-header .title-style {
    font-size: 2.3em;
  }
}
@media only screen and (min-width: 1200px) {
  .hero#contact-header h1,
  .hero#contact-header .title-style {
    font-size: 3em;
  }
}
@-webkit-keyframes scroll-down-anim {
  0% {
    top: -7px;
  }
  50% {
    top: 3px;
  }
  100% {
    top: -7px;
  }
}
@-moz-keyframes scroll-down-anim {
  0% {
    top: -7px;
  }
  50% {
    top: 3px;
  }
  100% {
    top: -7px;
  }
}
@-o-keyframes scroll-down-anim {
  0% {
    top: -7px;
  }
  50% {
    top: 3px;
  }
  100% {
    top: -7px;
  }
}
@keyframes scroll-down-anim {
  0% {
    top: -7px;
  }
  50% {
    top: 3px;
  }
  100% {
    top: -7px;
  }
}
@-webkit-keyframes arrow-down-anim {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 3px;
  }
  100% {
    bottom: 0px;
  }
}
@-moz-keyframes arrow-down-anim {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 3px;
  }
  100% {
    bottom: 0px;
  }
}
@-o-keyframes arrow-down-anim {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 3px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes arrow-down-anim {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 3px;
  }
  100% {
    bottom: 0px;
  }
}
.scroll-down {
  width: 150px;
  height: 43px;
  margin-left: -75px;
  line-height: 43px;
  white-space: nowrap;
  position: absolute;
  bottom: 40px;
  left: 50%;
  font-weight: 300;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5) !important;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-down.scroll-down-home,
.scroll-down.scroll-down-product,
.scroll-down.scroll-down-about {
  left: auto;
  right: 25%;
}
.scroll-down:hover,
.scroll-down:focus {
  text-decoration: none;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0) !important;
}
.scroll-down.static,
.scroll-down.static {
  color: rgba(255, 255, 255, 0.4) !important;
}
.scroll-down.static:hover,
.scroll-down.static:focus {
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.85) !important;
}
.scroll-down-icon {
  width: 26px;
  height: 100%;
  margin-left: -13px;
  position: absolute;
  top: 0;
  left: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation: scroll-down-anim 1s infinite;
  -moz-animation: scroll-down-anim 1s infinite;
  -o-animation: scroll-down-anim 1s infinite;
  animation: scroll-down-anim 1s infinite;
}
.scroll-down-icon:after {
  content: ' ';
  width: 2px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.scroll-down:hover .scroll-down-icon {
  background: rgba(0, 0, 0, 0.3);
}
.scroll-down:hover .scroll-down-icon:after {
  background: rgba(0, 0, 0, 0.5);
}
#our-product-slider {
  position: relative;
  padding: 0 15px;
}
#our-product-slider .slider-container-col {
  z-index: 1;
}
@media only screen and (max-width: 577px) {
  #our-product-slider .slider-container-col {
    margin: -40px auto;
    float: left;
    clear: both;
    width: 100%;
  }
}
@media only screen and (min-width: 577px) {
  #our-product-slider .slider-container-col {
    margin: -60px auto;
    float: left;
    clear: both;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider .slider-container-col {
    margin: -70px auto;
    float: left;
    clear: both;
    width: 100%;
  }
}
#our-product-slider .swiper-parent-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  position: relative;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  #our-product-slider .swiper-parent-container {
    margin-right: -60px;
  }
}
@media only screen and (min-width: 1200px) {
  #our-product-slider .swiper-parent-container {
    max-width: 1050px;
  }
}
#our-product-slider .swiper-parent-container .swiper-container {
  position: relative;
  background-color: #fff;
  margin: 0 auto;
  width: calc(100% - 85px);
  padding: 10px 3px;
  min-height: 70px;
}
@media only screen and (min-width: 576px) {
  #our-product-slider .swiper-parent-container .swiper-container {
    padding: 10px 6px;
    width: calc(100% - 150px);
    min-height: 120px;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider .swiper-parent-container .swiper-container {
    min-height: 140px;
    max-width: 650px;
  }
}
@media only screen and (min-width: 1200px) {
  #our-product-slider .swiper-parent-container .swiper-container {
    max-width: 800px;
  }
}
#our-product-slider .swiper-parent-container .swiper-container .swiper-slide {
  width: auto !important;
  max-width: 20vw;
}
@media only screen and (min-width: 576px) {
  #our-product-slider .swiper-parent-container .swiper-container .swiper-slide {
    max-width: 21vw;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider .swiper-parent-container .swiper-container .swiper-slide {
    max-width: 180px;
  }
}
@media only screen and (min-width: 1200px) {
  #our-product-slider .swiper-parent-container .swiper-container .swiper-slide {
    max-width: 195px;
  }
}
#our-product-slider
  .swiper-parent-container
  .swiper-container
  .swiper-slide
  .our-product-slider-item {
  display: block;
  max-height: 10vw;
  min-height: 50px;
  height: 10vw;
}
@media only screen and (min-width: 576px) {
  #our-product-slider
    .swiper-parent-container
    .swiper-container
    .swiper-slide
    .our-product-slider-item {
    height: 90px;
    max-height: 90px;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider
    .swiper-parent-container
    .swiper-container
    .swiper-slide
    .our-product-slider-item {
    height: 120px;
    max-height: 120px;
  }
}
#our-product-slider
  .swiper-parent-container
  .swiper-container
  .swiper-slide
  .our-product-slider-item
  img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
  transform: scale(0.9);
  transition: all 0.2s ease;
}
#our-product-slider
  .swiper-parent-container
  .swiper-container
  .swiper-slide
  .our-product-slider-item
  img:hover {
  transform: scale(1);
}
#our-product-slider .swiper-parent-container::after {
  content: '';
  display: block;
  background: #ffffff;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 45px;
}
@media only screen and (min-width: 576px) {
  #our-product-slider .swiper-parent-container::after {
    width: 75px;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider .swiper-parent-container::after {
    width: 125px;
    right: -50px;
  }
}
#our-product-slider .swiper-parent-container::before {
  content: '';
  display: block;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45px;
}
@media only screen and (min-width: 576px) {
  #our-product-slider .swiper-parent-container::before {
    width: 75px;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider .swiper-parent-container::before {
    width: 125px;
    left: -50px;
  }
}
#our-product-slider .swiper-parent-container .swiper-button-prev {
  left: 20px;
}
@media only screen and (min-width: 576px) {
  #our-product-slider .swiper-parent-container .swiper-button-prev {
    left: 40px;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider .swiper-parent-container .swiper-button-prev {
    left: 40px;
  }
}
#our-product-slider .swiper-parent-container .swiper-button-next {
  right: 20px;
}
@media only screen and (min-width: 576px) {
  #our-product-slider .swiper-parent-container .swiper-button-next {
    right: 40px;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider .swiper-parent-container .swiper-button-next {
    right: 40px;
  }
}
#our-product-slider .swiper-parent-container .swiper-button-next,
#our-product-slider .swiper-parent-container .swiper-button-prev {
  background-image: none;
  width: auto;
  height: auto;
  margin-top: 0;
  top: calc(50% - 10px);
}
#our-product-slider .swiper-parent-container .swiper-button-next i,
#our-product-slider .swiper-parent-container .swiper-button-prev i {
  color: #729f4d;
  font-size: 20px;
}
@media only screen and (min-width: 576px) {
  #our-product-slider .swiper-parent-container .swiper-button-next,
  #our-product-slider .swiper-parent-container .swiper-button-prev {
    top: calc(50% - 15px);
  }
  #our-product-slider .swiper-parent-container .swiper-button-next i,
  #our-product-slider .swiper-parent-container .swiper-button-prev i {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) {
  #our-product-slider .swiper-parent-container .swiper-button-next,
  #our-product-slider .swiper-parent-container .swiper-button-prev {
    top: calc(50% - 20px);
  }
  #our-product-slider .swiper-parent-container .swiper-button-next i,
  #our-product-slider .swiper-parent-container .swiper-button-prev i {
    font-size: 40px;
  }
}
.parallax-bg {
  position: relative;
  background-color: #333;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
@media only screen and (max-width: 767px) {
  .parallax-bg {
    max-height: 480px;
  }
}
@media only screen and (min-width: 768px) {
  .parallax-bg {
    max-height: 445px;
  }
}
@media only screen and (min-width: 992px) {
  .parallax-bg {
    max-height: none;
  }
}
.parallax-bg .layer {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .parallax-bg .layer {
    position: relative;
  }
}
.parallax-bg .layer .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}
.parallax-bg .layer .text h1,
.parallax-bg .layer .text .title-style {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #fff;
}
.parallax-bg .layer .text h1 strong,
.parallax-bg .layer .text .title-style strong {
  font-weight: 900;
}
@media only screen and (min-width: 768px) {
  .parallax-bg .layer .text h1,
  .parallax-bg .layer .text .title-style {
    font-size: 2em;
  }
}
@media only screen and (min-width: 992px) {
  .parallax-bg .layer .text h1,
  .parallax-bg .layer .text .title-style {
    font-size: 3em;
  }
}
@media only screen and (max-width: 767px) {
  .parallax-bg .layer .text h1,
  .parallax-bg .layer .text .title-style {
    font-size: 2em;
  }
}
@media only screen and (min-width: 768px) {
  .parallax-bg .layer .text {
    width: 750px;
  }
}
@media only screen and (min-width: 992px) {
  .parallax-bg .layer .text {
    width: 970px;
  }
}
@media only screen and (min-width: 1200px) {
  .parallax-bg .layer .text {
    width: 1170px;
  }
}
.parallax-bg .background-webp {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.parallax-bg .background-webp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.parallax-bg#health-corner-bg {
  height: calc(100vh + 100px);
}
.parallax-bg#health-corner-bg .layer .text {
  margin-top: 20%;
}
.parallax-bg#health-corner-bg .layer .text .health-corner-title {
  float: right;
  margin-right: 15px;
  text-align: center;
}
.parallax-bg#health-corner-bg .layer .text .health-corner-title h1,
.parallax-bg#health-corner-bg .layer .text .health-corner-title .title-style {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .parallax-bg#health-corner-bg .layer .text .hc-title {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .parallax-bg#health-corner-bg .layer .text {
    position: absolute;
    margin: 0 auto;
    bottom: 40%;
    top: auto;
    left: 0;
    right: 0;
    text-align: center;
  }
  .parallax-bg#health-corner-bg .layer .text .health-corner-title {
    float: none;
    text-align: center;
  }
  .parallax-bg#health-corner-bg .layer .text .health-corner-title h1,
  .parallax-bg#health-corner-bg .layer .text .health-corner-title .title-style {
    margin-bottom: 0;
  }
}
.parallax-bg#health-corner-bg #button-healthcorner {
  font-size: 1.1em;
}
.parallax-bg#health-corner-bg #button-healthcorner-mobile {
  position: absolute;
  margin: 0 auto;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1em;
}
.parallax-bg#about-us-bg {
  height: calc(100vh + 100px);
}
.parallax-bg#about-us-bg .layer .text {
  margin-top: 10%;
}
.parallax-bg#about-us-bg .layer .text #title {
  float: right;
  margin-right: 15px;
}
.parallax-bg#about-us-bg .layer .text #title h1,
.parallax-bg#about-us-bg .layer .text #title .title-style {
  margin-bottom: 60px;
}
@media only screen and (max-width: 480px) {
  .parallax-bg#about-us-bg .layer .text {
    position: absolute;
    margin: 0 auto;
    bottom: 40%;
    top: auto;
    left: 0;
    right: 0;
    text-align: center;
  }
  .parallax-bg#about-us-bg .layer .text #title {
    float: none;
    text-align: center;
  }
  .parallax-bg#about-us-bg .layer .text #title h1,
  .parallax-bg#about-us-bg .layer .text #title .title-style {
    margin-bottom: 0;
  }
}
.parallax-bg#about-us-bg #button-ourvalues-mobile {
  position: absolute;
  margin: 0 auto;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4em;
}
.parallax-bg#our-product-bg {
  height: calc(100vh + 100px);
}
.parallax-bg#our-product-bg .product-section {
  width: 50%;
  margin-left: 50%;
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .parallax-bg#our-product-bg .product-section .title-style {
    margin-bottom: 30px !important;
  }
}
.parallax-bg#our-product-bg .layer .text {
  margin-top: 10%;
  text-align: center;
}
.parallax-bg#our-product-bg .layer .text h1,
.parallax-bg#our-product-bg .layer .text .title-style {
  margin-bottom: 60px;
}
@media only screen and (max-width: 480px) {
  .parallax-bg#our-product-bg .layer .text {
    position: absolute;
    margin: 0 auto;
    bottom: 40%;
    top: auto;
    left: 0;
    right: 0;
    text-align: center;
  }
  .parallax-bg#our-product-bg .layer .text #title {
    float: none;
    text-align: center;
  }
  .parallax-bg#our-product-bg .layer .text #title h1,
  .parallax-bg#our-product-bg .layer .text #title .title-style {
    margin-bottom: 0;
  }
}
.parallax-bg#our-product-bg #button-ourproduct-mobile {
  position: absolute;
  margin: 0 auto;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4em;
}
.parallax-bg#our-service-bg {
  height: calc(100vh - 52px);
}
.parallax-bg#our-service-bg .layer .text {
  margin-top: 0;
  top: 36%;
}
.parallax-bg#our-service-bg .layer .text #title {
  float: right;
}
.parallax-bg#our-service-bg .layer .text #title h1,
.parallax-bg#our-service-bg .layer .text #title .title-style {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .parallax-bg#our-service-bg .layer .text {
    position: absolute;
    margin: 0 auto;
    bottom: 40%;
    top: auto;
    left: 0;
    right: 0;
    text-align: center;
  }
  .parallax-bg#our-service-bg .layer .text #title {
    float: none;
    text-align: center;
  }
  .parallax-bg#our-service-bg .layer .text #title h1,
  .parallax-bg#our-service-bg .layer .text #title .title-style {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  .parallax-bg#our-service-bg {
    position: relative;
  }
}
.parallax-bg#our-service-bg #button-ouraction-mobile {
  position: absolute;
  margin: 0 auto;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4em;
}
/* Directors Section */
#directors-content {
  padding-bottom: 60px;
}
#directors-content .directors-wrapper {
  display: grid;
  justify-content: center;
  text-align: center;
  margin: 45px 0;
}
#directors-content .directors-wrapper p {
  margin-bottom: 5px !important;
  line-height: 1.5;
}
#directors-content .directors-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#directors-content .directors-image {
  width: 160px;
  height: 160px;
  margin-bottom: 10px;
}
#directors-content .directors-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#directors-content .directors-image-detail {
  width: 300px;
  height: 450px;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 480px) {
  #directors-content .directors-image-detail {
    width: 250px;
    height: 300px;
    position: unset;
  }
}
@media only screen and (max-width: 1200px) {
  #directors-content .directors-image-detail {
    width: 250px;
    height: 300px;
    position: unset;
  }
}
#directors-content .directors-image-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#directors-content .directors-name {
  font-weight: bold;
}
#directors-content .directors-name-detail {
  font-weight: bold;
  font-size: 60px;
  line-height: 1.1 !important;
  max-height: 132px;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  #directors-content .directors-name-detail {
    font-size: 30px;
  }
}
#directors-content .directors-position {
  width: 160px;
  font-size: 14px;
}
#directors-content .directors-position-detail {
  font-size: 28px;
}
@media only screen and (max-width: 480px) {
  #directors-content .directors-position-detail {
    font-size: 22px;
  }
}
#directors-content .directors-desc {
  height: 80px;
}
#directors-content .directors-card {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 80px 0;
  display: flex;
  padding: 0 30px;
  height: 500px;
  position: relative;
}
@media only screen and (max-width: 480px) {
  #directors-content .directors-card {
    display: grid;
    padding: 20px;
    justify-items: center;
    text-align: center;
    height: auto;
    position: unset;
    margin-top: 45px !important;
  }
}
@media only screen and (max-width: 1200px) {
  #directors-content .directors-card {
    display: grid;
    padding: 20px;
    justify-items: center;
    text-align: center;
    height: auto;
    position: unset;
  }
}
#directors-content .directors-detail-desc {
  padding-top: 60px;
  width: 600px;
  padding-left: 60px;
  position: absolute;
  right: 45px;
}
@media only screen and (max-width: 480px) {
  #directors-content .directors-detail-desc {
    width: auto;
    padding-top: 10px;
    padding-left: 0;
    position: unset;
  }
}
@media only screen and (max-width: 1200px) {
  #directors-content .directors-detail-desc {
    width: auto;
    padding-top: 10px;
    padding-left: 0;
    position: unset;
  }
}
#directors-content .directors-detail-desc p {
  margin-bottom: 5px;
  line-height: 1.5;
}
#directors-content .directors-detail-desc_scroll {
  height: 215px;
  overflow-y: scroll;
}
@media only screen and (max-width: 480px) {
  #directors-content .directors-detail-desc_scroll {
    height: unset;
    overflow-y: unset;
  }
}
#directors-content .directors-btn-back {
  font-size: 18px;
}
#directors-content .directors-btn-back i {
  margin-right: 10px;
}
#investor-content .contact-investor-wrapper {
  display: flex;
  align-items: start;
  margin-bottom: 100px;
}
#investor-content .contact-investor-wrapper img {
  width: 50px;
}
@media only screen and (max-width: 480px) {
  #investor-content .contact-investor-wrapper {
    display: grid;
    justify-items: center;
  }
  #investor-content .contact-investor-wrapper img {
    margin-bottom: 20px;
    width: 60px;
  }
}
#investor-content .contact-investor-content {
  margin-left: 20px;
}
#investor-content .contact-investor-content p {
  margin-bottom: 0;
}
#investor-content .contact-investor-content__email {
  font-weight: bold;
}
#investor-content .contact-investor-content__address {
  font-size: 14px;
}
#investor-content .contact-investor-content__address-width {
  width: 190px;
}
#investor-content .annual-report {
  padding-bottom: 80px;
  padding-top: 40px;
}
#investor-content .annual-report .annual-wrapper {
  cursor: pointer;
}
#investor-content .annual-report .annual-wrapper .annual-image {
  width: 189px;
  height: 240px;
  border: 1px solid #ccc;
}
#investor-content .annual-report .annual-wrapper .annual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#investor-content .annual-report .annual-wrapper .annual-content {
  border: solid 1px #ccc;
  border-top: none;
  padding: 10px 10px 20px 10px;
  margin-bottom: 45px;
  height: 150px;
  position: relative;
}
#investor-content .annual-report .annual-wrapper .annual-content p {
  margin-bottom: 5px;
  line-height: 1.5;
}
@media only screen and (max-width: 480px) {
  #investor-content .annual-report .annual-wrapper .annual-content {
    width: 189px;
    height: auto;
  }
}
#investor-content .annual-report .annual-wrapper .annual-content.public-expose {
  height: 168px;
}
#investor-content .annual-report .annual-wrapper .annual-content .btn-share {
  position: absolute;
  bottom: 10px;
  font-size: 10px;
  color: #fff;
  padding: 5px 10px;
  background-color: #7ac33b;
  z-index: 999;
}
#investor-content
  .annual-report
  .annual-wrapper
  .annual-content
  .btn-share:hover {
  background-color: #649c34;
}
#investor-content
  .annual-report
  .annual-wrapper
  .annual-content
  .counting-view {
  position: absolute;
  right: 5px;
  bottom: 10px;
  font-size: 10px;
}
#investor-content
  .annual-report
  .annual-wrapper
  .annual-content
  .counting-view
  i {
  margin-right: 5px;
}
#investor-content .annual-report .annual-wrapper .annual-title {
  font-weight: bold;
  font-size: 14px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#investor-content .annual-report .annual-wrapper .annual-date {
  font-size: 13px;
  font-style: italic;
}
#investor-content .annual-report .annual-wrapper .annual-desc {
  font-size: 11px;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#investor-content .annual-report .annual-wrapper:hover .annual-image {
  border-color: #74c253;
}
#investor-content .annual-report .annual-wrapper:hover .annual-content {
  border-color: #74c253;
}
#investor-content .annual-report .annual-wrapper:hover .annual-title {
  color: #74c253;
}
#investor-content .annual-report .annual-wrapper:hover .annual-date {
  color: #74c253;
}
#investor-content .annual-report .annual-wrapper:hover .annual-desc {
  color: #74c253;
}
@media only screen and (max-width: 480px) {
  #investor-content .annual-report .annual-wrapper {
    display: grid;
    justify-items: center;
  }
}
#investor-content .financial-report {
  padding-bottom: 80px;
  padding-top: 40px;
}
#investor-content .financial-report .financial-year-title {
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  #investor-content .financial-report .financial-year-title {
    margin-left: 30px;
  }
}
#investor-content .financial-report .financial-wrapper {
  margin-bottom: 45px;
}
#investor-content .financial-report .financial-wrapper .financial-content {
  border: solid 1px #ccc;
  padding: 20px 10px;
  border-top: none;
  height: 135px;
}
#investor-content .financial-report .financial-wrapper .financial-content p {
  margin-bottom: 5px;
  line-height: 1.5;
}
@media only screen and (max-width: 480px) {
  #investor-content .financial-report .financial-wrapper .financial-content {
    width: 189px;
    height: auto;
  }
}
#investor-content .financial-report .financial-wrapper .financial-content-head {
  display: flex;
  border-top: solid 1px #ccc;
  height: 90px;
}
#investor-content
  .financial-report
  .financial-wrapper
  .financial-content-head
  img {
  width: 30px;
}
#investor-content .financial-report .financial-wrapper .financial-head-title {
  margin-left: 10px;
}
#investor-content .financial-report .financial-wrapper .financial-title {
  font-weight: bold;
  font-size: 13px;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#investor-content .financial-report .financial-wrapper .financial-date {
  font-size: 13px;
  font-style: italic;
}
#investor-content .financial-report .financial-wrapper .financial-desc {
  font-size: 11px;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#investor-content
  .financial-report
  .financial-wrapper:hover
  .financial-content {
  border-color: #74c253;
}
#investor-content .financial-report .financial-wrapper:hover .financial-title {
  color: #74c253;
}
#investor-content .financial-report .financial-wrapper:hover .financial-date {
  color: #74c253;
}
#investor-content .financial-report .financial-wrapper:hover .financial-desc {
  color: #74c253;
}
@media only screen and (max-width: 480px) {
  #investor-content .financial-report .financial-wrapper {
    display: grid;
    justify-items: center;
  }
}
#article-section {
  background-color: #fff;
}
.side-nav {
  position: fixed;
  top: 200px;
  z-index: 3;
  display: none;
}
.side-nav-career {
  display: block;
  left: 80px;
}
@media only screen and (max-width: 1330px) {
  .side-nav-career {
    max-width: 100px;
  }
  .side-nav-career .side-nav-content ul li a {
    display: flex;
  }
}
.side-nav .side-nav-content ul {
  margin: 0;
  padding: 0;
}
.side-nav .side-nav-content ul:before {
  content: '';
  position: absolute;
  height: 98%;
  width: 1px;
  left: 14px;
  background-color: #7ac33b;
}
.side-nav .side-nav-content ul li {
  margin: 0 0 20px;
  list-style: none;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.side-nav .side-nav-content ul li:before {
  content: '';
  background-color: #7ac33b;
  border: 3px solid #7ac33b;
  width: 15px;
  height: 15px;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 8px;
  top: 0;
  margin-right: 15px;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.side-nav .side-nav-content ul li:last-child {
  margin-bottom: 0;
}
.side-nav .side-nav-content ul li a {
  padding-left: 40px;
  color: #7ac33b;
  text-decoration: none;
  font-size: 1.00375001em;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.side-nav .side-nav-content ul li.active {
  margin-bottom: 150px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.side-nav .side-nav-content ul li.active a {
  font-size: 1.17104168em;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.side-nav .side-nav-content ul li.active:before {
  background-color: #fff;
  border: 5px solid #7ac33b;
  width: 30px;
  height: 30px;
  top: -4px;
  left: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.side-nav .side-nav-content ul li.active:last-child {
  margin-bottom: 0;
}
.side-nav .side-nav-content.white ul:before {
  background-color: #fff;
  box-shadow: 1px 1px 12px #000;
  left: 15px;
}
.side-nav .side-nav-content.white ul li:before {
  background-color: #fff;
  border: 3px solid #fff;
  box-shadow: 1px 1px 45px #000;
}
.side-nav .side-nav-content.white ul li a {
  color: #fff;
  text-shadow: 1px 1px 4px #000000;
}
.side-nav .side-nav-content.white ul li.active:before {
  background-color: #7ac33b;
  border: 5px solid #fff;
}
.career-about-wrapper {
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
}
.career-about-title p {
  color: #7ac33b !important;
  font-size: 24px !important;
  font-weight: bold !important;
  margin-bottom: 30px;
}
.career-about-view {
  text-align: right;
  margin-bottom: 15px;
}
.career-about-view a {
  color: #2d2d2d !important;
  font-size: 16px !important;
  font-weight: bold !important;
}
#section-article-mobile .article-item {
  margin-bottom: 15px;
}
#section-article-mobile .article-item #view-more {
  display: block;
  color: #7ac33b;
  padding: 10px 0;
  box-sizing: border-box;
  background-color: #f0f0f0;
}
#section-article-mobile .article-item #view-more:active,
#section-article-mobile .article-item #view-more:hover {
  text-decoration: none;
}
#section-article-mobile .article-item .article-image {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
}
#section-article-mobile .article-item .article-image img {
  object-fit: cover;
  object-position: center;
}
#section-article-mobile .article-item .article-content span.date {
  font-size: 0.83645834em;
  font-style: italic;
  color: #979797;
}
#section-article-mobile .article-item .article-content h3 {
  font-size: 1.33833335em;
  margin: 8px 0;
  line-height: 24px;
  font-weight: 700;
  overflow: hidden;
}
#section-article-mobile .article-item .article-content h3 a {
  color: #424242;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#section-article-mobile .article-item .article-content h3 a:hover {
  color: #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 480px) {
  #section-article-mobile .article-item .article-content span.date {
    font-size: 0.92010418em;
  }
  #section-article-mobile .article-item .article-content h3 {
    font-size: 1.00375001em;
    height: 48px;
  }
}
#section-article {
  margin: 40px auto;
  width: 100%;
  height: 400px;
}
.breadcrumbs {
  margin-bottom: 25px;
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
}
.breadcrumbs ul li {
  list-style: none;
  font-weight: 700;
  color: #424242;
  display: inline-block;
  margin-right: 5px;
  padding-right: 15px;
  position: relative;
  font-size: 14px !important;
}
.breadcrumbs ul li:after {
  content: '\f105';
  position: absolute;
  top: -2px;
  right: 0;
  font-size: 18px;
  font-family: FontAwesome;
}
.breadcrumbs ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  font-weight: bold;
}
.breadcrumbs ul li:last-child:after {
  content: '';
}
.breadcrumbs ul li a {
  font-weight: 300;
  color: #424242;
}
.breadcrumbs ul li h1 {
  font-size: inherit;
}
.tab-section.styled .tab-section-nav {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  .tab-section.styled .tab-section-nav {
    padding-left: 10px;
    padding-right: 10px;
    background-color: #7ac33b;
  }
}
.tab-section.styled .tab-section-nav:before {
  content: '';
  position: absolute;
  height: 1px;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #7ac33b;
  width: 50%;
}
@media only screen and (max-width: 480px) {
  .tab-section.styled .tab-section-nav:before {
    display: none;
  }
}
.tab-section.styled ul {
  border-bottom: 0;
}
.tab-section.styled ul li {
  position: relative;
  width: 50%;
  text-align: center;
}
.tab-section.styled ul li a,
.tab-section.styled ul li a:hover,
.tab-section.styled ul li a:focus,
.tab-section.styled ul li a:active {
  color: #7ac33b !important;
  font-size: 16px;
  text-decoration: none;
  border: 0;
  background-color: transparent !important;
  padding-top: 35px;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.tab-section.styled ul li a:before {
  content: '';
  background-color: #7ac33b;
  border: 3px solid #7ac33b;
  width: 22px;
  height: 22px;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.tab-section.styled ul li a.active {
  font-weight: 700;
}
.tab-section.styled ul li a.active:before {
  background-color: #fff;
  border: 5px solid #7ac33b;
  width: 30px;
  height: 30px;
  top: -4px;
  left: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 480px) {
  .tab-section.styled ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
  }
  .tab-section.styled ul li a,
  .tab-section.styled ul li a:hover,
  .tab-section.styled ul li a:focus,
  .tab-section.styled ul li a:active {
    padding-left: 45px;
    padding-top: 10px;
    color: #fff !important;
  }
  .tab-section.styled ul li a {
    display: block;
    width: 100%;
  }
  .tab-section.styled ul li a:before {
    margin: 0;
    top: calc((50% - 11px));
    left: 5px;
    background-color: #fff;
    border-color: #fff;
  }
  .tab-section.styled ul li a.active:before {
    top: calc((50% - 15px));
    left: 0;
    background-color: #7ac33b;
    border-color: #fff;
  }
}
.tab-section.styled .tab-content .tab-pane img {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .tab-section.styled .tab-content .tab-pane img {
    width: 95%;
  }
}
.tab-section-generated .tab-content {
  min-height: 200px;
}
.tab-section-generated .tab-content .tab-content-item {
  position: relative;
  display: none;
}
.tab-section-generated .tab-content .tab-content-item h4,
.tab-section-generated .tab-content .tab-content-item img,
.tab-section-generated .tab-content .tab-content-item p {
  top: -10px;
  opacity: 0;
}
.tab-section-generated .tab-content .tab-content-item img {
  max-height: 186px;
}
.tab-section-generated .tab-content .tab-content-item.active {
  display: block;
}
.tab-section-generated .tab-pagination {
  position: relative;
  margin: 20px auto 0;
  height: 50px;
}
.tab-section-generated .tab-pagination ul {
  position: absolute;
  padding: 0;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.tab-section-generated .tab-pagination ul:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #7ac33b;
}
.tab-section-generated .tab-pagination ul li {
  position: absolute;
  list-style: none;
  width: 30px;
  text-align: center;
  padding-top: 35px;
  cursor: pointer;
}
.tab-section-generated .tab-pagination ul li:before {
  content: '';
  background-color: #7ac33b;
  border: 3px solid #7ac33b;
  width: 22px;
  height: 22px;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.tab-section-generated .tab-pagination ul li a {
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  color: #7ac33b;
  font-size: 16px;
  text-decoration: none;
  width: 70%;
}
.tab-section-generated .tab-pagination ul li.active a {
  font-weight: 700;
}
.tab-section-generated .tab-pagination ul li.active:before {
  background-color: #fff;
  border: 5px solid #7ac33b;
  width: 30px;
  height: 30px;
  top: -4px;
  left: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.tab-section-generated .tab-pagination ul li:hover:before {
  background-color: #558829;
  border: 3px solid #558829;
}
.tab-section-generated .tab-pagination ul li:hover.active:before {
  background-color: #6eaf35;
  border: 5px solid #558829;
}
@media only screen and (max-width: 767px) {
  .tab-section-generated .tab-pagination ul {
    left: -14px;
  }
}
@media only screen and (min-width: 768px) {
  .tab-section-generated .tab-pagination ul {
    width: 45%;
  }
}
.main-content {
  overflow: hidden;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.main-content.error.notfound h1,
.main-content.error.notfound .title-style {
  font-size: 70px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
.main-content.error.notfound h1,
.main-content.error.notfound .title-style,
.main-content.error.notfound h3 {
  color: #7ac33b;
}
.main-content.error.notfound p {
  color: #7ac33b;
}
.main-content.error.notfound .panel {
  margin-top: 95px;
  margin-bottom: 95px;
  border: 0;
  box-shadow: none;
}
.main-content.error.notfound .panel .panel-body {
  padding-bottom: 50px;
}
.main-content.article p,
.main-content.article ul,
.main-content.article ol {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 2;
  color: #828282;
  margin-bottom: 20px;
}
.main-content.article .ul_decimal {
  list-style-type: decimal;
}
.main-content.article .ul_upper-latin {
  list-style-type: upper-latin;
}
.main-content.article .ul_lower-latin {
  list-style-type: lower-latin;
}
.main-content.article a {
  color: #7ac33b;
  font-weight: 700;
}
.main-content.article .products-detail {
  margin-top: 60px;
}
.main-content.article .products-detail ul {
  padding: 0;
  margin: 10px 0;
  list-style: none;
}
.main-content.article .products-detail li {
  display: inline-block;
}
.main-content.article .products-detail a {
  display: inline-block;
}
.main-content.article .products-detail img {
  height: 50px;
}
.main-content.article .dropcaps:first-letter {
  float: left;
  font-size: 30px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  color: #424242;
  line-height: 6px;
  padding-top: 7px;
  padding-right: 2px;
  padding-left: 0;
}
.main-content.article.notfound h1,
.main-content.article.notfound .title-style {
  font-size: 90px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
.main-content.article.notfound h1,
.main-content.article.notfound .title-style,
.main-content.article.notfound h3 {
  color: #7ac33b;
}
.main-content.article.notfound p {
  color: #7ac33b;
}
.main-content.article.notfound .panel-body {
  padding-bottom: 50px;
}
.main-content.hide-animate {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
h2.about {
  text-align: center;
  color: #7ac33b;
  font-weight: bold;
  font-size: 3em;
  margin: 3rem 0 3rem 0;
}
#vision-mission #about-vision {
  margin-top: 50px;
  margin-bottom: 100px;
}
#vision-mission #about-mission {
  margin-bottom: 100px;
}
#vision-mission h2 {
  text-align: center;
  color: #7ac33b;
  font-weight: bold;
  font-size: 3em;
  margin: 0;
}
#vision-mission span {
  display: block;
  text-align: center;
  min-height: 70px;
  font-size: 16px;
}
#vision-mission img {
  transform: scale(0.9);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#vision-mission .mmission-item:hover img {
  transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
blockquote {
  position: relative;
  text-align: center;
  margin: 20px auto;
  border-left: 0;
  padding: 0;
}
blockquote p {
  color: #7ac33b !important;
}
blockquote.start {
  margin: 50px auto;
}
blockquote.start p {
  font-size: 4em;
  margin-bottom: 22px;
}
blockquote.start .author {
  font-size: 1.36em;
}
blockquote.start:after {
  content: '';
  width: 100px;
  height: 1px;
  background-color: #7ac33b;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
blockquote.inside p {
  font-size: 1.6em !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  line-height: 30px !important;
  font-style: italic !important;
  font-weight: 300 !important;
}
blockquote.unique p {
  font-size: 30px !important;
  line-height: 48px !important;
}
@media only screen and (max-width: 767px) {
  blockquote.unique p {
    font-size: 1.8em !important;
    line-height: 1.5 !important;
  }
}
blockquote.unique:after,
blockquote.unique:before {
  content: url(../images/quote-sign.png);
  display: inline-block;
}
blockquote.unique:before {
  margin-bottom: 15px;
}
blockquote.unique:after {
  margin-top: 25px;
  transform: rotate(180deg);
}
.product-article blockquote p {
  margin-bottom: 0 !important;
  font-size: 30px !important;
  line-height: 48px !important;
}
@media only screen and (max-width: 767px) {
  .product-article blockquote p {
    font-size: 1.8em !important;
    line-height: 1.5 !important;
  }
}
.product-article blockquote:after,
.product-article blockquote:before {
  content: url(../images/quote-sign.png);
  display: inline-block;
}
.product-article blockquote:before {
  margin-bottom: 15px;
}
.product-article blockquote:after {
  margin-top: 25px;
  transform: rotate(180deg);
}
.quote {
  position: relative;
  text-align: center;
  color: #7ac33b;
  margin: 20px auto;
}
.quote h1,
.quote h2,
.quote .title-style {
  color: #7ac33b;
  font-weight: 300;
  margin: 0;
}
.quote h1 strong,
.quote h2 strong,
.quote .title-style strong {
  font-weight: 700;
}
.quote.start {
  margin: 0px auto 50px auto;
}
.quote.start h1,
.quote.start .title-style {
  font-size: 3.7em;
  margin-bottom: 22px;
}
.quote.start .author {
  font-size: 1.36em;
}
.quote.start:after {
  content: '';
  width: 100px;
  height: 1px;
  background-color: #7ac33b;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.quote.start .logo-wrapper img {
  max-width: 200px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 480px) {
  .quote.start {
    margin: 10px auto 35px auto;
  }
  .quote.start h1,
  .quote.start .title-style {
    font-size: 35px;
  }
  .quote.start .logo-wrapper img {
    max-width: 175px;
    margin-bottom: 40px;
  }
}
.swiper-parent-container {
  padding-left: 40px;
  padding-right: 40px;
}
.article-swiper-item {
  height: 388px;
}
.career-about-item {
  height: 200px !important;
  border: 1px solid #eee;
}
.career-about-item:hover .overlay {
  opacity: 1;
}
.career-about-item:hover .career-about-item_text {
  display: none;
}
.career-about-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(122, 195, 59, 0.6);
  padding: 15px;
}
.career-about-item .overlay .text {
  color: #fff;
}
.career-about-item_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.career-about-item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.career-about-item_text {
  position: absolute;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  padding: 5px 10px;
  padding-bottom: 30px;
}
.career-about-item_text p {
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}
.career-about-item_date {
  font-size: 11px !important;
}
.career-about-item_title {
  font-weight: 600 !important;
  font-size: 14px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.career-about-item_icon {
  float: right;
  font-size: 12px !important;
  padding: 3px 5px;
  border: 1px solid #eee;
  border-radius: 50%;
  line-height: 1;
  position: absolute;
  bottom: 5px;
  right: 10px;
  color: #eee;
}
.career-about-item_icon.green {
  border-color: #7ac33b;
  background-color: #7ac33b !important;
  color: #fff !important;
  opacity: 1 !important;
}
.career-about-item_position {
  font-weight: bold !important;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px !important;
}
.no-border-bottom {
  border-bottom: none !important;
}
@media only screen and (min-width: 768px) {
  .article-swiper-item {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .article-swiper-item {
    width: 260px;
  }
  .career-about-item {
    width: 100% !important;
  }
}
.article-swiper-item .article-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.article-swiper-item .article-image img {
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 768px) {
  .article-swiper-item .article-image {
    width: inherit;
    height: 150px;
  }
  .article-swiper-item .article-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
  .career-about-item .article-image {
    height: 150px !important;
  }
  /*.article-swiper-item .article-image a,
	.article-swiper-item .article-image a img {
		width: 100%;
		height: auto;
	}*/
}
@media only screen and (min-width: 1200px) {
  .article-swiper-item .article-image {
    width: inherit;
    height: 195px;
  }
  .article-swiper-item .article-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
  /*.article-swiper-item .article-image a img {
		width: inherit;
		height: inherit
	}*/
}
.article-swiper-item .article-image:after {
  content: '';
  position: absolute;
  background-color: transparent;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.article-swiper-item .article-image:hover {
  cursor: pointer;
}
.article-swiper-item .article-image:hover:after {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.article-swiper-item .article-content {
  padding: 10px;
}
.article-swiper-item .article-content span.date {
  font-size: 0.92010418em;
  font-style: italic;
  color: #979797;
}
.article-swiper-item .article-content h3 {
  font-size: 1.33833335em;
  margin: 8px 0;
  line-height: 24px;
  height: 52px;
  font-weight: bold;
  border-bottom: solid 1px #424242;
  overflow: hidden;
}
.article-swiper-item .article-content h3 a {
  color: #424242;
  display: -webkit-box;
  text-decoration: none;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.article-swiper-item .article-content h3 a:hover {
  color: #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.article-swiper-item .article-content p {
  font-size: 0.95em;
  color: #424242;
  overflow: hidden;
  height: 75px;
}
.swiper-button-next,
.swiper-button-prev {
  background-image: url(../images/icons.png);
  background-size: auto;
  background-repeat: no-repeat;
  width: 52.5px;
  height: 82px;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-prev {
  left: 0;
  background-position: 0 0;
}
.swiper-button-next {
  right: 0;
  background-position: -52.5px 0;
}
a.button,
button.button {
  outline: 0;
  text-decoration: none;
}
a.button.fill,
button.button.fill {
  background-color: #7ac33b;
}
a.button.outline,
button.button.outline {
  border: 2px solid #fff;
  padding: 10px;
}
a.button.landing,
button.button.landing {
  position: relative;
  display: inline-block;
  font-size: 1.6em;
  font-weight: bold;
  color: #fff;
  width: 260px;
  overflow: hidden;
  padding: 15px 50px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a.button.landing.outline,
button.button.landing.outline {
  border-width: 3px;
  border-color: #fff;
}
a.button.landing:before,
button.button.landing:before {
  position: absolute;
  display: block;
  content: attr(data-text);
  left: -260px;
  top: 0;
  padding: 15px 20px;
  background-color: #fff;
  width: 260px;
  height: inherit;
  color: #7ac33b;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.button.landing span,
button.button.landing span {
  position: relative;
  z-index: 1;
  top: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a.button.landing:hover:before,
button.button.landing:hover:before {
  left: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.13, 1);
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.13, 1);
}
a.button.landing:hover span,
button.button.landing:hover span {
  top: 68px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.13, 1);
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.13, 1);
}
.media-share {
  display: none;
  text-align: center;
  z-index: 99;
}
.social-media .media-share i {
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  .media-share {
    display: block;
  }
}
.media-share {
  -webkit-backface-visibility: hidden;
}
.media-share.affix {
  width: 67.5px;
}
.media-share.affix-top {
  position: static;
}
.media-share.affix-bottom {
  width: 67.5px;
  position: absolute;
}
.media-share span {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #979797;
}
.media-share .button-share-article {
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
  font-size: 20px;
  border: 0;
  background-color: #7ac33b;
  color: #fff;
  margin: 0 auto 10px;
  outline: 0;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.media-share .button-share-article:hover {
  background-color: #94cf62;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.button-media {
  color: #7ac33b;
  background-color: transparent;
  border: 0;
  font-size: 20px;
  width: 25px;
  height: 25px;
  outline: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.button-media.facebook {
  background-image: url(../images/icons.png);
  background-position: 0 36px;
}
.button-media.twitter {
  background-image: url(../images/icons.png);
  background-position: -36px 36px;
}
.button-media .instagram {
  background-image: url(../images/icons.png);
  background-position: -70px 36px;
}
.button-media:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.button-media-footer {
  color: #696969;
  background-color: transparent;
  border: 0;
  font-size: 20px;
  width: 25px;
  height: 25px;
  outline: 0;
  margin-right: 2px;
  margin-bottom: 10px;
  opacity: 1;
  display: inline-block;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.button-media-footer.facebook {
  background-image: url(../images/icons.png);
  background-position: -13px 36px;
}
.button-media-footer.twitter {
  background-image: url(../images/icons.png);
  background-position: -39px 36px;
}
.button-media-footer.instagram {
  background-image: url(../images/icons.png);
  background-position: -66px 36px;
}
.button-media-footer:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.panel {
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.panel .panel-body .tab-tite {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
.panel#tab-achievements,
.panel#tab-research {
  margin: 55px auto;
}
.panel#tab-achievements .panel-body,
.panel#tab-research .panel-body {
  padding: 35px 50px;
}
@media only screen and (max-width: 767px) {
  .panel#tab-achievements .panel-body,
  .panel#tab-research .panel-body {
    padding: 35px 25px;
  }
}
.panel#tab-achievements .panel-body h2:before,
.panel#tab-research .panel-body h2:before {
  position: absolute;
  display: block;
  content: attr(data-before);
  left: 0;
  font-size: 2em;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .panel#tab-achievements .panel-body h2,
  .panel#tab-research .panel-body h2 {
    display: block;
    padding-left: 0;
  }
  .panel#tab-achievements .panel-body h2:before,
  .panel#tab-research .panel-body h2:before {
    position: relative;
    display: inline-block;
    font-size: inherit;
  }
}
.panel#tab-achievements .panel-body h4,
.panel#tab-research .panel-body h4 {
  position: relative;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  color: #696969;
  margin-bottom: 10px;
}
.panel#tab-achievements .panel-body p,
.panel#tab-research .panel-body p {
  position: relative;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
.panel#tab-achievements h2,
.panel#tab-research h2 {
  position: relative;
  padding-left: 38px;
  font-weight: 500;
  color: #7ac33b;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.panel#tab-achievements .panel-body h2 {
  text-align: left;
}
.panel#tab-achievements .panel-body img {
  position: relative;
}
.panel#tab-research .panel-body h2 {
  text-align: center;
}
.panel#tab-research .panel-body .tab-content-item {
  height: 186px;
}
@media only screen and (max-width: 480px) {
  .panel#tab-research .panel-body .tab-content-item {
    text-align: center;
    height: auto;
  }
}
.panel#tab-research .panel-body .tab-content-item h4 {
  padding-right: 200px;
  display: inline-block;
  margin: 10% 0;
}
@media only screen and (max-width: 480px) {
  .panel#tab-research .panel-body .tab-content-item h4 {
    margin: 0;
    display: block;
    padding-right: 0;
  }
}
.panel#tab-research .panel-body img {
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 480px) {
  .panel#tab-research .panel-body img {
    display: block;
    position: relative;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .panel#tab-achievements .panel-body .img,
  .panel#tab-research .panel-body .img {
    text-align: center !important;
    float: none !important;
  }
}
.panel#tab-achievements .panel-body h2 {
  position: relative;
  padding-left: 0;
  text-align: center;
  font-weight: 300;
  font-size: 3em;
}
.panel#tab-achievements .panel-body h2 small {
  font-weight: 300;
  color: inherit;
}
.rm-menu-dummy {
  position: fixed;
  top: 200px;
}
.rm-menu-dummy a {
  color: #7ac33b;
  font-weight: 400;
  font-size: 18px;
}
.rm-container .rm-content {
  position: fixed;
}
.rm-container .rm-content .rm-list {
  position: relative;
  width: inherit;
  height: inherit;
}
.rm-container .rm-content .rm-list:before {
  content: '';
  display: block;
  position: absolute;
  width: inherit;
  height: inherit;
  border: 1px solid #7ac33b;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.rm-container .rm-content .rm-list ul {
  position: relative;
  margin: 0;
  padding: 0;
}
.rm-container .rm-content .rm-list ul li a {
  font-size: 14px;
  color: #7ac33b;
  text-decoration: none;
}
.tv-container {
  margin: 35px auto;
  padding-bottom: 100px;
}
.tv-container .tv-title {
  margin-bottom: 50px;
}
.tv-container .tv-title h2 {
  text-align: center;
  color: #7ac33b;
  font-weight: 700;
  font-size: 3em;
  font-family: 'Raleway', sans-serif;
}
.tv-container .tv-title h2 small {
  color: inherit;
}
.tv-container .tv-content {
  position: relative;
}
.tv-container .tv-content:before {
  display: block;
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #7ac33b;
  left: 0;
  right: 0;
  top: 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  .tv-container .tv-content:before {
    left: 0;
    right: auto;
  }
}
.tv-container .tv-content .tv-content-item {
  position: relative;
  width: 50%;
  padding-right: 30px;
  margin-bottom: 20px;
}
.tv-container .tv-content .tv-content-item.go-left {
  left: 50%;
  padding-left: 30px;
  padding-right: 0;
}
.tv-container .tv-content .tv-content-item.go-left:before {
  left: -10px;
}
.tv-container .tv-content .tv-content-item.go-left .tv-detail,
.tv-container .tv-content .tv-content-item.go-left .tv-img,
.tv-container .tv-content .tv-content-item.go-left .tv-label,
.tv-container .tv-content .tv-content-item.go-left .tv-year {
  left: -10px;
}
@media only screen and (max-width: 480px) {
  .tv-container .tv-content .tv-content-item.go-left {
    left: 0;
  }
}
.tv-container .tv-content .tv-content-item:before {
  display: block;
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background-color: #7ac33b;
  right: -10px;
  top: 20px;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.tv-container .tv-content .tv-content-item.no-dot:before {
  display: none;
}
.tv-container .tv-content .tv-content-item .tv-detail,
.tv-container .tv-content .tv-content-item .tv-img,
.tv-container .tv-content .tv-content-item .tv-label,
.tv-container .tv-content .tv-content-item .tv-year {
  font-family: 'Raleway', sans-serif;
  position: relative;
  opacity: 0;
  right: -10px;
}
.tv-container .tv-content .tv-content-item .tv-year {
  position: relative;
  font-weight: 700;
  font-size: 3em;
  color: #7ac33b;
}
.tv-container .tv-content .tv-content-item .tv-label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.tv-container .tv-content .tv-content-item .tv-detail p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
}
@media only screen and (max-width: 480px) {
  .tv-container .tv-content .tv-content-item {
    width: 100%;
    padding-left: 30px;
    padding-right: auto;
  }
  .tv-container .tv-content .tv-content-item.text-right,
  .tv-container .tv-content .tv-content-item .text-right {
    text-align: left;
  }
  .tv-container .tv-content .tv-content-item:before {
    right: 0;
    left: -10px;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
footer {
  padding: 0;
  color: #696969;
  font-size: 14px;
  font-weight: 700;
  background-color: #fff;
  font-family: 'Lato', sans-serif;
  border-top: solid 2px rgba(151, 151, 151, 0.2);
}
footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  list-style: none;
  display: inline-block;
  padding: 0 10px;
  border-right: solid 1px rgba(105, 105, 105, 0.4);
}
footer ul li:first-child {
  padding: 0 15px 0 0;
}
footer ul li:last-child {
  padding: 0 0 0 15px;
  border-right: 0;
}
footer a {
  color: #696969;
  text-decoration: none;
}
footer a:hover {
  color: #696969;
  text-decoration: underline;
}
footer .footer-menu {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  footer,
  footer .footer-menu {
    text-align: center;
  }
  footer .copy {
    margin-bottom: 10px;
  }
}
/* products */
.product-wrap {
  padding-top: 50px;
  padding-bottom: 70px;
}
.product-wrap h3 {
  color: #7ac33b !important;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-wrap p {
  color: #424242;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media only screen and (max-width: 480px) {
  .product-wrap #oproduct-image {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .product-wrap #oproduct-image img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .product-wrap #oproduct-image img {
    max-width: 180px;
  }
}
@media only screen and (min-width: 768px) {
  .product-wrap #oproduct-image img {
    max-width: 200px;
  }
}
@media only screen and (min-width: 992px) {
  .product-wrap #oproduct-image img {
    max-width: 240px;
  }
}
@media only screen and (max-width: 480px) {
  .product-wrap #oproduct-title {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .product-wrap #oproduct-description {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .product-wrap .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
.product-list-wrap {
  padding-bottom: 70px;
}
.product-list-wrap .product-list-container {
  min-height: 125px;
}
.product-list-wrap h1 {
  color: #7ac33b !important;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-list-wrap p {
  color: #424242;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.product-list-wrap .input-group-btn {
  width: 39px;
}
.product-list-wrap .btn-search-text {
  height: 46px;
  background-color: #7ac33b;
  border-radius: 0;
}
.product-list-wrap .btn-search-text:hover {
  background-color: #629c2f;
}
.product-list-wrap .btn-search-text:active,
.product-list-wrap .btn-search-text:focus {
  box-shadow: none;
  outline: none;
}
.product-list-wrap .btn-search-text i {
  color: white;
  font-size: 18px;
}
.product-list-wrap .loading-page p {
  color: #828282;
}
.product-list-wrap .category-swiper {
  margin: 20px -5px;
  position: relative;
  padding: 0 5px;
}
.product-list-wrap .category-swiper .swiper {
  overflow: hidden;
}
.product-list-wrap .category-swiper .swiper-slide {
  width: auto !important;
}
.product-list-wrap .category-swiper .swiper-slide p.cat-item {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  margin: 0;
  border-bottom: 1px solid #7ac33b;
  color: #7ac33b;
  cursor: pointer;
}
.product-list-wrap .category-swiper .swiper-slide p.cat-item.active {
  border-bottom: 2px solid #629c2f;
  color: #629c2f;
  font-weight: bold;
}
.product-list-wrap .category-swiper .swiper-slide p.cat-item:hover {
  color: #629c2f;
  font-weight: bold;
}
.product-list-wrap .category-swiper .swiper-button {
  background: none;
  background-image: none;
  width: 20px;
  height: 30px;
  top: 9px;
  z-index: 103;
  background: white;
  background-position: center;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.product-list-wrap .category-swiper .swiper-button-prev {
  justify-content: start;
}
.product-list-wrap .category-swiper .swiper-button-next {
  justify-content: end;
}
.product-list-wrap .category-swiper .swiper-button i {
  font-size: 20px;
  color: #7ac33b;
}
.product-list-wrap .category-swiper .swiper-button i:hover {
  color: #629c2f;
}
.product-list-wrap .category-select {
  margin: 25px 0;
}
.product-list-wrap .category-select .dropdown .btn-cat {
  border: 1px solid #7ac33b;
  border-radius: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #629c2f;
  font-weight: bold;
  padding: 12px;
}
.product-list-wrap .category-select .dropdown .btn-cat:active,
.product-list-wrap .category-select .dropdown .btn-cat:focus {
  outline: none;
  box-shadow: none;
}
.product-list-wrap .category-select .dropdown .btn-cat::after {
  display: none;
}
.product-list-wrap .category-select .dropdown .dropdown-menu {
  width: 100%;
  border: 1px solid #7ac33b;
  border-radius: 0;
  border-top: none;
  margin: 0;
}
.product-list-wrap .category-select .dropdown .dropdown-menu .cat-item {
  padding: 6px 12px;
  color: #7ac33b;
  cursor: pointer;
}
.product-list-wrap .category-select .dropdown .dropdown-menu .cat-item:hover {
  background-color: #94cf62;
  color: white;
}
.product-list-wrap .category-select .dropdown .dropdown-menu .cat-item.active {
  display: none;
}
.product-list-wrap .category-select .dropdown.show .btn-cat {
  border-bottom: none;
}
.product-list-wrap .category-select .dropdown.show .btn-cat::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 25px);
  border-bottom: 1px solid #7ac33b;
  border-top: none;
  border-left: none;
  border-right: none;
}
.product-list-wrap .category-select .dropdown.show .btn-cat i.fa {
  transform: rotate(180deg);
}
.product-list-wrap .product-card .img-wrapper {
  width: 100%;
  padding-top: 100%;
  border: 1px solid #828282;
  position: relative;
}
.product-list-wrap .product-card .img-wrapper img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-position: center;
  transform: scale(0.85);
  transition: all 0.25s ease;
}
.product-list-wrap .product-card .text-wrapper {
  width: 100%;
  text-align: center;
}
.product-list-wrap .product-card .text-wrapper p {
  color: #828282;
  font-size: 20px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .product-list-wrap .product-card .text-wrapper p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .product-list-wrap .product-card .text-wrapper p {
    font-size: 16px;
  }
}
.product-list-wrap .product-card:hover .img-wrapper img {
  transform: scale(0.9);
}
.product-list-wrap .product-card:hover .text-wrapper p {
  text-decoration: underline;
}
.product-list-wrap .no-data {
  text-align: center;
  margin: 53px 0;
}
.btn-loadmore {
  font-size: 16px;
}
.btn-loadmore.disabled {
  position: relative;
}
.btn-loadmore.disabled:after {
  content: attr(data-loading);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e3e3e3;
  color: #424242;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.btn-loadmore.disabled.btn-lg:after {
  padding: 10px 50px;
}
.product-logo {
  margin-top: 30px;
  margin-bottom: 40px;
  max-height: 120px;
}
.product-banner {
  margin-top: 50px;
  margin-bottom: 50px;
  overflow: hidden;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*img {
		max-height: 720px;
		margin: 0 auto;
	}*/
}
@media only screen and (max-width: 767px) {
  .product-banner {
    background-size: contain;
  }
}
.product-more-info .video-slider,
.video-about .video-slider {
  position: relative;
}
.product-more-info .video-slider #video-swiper,
.video-about .video-slider #video-swiper {
  margin-bottom: 100px;
}
.product-more-info .video-slider #video-swiper .product-video,
.video-about .video-slider #video-swiper .product-video {
  margin-bottom: 10px;
}
.product-more-info .video-slider .swiper-button-prev,
.video-about .video-slider .swiper-button-prev {
  left: -5px;
}
@media only screen and (min-width: 768px) {
  .product-more-info .video-slider .swiper-button-prev,
  .video-about .video-slider .swiper-button-prev {
    left: -35px;
  }
}
.product-more-info .video-slider .swiper-button-prev i,
.video-about .video-slider .swiper-button-prev i {
  left: -3%;
}
.product-more-info .video-slider .swiper-button-next,
.video-about .video-slider .swiper-button-next {
  right: -5px;
}
@media only screen and (min-width: 768px) {
  .product-more-info .video-slider .swiper-button-next,
  .video-about .video-slider .swiper-button-next {
    right: -35px;
  }
}
.product-more-info .video-slider .swiper-button-next i,
.video-about .video-slider .swiper-button-next i {
  right: -3%;
}
.product-more-info .video-slider .swiper-button-next,
.video-about .video-slider .swiper-button-next,
.product-more-info .video-slider .swiper-button-prev,
.video-about .video-slider .swiper-button-prev {
  background-image: none;
  background: white;
  border-radius: 50%;
  margin-top: 0;
  top: calc(50% - 40px);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px 1px rgba(87, 71, 81, 0.2);
}
.product-more-info .video-slider .swiper-button-next i,
.video-about .video-slider .swiper-button-next i,
.product-more-info .video-slider .swiper-button-prev i,
.video-about .video-slider .swiper-button-prev i {
  color: #7ac33b;
  font-size: 20px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .product-more-info .video-slider .swiper-button-next,
  .video-about .video-slider .swiper-button-next,
  .product-more-info .video-slider .swiper-button-prev,
  .video-about .video-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    top: calc(50% - 20px);
  }
  .product-more-info .video-slider .swiper-button-next i,
  .video-about .video-slider .swiper-button-next i,
  .product-more-info .video-slider .swiper-button-prev i,
  .video-about .video-slider .swiper-button-prev i {
    font-size: 25px;
  }
}
.product-more-info .video-slider .swiper-pagination,
.video-about .video-slider .swiper-pagination {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.product-more-info .video-slider .swiper-pagination .swiper-pagination-bullet,
.video-about .video-slider .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 3px;
}
.product-more-info
  .video-slider
  .swiper-pagination
  .swiper-pagination-bullet-active,
.video-about .video-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #7ac33b;
}
.product-video {
  cursor: pointer;
}
.product-video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.2s ease;
}
.product-video:hover svg {
  transform: translate(-50%, -50%) scale(1.1);
}
.product-video .thumbnail {
  margin: 0;
  width: calc(100% - 1px);
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
#product-video-modal .modal-dialog {
  margin: 0 auto;
  width: calc(100% - 20px);
  max-width: 1160px;
  top: 50%;
  transform: translateY(-50%);
}
/*.product-video iframe {
	width: 100%;
	height: 450px;
}*/
.product-tab #product-tab {
  position: relative;
}
.product-tab #product-tab:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #7ac33b;
}
.product-tab .tab-nav-container,
.product-tab .nav-tabs {
  position: relative;
  height: 45px;
  border-bottom: 1px solid #7ac33b !important;
}
.product-tab .tab-nav-inner-container {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 60px;
}
.product-tab .swiper-container {
  width: 100%;
  height: 100%;
}
.product-tab .swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 300px;
}
.product-tab .tab-swiper a,
.product-tab .tab-swiper a:hover,
.product-tab .tab-swiper a:focus {
  color: rgba(122, 195, 59, 0.5) !important;
  border: 0;
  width: 100%;
  overflow: hidden;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 3px solid transparent !important;
  background-color: transparent;
  padding: 10px 20px;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.product-tab .tab-swiper a.active,
.product-tab .tab-swiper a:hover.active,
.product-tab .tab-swiper a:focus.active {
  border: 0;
  color: #7ac33b !important;
  border-bottom: 3px solid #7ac33b !important;
}
.product-tab .tab-content {
  padding: 20px;
  margin-top: 50px;
}
.product-tab .tab-content img {
  max-height: 250px;
  margin: 0 auto;
}
.product-tab .tab-content h1,
.product-tab .tab-content .title-style {
  font-size: 22px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 5px;
}
.product-tab .tab-content h5 {
  color: #6a6a6a !important;
  font-size: 14px;
  font-weight: normal;
  font-style: italic !important;
  padding-right: 10px;
}
.product-tab .tab-content h5 span {
  font-weight: bold;
}
.product-tab .tab-content p {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
  padding-right: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.circle-wrapper {
  position: fixed;
  top: 10%;
}
.circle-wrapper .circle-menu {
  width: 550px;
  height: 550px;
  border-radius: 100%;
  border: 1px solid #7ac33b;
  border-left: 0;
  margin-left: -450px;
}
.circle-wrapper .circle-menu li {
  font-size: 14px;
  position: absolute;
  width: 100px;
  list-style: none;
  font-weight: 500;
}
.circle-wrapper .circle-menu li:before {
  content: '';
  background-color: #7ac33b;
  height: 20px;
  width: 20px;
  position: absolute;
  left: -30px;
  border-radius: 100%;
}
.circle-wrapper .circle-menu li.multi-line a {
  margin-top: -10px;
}
.circle-wrapper .circle-menu li.active {
  width: 95px;
  height: 95px;
  border: 2px solid #7ac33b;
  text-align: center;
  border-radius: 100%;
  background-color: #ffffff;
}
.circle-wrapper .circle-menu li.active a {
  vertical-align: middle;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.circle-wrapper .circle-menu li.active.single-line {
  line-height: 35px;
}
.circle-wrapper .circle-menu li.active:before {
  display: none;
}
.circle-wrapper .circle-menu li a {
  color: #7ac33b;
  display: block;
}
.circle-wrapper .circle-menu li:nth-child(1) {
  left: 48px;
  top: 80px;
}
.circle-wrapper .circle-menu li:nth-child(2) {
  left: 103px;
  top: 170px;
}
.circle-wrapper .circle-menu li:nth-child(3) {
  left: 50px;
  top: 235px;
}
.circle-wrapper .circle-menu li:nth-child(4) {
  left: 100px;
  top: 370px;
}
.circle-wrapper .circle-menu li:nth-child(5) {
  left: 45px;
  top: 455px;
}
.circle-wrapper .circle-menu li.prev,
.circle-wrapper .circle-menu li.next {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.circle-wrapper .circle-menu li.prev:before,
.circle-wrapper .circle-menu li.next:before {
  display: none;
}
.circle-wrapper .circle-menu li.prev {
  left: 35px;
  top: 275px;
}
.circle-wrapper .circle-menu li.next {
  left: 145px;
  top: 275px;
  display: inline-block;
  width: 20px;
  height: 20px;
}
/* circle career */
.circle-menu.career {
  width: 550px;
  height: 550px;
  border-radius: 100%;
  border: 1px solid #7ac33b;
  border-left: 0;
  margin-left: -400px;
}
.circle-menu.career li:nth-child(1) {
  left: 48px;
  top: 38px;
}
.circle-menu.career li:nth-child(2) {
  left: 115px;
  top: 100px;
}
.circle-menu.career li:nth-child(3) {
  left: 155px;
  top: 170px;
}
.circle-menu.career li:nth-child(4) {
  left: 100px;
  top: 230px;
}
.circle-menu.career li:nth-child(5) {
  left: 155px;
  top: 355px;
}
.circle-menu.career li:nth-child(6) {
  left: 115px;
  top: 430px;
}
.circle-menu.career li:nth-child(7) {
  left: 48px;
  top: 493px;
}
.circle-menu.career li.prev {
  left: 85px;
  top: 265px;
}
.circle-menu.career li.prev:before,
.circle-menu.career li.next:before {
  display: none;
}
.circle-menu.career li.next {
  left: 195px;
  top: 265px;
}
/* news */
.article-box {
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.article-box:hover {
  border-color: #7ac33b;
}
.article-box .article-image {
  overflow: hidden;
  position: relative;
}
.article-box.big {
  overflow: hidden;
  /*.article-image {
			img {
				height: 350px;
				width: 100%;
				object-fit: cover;
			}
		}*/
}
.article-box.big .article-cat {
  font-size: 14px;
}
.article-box.big .article-cat img {
  height: 24px;
  width: 24px;
  margin-right: 5px;
}
.article-box.big .article-title a {
  font-size: 22px;
}
.article-box.big .article-title span {
  font-weight: 500;
  font-size: 12px;
}
.article-box.big .article-desc {
  margin-top: 15px;
}
.article-box.video {
  position: relative;
}
.article-box.video:hover .play-icon {
  transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.article-box.inside-excerpt.big .article-image {
  height: 420px;
  width: 100%;
}
.article-box.inside-excerpt .article-image {
  height: 200px;
  width: 100%;
}
.article-box.inside-excerpt .article-overlay {
  top: 0 !important;
  opacity: 0;
}
.article-box.inside-excerpt .article-image-excerpt {
  position: absolute;
  top: 200px;
  left: 0;
  background-color: rgba(122, 195, 59, 0.7);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.article-box.inside-excerpt .article-image-excerpt_text {
  color: #fff !important;
}
.article-box.inside-excerpt .article-image-excerpt p {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: calc((100%-10px));
}
.article-box.inside-excerpt .article-image-excerpt p span {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.article-box.inside-excerpt .article-image-excerpt p:before {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  top: -10px;
  left: 10px;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.article-box.inside-excerpt .excerpt-kners p {
  top: 40px;
}
.article-box.inside-excerpt .excerpt-kners p span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 1.5;
}
.article-box.inside-excerpt.big .article-image-excerpt {
  top: 480px;
}
.article-box.inside-excerpt:hover .article-overlay {
  opacity: 1;
}
.article-box.inside-excerpt:hover .article-image-excerpt {
  top: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.article-box.inside-excerpt:hover .article-image-excerpt p span {
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.article-box.inside-excerpt:hover .article-image-excerpt p:before {
  width: 20%;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.article-box.inside-excerpt:hover .career-about-item_text {
  display: none !important;
}
.play-icon {
  content: url('../images/icon-play.png');
  position: absolute;
  top: calc((50% - 38.5px));
  left: calc((50% - 44.5px));
  transform: scale(0.9);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.play-icon.small {
  transform: scale(0.5);
}
.popup-video-desc {
  position: absolute;
  bottom: 0;
  background-color: rgba(122, 195, 59, 0.8);
  color: #fff;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  width: 100%;
}
.article-box.big.image .article-image img {
  height: 420px;
}
.article-box.image .article-image img {
  height: 200px;
}
.article-info {
  padding: 10px 20px;
}
/*.article-image {
	img {
		height: 180px;
		width: 100%;
		object-fit: cover;
	}
}*/
.article-cat {
  color: #7ac33b;
  border-bottom: 1px solid #eeeeee;
  padding-top: 5px;
  padding-bottom: 12px;
  margin: 0;
  margin-bottom: 10px;
  font-size: 12px;
}
.article-cat > div {
  padding: 0;
}
.article-cat img {
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.article-cat .logo-media {
  text-align: right;
  margin: 0;
}
.article-cat .logo-media img {
  height: 20px;
  width: auto;
}
.article-cat a {
  font-size: 13px;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
}
.article-cat span {
  color: #aaaaaa;
  display: block;
  font-size: 10px;
  margin-bottom: 3px;
}
.article-products {
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
}
.article-products img {
  height: 30px;
}
.article-desc {
  margin-top: 4px;
  margin-bottom: 0;
  color: #999999;
  font-size: 12px;
}
.article-box {
  position: relative;
}
.article-box.article .article-image {
  background-color: #979797;
  height: 192px;
  width: 100%;
}
.article-box.article .article-title {
  margin-bottom: 15px;
}
.article-box.article .article-title span {
  display: block;
  font-size: 12px;
}
.article-box.article .article-title a {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  height: 44px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.article-box.article .article-desc {
  height: 80px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.article-box.article:hover {
  color: #7ac33b;
}
.article-box.article:hover .article-title a {
  color: #7ac33b;
}
.article-box.article:hover .article-desc {
  color: #7ac33b;
}
.article-box.career {
  margin-bottom: 45px;
}
.article-box.career .article-title {
  padding-top: 10px;
  margin-bottom: 10px;
}
.article-box.career .article-title:after {
  content: '';
  background-color: rgba(151, 151, 151, 0.5);
  height: 1px;
  width: 100px;
  display: block;
}
.article-box.career .article-title a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.article-box.career .article-title a:hover,
.article-box.career .article-title a:active,
.article-box.career .article-title a:focus {
  color: #7ac33b;
}
.article-box.career .article-title #vacancy-closing-date {
  margin-top: 5px;
  margin-bottom: 10px;
  font-style: italic;
}
.article-box.career #vancancy-description {
  font-size: 14px;
  line-height: 1.8;
}
.article-box.career .vacancy-type {
  position: absolute;
  top: -29px;
  right: 90px;
  width: 200px;
  height: 30px;
}
.article-box.career .vacancy-type:before {
  content: '';
  position: absolute;
  border-bottom: 30px solid #e0e0e0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  height: 0;
  width: 200px;
  z-index: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.article-box.career .vacancy-type:after {
  content: '';
  position: absolute;
  border-bottom: 29px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  height: 0;
  width: 198px;
  z-index: 1;
  margin: 0 auto;
  left: 0;
  top: 1px;
  right: 0;
}
.article-box.career .vacancy-type span {
  position: absolute;
  width: 100%;
  height: inherit;
  text-align: center;
  display: block;
  line-height: 2.2;
  padding: 0 15px;
  z-index: 2;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #979797;
  overflow: hidden;
}
.article-box.career:hover .vacancy-type:before {
  border-bottom: 29px solid #7ac33b;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.article-footer {
  border-top: 1px solid #e0e0e0;
  padding: 10px 0;
  margin: 15px 20px 0;
}
.article-footer span {
  margin-right: 30px;
}
.article-footer span.vacancy-city,
.article-footer span.vacancy-job {
  position: relative;
  padding-left: 30px;
}
.article-footer span.vacancy-city:before,
.article-footer span.vacancy-job:before {
  display: block;
  width: 52px;
  height: 52px;
  transform: scale(0.5);
  text-align: center;
  position: absolute;
  left: -15px;
  top: -18px;
}
.article-footer span.vacancy-city:before {
  content: url(../images/career/icon/marker.png);
}
.article-footer span.vacancy-job:before {
  content: url(../images/career/icon/tag.png);
}
.article-footer a {
  color: #7ac33b;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  padding: 2px 5px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pagination > li > a,
.pagination > li > span {
  color: #999999;
  font-weight: 500;
  font-size: 16px;
  border: 0;
  padding: 0 10px;
}
.pagination > li > a:hover,
.pagination > li > a:focus {
  background-color: #ffffff;
  color: #7ac33b;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  color: #7ac33b;
  background-color: #ffffff;
  border-color: #ffffff;
}
.file-cv {
  visibility: hidden;
  position: absolute;
}
#drop-cv-success {
  display: none;
  margin-top: 10px;
  color: #7ac33b;
}
#drop-cv-success h2 {
  color: #7ac33b;
  margin-bottom: 20px;
}
#drop-cv-success a {
  color: #7ac33b;
}
.subscribe-check {
  margin-top: 50px;
  margin-bottom: 50px;
}
.subscribe-check h3 {
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 30px;
}
.subscribe-check .checkbox {
  margin-bottom: 22px;
}
.subscribe-check .checkbox label {
  padding-left: 0;
}
.requirement-box {
  margin-top: 50px;
  border: 1px solid #eeeeee;
  box-shadow: 0 2px 4px 0 rgba(87, 71, 81, 0.2);
  padding: 30px;
}
.requirement-box h1,
.requirement-box .title-style {
  font-size: 48px;
  margin-bottom: 50px;
}
.requirement-box h1 span,
.requirement-box .title-style span {
  font-size: 28px;
  font-weight: 300;
}
.requirement-box img {
  height: 64px;
  margin-bottom: 20px;
}
.requirement-box h3 {
  color: #333333;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 50px;
}
.requirement-box .requirement-title {
  font-size: 14px !important;
  font-family: 'Roboto', sans-serif !important;
  margin-left: 15px !important;
}
.date-detail {
  color: #888888;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .date-detail {
    margin-top: 50px;
  }
}
.logo-media {
  margin-bottom: 20px;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .logo-media {
    margin-bottom: 0;
    text-align: right;
  }
}
.logo-media a {
  display: inline-block;
}
.logo-media img {
  height: 35px;
}
.row-related-article {
  min-height: 500px;
}
.row-related-article .article-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.related-post {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 18px;
}
.author-detail {
  display: block;
  margin-bottom: 50px;
  color: #888888;
  font-style: italic;
}
.title-detail {
  margin-bottom: 5px;
  font-family: 'Roboto', sans-serif;
}
.vacancy-social {
  margin-top: 20px;
  margin-bottom: 20px;
}
.vacancy-social ul {
  position: relative;
  margin: 0;
  padding: 0;
}
.vacancy-social ul li {
  display: inline-block;
  margin: 0 3px;
}
.vacancy-social ul li a {
  display: block;
  padding: 8px;
  font-size: 18px;
  background-color: #7ac33b;
  width: 40px;
  height: 40px;
  color: #fff;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.vacancy-social ul li a:hover,
.vacancy-social ul li a:active {
  background-color: #94cf62;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#form-drop-cv input.disabled {
  opacity: 0.4;
}
.inner-detail-article-video {
  margin-bottom: 50px;
}
.filter-wrapper {
  margin: 30px 0 40px;
  /*.checkbox {
		margin-left: 30px;
		font-weight: 500;
		color: #777777;
	}*/
}
.filter-wrapper label {
  margin-right: 20px;
}
.filter-wrapper .form-control {
  width: 300px;
}
.filter-wrapper .form-control.full {
  width: 100%;
}
.filter-wrapper .searchContainer {
  display: flex;
  flex: 1 1 300px;
  position: relative;
  border: 1px solid rgba(151, 151, 151, 0.5);
  overflow: hidden;
  margin-top: 5px;
}
.filter-wrapper .searchContainer .form-control {
  border: none !important;
}
.filter-wrapper .searchIcon {
  padding: 10px;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .filter-wrapper label {
    display: block;
    width: 100%;
  }
  .filter-wrapper.right-filter {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 480px) {
  .filter-wrapper .form-control {
    width: 100%;
  }
  .filter-wrapper .form-control select {
    display: block;
  }
}
.filter-wrapper.vacancy label {
  display: block;
}
.filter-wrapper.vacancy .form-control {
  width: 200px;
}
/* checkbox */
.checkbox label:after {
  content: '';
  display: table;
  clear: both;
}
.checkbox label input[type='checkbox'] {
  display: none;
}
.checkbox .cr {
  position: relative;
  display: inline-block;
  border: 1px solid #a9a9a9;
  width: 1.5em;
  height: 1.5em;
  float: left;
  margin-right: 0.5em;
}
.checkbox .cr .cr-noicon {
  position: absolute;
  font-size: 0.8em;
  line-height: 0;
  top: 50%;
  left: 20%;
}
.radio .cr .cr-noicon {
  margin-left: 0.04em;
}
.checkbox label input[type='checkbox'] + .cr > .cr-noicon {
  transform: scale(3) rotateZ(-20deg);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.checkbox label input[type='checkbox'] + .cr > .cr-noicon:before {
  position: absolute;
  content: '';
  bottom: -17px;
  left: 5px;
  height: 35px;
  border-right: 1px solid #7ac33b;
  -webkit-transform: skew(-45deg);
  -moz-transform: skew(-45deg);
  transform: skew(-45deg);
  z-index: -1;
}
.checkbox label input[type='checkbox']:checked + .cr {
  border-color: #7ac33b;
}
.checkbox label input[type='checkbox']:checked + .cr > .cr-noicon {
  transform: scale(1) rotateZ(0deg);
  opacity: 1;
}
.checkbox label input[type='checkbox']:disabled + .cr {
  opacity: 0.5;
}
.page-contact form {
  margin-top: 100px;
}
.page-contact form h3 {
  font-size: 22px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 30px;
}
.page-contact .btn-wrap {
  /*border-bottom: 1px solid #e0e0e0;*/
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.page-contact .contact-info {
  font-family: 'Raleway', sans-serif;
}
.page-contact .contact-info img {
  height: 50px;
  width: 50px;
  margin-right: 20px;
}
.page-contact .contact-info .info {
  display: flex;
  flex-direction: row;
}
.page-contact .contact-info .contact-detail {
  margin-bottom: 30px;
}
.page-contact .contact-info .contact-detail a {
  color: #7ac33b;
  font-weight: 700;
}
.page-contact .contact-info .contact-detail h3 {
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 10px;
}
.page-contact .contact-info .contact-detail p {
  margin-bottom: 5px;
}
.field-material .form-control {
  border: 0;
  height: auto;
  box-shadow: none;
  padding: 10px 12px 10px 0;
  border-radius: 0;
  border-bottom: 1px solid #e0e0e0;
}
.field-material select.form-control {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
}
.page-contact #map {
  height: 250px;
  width: 100%;
  margin-bottom: 50px;
}
.form-group label {
  color: rgba(51, 51, 51, 0.5);
}
.form-control {
  height: 46px;
  border: solid 1px rgba(151, 151, 151, 0.5);
  border-radius: 0;
  box-shadow: none;
}
.faq h1,
.faq .title-style {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
.faq .card {
  border-color: rgba(121, 195, 59, 0.5);
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 10px;
}
.faq .card > .panel-heading {
  background-color: #ffffff;
  border-color: #ffffff;
}
.faq .card > .panel-heading h4 {
  font-family: 'Raleway', sans-serif;
}
.faq .card > .panel-heading h4 a {
  display: block;
  position: relative;
  padding-left: 25px;
  font-size: 1.1rem;
}
.faq .card > .panel-heading h4 a:before {
  content: 'Q.';
  position: absolute;
  left: 0;
}
.faq .card > .panel-heading + .panel-collapse > .panel-body {
  border-color: #ffffff;
}
.faq .card > .panel-heading + .panel-collapse > .panel-body .answer-a {
  float: left;
  font-size: 16px;
  font-weight: bold;
  margin-right: 15px;
}
.faq .card > .panel-heading + .panel-collapse > .panel-body .answer-desc {
  padding: 15px;
  width: 100%;
  color: #969696;
}
.faq .card > .panel-heading + .panel-collapse > .panel-body .answer-desc ul {
  margin: 0 0 0 15px;
  padding: 0;
}
.faq .card > .panel-heading + .panel-collapse > .panel-body .answer-desc p {
  font-size: 14px;
}
.faq .nav-pills > li > a {
  border-radius: 0 !important;
}
.faq .nav-pills > li > a.active,
.faq .nav-pills > li > a.active:focus,
.faq .nav-pills > li > a.active:hover {
  background-color: #fff !important;
  border-bottom: 2px solid #7ac33b;
  font-weight: bold;
  color: #7ac33b !important;
}
.faq .nav-fill {
  display: flex;
  border-bottom: 1px solid #7ac33b;
  margin-bottom: 45px !important;
}
.faq .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.faq .nav-fill .nav-item a {
  color: #7ac33b;
}
@media only screen and (max-width: 480px) {
  .faq .nav-fill {
    display: none;
  }
}
.video-gallery .swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.video-gallery .swiper-slide {
  background-size: cover;
  background-position: center;
}
.video-gallery .gallery-top {
  height: 400px;
  width: 100%;
  background-color: #333;
}
.video-gallery .gallery-top a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.video-gallery .gallery-thumbs {
  height: 150px;
  box-sizing: border-box;
  padding: 10px 0;
}
.video-gallery .gallery-thumbs .swiper-slide {
  width: 33%;
  height: 100%;
  opacity: 0.4;
}
.video-gallery .gallery-thumbs .swiper-slide-active {
  opacity: 1;
}
.video-gallery .swiper-button-next,
.video-gallery .swiper-button-prev {
  height: 50px;
  width: 50px;
}
.video-gallery .swiper-button-prev {
  left: 10px;
}
.video-gallery .swiper-button-next {
  right: 10px;
  background-position: 0 0;
}
#explore-life .big img {
  height: 400px;
}
#explore-life .small img {
  height: 200px;
}
.mobile-lang {
  list-style: none;
  position: absolute;
  padding: 0;
  font-size: 12px;
  top: 27px;
  left: 70px;
}
#cs-section .cs-item h4 {
  color: #7ac33b;
  margin-bottom: 10px;
}
#cs-section .cs-item p {
  font-size: 14px;
  line-height: 1.6;
  min-height: 154px;
}
.mobile-lang li a {
  color: #7ac33b;
}
.mobile-lang .dropdown-menu {
  min-width: 70px;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #ffffff;
  background-color: #7ac33b;
}
.dropdown-hover:hover .dropdown-menu {
  display: block !important;
}
.overlay.active:before {
  top: 0;
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 999;
}
.tab-content > .tab-pane {
  position: relative;
}
.slide-nav {
  background-image: url(../images/icons.png);
  background-size: auto;
  background-repeat: no-repeat;
  width: 52.5px;
  height: 82px;
  cursor: pointer;
}
.btnNext {
  position: absolute;
  background-position: -52.5px 0;
}
.btnNext {
  position: absolute;
  top: 20%;
  right: -35px;
}
.btnPrevious {
  position: absolute;
  top: 20%;
  left: -35px;
}
/* mobile nav*/
.cd-stretchy-nav {
  position: absolute;
  z-index: 99999;
  top: -40px;
  right: 5%;
  pointer-events: none;
}
.cd-stretchy-nav .stretchy-nav-bg {
  position: absolute;
  z-index: 99999;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition:
    height 0.2s,
    box-shadow 0.2s;
  -moz-transition:
    height 0.2s,
    box-shadow 0.2s;
  transition:
    height 0.2s,
    box-shadow 0.2s;
}
.cd-stretchy-nav.nav-is-visible {
  pointer-events: auto;
}
.cd-stretchy-nav.nav-is-visible .stretchy-nav-bg {
  height: 100%;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}
.cd-stretchy-nav ul {
  position: relative;
  z-index: 999999;
  list-style: none;
  font-size: 12px;
  padding: 60px 0 0;
  visibility: hidden;
  -webkit-transition: visibility 0.3s;
  -moz-transition: visibility 0.3s;
  transition: visibility 0.3s;
  text-align: right;
}
.cd-stretchy-nav ul a {
  text-align: center;
  position: relative;
  display: block;
  height: auto;
  width: 80px;
  line-height: 1.2;
  color: #aaaaaa;
  font-size: 0.9rem;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
  margin: 25px 0;
}
.cd-stretchy-nav ul a::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 16px;
  top: 50%;
  left: -3px;
  -webkit-transform: translateX(3px) translateY(-50%) scaleY(0);
  -moz-transform: translateX(3px) translateY(-50%) scaleY(0);
  -ms-transform: translateX(3px) translateY(-50%) scaleY(0);
  -o-transform: translateX(3px) translateY(-50%) scaleY(0);
  transform: translateX(3px) translateY(-50%) scaleY(0);
  background-color: #7ac33b;
}
.cd-stretchy-nav ul span {
  display: block;
  opacity: 0;
}
.cd-nav-trigger {
  position: absolute;
  z-index: 999999;
  top: 0;
  right: 0;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
  color: #7ac33b;
  font-size: 0.9rem;
  text-align: center;
  pointer-events: auto;
  display: table;
}
.cd-nav-trigger.multi {
  padding-top: 20px;
}
.cd-nav-trigger:focus {
  color: #7ac33b;
}
.cd-nav-trigger span {
  margin-bottom: 0;
  vertical-align: middle;
  display: table-cell;
}
.cd-nav-trigger span:after {
  display: block;
  content: '\f107';
  font-family: 'FontAwesome';
  margin-top: -5px;
}
.oval-menu {
  width: 100px !important;
}
.no-touch .cd-nav-trigger:hover ~ .stretchy-nav-bg {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.nav-is-visible .cd-nav-trigger span:after {
  content: '\f106';
}
.cd-stretchy-nav.nav-is-visible ul {
  visibility: visible;
}
.cd-stretchy-nav.nav-is-visible ul a.active {
  color: #7ac33b;
}
.cd-stretchy-nav.nav-is-visible ul a.active::before {
  -webkit-transform: translateX(3px) translateY(-50%) scaleY(1);
  -moz-transform: translateX(3px) translateY(-50%) scaleY(1);
  -ms-transform: translateX(3px) translateY(-50%) scaleY(1);
  -o-transform: translateX(3px) translateY(-50%) scaleY(1);
  transform: translateX(3px) translateY(-50%) scaleY(1);
  -webkit-transition: -webkit-transform 0.15s 0.3s;
  -moz-transition: -moz-transform 0.15s 0.3s;
  transition: transform 0.15s 0.3s;
}
.cd-stretchy-nav.nav-is-visible ul span {
  opacity: 1;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover {
  color: #ffffff;
}
/* -------------------------------- 

keyframes

-------------------------------- */
@-webkit-keyframes scaleIn {
  from {
    -webkit-transform: translateY(-50%) scale(0);
  }
  to {
    -webkit-transform: translateY(-50%) scale(1);
  }
}
@-moz-keyframes scaleIn {
  from {
    -moz-transform: translateY(-50%) scale(0);
  }
  to {
    -moz-transform: translateY(-50%) scale(1);
  }
}
@keyframes scaleIn {
  from {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
  }
  to {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes slideIn {
  from {
    opacity: 0;
    -moz-transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.mobile-share-title {
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 12px;
}
.mobile-share {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-share li button,
.mobile-share li a {
  float: left;
  color: #ffffff;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.mobile-share li button:hover,
.mobile-share li a:hover {
  background-color: #94cf62;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.field-filter {
  position: relative;
  margin-right: 15px;
}
.field-filter .form-control {
  width: 260px !important;
  height: 36px;
  border-color: #ddd;
}
.field-filter:before {
  content: '\e003';
  color: #7ac33b;
  font-family: 'Glyphicons Halflings';
  position: absolute;
  right: 10px;
  top: 7px;
}
.kalbe-store {
  border: solid 1px rgba(66, 66, 66, 0.3);
  padding: 10px;
  display: block;
  width: 200px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.kalbe-store img {
  margin: 0;
  width: 100%;
}
.kalbe-store:hover {
  border: solid 1px #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.has-error .form-control,
.has-danger .form-control {
  border-color: rgba(255, 0, 0, 0.5);
}
.has-error .form-control,
.has-error .form-control:focus {
  box-shadow: none;
  border-color: rgba(255, 0, 0, 0.5);
}
.loading-page {
  display: none;
  text-align: center;
  color: #7ac33b;
}
.loading-page i {
  font-size: 30px;
}
.loading-page p {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 700;
}
.product-site {
  display: inline-block;
  margin: 15px auto;
}
.product-site .product-site-list ul {
  margin: 0;
  padding: 0;
}
.product-site .product-site-list ul li {
  display: inline-block;
  margin-right: 2px;
}
.product-site .product-site-list ul li:last-child {
  margin-right: 0;
}
.product-site .product-site-list ul li a {
  background-color: #7ac33b;
  color: #fff;
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 20px;
  text-align: center;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.product-site .product-site-list ul li a:hover {
  background-color: #629c2f;
}
/* CIRCLE MENU */
.cm-container {
  position: fixed;
  width: 550px;
  height: 550px;
  border: solid 2px #7ac33b;
  left: calc(-550px / 1.25);
  top: 10%;
  display: none;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container .cm-items {
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  height: auto;
  left: 264px;
  top: 264px;
}
.cm-container .cm-items .cm-item {
  position: absolute;
  list-style: none;
  width: 165px;
}
.cm-container .cm-items .cm-item.selected {
  display: none;
}
.cm-container .cm-items .cm-item a {
  font-size: 12px;
  position: relative;
  color: #7ac33b;
  padding-left: 30px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container .cm-items .cm-item a:hover {
  color: #94cf62;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container .cm-items .cm-item a:before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #7ac33b;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container .cm-selected-container {
  position: absolute;
  width: 100px;
  height: 100px;
  border: solid 3px #7ac33b;
  background-color: #fff;
  right: calc(-100px / 2);
  top: 221.5px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container .cm-selected-container .cm-selected-label {
  height: 74px;
  width: 80px;
  overflow: hidden;
  font-weight: 700;
  color: #7ac33b;
  font-size: 85%;
}
.cm-container .cm-selected-container .cm-selected-label span {
  display: table-cell;
  vertical-align: middle;
  height: inherit;
  width: inherit;
}
.cm-container .cm-selected-container .cm-button {
  position: absolute;
  width: 28px;
  height: 28px;
  font-size: 20px;
  cursor: pointer;
  top: 36px;
  color: #7ac33b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container .cm-selected-container .cm-button:hover {
  color: #94cf62;
}
.cm-container .cm-selected-container .cm-button.cm-button-prev {
  left: -32px;
}
.cm-container .cm-selected-container .cm-button.cm-button-prev:hover {
  left: -34px;
}
.cm-container .cm-selected-container .cm-button.cm-button-next {
  right: -32px;
}
.cm-container .cm-selected-container .cm-button.cm-button-next:hover {
  right: -34px;
}
.cm-container.white {
  border: solid 2px #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container.white .cm-items a {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container.white .cm-items a:hover {
  color: #ffffff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container.white .cm-items a:before {
  background-color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container.white .cm-selected-container {
  border: solid 3px #fff;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container.white .cm-selected-container .cm-button {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container.white .cm-selected-container .cm-button:hover {
  color: #ffffff;
}
.alert.no-data {
  background-color: #e3e3e3;
  color: #424242;
}
#load-more-control {
  display: none;
}
.article .alert.no-data {
  display: none;
}
/* HORIZONTAL TIMELINE */
.cd-horizontal-timeline .events-content {
  line-height: 20px;
}
.cd-horizontal-timeline .events-content ol {
  padding-left: 0;
}
.cd-horizontal-timeline .events-content .text h2 {
  text-align: right;
  margin-bottom: 10px;
  color: #7ac33b;
  font-size: 6em;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}
.cd-horizontal-timeline .events-content .text p {
  text-align: right;
  font-family: 'Raleway', sans-serif;
  color: #7ac33b;
  display: inline-block;
}
.cd-horizontal-timeline .events-content .events-inner-content {
  position: relative;
}
.cd-horizontal-timeline .events-content .events-inner-content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.cd-horizontal-timeline .events-content .events-inner-content .text {
  text-align: right;
}
.cd-timeline-navigation a:before {
  /* arrow icon */
  font-family: FontAwesome;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  color: #7ac33b;
  text-align: center;
}
.cd-timeline-navigation a.inactive:before {
  color: #dfdfdf;
}
.cd-timeline-navigation a:not(.inactive):hover:before {
  color: #fff;
}
.cd-timeline-navigation a.prev:before {
  content: '\f054';
  top: 0px;
  left: -19px;
}
.cd-timeline-navigation a.next:before {
  content: '\f054';
  top: 0px;
  left: -19px;
}
.has-success .form-control:focus {
  box-shadow: none;
}
.help-block {
  font-size: 12px;
}
.imgLiquidimg {
  visibility: hidden;
}
/********* FLOATING BUTTON KLIK DOKTER *********/
.float-klik-dokter {
  display: block;
  width: 180px;
  height: 180px;
  transition: ease all 0.3s;
  position: fixed;
  right: 10px;
  bottom: -10px;
}
@media only screen and (max-width: 480px) {
  .float-klik-dokter {
    width: 150px;
    height: 150px;
  }
}
/********* END FLOATING BUTTON KLIK DOKTER *****/
/********************* SPINNER *********************/
@keyframes circle-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-filter {
  display: block;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-left-color: #7ac33b;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: relative;
  left: 5px;
  top: 5px;
  animation: circle-spin 1.2s linear infinite;
}
/********************* END OF SPINNER *********************/
/* ========================================= */
@media only screen and (max-width: 480px) {
  .splide__slide .hidden-xs,
  .splide__slide .hidden-sm {
    display: none !important;
  }
}
@media only screen and (max-width: 769px) {
  .splide__slide .hidden-xs,
  .splide__slide .hidden-sm {
    display: none !important;
  }
}
@media only screen and (max-width: 480px) {
  .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
b,
strong {
  font-weight: 700 !important;
}
/* ========================================= */
.overlay {
  position: fixed;
  width: 100%;
  height: 50%;
  background-color: #87bd40;
  left: 0;
  z-index: 1000;
  transition: transform 1s cubic-bezier(1, 0.01, 0.35, 0.81);
}
.overlay-top {
  top: 0;
  transform: translateY(0);
}
.overlay-bottom {
  bottom: 0;
  transform: translateY(0);
}
.overlay.show.overlay-top {
  transform: translateY(0);
}
.overlay.show.overlay-bottom {
  transform: translateY(0);
}
.overlay.hide.overlay-top {
  transform: translateY(-101%);
}
.overlay.hide.overlay-bottom {
  transform: translateY(101%);
}
@keyframes reveal {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.display-screen {
  min-height: calc(100vh - 73px);
}
.display-none {
  display: none !important;
}
.header-glass {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  backdrop-filter: blur(4px);
}
.header-glass img,
.header-glass .dropdown-toggle,
.header-glass .nav-menu:nth-child(5),
.header-glass span,
.header-glass #button-menu,
.header-glass #button-change-lang {
  filter: brightness(0) invert(1);
}
@media only screen and (max-width: 992px) {
  .header-glass .dropdown-toggle,
  .header-glass span {
    filter: none;
  }
  .header-glass .logo,
  .header-glass .navigation {
    padding: 0px 16px;
  }
}
.hero-video {
  position: relative;
}
.hero-video__player {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}
.hero-video__player.is-exiting {
  position: sticky;
  max-width: 100%;
}
.hero-video__text {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video__text.last {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-bottom: 15vh;
}
@media only screen and (max-width: 992px) {
  .hero-video__text.last {
    gap: 42px;
  }
}
.hero-video__text.last a {
  height: 44px;
  top: 84px;
  left: 20px;
  gap: 10px;
  padding-top: 12px;
  padding-right: 54px;
  padding-bottom: 12px;
  padding-left: 54px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}
.hero-video__text.is-mouse {
  align-items: center;
  justify-content: center;
  padding-bottom: 120px;
}
.hero-video__text.is-mouse .mouse-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  animation: reveal 1s linear both;
  animation-timeline: view();
  bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .hero-video__text.is-mouse .mouse-container {
    bottom: 10px;
  }
}
.hero-video__text.is-mouse .mouse-container img {
  position: relative;
  -webkit-animation: scroll-down-anim 1s infinite;
  -moz-animation: scroll-down-anim 1s infinite;
  -o-animation: scroll-down-anim 1s infinite;
  animation: scroll-down-anim 1s infinite;
  margin-bottom: 16px;
  width: 26px;
  height: 40px;
}
.hero-video__text.is-mouse .mouse-container span {
  font-family: Raleway;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 4px;
  text-align: center;
}
.hero-video__text p {
  color: white;
  font-family: Lato;
  text-align: center;
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
  font-weight: 300;
  font-size: 48px;
  line-height: 64px;
}
.hero-video__text p span {
  font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .hero-video__text p {
    font-size: 26px;
    line-height: 42px;
  }
}
.hero-video__text.is-exiting {
  position: absolute;
  left: 0;
}
@keyframes center-opening {
  from {
    clip-path: inset(50% 0 50% 0);
  }
  to {
    clip-path: inset(0 0);
  }
}
@keyframes about-color {
  from {
    transform: scale(0.8);
    filter: invert(80%) sepia(60%) saturate(150%) hue-rotate(90deg)
      brightness(110%) contrast(85%);
  }
  to {
    transform: scale(1);
    filter: invert(80%) sepia(60%) saturate(150%) hue-rotate(39deg)
      brightness(110%) contrast(85%);
  }
}
.display-screenx {
  min-height: 100vh;
  background-color: #2a352f;
}
.direction-opening {
  background-color: #4b8a40;
}
.direction-intro {
  min-height: calc(100vh - 73px);
  background-image: url(../images/revamp/bg.png);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: sticky;
  top: 0;
}
@media only screen and (max-width: 992px) {
  .direction-intro {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 992px) {
  .direction-intro .--hide {
    display: none;
  }
}
.animate-opening {
  animation: center-opening both;
  animation-timeline: view(50%);
  animation-range: 20% 60%;
}
.direction-intro__about-container {
  display: flex;
  position: sticky;
  top: 0;
}
@keyframes scaleUp {
  to {
    transform: scale(1);
  }
}
@keyframes left-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes bottom-reveal {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.direction-komisaris {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 178px;
  padding: 10vh 20vh 22vh 20vh;
  height: 1px;
}
@media only screen and (max-width: 1366px) {
  .direction-komisaris {
    padding: 10vh 20vh 18vh 20vh;
    gap: 91px;
  }
}
@media only screen and (max-width: 992px) {
  .direction-komisaris {
    flex-direction: column;
    padding: 5vh;
    height: 100%;
    gap: 20px;
    justify-content: flex-start;
  }
}
.direction-komisaris .mouse-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  animation: reveal 1s linear both;
  animation-timeline: view();
  bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris .mouse-container {
    bottom: 40px;
  }
}
.direction-komisaris .mouse-container img {
  position: relative;
  -webkit-animation: scroll-down-anim 1s infinite;
  -moz-animation: scroll-down-anim 1s infinite;
  -o-animation: scroll-down-anim 1s infinite;
  animation: scroll-down-anim 1s infinite;
  margin-bottom: 16px;
  width: 26px;
  height: 40px;
}
.direction-komisaris .mouse-container span {
  color: white;
  font-family: Raleway;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 4px;
  text-align: center;
}
.direction-komisaris .direction-komisaris__container {
  display: flex;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris .direction-komisaris__container {
    width: 100%;
  }
}
.direction-komisaris .direction-komisaris__container a {
  position: relative;
}
.direction-komisaris
  .direction-komisaris__container
  .direction-komisaris__image {
  transform: scale(0);
  animation: scaleUp 1s cubic-bezier(1, 0.01, 0.35, 0.81) forwards;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container
    .direction-komisaris__image {
    background-position: top;
  }
}
.direction-komisaris
  .direction-komisaris__container
  .direction-komisaris__banner {
  background: rgba(66, 107, 59, 0.5);
  backdrop-filter: blur(32px);
  padding: 21px;
  padding-bottom: 0px;
  opacity: 0;
  animation: left-reveal 2s cubic-bezier(1, 0.01, 0.35, 0.81) forwards;
  animation-delay: 0.5s;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container
    .direction-komisaris__banner {
    padding: 8px;
    animation: bottom-reveal 2s cubic-bezier(1, 0.01, 0.35, 0.81) forwards;
    animation-delay: 0.5s;
  }
}
.direction-komisaris
  .direction-komisaris__container
  .direction-komisaris__banner
  .role {
  color: white;
  font-weight: 300;
  font-size: 14px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container
    .direction-komisaris__banner
    .role {
    font-size: 10px;
  }
}
.direction-komisaris
  .direction-komisaris__container
  .direction-komisaris__banner
  .name {
  color: white;
  font-weight: 600;
  font-size: 20px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container
    .direction-komisaris__banner
    .name {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.direction-komisaris .direction-komisaris__container:nth-child(1) {
  align-items: center;
  position: relative;
}
.direction-komisaris .direction-komisaris__container:nth-child(1) a {
  bottom: 75px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris .direction-komisaris__container:nth-child(1) a {
    bottom: unset;
  }
}
@media only screen and (max-width: 992px) {
  .direction-komisaris .direction-komisaris__container:nth-child(1) {
    margin-bottom: 0;
  }
}
.direction-komisaris
  .direction-komisaris__container:nth-child(1)
  .direction-komisaris__image {
  background-color: #e6f4e4;
  background-image: url(../images/revamp/directions/dr-rudolf-tjandra.png);
  width: 175px;
  height: 284px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container:nth-child(1)
    .direction-komisaris__image {
    height: 178px;
    width: 131px;
  }
}
.direction-komisaris
  .direction-komisaris__container:nth-child(1)
  .direction-komisaris__banner {
  position: absolute;
  right: -146px;
  top: 187px;
}
@media only screen and (max-width: 1366px) {
  .direction-komisaris
    .direction-komisaris__container:nth-child(1)
    .direction-komisaris__banner {
    top: 88px;
  }
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container:nth-child(1)
    .direction-komisaris__banner {
    right: unset;
    top: unset;
    bottom: 0;
    width: 100%;
  }
}
.direction-komisaris .direction-komisaris__container:nth-child(2) {
  position: relative;
  align-items: center;
}
.direction-komisaris .direction-komisaris__container:nth-child(2) a {
  bottom: -113px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris .direction-komisaris__container:nth-child(2) a {
    bottom: unset;
  }
}
@media only screen and (max-width: 992px) {
  .direction-komisaris .direction-komisaris__container:nth-child(2) {
    justify-content: flex-start;
  }
}
.direction-komisaris
  .direction-komisaris__container:nth-child(2)
  .direction-komisaris__image {
  background-color: #e6f4e4;
  background-image: url(../images/revamp/directions/andy-chendra.png);
  width: 174px;
  height: 284px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container:nth-child(2)
    .direction-komisaris__image {
    height: 178px;
    width: 131px;
  }
}
.direction-komisaris
  .direction-komisaris__container:nth-child(2)
  .direction-komisaris__banner {
  position: absolute;
  right: -250px;
  top: 187px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container:nth-child(2)
    .direction-komisaris__banner {
    right: unset;
    top: unset;
    bottom: 0;
    width: 100%;
  }
}
.direction-komisaris .direction-komisaris__container:nth-child(3) {
  align-items: center;
  position: relative;
}
.direction-komisaris .direction-komisaris__container:nth-child(3) a {
  bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris .direction-komisaris__container:nth-child(3) a {
    bottom: 300px;
  }
}
@media only screen and (max-width: 992px) {
  .direction-komisaris .direction-komisaris__container:nth-child(3) {
    justify-content: flex-end;
  }
}
.direction-komisaris
  .direction-komisaris__container:nth-child(3)
  .direction-komisaris__image {
  background-color: #e6f4e4;
  background-image: url(../images/revamp/directions/kartika-setiabudy.png);
  width: 174px;
  height: 284px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container:nth-child(3)
    .direction-komisaris__image {
    height: 178px;
    width: 131px;
  }
}
.direction-komisaris
  .direction-komisaris__container:nth-child(3)
  .direction-komisaris__banner {
  position: absolute;
  right: -146px;
  top: 187px;
}
@media only screen and (max-width: 992px) {
  .direction-komisaris
    .direction-komisaris__container:nth-child(3)
    .direction-komisaris__banner {
    right: unset;
    top: unset;
    bottom: 0;
    width: 100%;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes move-right {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.direction-detail img {
  position: fixed;
}
.direction-detail__root {
  background-image: url(../images/revamp/logo-blur.png);
  background-attachment: fixed;
  background-position-y: center;
  background-repeat: no-repeat;
  background-position-x: 10%;
}
@media only screen and (max-width: 992px) {
  .direction-detail__root {
    background-image: unset;
  }
}
.direction-detail__container {
  display: flex;
  min-height: calc(100vh - 73px);
  position: relative;
}
@media only screen and (max-width: 992px) {
  .direction-detail__container {
    flex-direction: column;
  }
}
.direction-detail__image {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 73px;
  margin-top: -2vh;
  animation: move-right linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
@media only screen and (max-width: 992px) {
  .direction-detail__image {
    width: auto;
    position: relative;
    height: auto;
    padding-top: 0;
    margin: 40px 0px;
    align-items: flex-start;
    animation: fade-in linear;
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
  }
}
.direction-detail__fake-path {
  height: 560px;
  display: flex;
  align-items: flex-end;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 150px;
  border-bottom-left-radius: 8px;
  overflow: hidden;
  position: relative;
}
.direction-detail__fake-path img {
  position: absolute;
  z-index: 10;
  right: 0;
  width: 80%;
}
.direction-detail__fake-path .img-two {
  width: 100%;
}
.direction-detail__path {
  width: 436px;
  height: 434px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cfe7cb;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 150px;
  border-bottom-left-radius: 8px;
}
@media only screen and (max-width: 992px) {
  .direction-detail__path {
    max-height: 434px;
    height: 100vw;
  }
}
.direction-detail__border {
  width: 403px;
  height: 335px;
  top: 93px;
  border: 2px solid #a8d4a1;
  border-radius: 65px 0px 0px 0px;
  position: absolute;
}
@media only screen and (max-width: 992px) {
  .direction-detail__border {
    max-width: 403px;
    max-height: 335px;
    width: 80vw;
    height: 72vw;
    top: -75px;
    position: relative;
  }
}
.direction-detail__content {
  width: 50%;
  margin-top: 50vh;
  margin-bottom: 50vh;
  display: flex;
  flex-direction: column;
  padding-left: 60px;
}
@media only screen and (max-width: 992px) {
  .direction-detail__content {
    width: auto;
    position: relative;
    padding-left: 0;
    margin: 0;
  }
}
.direction-detail__title {
  color: #1b1b1b;
  font-family: Lato;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0%;
  animation: fade-in linear;
  animation-timeline: view();
  animation-range: entry 10% cover 40%;
}
.direction-detail__subtitle {
  color: #87bd40;
  font-family: Lato;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  animation: fade-in linear;
  animation-timeline: view();
  animation-range: entry 10% cover 40%;
}
.direction-detail__caption-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
@media only screen and (max-width: 992px) {
  .direction-detail__caption-container {
    gap: 25px;
    margin-top: 20px;
  }
}
.direction-detail__caption {
  color: #1b1b1b;
  font-family: Lato;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: justify;
  animation: fade-in linear;
  animation-timeline: view();
  animation-range: entry 10% cover 40%;
}
@media only screen and (max-width: 992px) {
  .direction-detail__caption {
    font-weight: 500;
  }
}
