::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: rgba(135, 150, 165, .1);
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background: #df3716 linear-gradient(45deg, #222, #222);
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  border-radius: 8px;
  background-color: rgba(135, 150, 165, .1);
}
/* - Menu Start - */ :root {
  --color-white-100: hsl(206, 5%, 100%);
  --color-white-200: hsl(206, 5%, 90%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 60%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: hsl(213, 23%, 8%);
  --color-black-200: hsl(214, 21%, 6%);
  --color-black-300: hsl(210, 21%, 6%);
  --color-black-400: hsl(216, 22%, 4%);
  --color-black-500: hsl(220, 18%, 3%);
  --color-pink-100: rgb(247 148 29);
  --color-pink-200: rgb(247 148 29);
  --color-pink-300: rgb(247 148 29);
  --color-pink-400: rgb(247 148 29);
  --color-pink-500: rgb(247 148 29);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.detail .info h1 {
  font-weight: 600;
}
.bottom-form {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1025px) {
  .header-menu .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    z-index: 10;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: var(--shadow-medium);
    background-color: #111;
    transition: all 0.5s ease;
  }
  .header-menu .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }
}
.header-menu .menu-item {
  position: relative;
  display: inline-block;
  margin-right: 3rem;
}
.header-menu .menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
  font-family: inherit;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.header-menu .menu-link > i.bx {
  font-size: 1.35rem;
  line-height: 1.5;
  color: inherit;
}
.header-menu .menu-link:hover {
  outline: none;
  color: var(--color-pink-500);
}
.menu-down-arrow {
  box-sizing: border-box;
  height: 10px;
  width: 10px;
  border-style: solid;
  border-color: white;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  top: -1px;
  position: relative;
  margin-left: 7px;
}
@media only screen and (min-width: 1025px) {
  .header-menu .menu-dropdown:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1025px) {
  .header-menu .menu {
    width: 100%;
    height: auto;
    padding: 1rem 0;
  }
  .header-menu .menu-item {
    display: block;
    margin: 0 auto;
  }
  .header-menu .menu-link {
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #1c1c1c;
  }
  header .logo {
    background-position: left center;
  }
}
.header-menu .submenu {
  position: absolute;
  top: 50px;
  left: -2rem;
  min-width: 200px;
  height: auto;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  border-radius: 0 0 0.25rem 0.25rem;
  border-top: 2px solid var(--color-pink-400);
  box-shadow: var(--shadow-medium);
  background-color: var(--color-white-100);
  transition: all 0.3s ease-in-out;
}
.header-menu .submenu-item {
  display: block;
  margin-top: 0;
  line-height: normal;
  border-bottom: 1px solid #eeee;
}
.header-menu .submenu-link {
  font-family: inherit;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  color: var(--color-black-500);
  transition: all 0.35s ease;
  display: block;
  padding: 13px 15px;
}
.header-menu .submenu-link:hover {
  outline: none;
  color: var(--color-pink-500);
}
.header-menu .menu-dropdown li:hover {
  background: hsl(32.75deg 93.16% 54.12%);
  color: #fff;
}
.header-menu .submenu-item:hover a {
  color: #fff;
}
.header-menu .submenu-item:last-child {
  border-bottom: 0;
}
@media only screen and (max-width: 1025px) {
  header .right {
    position: absolute;
    right: 15px;
  }
  .header-menu .submenu {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transform: translateY(0px);
    box-shadow: none;
    background: transparent;
  }
  .header-menu .submenu a {
    color: #999;
  }
  .header-menu .submenu-item {
    border-bottom: 1px solid #1c1c1c !important;
  }
  .header-menu {
    padding: 5px;
    background: #222;
    height: 52px;
    align-items: center;
    display: flex;
    width: 52px;
    justify-content: center;
    border-radius: 50%;
  }
}
.header-menu .burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 30px;
  height: 1.15rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}
