header::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.5s;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: -1;
}
header.sticky::after {
  opacity: 0;
}
header .icon_menu {
  display: none;
}
header .header_main .right nav .close {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  background: url(../img/close.svg) no-repeat center / contain;
  margin: 0 6px 0 auto;
  transition: all 0.3s;
  display: none;
}
header .header_main .right nav .close:hover {
  opacity: 0.5;
}
header .header_main .right nav .menu > li {
  position: relative;
}
header .header_main .right nav .menu > li:hover .sub-menu {
  opacity: 1;
  transform: translate(0);
  pointer-events: all;
}
header .header_main .right nav .current-menu-item::before,
header .header_main .right nav .current-menu-parent::before,
header .header_main .right nav .active::before {
  opacity: 1;
}
header .header_main .right nav .current-menu-item > a,
header .header_main .right nav .current-menu-parent > a,
header .header_main .right nav .active > a {
  color: var(--theme_color);
}
header .header_main .right nav .sub-menu {
  left: -1.5rem;
  position: absolute;
  min-width: 10rem;
  background-color: white;
  border-radius:10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateY(-1rem);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.4s, opacity 0.3s;
  top: 3rem;
}
header .header_main .right nav .sub-menu li {
  margin-bottom: 5px;
  margin-left: unset;
}
header .header_main .right nav .sub-menu li a {
  white-space: nowrap;
  display: block;
  padding: 8px 0;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}