.header-menu .burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 1rem;
  background: var(--color-white-100);
}
.header-menu .burger-line:nth-child(1) {
  top: 0px;
}
.header-menu .burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.header-menu .burger-line:nth-child(3) {
  top: 1rem;
}
@media only screen and (max-width: 1025px) {
  .header-menu .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
.header-menu .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}
@media only screen and (max-width: 1025px) {
  .header-menu .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
/* - Menu End - */
.text-uppercase {
  text-transform: uppercase;
}
strong {
  font-weight: 600;
}
.h2-title {
  display: inline;
  font-weight: 600;
}
.cb img {
  max-width: 80px;
  position: relative;
  top: -4px;
}
.stats .right .stats-animation .bottom {
  margin-top: -18rem;
  width: 70%;
}
.stats .right .stats-animation figure img.stats-image {
  object-fit: contain;
  margin-top: 0px;
  /*
  max-width: 160px;
  z-index: 9999;
  position: relative;
  left: -80px;
  bottom: 50px;
*/
}
.parallax-about {
  height: 500px;
  object-fit: cover;
  outline: 1px solid #e5e5e5;
  outline-offset: 5px;
  border-radius: 25px;
}
.parallax-about img {
  object-fit: cover;
  height: 100%;
  border-radius: 25px;
}
.stats-animation .icon img {
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.stats .right .stats-animation figure .icon {
  left: -120px;
  bottom: 100%;
  width: 200px;
  height: 200px;
  transform: translateY(-100%);
  outline: 1px solid #e5e5e5;
  outline-offset: 5px;
  border-radius: 50%;
}
.text-center {
  text-align: center;
}
.text-white {
  color: #fff !important;
}
.bnbl-list {
  font-size: 2.1rem;
  line-height: 1.4;
  list-style: circle;
  padding-left: 0;
  margin-left: 20px;
}
.product-sec, .news-content {
  background: #f7f7f7;
}
footer .lang {
  margin: 0 auto;
}
footer .lang .anchor {
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
footer .anchor svg {
  fill: #000;
}
footer .bottom span {
  width: 100%;
}
.news-cards .row {
  grid-template-columns: repeat(18, 3fr);
}
.button.primary i {
  line-height: 0;
}
.down-arrow-home {
  position: absolute;
  bottom: 100px;
  left: 50%;
  z-index: 999;
  transform: translateX(-50%)
}
.nav-buttonsSec {
  position: fixed;
  bottom: 5px;
  right: 5px;
  display: flex;
  gap: 2px;
}
#prevBtnSec, #nextBtnSec {
  width: 50px;
  height: 50px;
  padding: 0px;
  cursor: pointer;
  border-radius: 50%;
  background: #111;
}
#prevBtnSec:hover, #nextBtnSec:hover {
  background: #f7941d;
}
.sec-down-arrow {
  box-sizing: border-box;
  height: 14px;
  width: 14px;
  border-style: solid;
  border-color: white;
  border-width: 2px 0px 0px 2px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  top: 5px;
  position: relative;
}
.sec-up-arrow {
  box-sizing: border-box;
  height: 14px;
  width: 14px;
  border-style: solid;
  border-color: white;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  top: -3px;
  position: relative;
}
.vision-card {
  min-height: 390px;
}
.vision-card figcaption {
  background: #333 !important;
}
.vision-card figcaption:hover {
  background: #f7941d !important;
}
.vision-card .head {
  gap: 1.5rem !important;
}
.product-card figcaption {
  width: 40%;
  border-radius: 25px;
}
.product-right-text figcaption {
  background: #3b57a7 !important;
}
.product-left-text figcaption {
  background: #137e3e !important
}
.product-card figure .image {
  width: 65% !important;
  float: right;
}
.contact-form-block .row {
  grid-template-columns: inherit;
  gap: 2.5rem 2rem;
}
.contact-sec {
  background: #f9f9f9;
  padding-bottom: 0;
}
.contact-sec .container {
  max-width: 100%;
  width: 100%;
}
.contact-sec .card-hover.green-1:before {
  background: #3b57a7;
}
.contact-sec .card-hover:before {
  opacity: 1;
}
.contact-sec .news-content {
  background: transparent;
  padding-top: 0;
}
.contact-sec .other-news {
  background: #fff;
  padding: 4rem;
  border-radius: 3rem;
}
.contact-sec .head {
  margin-bottom: 3.5rem !important;
}
.contact-form-block {
  margin-top: 0rem !important;
}
.contact-sec .head h6 {
  color: #111111;
}
.about-icon {
  width: 70px;
}
.plant-sec {
  border-bottom: 1px solid #000;
  margin-bottom: 10rem;
  padding-top: 0px;
}
.text-normal {
  font-size: 2rem !important;
  line-height: 1.5 !important;
}
.plant-sec.detail-headline .info .item {
  justify-content: center;
}
.plant-sec.detail-headline .info .item:first-child {
  padding: 6rem 8rem;
}
.plant-sec.detail-headline .info .item figure img {
  height: auto;
}
.file-wrapper {
  overflow: hidden;
  background: transparent;
  padding: 0 20px;
  position: relative;
  margin-bottom: 0px;
  cursor: pointer;
  width: 100%;
  height: 60px;
  border: solid #e5eae6 .1rem;
  border-radius: 100vmax;
}
.file-wrapper input {
  left: 0;
  opacity: .01;
  cursor: pointer;
  position: absolute;
  -moz-opacity: .01;
  filter: alpha(opacity=1);
}
.file-wrapper .file-button {
  float: left;
  cursor: pointer;
  margin-left: -20px;
  padding: 13px 20px;
  background: #272727;
  display: inline-block;
  width: auto;
  font-size: 1.7rem;
  color: #fff;
  height: 58px;
  align-items: center;
  display: flex;
  line-height: 0;
}
.file-wrapper input#resume {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  outline: none;
  width: 100%;
  padding: 10px 32px;
  display: block;
  margin-bottom: 0px;
}
.file-holder {
  padding-left: 25px;
  position: absolute;
  left: 171px;
  right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 57px;
  font-size: 1.7rem;
}
#form_process {
  -webkit-animation-name: spinnerRotate;
  -webkit-animation-duration: 1.1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spinnerRotate;
  -moz-animation-duration: 1.1s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spinnerRotate;
  -ms-animation-duration: 1.1s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  display: inline-block;
  margin-left: 10px;
  position: relative;
  visibility: hidden;
  width: 15px;
  height: 15px;
  border: 2px dashed #f26b35;
  border-radius: 50%;
  top: 3px;
}
.alert {
  margin-top: 0px;
  padding: 25px;
  background: #fff;
  text-align: center;
  line-height: 23px;
}
.alert.alert-success {
  color: #508e14;
  background: #f0f0f0;
}
.alert.alert-danger {
  color: #454545;
  background-color: #ffb4b4;
}
p#error_data {
  color: red;
  margin: 0px;
  font-size: initial;
}
@-webkit-keyframes spinnerRotate {
  from {
    -webkit-transform: rotate(0)
  }
  to {
    -webkit-transform: rotate(360deg)
  }
}
@-moz-keyframes spinnerRotate {
  from {
    -moz-transform: rotate(0)
  }
  to {
    -moz-transform: rotate(360deg)
  }
}
@-ms-keyframes spinnerRotate {
  from {
    -ms-transform: rotate(0)
  }
  to {
    -ms-transform: rotate(360deg)
  }
}
@media only screen and (min-width: 1023px) {
  .stats .left .head p {
    padding-right: 60px;
  }
}
/*
  .header-menu .menu-item {
    margin-left: 0;
    margin-right: 20px;
  }
*/
@media only screen and (min-width: 1025px) and (max-width: 1399px) {
  .header-menu .menu-item {
    margin-right: 1.8rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .start-content .start-slider figure img {
    transform: inherit !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1025px) {
  .product-card figcaption {
    width: 50%;
  }
  .product-card figure .image {
    width: 55% !important;
  }
  .card-items .card figcaption .head span {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .plant-sec.detail-headline .info .item:first-child {
    padding: 6rem 1.4rem;
  }
  .card-items .card figcaption p, .text-normal, .stats .left .head p {
    font-size: 16px !important;
    line-height: 1.5;
  }
  .card-items .card figcaption .head span {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 1025px) {
  .detail-headline .info .item:first-child {
    padding: 4rem 1.4rem;
  }
  .news-content .news-cards .item {
    grid-column: span 6;
  }
	  .vision-card {
    min-height: auto;
  }
}

@media only screen and (max-width: 1024px) {
.vision-card figcaption {
    position: relative !important;
}
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 4rem;
  }
  .card-items .card figcaption .head span {
    font-size: 3.6rem;
  }
  .news-cards .row {
    grid-template-columns: auto;
  }
  footer .bottom ul {
    align-items: center;
    justify-content: center;
  }
  .product-card figcaption {
    width: 100%;
    position: relative !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .product-card figure .image {
    width: 100% !important;
    float: inherit;
  }
  .card-items .product-card figure .image {
    min-height: 45rem;
  }
  footer .bottom .mobile-column {
    margin-top: 15px;
  }
  .stats {
    gap: 5rem;
  }
  .vision-card {
    min-height: auto;
  }
  .vision-card figcaption {
    position: relative !important;
  }
	    .start-content .caption span {
        font-size: 28px;
    }
}
@media only screen and (max-width: 399px) {
  .cb img {
    top: auto;
  }
}