header .header_main .right nav .sub-menu li a:hover {
  color: var(--theme_color);
}
.blog_item {
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
}
.blog_item:hover {
  box-shadow: 15px 10px 15px rgba(155, 155, 155, 0.35);
}
.blog_item:hover .img img {
  transform: scale(1.1);
}
.blog_item .img {
  aspect-ratio: 465/319;
  border-radius: 7px;
  overflow: hidden;
}
.blog_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}
.blog_item .info {
  padding: 33px 6.5% 23px;
}
.blog_item .info strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 13px;
  display: block;
}
.blog_item .info p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 25px;
  color: #4c4c4c;
  font-weight: 500;
}
.blog_item .bottom {
  padding: 18px 32px 24px;
  border-top: 1px solid #e6e6e6;
}
.blog_item .bottom p {
  color: var(--theme_color);
  font-weight: 600;
  font-size: 17px;
}
.blog_item .bottom p span {
  color: rgba(63, 63, 63, 0.85);
  font-weight: 500;
}
.newsbtn {
  display: flex;
  margin: 0 auto;
  align-items: center;
  background-color: #ffff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid rgba(36, 36, 36, 0.45);
  padding: 13px 41.5px;
  column-gap: 11px;
  transition: all 0.3s;
  width: fit-content;
}
.newsbtn:hover {
  background-color: var(--theme_color);
  color: #fff;
  border: 1px solid transparent;
}
.newsbtn:hover::after {
  transform: translateX(5px);
  filter: brightness(15);
}
.newsbtn::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  transition: all 0.3s;
  background: url(../img/arrow-r.svg) no-repeat center / contain;
}
.videoplay,
.play,
select,
input[type='checkbox'],
label p {
  cursor: pointer;
}
.connect_module {
  padding: 50px 0;
  overflow: hidden;
}
.connect_module .left {
  width: 44.02%;
  padding: 269px 0;
}
.connect_module .left h2 {
  font-size: 48px;
  font-weight: 600;
  max-width: 513px;
  line-height: 60px;
}
.connect_module .left h2 span {
  color: var(--theme_color);
}
.connect_module .left p {
  font-size: 17px;
  color: #4c4c4c;
  line-height: 28px;
  max-width: 536px;
  margin-top: 37px;
}
.connect_module .right {
  width: 52.01388%;
  margin-left: auto;
  position: relative;
}
.connect_module .right::after {
  content: '';
  display: block;
  width: 100vw;
  position: absolute;
  top: 50%;
  right: 10%;
  height: 74.87623%;
  transform: translateY(-50%);
  z-index: -1;
  background-color: #eef5ee;
}
.connect_module .right form {
  display: flex;
  flex-wrap: wrap;
  gap: 21px 1rem;
  width: 100%;
  padding: 55px 6.8% 52px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.connect_module .right form .col2 {
  width: 48%;
  display: inline-block;
  margin: 0 auto;
}
.connect_module .right form .col3 {
  width: 100%;
}
.connect_module .right form input,
.connect_module .right form select,
.connect_module .right form textarea {
  font-size: 16px;
  padding: 16.5px 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  font-weight: 400;
}
.connect_module .right form textarea{
  max-height: 140px;
}
.connect_module .right form input::placeholder,
.connect_module .right form select::placeholder,
.connect_module .right form textarea::placeholder {
  font-size: 16px;
  color: #555555;
  font-weight: 400;
}
.connect_module .right form textarea {
  height: 100%;
}
.connect_module .wpcf7-spinner{
  position: absolute;
}

.connect_module .right form select {
  color: #555;
  background: url(../img/g-b.svg) no-repeat;
  background-position: 95.3% center;
  background-size: 2%;
}
.connect_module .right .checkbox-container {
  margin-bottom: 5px;
  margin-top: 6px;
}
.connect_module .right .checkbox-container .checkbox-item {
  display: flex;
}
.connect_module .right .checkbox-container .checkbox-item input[type="checkbox"] {
  flex-shrink: 0;
  width: auto;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 26px ;
  height: 26px ;
  padding: 0;
  margin: 0;
  border-radius: 3px;
  position: relative;
  margin-right: 10px;
}
.connect_module .right .checkbox-container .checkbox-item input[type="checkbox"]:checked {
  border: 1px solid var(--theme_color);
  background-color: var(--theme_color);
}
.connect_module .right .checkbox-container .checkbox-item input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: url("../img/yes.svg") no-repeat;
  background-position: center;
  background-size: contain;
}
.connect_module .right .checkbox-container .checkbox-item p {
  font-size: 16px;
  font-weight: 500;
  color: #555555;
  line-height: 22px;
}
.connect_module .right .submit label {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.connect_module .right .submit label:hover input {
  background-color: #4c4c4c;
}
.connect_module .right .submit label:hover::after {
  left: 58%;
}
.connect_module .right .submit label::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 57%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  background: url(../img/arrow-wr.svg) no-repeat center / contain;
}
.connect_module .right input[type='submit'] {
  width: 100%;
  background-color: var(--theme_color);
  color: #fff;
  transition: all 0.3s;
  font-size: 17px;
}
.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 80vh;
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper_btns {
  display: flex;
}
.swiper_btns div {
  width: 70px;
  height: 70px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  border-radius: 6px;
  background-color: var(--theme_color);
  border: 1px solid transparent;
}
.swiper_btns div:hover {
  box-shadow: 0 0 10px rgba(0, 120, 30, 0.5);
  border: 1px solid var(--theme_color);
}
.swiper_btns div::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(10);
  transition: all 0.3s;
  background: url(../img/b-l.svg) no-repeat center / contain;
}
.swiper_btns div.swiper-button-disabled {
  cursor: default;
  opacity: 0.68;
  background-color: transparent;
  pointer-events: none;
  border: 1px solid rgba(36, 36, 36, 0.45);
}
.swiper_btns div.swiper-button-disabled::after {
  filter: brightness(0);
}
.swiper_btns .btn_next {
  transform: rotate(180deg);
}
.swiper_btns.middle {
  max-width: 1671px;
  width: 98%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  justify-content: space-between;
}
.swiper_btns.middle div {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}
.swiper_btns.middle .btn_next {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.swiper_btns.small div {
  width: 12px;
  height: 23px;
}
.service_fibers {
  padding: 99px 0 142px;
}
.service_fibers .left {
  width: 45%;
  flex-shrink: 0;
  margin-left: -13px;
}
.service_fibers .left .img {
  width: 100%;
  max-width: 594px;
  padding-bottom: 99.1429%;
  position: relative;
  margin-left: auto;
}
.service_fibers .left .img:hover img {
  transform: scale(1.03);
}
.service_fibers .left .img::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 8.42433%;
  right: 9.4276%;
  border-radius: 10px;
  z-index: -1;
  background-color: rgba(0, 120, 30, 0.07);
}
.service_fibers .left .img::before {
  content: '';
  display: block;
  position: absolute;
  top: -8%;
  right: -7%;
  width: 16.11295%;
  height: 20.3579%;
  z-index: 2;
  background: url(../img/helpimgtop.svg) no-repeat center / contain;
}
.service_fibers .left .img .imgcon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  transition: all 1s;
}
.service_fibers .left .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.5s;
}
.service_fibers .right {
  width: 43.9472222%;
  flex-shrink: 0;
  padding-top: 26px;
}
.service_fibers .right .head p {
  font-size: 17px;
  color: #4c4c4c;
  line-height: 28px;
  margin-top: 26px;
}
.service_fibers .right p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 15px;
}
.service_fibers .right i {
  display: block;
  height: 98px;
  width: 6px;
  position: relative;
  margin-top: 30px;
}
.service_fibers .right i::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(36, 36, 36, 0.24);
}
.service_fibers .right i::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: var(--theme_color);
}
.service_fibers .right a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 15px 25px;
  border-radius: 6px;
  transition: all 0.3s;
  gap: 6px;
  margin-top: 63px;
  background-color: var(--theme_color);
}
.service_fibers .right a:hover {
  background-color: #373737;
}
.service_fibers .right a:hover::after {
  transform: translate(5px, 1px);
}
.service_fibers .right a::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  transform: translateY(1px);
  transition: all 0.3s;
  background: url(../img/arrow-wr.svg) no-repeat center / contain;
}
.videoend {
  padding-top: 59px;
  padding-bottom: 146px;
}
.videoend .flex {
  gap: 1.944444%;
}
.videoend a {
  border-radius: 10px;
  background: #f3f3f3;
  display: flex;
  padding: 48px 48px 62px 48px;
  gap: 5.75%;
  transition: all 0.3s;
}
.videoend a.active {
  background-color: var(--theme_color);
}
.videoend a.active strong {
  color: #ffff;
}
.videoend a.active i {
  filter: grayscale(1) brightness(3);
}
.videoend a.active p {
  color: rgba(255, 255, 255, 0.85);
}
.videoend a.active span {
  background-color: #fff;
  color: var(--theme_color);
}
.videoend a.active span:hover {
  background-color: #333333;
  color: #fff;
}
.videoend a.active span:hover::after {
  filter: grayscale(1) brightness(3);
}
.videoend a.active span::after {
  filter: brightness(1);
}
.videoend a i {
  display: block;
  width: 87px;
  height: 86px;
  flex-shrink: 0;
  transition: all 0.3s;
  background: url('../img/endicon.svg') no-repeat center / contain;
}
.videoend a .text {
  padding-top: 8px;
  transition: all 0.3s;
}
.videoend a strong {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
  color: #161616;
  transition: all 0.3s;
}
.videoend a p {
  font-size: 16px;
  line-height: 22px;
  color: rgba(91, 91, 91, 0.85);
  transition: all 0.3s;
}
.videoend a span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 13.5px 25px;
  border-radius: 6px;
  width: fit-content;
  margin-top: 26px;
  border: 1px solid var(--theme_color);
  background-color: transparent;
  transition: all 0.3s;
}
.videoend a span::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 13px;
  margin-left: 13px;
  transition: all 0.3s;
  filter: brightness(0);
  background: url(../img/g-ricon.svg) no-repeat center / contain;
}
.videoend .right a {
  background: #f3f3f3;
  transition: all 0.3s;
}
.videoend .right a.active {
  background-color: var(--theme_color);
}
.videoend .right a.active i {
  filter: grayscale(1) brightness(3);
}
.videoend .right a.active strong {
  color: #ffff;
}
.videoend .right a.active p {
  color: rgba(255, 255, 255, 0.85);
}
.videoend .right a.active span {
  background-color: #fff;
  color: var(--theme_color);
}
.videoend .right a.active span:hover {
  background-color: #333333;
  color: #fff;
}
.videoend .right a.active span:hover::after {
  filter: grayscale(1) brightness(3);
}
.videoend .right a.active span::after {
  background: url(../img/g-ricon.svg) no-repeat center / contain;
}
.videoend .right a span {
  border: 1px solid var(--theme_color);
  background-color: transparent;
  transition: all 0.3s;
}
.videoend .right a span:hover {
  color: #fff;
  background-color: var(--theme_color);
}
.videoend .right a span:hover::after {
  filter: grayscale(1) brightness(3);
}
.videoend .right a strong {
  color: #161616;
  transition: all 0.3s;
}
.videoend .right a p {
  color: rgba(91, 91, 91, 0.85);
  transition: all 0.3s;
}
.videoend .right i {
  width: 67px;
  height: 90px;
  transition: all 0.3s;
  filter: unset;
  background: url(../img/endicon1.svg) no-repeat center / contain;
}
.service_system {
  padding: 34px 0 147px;
}
.service_system .left {
  width: 43.19444%;
  flex-shrink: 0;
}
.service_system .left .head p {
  font-size: 17px;
  font-weight: 300;
  color: #636363;
  line-height: 26px;
  margin-top: 34px;
}
.service_system .left .imgs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 7.3%;
  margin-top: 38px;
}
.service_system .left .imgs .img:nth-child(2) {
  min-width: 87px;
}
.service_system .left .imgs .img img {
  height: 100%;
  display: block;
  object-fit: contain;
}
.service_system .left a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 206px;
  padding: 0 10px;
  height: 54px;
  border-radius: 6px;
  transition: all 0.3s;
  gap: 6px;
  margin-top: 55px;
  background-color: var(--theme_color);
}
.service_system .left a:hover {
  background-color: #373737;
}
.service_system .left a:hover::after {
  transform: translate(5px, 1px);
}
.service_system .left a::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  transform: translateY(1px);
  transition: all 0.3s;
  background: url(../img/arrow-wr.svg) no-repeat center / contain;
}
.service_system .right {
  width: calc(42.43055555% + 10px);
  overflow: hidden;
  padding: 15px 0;
  padding-left: 10px;
}
.service_system .right .swiper_box {
  width: 73.563%;
}
.service_system .right .certificates_standard_swiper .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 448/607;
  box-shadow: 0 10px 10px rgba(157, 157, 157, 0.3);
  border: 1px solid #d8d8d8;
  transition: all 0.3s;
  opacity: 0;
}
.service_system .right .certificates_standard_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}
.service_system .right .certificates_standard_swiper .swiper-slide-active {
  opacity: 1;
}
.sustainability_Classification .main{
  padding-bottom: 90px !important;
}

header .contact_icon{
  display: none !important;
}