/*************************************bannerCarousel**************************************/
.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* height: 600px;*/
  --y: -1;
}
.banner-carousel .operate {
  position: absolute;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100px;
  background: none;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  font-size: 1.4em;
}
.banner-carousel .operate span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
}
.banner-carousel .operate span::after {
  position: absolute;
  content: "";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid;
  width: 50px;
  height: 50px;
}
.banner-carousel .operate.left {
  left: 100px;
}
.banner-carousel .operate.right {
  right: 100px;
}

@media screen and (max-width: 1601px) {
  .banner-carousel .operate.left {
    left: 0;
  }
  .banner-carousel .operate.right {
    right: 0;
  }
  .banner-carousel .operate span::after {
    width: 40px;
    height: 40px;
  }
}
.banner-carousel .operate:hover > span {
  color: var(--main-color);
}

.banner-carousel ul.carousel-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-carousel ul.carousel-content li {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  top: 0;
  --imgSrc: "";
}
.banner-carousel ul.carousel-content li .imgData {
  position: relative;
  height: 85vh;
  min-height: 450px;
  background: var(--imgSrc) no-repeat;
  width: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.banner-carousel ul.carousel-content li img {
  vertical-align: top;
}
.banner-carousel ul.carousel-content li .carousel-contentMess {
  position: absolute;
  /* width:88%;*/
  height: 100%;
  display: flex;
  /*  flex-direction: column;
  justify-content: center;*/
  align-items: center;
  /*z-index: 10;*/
  /*  left: 0;*/
  top: 0;
  color: #3c6a36;
  /* max-width: 1320px;*/
}

@media (min-width: 992px) {
  .banner-carousel ul.carousel-content li .carousel-contentMess {
    padding-left: 5%;
  }
}
.banner-carousel ul.carousel-content li .carousel-contentMess > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.banner-carousel ul.carousel-content li.show_ {
  opacity: 1;
  /* position: relative;*/
  z-index: 1;
}
.banner-carousel ul.carousel-content li.current {
  animation: simpleAn 0.6s ease forwards;
  z-index: 2;
  /*    position: relative;*/
}
.banner-carousel ul.carousel-content li:first-child {
  opacity: 0;
  position: relative;
  z-index: -1;
  height: 85vh;
  min-height: 450px;
  width: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.banner-carousel ul.carousel-content li .banner-title {
  font-weight: bold;
  margin: 10px 0;
  font-size: 1.6em;
  font-family: "B612";
}
.banner-carousel ul.carousel-content > li h1,
.banner-carousel ul.carousel-content > li h2 {
  font-size: 1.8rem;
}
@media screen and (max-width: 1080px) {
  .banner-carousel .operate {
    display: none !important;
  }
  .banner-carousel ul.carousel-content > li .carousel-contentMess {
    padding: 20px;
  }
}
@media screen and (min-width: 1081px) {
  .banner-carousel ul.carousel-content li .banner-title {
    font-size: 2.4em;
    line-height: 1.45em;
    /*  text-align: center;*/
    margin: 0;
  }
}
/*.banner-carousel ul.carousel-content li:nth-child(3) p,.banner-carousel ul.carousel-content li:nth-child(4) p
{
    font-family: "georgia";
}*/
.titleCurrent {
  animation: simpleAn 3.6s cubic-bezier(0.13, 0.95, 0, 0.99) forwards;
}
.imgCurrent {
  animation: simpleAn 2s cubic-bezier(0.13, 0.95, 0, 0.99) forwards;
}
@-webkit-keyframes simpleAn {
  0% {
    -webkit-transform: translateX(calc(100% * var(--y)));
    -moz-transform: translateX(calc(100% * var(--y)));
    -ms-transform: translateX(calc(100% * var(--y)));
    -o-transform: translateX(calc(100% * var(--y)));
    transform: translateX(calc(100% * var(--y)));
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.banner-carousel ul.carousel-content li.after {
  -webkit-animation: simplyAn 0.6s ease forwards;
  -o-animation: simplyAn 0.6s ease forwards;
  animation: simplyAn 0.6s ease forwards;
  /* position: relative;*/
}
@-webkit-keyframes simplyAn {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(calc(-100% * var(--y)));
    -moz-transform: translateX(calc(-100% * var(--y)));
    -ms-transform: translateX(calc(-100% * var(--y)));
    -o-transform: translateX(calc(-100% * var(--y)));
    transform: translateX(calc(-100% * var(--y)));
    opacity: 1;
  }
}
.banner-carousel ul.scroll {
  position: absolute;
  bottom: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*    background:rgba(88,88,88,0.8);*/
  z-index: 10;
}
.banner-carousel ul.scroll li {
  position: relative;
  width: 30px;
  height: 12px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: white;
  margin: 5px;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  cursor: pointer;
}
.banner-carousel ul.scroll li.current {
  background: var(--main-color);
  width: 12px;
}
.banner-carousel ul.scroll li:hover {
  background: var(--main-color);
}
.banner-carousel .banner-btn {
  background: var(--main-color);
  color: var(--white-color);
  border: 1px solid transparent;
  padding-right: 50px;
  margin: 2em 0;
}

@media screen and (max-width: 1320px) {
  .banner-carousel .banner-btn {
    margin: 1em 0;
  }
}
.banner-carousel .banner-btn:hover {
  border: 1px solid var(--link-hover-color);
  background: var(--link-hover-color);
}

/*************************************bannerCarousel**************************************/
.banner-btn {
  position: relative;
  font-size: 16px;
  color: var(--white-color);
  padding: 8px 30px;
  display: inline-block;
  background: linear-gradient(to right, #afc080, #c1cb7a);
  font-weight: bold;
  width: auto;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  border: none;
}
.banner-btn::before {
  position: absolute;
  right: 20px;
  content: "\e910";
  font-family: icomoon;
}
.banner-btn:hover {
  color: var(--white-color);
  background: var(--link-hover-color);
}
/* Nuka */
.new-nuka-btn {
  position: relative;
  max-width: 200px;
  width: 200px;
  height: 40px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: var(--purple-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  text-transform: uppercase;
}
.new-nuka-btn::before {
  position: absolute;
  content: "";
  -webkit-border-radius: var(--rd, 30px);
  -moz-border-radius: var(--rd, 30px);
  border-radius: var(--rd, 30px);
  height: var(--hg, 100%);
  width: var(--wd, 100%);
  -webkit-transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  -moz-transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  -ms-transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  -o-transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  /*   background:var(--orange-color);*/
  border: 2px solid var(--purple-color);
}
.new-nuka-btn::after {
  position: absolute;
  content: attr(data-text);
  width: var(--afterw, 0);
  height: var(--afterh, 0);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: var(--bk, transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  -moz-transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  -ms-transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  -o-transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  transition: all cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
  opacity: var(--afterop, 0);
}
.new-nuka-btn:hover {
  --rd: 0;
  --wd: 50%;
  --bk: var(--purple-color);
  /*--bw:0;*/
  --hg: calc(100% + 2px);
  --afterw: 100%;
  --afterh: 100%;
  --afterop: 1;
  color: var(--white-color);
}
/**********************************************************************new-nuka-btn*********************************************************************************/
/***********************************************************************index************************************************************************/
.mainfirst {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 5%;
  background: rgba(255, 255, 255, 0.6);
  margin-top: -40px;
  position: relative;
  z-index: 3;
}
.mainfirst p {
  font-size: 1.1em;
  line-height: 1.65em;
}
.main-second {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(rgba(229, 246, 228, 0.7) 0, #ffffff 100%);
}

.graphic-display {
  position: relative;
  display: grid;
  grid-gap: 30px;
}
.graphic-display li {
  position: relative;
}

.graphic-display li:nth-child(2) {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
}
.graphic-display li > a,
.graphic-display li > div > a {
  position: relative;
  display: block;
  --backcolor: rgba(19, 19, 19, 0.2);
  overflow: hidden;
  --imgTranslate: 0;
  --messTranslate: -110%;
  --h4Opacity: 1;
}
.graphic-display li .pic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 540px;
  overflow: hidden;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  -webkit-transform: translateX(var(--imgTranslate));
  -moz-transform: translateX(var(--imgTranslate));
  -ms-transform: translateX(var(--imgTranslate));
  -o-transform: translateX(var(--imgTranslate));
  transform: translateX(var(--imgTranslate));
}
.graphic-display li .wordMess {
  padding: 0 20px;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #3c6a36;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

@media screen and (min-width: 1081px) {
  .graphic-display li .wordMess {
    -webkit-transform: translateX(var(--messTranslate));
    -moz-transform: translateX(var(--messTranslate));
    -ms-transform: translateX(var(--messTranslate));
    -o-transform: translateX(var(--messTranslate));
    transform: translateX(var(--messTranslate));
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
  .graphic-display li .wordMess p {
    font-size: 1.08em;
  }
}

.graphic-display li .wordMess h2 {
  position: relative;
  width: 100%;
}

.graphic-display li .pic > .title {
  display: block;
  font-weight: bold;
  font-family: "B612", Arial, sans-serif;
  position: absolute;
  color: var(--main-color);
  font-size: 2em;
  padding: 20px 20px;
  margin: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  opacity: var(--h4Opacity);
}

.graphic-display li > a:hover,
.graphic-display li > div > a:hover {
  --messTranslate: 0;
  --h4Opacity: 0;
  /* --imgTranslate: 100%;*/
}
.graphic-display li > a img,
.graphic-display li > div > a img {
  position: relative;
  vertical-align: top;
}
.graphic-display li > div {
  position: relative;
  margin: 50px auto;
}
.graphic-display li > div > p {
  position: relative;
  font-size: 7em;
  line-height: 0.8em;
  color: rgba(200, 200, 200, 0.5);
  margin: 20px 0;
}
.graphic-display li .rightAp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.graphic-display li .banner-btn {
  position: relative;
  width: 220px !important;
  margin: 20px !important;
  color: var(--white-color);
  border: 1px solid var(--main-color);
  background: var(--main-color);
}
.graphic-display li .banner-btn:hover {
  background: var(--white-color);
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
@media screen and (max-width: 1080px) {
  .graphic-display li .pic {
    position: absolute;
    height: 100%;
  }
  .graphic-display li .wordMess {
    position: relative;
    line-height: 1.6em;
  }
  .graphic-display li > a img,
  .graphic-display li > div > a img {
    height: 100%;
  }
}
@media screen and (min-width: 1081px) {
  .graphic-display {
    grid-template-columns: repeat(auto-fill, 48%);
    justify-content: space-between;
    grid-gap: 10px;
  }

  .graphic-display li .wordMess h2 {
    font-size: 2em;
  }
  .pc-word {
    transform: translateY(30px);
  }
}
@media screen and (max-width: 1320px) and (min-width: 1081px) {
  .graphic-display li > div > p {
    font-size: 7em;
  }
}

@media screen and (max-width: 1080px) {
  .graphic-display li > div > p {
    font-size: 5em;
  }
  .pc-word {
    max-width: 100% !important;
    margin-top: 30px;
  }
}

.main-third {
  position: relative;
  margin: 50px 0;
}
.main-third .container {
  position: relative;
  display: grid;
}
.main-third .mess {
  color: var(--black-color);
}
.main-third .mess .banner-btn {
  position: relative;
  padding-right: 50px;
  margin: 30px auto;
}
.main-third .mess h2 {
  font-family: " B612";
}
.main-third .img_ {
  position: relative;
}
.main-third .img_ img {
  position: relative;
  max-width: none;
  vertical-align: top;
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  -o-transform: translateY(-60px);
  transform: translateY(-60px);
}

@media screen and (max-width: 1080px) {
  .main-third .img_ img {
    width: 100%;
  }
}
.main-third .background_ {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  background: linear-gradient(#ffffff 0, rgba(229, 246, 228, 0.7) 100%);
}

@media screen and (min-width: 1081px) {
  .main-third .background_ {
    width: 60%;
  }
  .main-third .container {
    grid-template-columns: 48% 48%;
    justify-content: space-between;
    align-items: center;
  }
  .main-third .mess h2 {
    font-size: 2.4em;
  }
  .main-third .mess p {
    font-size: 1.08em;
  }
}

.main-content {
  position: relative;
}

.main-fourth {
  position: relative;
  padding: 60px 0;
}

.rowData {
  position: relative;
  display: grid;
  grid-gap: 30px;
}

@media screen and (min-width: 1081px) {
  .rowData {
    grid-template-columns: repeat(auto-fill, 31%);
    justify-content: space-between;
    grid-gap: 0;
  }
}
.rowData > li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blueBack);
}
.rowData > li h3 {
  font-size: 1.4em;
  font-family: "B612";
  font-weight: bold;
  margin-bottom: 5px;
}
.rowData > li > span {
  display: block;
  height: 100px;
}
.rowData > li img {
  width: auto !important;
  height: 94px !important;
}
.rowData > li p {
  font-size: 1.08em;
}

.main-applications {
  position: relative;
  display: grid;
  grid-gap: 20px;
  margin: 20px 0;
}

@media screen and (min-width: 1081px) {
  .main-applications {
    grid-template-columns: repeat(auto-fill, 31%);
    justify-content: space-between;
    grid-gap: 0px;
  }
  .main-applications > li > a > div {
    height: calc(100% - 246px);
  }
}
.main-applications > li {
  position: relative;
  /*height: 306px;*/
}
.main-applications > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  --colobk: var(--back-color);
  --boxs: 1px 1px 6px 2px rgba(202, 202, 202, 1);
  --transY: -20px;
}
.main-applications > li > a > img {
  position: relative;
  z-index: 4;
  transition: all ease-in-out 0.5s;
  vertical-align: top;
}

.main-applications > li > a > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  width: 80%;
  justify-content: center;
  padding: 10px;

  box-shadow: var(--boxs);
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  -webkit-transform: translateY(var(--transY));
  -moz-transform: translateY(var(--transY));
  -ms-transform: translateY(var(--transY));
  -o-transform: translateY(var(--transY));
  transform: translateY(var(--transY));
  background: var(--white-color);
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 60px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.main-applications > li > a > div h3 {
  margin: 0;
  padding: 5px 0;
  color: var(--main-color);
}
.main-applications > li > a p {
  position: relative;
  padding: 2px 0;
  color: var(--back-color);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.main-applications > li > a .hollow-btn {
  position: absolute;
  border: 1px solid var(--white-color);
  padding-right: 30px;
  font-weight: bold;
  bottom: 20px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  color: var(--colobk);
}
.main-applications > li > a .hollow-btn::after {
  position: absolute;
  content: "\f061";
  right: 10px;
  font-family: FontAwesome;
}
.main-applications > li > a:hover {
  --colobk: var(--main-color);
  --boxs: 1px 8px 8px 4px rgba(182, 182, 182, 1);
  color: var(--main-color);
  --transY: -30px;
}
/*
.main-applications>li>a:hover p
{
    font-weight: bold;
}
*/
/***********************************************************************index************************************************************************/
/**********************footer************************/
.bottom_message li,
.bottom_message a {
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  color: rgba(202, 202, 202, 1) !important;
}
.bottom_median {
  position: relative;
  border-top: 1px solid rgba(41, 49, 66, 1);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cap-title {
  font-size: 1.3em;
  position: relative;
  width: 100%;
  font-weight: bold;
}
.cap-title > a {
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  color: var(--white-color);
}
.cap-title > a:hover {
  color: var(--main-color) !important;
}
.cap-title::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  /*    background: rgba(255,255,255,1);*/
  left: 0;
  bottom: 0;
}
.virus_footer {
  position: relative;
  width: 100%;
  background: rgba(34, 42, 53, 1);
  color: rgba(202, 202, 202, 1);
}
.bottom_message {
  position: relative;
  width: 88%;
  max-width: 1320px;
  padding: 50px 0 30px 0;
  margin: auto;
  grid-gap: 20px;
}
@media screen and (max-width: 768px) {
  .bottom_message {
    width: 100%;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.bottom_message a:hover {
  color: var(--main-color) !important;
}
.footer-logo {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1081px) {
  .footer-data {
    grid-template-columns: 40% 35% 25%;
    justify-content: space-between;
  }
}
.footer-media {
  position: relative;
}
.footer-contactUs {
  position: relative;
}
.footer-data {
  position: relative;
  display: grid;
}
.footer-data p {
  padding-bottom: 5px;
}
.cap-mess li {
  position: relative;
  margin: 25px 0;
  display: flex;
}
.footer-data .footer-contact {
  margin-left: -10px;
}
.footer-contact li {
  position: relative;
  margin: 10px 0;
}
.cap-mess-address,
.cap-mess-email,
.cap-mess-tel,
.cap-mess-fax {
  position: relative;
  padding-left: 40px;
}
.cap-mess-address::before,
.cap-mess-email::before,
.cap-mess-tel::before,
.cap-mess-fax::before {
  position: absolute;
  content: "\e909";
  width: 38px;
  height: 39px;
  left: 0;
  font-family: icomoon;
  display: flex;
  justify-content: center;

  font-size: 1.2em;
  align-items: center;
  top: -5px;
}
.cap-mess-email::before {
  content: "\e931";
}
.cap-mess-tel::before {
  content: "\e980";
}
.cap-mess-fax::before {
  content: "\e942";
}

.btn-normal {
  position: relative;
  padding: 10px 20px;
  background: rgba(255, 192, 0, 1);
  border-radius: 10px;
}
.mains5 {
  width: 100%;
  height: auto;
  margin: 80px auto;
}
.mains5 p {
  text-align: center;
}
/**********************footer**************************/
main {
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.roatae_angle {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.new-font {
  font-family: "segoeuib";
}

.center-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.space-layout {
  margin: 60px auto;
}

.contact-data {
  position: relative;
}
.contact-data > li {
  position: relative;
  padding-left: 35px;
  margin: 10px 0 10px 0;
}
.contact-data a {
  /*color:var(--white-color);*/
}
.contact-data a:hover {
  color: var(--main-color);
}
.contact-address::before,
.contact-email::before,
.contact-call::before,
.contact-fax::before {
  position: absolute;
  content: "";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-family: FontAwesome;
  width: 30px;
  height: 30px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  top: 0;
  background: var(--light-green-color);
}
.contact-address::before {
  content: "\f041";
}
.contact-email::before {
  content: "\f0e0";
}
.contact-call::before {
  content: "\f095";
}
.contact-fax::before {
  content: "\f1ac";
}

.footer-form {
  position: relative;
  margin: 20px 0;
}
.footer-form > div {
  position: relative;
  background: var(--white-color);
  width: 100%;
  display: flex;
  justify-content: space-between;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
}
.footer-form > div input {
  position: relative;
  border: none;
  width: 70%;
  outline: none;
  padding: 10px 20px;
}
.footer-form > div button {
  position: relative;
  width: 30%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border: none;
  background: var(--light-green-color);
  color: var(--white-color);
  cursor: pointer;
}
.footer-link {
  position: relative;
}
.footer-link a {
  color: var(--white-color);
  margin: 10px 0;
  display: block;
}

.footer-title {
  padding: 5px;
}
.bottom_message .header-contact {
  justify-content: flex-start;
  margin-top: 15px;
}
/*************************************************************************nomain-banner*******************************************************************/
.nomain-banner {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  color: var(--white-color);
}
.nomain-banner p {
  font-size: 1.2em;
  text-align: center;
  color: #08294d;
}
.nomain-banner .banner-title {
  display: block;
  font-size: 2em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  line-height: 1.2em;
  font-family: "B612", Arial, sans-serif;
  position: relative;
  text-transform: capitalize;
  text-align: center;
  color: #3c6a36;
}

@media screen and (min-width: 1081px) {
  .nomain-banner .banner-title {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 1080px) {
  .nomain-banner .banner-title {
    font-size: 24px;
  }
  .nomain-banner {
    height: 40vh;
    /*   align-items: flex-end;*/
  }
  .nomain-banner img {
    height: 100%;
    max-width: none;
  }
}

@media screen and (min-width: 1081px) {
  .nomain-banner-mess {
    padding: 10px 0;
  }
}
.nomain-banner-mess {
  position: absolute;
  bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*************************************************************************nomain-banner*******************************************************************/
.aboutLayout {
  position: relative;
}

.about-first {
  position: relative;
}
.about-first h3 {
  position: relative;

  /* background-image: -webkit-gradient(linear, left 0, right 0, from(rgb(4, 94, 170)), to(rgb(1, 152, 216)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
  margin-bottom: 10px;
  /*  display: flex;
    align-items: center;
    flex-direction: column;*/
}

.about-first .p-title {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  font-family: "B612", Arial, sans-serif;

  margin: 0;
  padding: 10px 0 8px 0;

  position: relative;
  color: var(--lightBack);
}

@media screen and (min-width: 1081px) {
  .about-first .p-title {
    font-size: 1.4em;
  }
}
.about-first > .container {
  /* display: flex;
    flex-direction: column;
    align-items: center;*/
  padding: 6px 0;
}
.about-first > .row {
  margin-top: 30px;
}
.contact-first {
  position: relative;
  display: grid;
  grid-gap: 20px;
}

@media screen and (min-width: 1081px) {
  .about-first h3,
  .about-second h3 {
    font-size: 1.6em;
  }

  .contact-first {
    grid-template-columns: 60% 30%;
    justify-content: space-between;
    grid-gap: 0;
  }
}

.about-second {
  position: relative;
  font-size: 1.1em;
  margin: 60px auto;
  text-align: center;
}
.about-second h3 {
  width: 100%;
}
.about-display {
  position: relative;
  display: grid;
  grid-gap: 20px;
}
.about-display img {
  max-height: 100px;
}
@media screen and (min-width: 1081px) {
  .about-display {
    grid-template-columns: repeat(auto-fill, 22%);
    justify-content: space-between;
  }
}
.about-display > li > a {
  display: block;
  height: 100%;
}
.about-display > li div {
  position: relative;
  padding: 20px;
  background: var(--yellowColor);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  color: var(--back-color);
  height: calc(100% - 200px);
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-display h4 {
  min-height: 78px;
  color: var(--main-color);
}
.about-display > li .banner-btn {
  position: absolute;
  border: 1px solid var(--back-color);
  color: var(--back-color);
  padding: 5px 20px;
  bottom: 20px;
  cursor: pointer;
}
.about-display > li .banner-btn:hover {
  border: 1px solid var(--main-color);
  color: var(--white-color);
}
/* .about-fixed {
  position: relative;
  background: url("../images/about-first.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;

  color: var(--back-color);
} */
.about-fixed p {
  font-size: 1.4em;
}
.about-fixed > div {
  position: relative;
  height: 100%;
  padding: 100px 0;
}
.about-fixed .banner-btn {
  position: absolute;
  border: 1px solid var(--main-color);
  color: var(--white-color);
  padding: 5px 20px;
  bottom: 40px;
  background: var(--main-color);
  right: 0;
}
.about-fixed .banner-btn:hover {
  background: var(--white-color);
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.nomainContact .nomain-banner-mess {
  align-items: flex-end;
  color: var(--back-color);
}
.nomainContact .nomain-banner-mess h2 {
  color: var(--main-color);
}
.nomainContact .nomain-banner-mess h2::after {
  right: 0;
  left: initial;
  background: var(--main-color);
}
.nomainContact p {
  font-family: "segoepr";
  text-align: right;
  font-size: 1.2em;
}
.contact-first {
  position: relative;
}
.contact-first h4 {
  font-size: 1em;
  color: rgba(99, 99, 99, 1);
}
.contact-first a {
  color: var(--main-color);
}
.contact-first a:hover {
  color: var(--yellowColor);
}

.nomain-content {
  position: relative;
  margin: 60px auto;
}

.nomain-content h1 {
  position: relative;
}
.nomain-content .layout-right > h3 {
  position: relative;
  color: var(--purple-color);
  padding-left: 30px;
}
/* .nomain-content .layout-right > h3::before {
  position: absolute;
  content: "";
  background: url("../images/rhombus.svg");
  width: 30px;
  height: 30px;
  left: 0;
} */
@media screen and (min-width: 1081px) {
  .nomain-content h1 {
    font-size: 2.2em;
    margin-top: 0;
    padding-right: 4em;
  }
}

@media screen and (max-width: 1080px) {
  .nomain-content {
    padding: 0 10px;
  }
}

.contact {
  width: 100%;
  height: auto;
  padding: 60px 0;
}
.contact h3 {
  font-size: 1.4em;
}
.contact .cap-mess > li {
  position: relative;
}
.contact .cap-mess > li::before {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.rightSide .col-md-6,
.rightSide .col-md-4 {
  width: 100% !important;
}
.rightSide.contact {
  padding: 0 !important;
}
.rightSide.contact h3 {
  font-size: 1.17em;
  padding: 10px 12px;
  margin-top: 0;
  line-height: 26px;
}
.rightSide .verifyCode img {
  height: 43px;
  right: 30px !important;
  left: unset !important;
}
.inquiry-form {
  position: relative;
  margin-top: 20px;
  padding-left: 1em;
  padding-right: 1em;
}
.inquiry-form > div {
  position: relative;
  margin-bottom: 1em;
}
.inquiry-form .row > div {
  margin-bottom: 10px;
}
.inquiry-form img {
  height: 45px;
  width: max-content;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  position: relative;
  padding: 12px 10px;
  outline: none;
  border: 1px solid rgba(180, 180, 180, 1);
  font-family: "Arial";
  width: 100%;
  border-radius: 0.3em;
}
.inquiry-form textarea {
  height: 80px;
}
.inquiry-form button {
  position: relative;
  color: var(--white-color);
  cursor: pointer;
  padding: 0.8em 2em;
  padding-right: 40px;
  background: linear-gradient(to right, #afc080, #c1cb7a);
  border-radius: 0.3em;
  display: block;
}
.inquiry-form input::-webkit-input-placeholder,
.inquiry-form textarea::-webkit-input-placeholder {
  font-family: "Arial";
  color: rgba(12, 12, 12, 0.3);
  font-size: 16px;
}
.inquiry-form input::-moz-placeholder,
.inquiry-form textarea::-moz-placeholder {
  font-family: "Arial";
  color: rgba(12, 12, 12, 0.3);
  font-size: 16px;
}
.inquiry-form input::-ms-input-placeholder,
.inquiry-form textarea::-ms-input-placeholder {
  font-family: "Arial";
  color: rgba(12, 12, 12, 0.3);
  font-size: 16px;
}

.contactmap {
  width: 100%;
  height: 600px;
}
.contactmap iframe {
  width: 100%;
  height: 100%;
}

.circle-btn {
  position: relative;
  border: 1px solid var(--purple-color);
  background: var(--purple-color);
  color: var(--white-color);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding: 10px 50px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  font-size: 1.2em;
  cursor: pointer;
}
.circle-btn:hover {
  color: var(--purple-color);
  background: var(--white-color);
}
/************************navi-layout*************************/
.navi-layout {
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: rgba(247, 248, 252, 1);
  overflow: hidden;
  margin-bottom: 80px;
  padding-bottom: 20px;
}
.navi-layout > h3 {
  position: relative;
  background: rgba(112, 48, 160, 1);
  color: rgba(255, 255, 255, 1);
  padding: 14px 20px;
  font-size: 22px;
  line-height: 30px;
  border-radius: 4px;
}
.product-navi {
  position: relative;
  padding: 10px 20px;
}
.product-navi > li {
  position: relative;
  padding: 8px 0;
}
.product-navi > li:not(:last-child) {
  border-bottom: 1px solid rgba(115, 24, 113, 0.2);
}
.product-navi > li span {
  position: absolute;
  right: 0;
  font-size: 20px;
  color: rgba(115, 24, 113, 1);
  top: 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-navi > li > a {
  font-size: 16px;
  color: rgba(112, 48, 160, 1);
  margin-right: 10px;
  line-height: 22px;
  display: block;
  padding: 8px 0;
  font-family: "seguisym";
  font-weight: bold;
}
.product-navi > li ul {
  position: relative;
  display: none;
  padding-left: 20px;
}
.product-navi > li ul a {
  position: relative;
  color: rgba(61, 61, 61, 1);
  line-height: 20px;
  display: block;
  padding: 10px 0;
  padding-right: 20px;
}
.product-navi > li ul > li:not(:last-child) {
  position: relative;
  /*	border-bottom: 1px solid rgba(212,212,212,1);*/
}

/************************navi-layout*************************/
/**********************************************************************new-svg-btn*********************************************************************************/
.circle-style-btn {
  position: relative;
  border: none;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: var(--purple-color);
  padding: 10px 20px;
  display: inline-block;
  color: var(--white-color);
}
.circle-style-btn span {
  position: relative;
  z-index: 1;
}
.circle-style-btn svg {
  position: absolute;
  width: 100%;
  height: 100%;

  left: 0;
  top: 0;
}
.circle-style-btn circle {
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out var(--duratime, 1s);
  fill: var(--yellowColor);
}
.circle-style-btn .left {
  -webkit-transform: translate(var(--pm, -20px), var(--pm, 50px));
  -moz-transform: translate(var(--pm, -20px), var(--pm, 50px));
  -ms-transform: translate(var(--pm, -20px), var(--pm, 50px));
  -o-transform: translate(var(--pm, -20px), var(--pm, 50px));
  transform: translate(var(--pm, -24px), var(--pm, 24px));
}
.circle-style-btn .right {
  -webkit-transform: translate(var(--pm, 24px), var(--pm, -24px));
  -moz-transform: translate(var(--pm, 24px), var(--pm, -24px));
  -ms-transform: translate(var(--pm, 24px), var(--pm, -24px));
  -o-transform: translate(var(--pm, 24px), var(--pm, -24px));
  transform: translate(var(--pm, 24px), var(--pm, -24px));
}
.circle-style-btn:hover {
  color: var(--white-color);
  --pm: 0;
  --duratime: 0.4s;
}
/**********************************************************************new-svg-btn*********************************************************************************/
.nomain-inquiry {
  margin: 60px 0;
}
.nomain-service {
  position: relative;
  margin: 60px 0;
}
#inquiry {
  position: absolute;
  right: 20px;
  top: -10px;
  width: 120px;
  height: 30px;
}
.gridrow-layout {
  position: relative;
  display: grid;
}
@media screen and (min-width: 1081px) {
  .gridrow-layout {
    grid-template-columns: 28% 68%;
    place-content: space-between;
  }
  .nomain-service > .layout-right > h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 1080px) {
  #inquiry {
    top: -40px;
  }
}
/**************************************************************side-navi*******************************************************************/
.side-navi-block {
  position: relative;
  padding: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.side-navi-block h3 {
  font-size: 22px;
  color: var(--white-color);
}
.side-navi {
  position: relative;
}
.side-navi > li {
  position: relative;
  margin: 10px 0;
}
.side-navi > li > a {
  position: relative;
  background: var(--light-green-color);
  display: block;
  line-height: 20px;
  width: 100%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.side-navi > li span {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 6px;
  right: 0;
  font-size: 26px;
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.side-navi > li ul {
  position: relative;
  display: none;
}
.side-navi > li > ul li {
  position: relative;
}
/*.side-navi>li>ul li:hover {
    background: rgb(211, 211, 212);
}*/
.side-navi > li > ul li a {
  position: relative;
  padding: 10px 0;
  /*background:rgba(212,212,212,1);*/
  display: block;
  line-height: 24px;
}
/**************************************************************side-navi*******************************************************************/

.nomain-service > .layout-right > h3 {
  position: relative;
  padding-left: 32px;
  display: flex;
  align-items: center;
  justify-content: unset;
  line-height: inherit;
}
.nomain-service > .layout-right > h3 > em {
  margin-right: 10px;
}

.related-layout {
  position: relative;
  display: grid;
  place-content: space-between;
  margin-bottom: 10px;
}

.related-layout > li {
  position: relative;
  padding: 5px;
  border: 1px solid rgba(211, 211, 211, 1);
  margin: 10px 0;
}

@media screen and (max-width: 1080px) {
  .related-layout > li {
    margin: 10px 0;
  }
}
@media screen and (min-width: 1081px) {
  .related-layout {
    grid-template-columns: repeat(auto-fill, 48%);
  }
}
.related-layout > li > a {
  color: var(--light-green-color);
  padding: 0 10px 0 22px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.related-layout > li > a::before {
  position: absolute;
  content: "â–¶";
  left: 10px;
  font-family: "icomoon";
  color: var(--light-green-color);
  font-size: 14px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.related-layout > li > a:hover {
  /* background:var(--darkblue-color);*/
  color: var(--orange-color);
}
.related-layout > li > a:hover::before {
  color: var(--orange-color);
}

.grid-title,
.nomain-service > .layout-right > .grid-title {
  position: relative;
  background: var(--light-green-color);
  padding: 5px 0;
  text-align: center;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 20px 0;
}
.nomain-service > .layout-right > .grid-title::after,
.nomain-service > .layout-right > .grid-title::before,
.grid-title::after,
.grid-title::before {
  position: absolute;
  content: "";

  background: var(--white-color);
  width: 30%;
  height: 1px;
}
.nomain-service > .layout-right > .grid-title::after,
.grid-title::after {
  left: 20px;
}
.nomain-service > .layout-right > .grid-title::before,
.grid-title::before {
  right: 20px;
  left: auto;
}
.inquiry-notic {
  position: relative;
  padding: 5px 30px;
  background: #dfd0f1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 20px 0;
  color: rgba(12, 12, 12, 1);
}
.inquiry-notic::before {
  position: absolute;
  content: "\f071";
  color: var(--purple-color);
  font-family: "FontAwesome";
  left: 5px;
}
.spilt-style {
  position: relative;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--purple-color);
}
.spilt-style::before {
  position: absolute;
  content: "";
  background: var(--white-color);
  width: 99%;
  height: 1px;
}
@media screen and (min-width: 1081px) {
  .titlePage {
    font-size: 24px;
  }
}

.titlePage {
  position: relative;
  color: rgba(112, 48, 160, 1);
}

.tableShort {
  position: relative;
}
table.tableShort tr:nth-child(odd) > td {
  background: rgba(197, 224, 179, 1);
}
table.tableShort tr:nth-child(even) > td {
  background: rgba(226, 239, 217, 1);
}
.tableShort > tbody > tr > td:first-child {
  position: relative;
  width: 30%;
  background: rgba(83, 129, 53, 1);
  color: white;
}

.hollow-btn {
  position: relative;
  display: block;
  padding: 5px 20px;
  border-radius: 5px;
  border: 1px solid rgba(255, 192, 0, 1);
  color: rgba(255, 192, 0, 1);
  transition: all ease-in-out 0.5s;
}

.titleStyle {
  position: relative;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}

@media screen and (min-width: 1081px) {
  .titleStyle {
    font-size: 2em;
  }
}

.about-first {
  position: relative;
}

.redTitle {
  position: relative;
  text-align: center;
  color: var(--read-color);
}
.redTitle > a {
  color: var(--read-color);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.redTitle > a:hover {
  color: var(--darkBlue-color);
}

.row {
  margin-left: -1em;
  margin-right: -1em;
}

@media screen and (min-width: 769px) {
  .row {
    display: flex;
    flex-wrap: wrap;
  }
}
.posRight {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
/*********************************************************product********************************************************************/
.categories {
  position: relative;
  margin: 60px auto;
}

.categories th h3 {
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}

.pc-list {
  position: relative;
  display: grid;
  grid-gap: 20px;
}

@media screen and (min-width: 1081px) {
  .pc-list {
    grid-template-columns: repeat(auto-fill, 31%);
    justify-content: space-between;
  }
}
.pc-list {
  margin-bottom: 20px;
}
.pc-list > li {
  position: relative;
}
.pc-list > li > a {
  position: relative;
  display: block;
  padding: 8px 5px 8px 15px;
  line-height: 1.45em;
  background: rgba(233, 233, 233, 0.5);
  color: var(--main-color);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.pc-list > li > a::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 4px;
  background: var(--main-color);
  left: 0;
  top: 0;
}
.pc-list > li > a:hover {
  background: var(--main-color);
  color: var(--white-color);
}

.pc-list2 {
  position: relative;
  display: grid;
  margin: 20px auto 30px auto;
}

@media screen and (min-width: 1081px) {
  .pc-list2 {
    grid-template-columns: repeat(auto-fill, 24%);
    justify-content: space-between;
  }
}
.pc-list2 > li {
  position: relative;
  margin: 20px 0;
  box-shadow: 1px 1px 6px 4px var(--shadow);
  padding: 20px;
  border: 1px solid rgba(200, 200, 200, 0.4);
  --borderBack: rgba(160, 160, 160, 1);
  --shadow: rgba(233, 233, 233, 0);
  --color: var(--main-color);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  padding-bottom: 60px;
}
.simplyBtn {
  color: var(--color);
  position: absolute;
  bottom: 20px;
  border: 1px solid var(--main-color);
  padding: 6px 20px;
  line-height: 1rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.simplyBtn:hover {
  color: #fff;
  background: var(--main-color);
}
.pc-list2 > li .cart {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 6px 20px;
  line-height: 1rem;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.pc-list2 > li .cart:hover {
  color: #fff;
  background: var(--main-color);
}
.pc-list2 > li:hover {
  --borderBack: var(--main-color);
  --shadow: rgba(233, 233, 233, 1);
}
.pc-list2 > li::before {
  position: absolute;
  content: "";
  background: var(--borderBack);
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.pc-list2 .title {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;

  font-size: 1.1em;
  margin: 0;
  padding: 10px 0 8px 0;

  font-family: "B612", Arial, sans-serif;
}
.pc-list2 > li .title > a {
  color: var(--back-color);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  word-break: break-word;
}
.pc-list2 > li:hover .title > a {
  color: var(--main-color);
}
.pc-list2 > li .pc-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
}
.pc-list2 > li img {
  max-width: 100%;
  max-height: 100%;
}
.pc-list2 > li p {
  padding: 4px 0;
}
.pc-list2 > li .pc-img > a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc-img > a {
  padding: 10px;
}
.pc-list2 > li .banner-btn {
  position: absolute;
  bottom: 20px;
}
.pc-list2 > li .pc-img {
  border-bottom: 1px solid rgba(200, 200, 200, 0.4);
  padding-bottom: 10px;
}

.categoriesFirst {
  position: relative;
  margin: 60px 0;
}

.categoriesFirst .row-layout {
  position: relative;
  margin: 20px auto;
}
.categoriesFirst .row-layout > li {
  position: relative;
  margin-right: 20px;
}
.categoriesFirst .row-layout > li a {
  color: var(--main-color);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.categoriesFirst .row-layout > li a:hover {
  color: var(--read-color);
}
.categoriesPic {
  position: relative;
  max-width: 250px !important;
  max-height: 220px !important;
  width: auto !important;
  height: auto !important;
}

.categoriesSecond {
  position: relative;
  margin: 60px auto;
  display: grid;
  grid-gap: 30px;
}

@media screen and (min-width: 1081px) {
  .categoriesSecond {
    grid-template-columns: 72% 25%;
    justify-content: space-between;
    grid-gap: 20px;
  }
  .categoriesSecond .title-style1 {
    margin-top: 0;
  }
  .categoriesFirst .table-order {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.categoriesSecond table {
  border: none;
  margin-top: 0;
  margin-bottom: 30px;
}
.categoriesSecond table th {
  white-space: nowrap;
  background: var(--main-color);
  font-family: "B612";
  font-size: 1.17em;
}
.categoriesSecond table tr > th:first-child {
  width: 220px;
}
.categoriesSecond table tr > td:last-child {
  word-break: break-all;
}
.categoriesSecond table td {
  border: 1px solid rgba(230, 230, 230, 1);
}
.categoriesFirst .btnBlock {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.categoriesTitle {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;

  position: relative;
  background: var(--main-color);
  padding: 5px 10px;
  width: max-content;
  color: var(--white-color);
  padding: 10px 15px;
}

.cpShow {
  position: relative;
  display: grid;
  grid-gap: 30px;
  margin: 80px auto;
}
.cpShow li {
  position: relative;
  --backColor: rgba(3, 126, 186, 0.6);
  margin: 20px 0;
  --clipBefore: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  --clipAfter: polygon(0 0, 95% 0, 90% 100%, 0 100%);
  --width: 50%;
  --messWd: 254px;
  --scale3d: scale3d(0, 0, 0);
}
.cpShow li:nth-child(even) {
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
}
.cpShow li:nth-child(odd) {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
}
.cpShow li > a {
  position: relative;
  display: block;
}
.cpShow li > a > div {
  position: absolute;
  width: var(--width);
  height: 100%;
  left: 0;
  top: 0;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.cpShow li > a > div > div {
  position: relative;
  width: var(--messWd);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cpShow li > a > div > div:before {
  position: absolute;
  content: "";
  width: 120%;
  height: 120%;
  border: 2px solid rgba(250, 250, 250, 0.5);
  z-index: 10;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  -webkit-transform: var(--scale3d);
  -moz-transform: var(--scale3d);
  -ms-transform: var(--scale3d);
  -o-transform: var(--scale3d);
  transform: var(--scale3d);
}
.cpShow li > a > div p,
.cpShow li > a > div h4 {
  position: relative;
  z-index: 10;
  width: 100%;
}
.cpShow li > a > div h4 {
  font-size: 1.4em;
}
.cpShow li > a > div::before,
.cpShow li > a > div::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--backColor);
  z-index: 1;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.cpShow li > a > div::before {
  -webkit-clip-path: var(--clipBefore);
  clip-path: var(--clipBefore);
}
.cpShow li > a > div::after {
  -webkit-clip-path: var(--clipAfter);
  clip-path: var(--clipAfter);
}
.cpShow li img {
  position: relative;
  vertical-align: top;
}
.cpShow li:hover {
  --clipBefore: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  --clipAfter: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  --width: 100%;
  --scale3d: scale3d(1, 1, 1);
  /*--messWd:50%;*/
}

@media screen and (min-width: 1141px) {
  .cpShow {
    grid-template-columns: repeat(auto-fill, 48%);
    grid-gap: 10px;
    justify-content: space-between;
  }
}
.pcFixed {
  position: relative;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 80px auto;
  padding-top: 80px;
}
.pcFixed img {
  position: relative;
  width: 100%;
  z-index: 1;
}
.pcFixed .absoluteMess {
  position: absolute;
  width: 80%;
  z-index: 10;
  display: block;
}
.pcFixed .absoluteMess h4 {
  font-family: "TITILLIUMWEB-REGULAR", Arial, sans-serif;
  margin: 20px 0;
  font-style: italic;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.pcFixed .absoluteMess > a {
  color: var(--white-color);
  position: relative;
  display: block;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.pcFixed .absoluteMess:hover h4 {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  -moz-transform: scale3d(1.1, 1.1, 1);
  -ms-transform: scale3d(1.1, 1.1, 1);
  -o-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.pcFixed .absoluteMess:hover a {
  word-spacing: 10px;
}

@media screen and (min-width: 1141px) {
  .absoluteMess {
    width: 56% !important;
  }
  .absoluteMess p {
    font-size: 1.2em;
  }
  .absoluteMess h4 {
    font-size: 3em;
    margin: 30px 0;
  }
  .absoluteMess > a {
    font-size: 1.2em;
    margin: 30px 0;
  }
}

.categoriesLast {
  position: relative;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.categoriesLast h3 {
  position: relative;
  font-family: "TITILLIUMWEB-REGULAR", Arial, sans-serif;
  text-align: center;
  font-size: 2em;
}
.categoriesLast p {
  text-align: center;
  font-size: 1.2em;
}
.categoriesLast .categoriesSearch {
  position: relative;
  display: grid;
  grid-gap: 10px;

  min-width: 540px;
  margin: 30px auto;
  margin-top: 20px;
}
.categoriesLast .categoriesSearch > p {
  position: relative;
  font-style: italic;
  font-weight: bold;
  font-family: " B612";
  color: #222;
  line-height: 0.8em;
}
.categoriesLast .categoriesSearch div {
  position: relative;
  width: 100%;
}
.categoriesLast .categoriesSearch div input {
  position: relative;
  padding: 20px;
  width: 100%;
  outline: none;
}
.categoriesLast .categoriesSearch div .banner-btn {
  position: relative;
  margin: auto;
  display: block;
  padding: 16px 30px;
  padding-right: 60px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  font-style: italic;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
}
.categoriesLast .categoriesSearch div .banner-btn:hover {
  background: var(--main-color);
  color: var(--white-color);
}
.categoriesLast .categoriesSearch div .search-list {
  position: relative;
  margin: 30px auto;
  width: 100%;
  font-size: 1.6em;
  line-height: 1em;
}
.categoriesLast .categoriesSearch div .search-list a {
  position: relative;
  float: left;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: " B612";
  color: var(--backColor);
  font-weight: bold;
}
.categoriesLast .categoriesSearch div .search-list:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

@media screen and (min-width: 1141px) {
  .categoriesLast .categoriesSearch {
    width: 80%;
  }
  .categoriesLast h3 {
    font-size: 2.6em;
    margin: 20px;
  }
  .categoriesLast .categoriesSearch {
    grid-template-columns: 24% 50% 24%;
    justify-content: space-between;
    align-items: flex-end;
  }
  .categoriesLast .categoriesSearch > p {
    position: relative;
    font-size: 13em;
  }
}
@media screen and (min-width: 1321px) {
  .categoriesLast .categoriesSearch > p {
    font-size: 20em;
  }
}
@media screen and (max-width: 1320px) and (min-width: 1081px) {
  .categoriesLast .categoriesSearch > p {
    font-size: 18em;
  }
}
.categoriesList {
  position: relative;
}
@media screen and (min-width: 1081px) {
  .categoriesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, 21%);
  }
}
.categoriesList li {
  position: relative;
  padding: 20px;
  box-shadow: 1px 1px 6px 4px var(--shadow);
  border: 1px solid rgba(200, 200, 200, 0.4);
  --borderBack: rgba(160, 160, 160, 1);
  --shadow: rgba(233, 233, 233, 0);
  --color: var(--main-color);
  --hcolor: var(--backColor);
}
@media screen and (max-width: 1080px) {
  .categoriesList li {
    margin: 30px 0;
  }
}
.categoriesList li a {
  position: relative;
  display: block;
  padding: 20px 0;
  color: var(--backColor);
}
.categoriesList li a > div {
  position: relative;
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
}
.categoriesList li a > div > img {
  max-height: 100%;
  width: auto;
}
.categoriesList li a .title {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;

  font-size: 1.1em;
  margin: 0;
  padding: 10px 0 8px 0;

  font-family: "B612", Arial, sans-serif;
}
.categoriesList li a .title {
  position: relative;
  height: 70px;
  color: var(--hcolor);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.categoriesList li::before {
  position: absolute;
  content: "";
  background: var(--borderBack);
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.categoriesList li:hover {
  --borderBack: var(--main-color);
  --shadow: rgba(233, 233, 233, 1);
  --hcolor: var(--main-color);
}
/*********************************************************product********************************************************************/

.inquiry-first {
  position: relative;
  display: grid;
  grid-gap: 30px;
}

@media screen and (min-width: 1081px) {
  .inquiry-first {
    grid-template-columns: 40% 55%;
    justify-content: space-between;
    grid-gap: 10px;
  }
}
.inquiry-first h3 {
  margin-top: 0;
  padding-top: 0;
}

.main-title {
  position: relative;
  display: flex;
  justify-content: center;
}
.main-title::after {
  position: absolute;
  content: "";
  width: 10%;
  max-width: 200px;
  height: 2px;
  background: var(--main-color);
  bottom: -10px;
}

.icon-list {
  position: relative;
  display: grid;
  grid-gap: 30px;
  margin: 30px 0;
}

@media screen and (min-width: 1081px) {
  .icon-list {
    grid-template-columns: repeat(auto-fill, 22%);
    justify-content: space-between;
  }
}
.icon-list > li {
  --backColor: var(--white-color);
  position: relative;
  background: var(--backColor);
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  justify-content: center;
  padding: 20px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  font-weight: bold;
}
.icon-list > li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background: rgba(233, 233, 233, 1);
  left: 20px;
}
.icon-list > li div {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: radial-gradient(var(--white-color) 10%, rgb(100, 186, 221) 70%);
  padding: 20px;
  width: 60%;
}
.icon-list > li:hover {
  --backColor: var(--main-color);
  color: var(--white-color);
}
.read-btn {
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 10px 20px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.read-btn:hover {
  background: var(--main-color);
  color: var(--white-color);
}

.main-application-mess {
  position: relative;
  display: grid;
  margin: 40px 0;
  grid-gap: 30px;
}
.main-application-mess > li {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(212, 212, 212, 1);
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  transition: all ease 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-application-mess > li::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 4px;
  background: var(--main-color);
  top: 0;
  border-radius: 10px;
}

@media screen and (min-width: 1081px) {
  .main-application-mess {
    grid-template-columns: repeat(auto-fill, 31%);
    justify-content: space-between;
    grid-gap: 10px;
  }
  .main-application-mess > li {
    position: relative;
  }
}
.main-application-mess > li > a {
  display: block;
}
.main-application-mess > li:hover {
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 1px 2px 8px 6px rgb(240, 240, 238);
}
.main-application-img {
  position: relative;
  overflow: hidden;
}
.main-application-img > img {
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  transition: all ease 0.6s;
  vertical-align: top;
  width: 100%;
}
.main-application-mess > li > a:hover img {
  -webkit-transform: rotateZ(20deg);
  -moz-transform: rotateZ(20deg);
  -ms-transform: rotateZ(20deg);
  -o-transform: rotateZ(20deg);
  transform: rotateZ(2deg) scale3d(1.2, 1.2, 1);
}
.main-application-title h4 {
  color: rgba(61, 61, 61, 1);
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  transition: all ease 0.6s;
  font-size: 20px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-application-mess > li > a:hover h4 {
  color: rgb(138, 204, 224);
}
.main-application-title {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-application-title h4,
.main-application-title p {
  position: relative;
  text-align: center;
}
.main-application-title p {
  color: rgba(61, 61, 61, 1);
  font-size: 14px;
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 80px;
  border-top: 1px solid rgba(212, 212, 212, 1);
}
.main-application-title button {
  width: 120px;
}
/*****************************************************slideHorizontal**************************************************************/
.slideHorizontal {
  position: relative;

  display: flex;
  align-items: center;
}
@media screen and (min-width: 1081px) {
  .slideHorizontal {
    margin: 60px -50px;
  }
}
.slideHorizontal .operateLeft,
.slideHorizontal .operateRight {
  position: absolute;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  font-size: 2em;
  cursor: pointer;
}
.slideHorizontal .operateLeft {
  left: 10px;
}
.slideHorizontal .operateRight {
  right: 10px;
}
.slideHorizontal .border_ {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slideHorizontal .border_ .moveCurrent {
  transition: all linear 0.4s;
}
.slideHorizontal .border_ > ul {
  position: relative;
  display: flex;

  width: 9000px;
}
.slideHorizontal .border_ > ul li {
  position: relative;
  margin: 0 10px;
}
/*****************************************************slideHorizontal**************************************************************/

.nav-tabs {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(222, 222, 222, 1);
  margin: 20px 0;
}
.liCurrent {
  position: absolute !important;
  content: "";
  height: 3px;
  background: var(--main-color);
  bottom: -1px;
  left: 0;
  padding: 0 !important;
  z-index: 10;
}
.nav-tabs > li {
  position: relative;
  padding: 5px 10px;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  --borderColor: rgba(222, 222, 222, 1);
  border-bottom: 1px solid var(--borderColor);
  cursor: pointer;
}
.nav-tabs > li:first-child {
  padding-left: 0;
}
.nav-tabs > li.active {
  color: var(--main-color);
}
.tab-pane {
  position: relative;
  display: none;
}
.tab-pane.active {
  display: block;
}
.careers-box {
  position: relative;
  margin: 20px 0;
}

.career_inquiry_form {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.career_inquiry_form ul {
  padding: 0 !important; /*display: grid;grid-gap: 20px;justify-content: space-between;*/
}
.career_inquiry_form ul li {
  list-style: none !important;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .career_inquiry_form .row {
    margin: 0 -30px;
  }
}
.career_inquiry_form ul li label {
  width: 100%;
  padding: 20px 0 5px 0;
  display: block;
  font-size: 1em;
}
.career_inquiry_form ul li label span {
  color: #f00;
}
.career_inquiry_form ul li input {
  border: 1px #cccccc solid;
  width: 100%;
  padding: 5px;
  line-height: 30px;
  border-radius: 3px;
  font-size: 1em;
  font-family: "Proxima Nova Rg";
  outline: none;
}
.career_inquiry_form ul li input::-webkit-input-placeholder {
  color: #c7c8c6;
}
.career_inquiry_form ul li input::-moz-placeholder {
  color: #c7c8c6;
}
.career_inquiry_form ul li input:-ms-input-placeholder {
  color: #c7c8c6;
}

.career_inquiry_form ul li textarea {
  border: 1px #cccccc solid;
  width: 100%;
  padding: 5px;
  line-height: 30px;
  border-radius: 3px;
  font-size: 1em;
  font-family: "Proxima Nova Rg";
  outline: none;
}
.career_inquiry_form b {
  margin-left: 20px;
}
.career_inquiry_form ul li em {
  color: #999;
  line-height: 22px;
  display: block;
  margin-top: 10px;
}
.career_inquiry_form button {
  cursor: pointer;
  margin: 40px 0;
}

.onlineTitle {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;

  position: relative;
  font-size: 1.4em;
}

@media screen and (min-width: 1081px) {
  .onlineTitle {
    font-size: 1.6em;
  }
}

@media screen and (min-width: 768px) {
  .top-ad {
    background: url(../images/top-bg.png) no-repeat right #f9f9f9;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 1080px) {
  .head-mess {
    display: none;
  }
}

.input-group {
  position: relative;
  display: flex;
}
.input-group input {
  width: auto;
  margin: 0 10px;
  padding: 6px 10px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.input-group .minus,
.input-group .plus {
  padding: 1px 10px;
  line-height: 1rem;
  border: 1px solid rgba(111, 111, 111, 0.5);
  display: flex;
  align-items: center;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.input-group .minus:hover,
.input-group .plus:hover {
  border: 1px solid rgba(111, 111, 111, 1);
}
.input-group .minus[disable],
.input-group .plus[disable] {
  border: 1px solid rgba(111, 111, 111, 0.4) !important;
  color: rgba(111, 111, 111, 0.4) !important;
  cursor: no-drop;
}
.input-group .minus[disable]:hover,
.input-group .plus[disable]:hover {
  border: 1px solid rgba(111, 111, 111, 0.4);
  color: rgba(111, 111, 111, 0.4) !important;
}
.input-group input:hover {
  border: 1px solid rgba(111, 111, 111, 1);
}

.related_services {
  position: relative;
  margin: 20px 0;
}
.related_services li {
  position: relative;
  width: max-content;
  float: left;
  margin-bottom: 10px;
  margin-right: 10px;
  max-width: 100%;
}
.related_services li a {
  position: relative;
  display: block;
  padding: 6px 20px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 4px;
  font-weight: bold;
  transition: all ease-in-out 0.4s;
  color: var(--black-color);
}
.related_services li a:hover {
  border: 1px solid rgba(21, 21, 21, 0.2);
}
.related_services::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.gridrow-layout {
  position: relative;
  display: grid;
}
@media screen and (min-width: 1081px) {
  .gridrow-layout {
    grid-template-columns: 72% 25%;
    place-content: space-between;
  }
}

/**************************************************************side-navi*******************************************************************/
.side-navi-block {
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid rgba(200, 200, 200, 0.3);
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .side-navi-block {
    margin: 30px 0;
  }
}
.title-side {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  font-family: "B612", Arial, sans-serif;
  position: relative;
  padding-top: 0;
  font-weight: 100;
  margin-top: 10px;
  margin-bottom: 5px;
}
.title-side::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 1081px) {
  .title-side {
    font-size: 1.4em;
  }
}
.side-navi {
  position: relative;
  padding-right: 10px;
}
.side-navi::before {
  display: none;
}
.side-navi > li {
  position: relative;
  padding: 6px 0;
  margin: 0;
}
.side-navi > li:not(:last-child) {
  border-bottom: 1px solid #e0e9cd;
}

.side-navi > li > a {
  position: relative;
  padding: 5px 0;
  padding-right: 30px;
  display: block;
  /* line-height: 20px;*/
  width: 100%;
}

.side-navi > li span {
  position: absolute;
  color: var(--main-color);
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 4px;
  right: 0;
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.side-navi > li > span {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  right: 5px;
  width: 28px;
  height: 28px;
}

.side-navi > li > ul {
  padding-left: 40px;
}

.side-navi > li ul {
  position: relative;
  display: none;
  padding-left: 0.8rem;
}

.side-navi > li > ul li {
  position: relative;
  /*   border-bottom: 1px solid var(--white-color);
       border-left: 2px solid rgba(234, 234, 234,1);
       background:rgba(234, 234, 234,1);*/
  --borderLeft: rgba(236, 245, 249, 1);
}

.side-navi > li > ul li:hover {
  --borderLeft: var(--main-color);
}

.side-navi > li > ul li a {
  position: relative;
  padding: 5px 0;
  /*background:rgba(212,212,212,1);*/
  display: block;
  line-height: 24px;
  padding-right: 20px;
}

.side-navi-block .inquiry-form .col-md-4,
.side-navi-block .inquiry-form .col-md-6,
.side-navi-block .inquiry-form .col-lg-4,
.side-navi-block .inquiry-form .col-lg-6 {
  width: 100% !important;
}
.side-navi-block .inquiry-form .verify.col-md-4,
.side-navi-block .inquiry-form .verify.col-lg-4 {
  width: 60% !important;
}

.rotate_angle {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.side-navi-block .inquiry-form {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 20px 20px;
  overflow: hidden;
}

/**************************************************************side-navi*******************************************************************/

.listBtnPc > a {
  position: relative;
  color: var(--white-color) !important;
  display: block;
  width: max-content;
  margin-bottom: 20px;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  padding: 12px 20px;
  line-height: 1rem;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  transition: all ease-in-out 0.4s;
}
.listBtnPc > a:hover {
  color: var(--main-color) !important;
  background: none;
}

#January-Promo-BOC-Sciences {
  position: relative;
  margin-top: 100px;
}
#January-Promo-BOC-Sciences::before {
  position: absolute;
  content: "";
  left: 0;
  top: -100px;
  width: 180px;
  height: 100px;
  background-image: url("../images/2023-January-Promotion-500.png");
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1081px) and (max-width: 1280px) {
  #January-Promo-BOC-Sciences {
    margin-top: 60px;
  }
  #January-Promo-BOC-Sciences::before {
    top: -60px;
    width: 140px;
    height: 60px;
  }
}

img[name="inquiryImg"] {
  position: absolute;
  top: 31px;
  right: 18px;
  height: 39px;
}
/*@media screen and (max-width: 768px) {
    img[name='inquiryImg'] {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}*/

.categoriesFirst .img {
  position: relative;
  border: 1px solid rgba(21, 21, 21, 0.1);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 10px;
}
.categoriesFirst .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
.categoriesFirst table.param-table {
  border: none;
}
.categoriesFirst table.param-table tr {
  border: none;
}
.categoriesFirst table.param-table td {
  border: none;
}
.categoriesFirst table.param-table td:first-child {
  width: 200px;
}
.categoriesFirst table.param-table td a {
  color: var(--main-color);
}
.categoriesFirst table.param-table td a:hover {
  color: var(--orange-color);
}

@media screen and (min-width: 1081px) {
  .categoriesFirst {
    display: grid;
    grid-template-columns: 28% 70%;
    justify-content: space-between;
  }
  .categoriesFirst h1 {
    margin-top: 0;
  }
}
.title-style1 {
  display: block;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  font-family: "B612", Arial, sans-serif;
  position: relative;
  color: var(--white-color);
  background: linear-gradient(to right, #afc080, #c1cb7a);
  font-size: 1.4rem !important;
  display: block;
  padding: 0.3em 1em;
}
.title-style1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -8px;
  background-color: var(--main-color);
}

.side-style2 {
  position: relative;
  border-top: 12px solid var(--main-color);
  background-color: #eaf2fa;
  padding: 10px;
  margin-bottom: 30px;
}
.side-style2 .title {
  font-family: "B612", Arial, sans-serif;
  display: block;
  font-size: 1.17em;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  position: relative;
  font-size: 1.5em;
  line-height: 1.2em;
  color: var(--main-color);
  text-align: center;
  font-weight: bold;
}

.side-imgDataBlock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-imgDataBlock .lastItem {
  position: relative;
  aspect-ratio: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: center;
  z-index: 20;
  color: var(--main-color);
  box-shadow: 1px 0 20px #151515;
}
.side-imgDataBlock .lastItem:hover {
  color: #be5710;
}
.side-imgDataBlock .lastItem p {
  position: absolute;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  text-align: center;
}
.side-imgDataBlock .lastItem > .img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.side-imgDataBlock .lastItem > .img img {
  vertical-align: top;
  height: 100%;
}

.side-imgData {
  position: relative;
}
.side-imgData li {
  position: relative;
  margin: 10px 0;
  background-color: var(--white-color);
}
.side-imgData li a {
  color: var(--main-color);
}
.side-imgData li p {
  text-align: center;
  padding: 2px 10px;
}

@media screen and (min-width: 1081px) {
  .side-imgData {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .side-imgData li {
    flex-basis: 48%;
    /*  &:nth-child(1), &:nth-child(3) {
            &>.img {
              width: 100%;
              aspect-ratio: 1;
              overflow: hidden;
              img {
                vertical-align: top;
              }
            }
          }
          &:nth-child(2), &:nth-child(4) {

          }*/
  }
  .side-imgData li a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
  }
  .side-imgData li a:hover {
    color: #be5710;
  }
  .side-imgData li p {
    position: absolute;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    height: 4.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .side-imgData li .img {
    position: relative;
    width: 100%;
    aspect-ratio: 0.8;
    overflow: hidden;
  }
  .side-imgData li .img img {
    height: 100%;
    object-fit: cover;
    vertical-align: top;
  }

  .side-imgDataBlock {
    z-index: 2;
  }
  .side-imgDataBlock .lastItem {
    position: absolute;
    width: 50%;
  }
}
.side-content2 {
  background: #f49e2c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  padding: 20px 10px 60px 10px;
  text-align: center;
  position: relative;
  margin: 20px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.side-content2 .titleh3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  margin-top: 0;
  padding-top: 0;
  font-size: 1.4rem;
}
.side-content2 div {
  position: relative;
  padding: 10px 20px;
  width: 80%;
}
.side-content2 div img {
  height: auto;
}
.side-content2 .banner-btn {
  position: relative;
  width: 80%;
  margin-top: 30px;
  border-color: #be5710;
  background-color: #be5710;
  color: var(--white-color);
}
.side-content2 .banner-btn:hover {
  color: var(--orange-color);
  border-color: var(--white-color);
  background-color: var(--white-color);
}

#cartIcon {
  position: fixed;
  z-index: 300;
  opacity: 0;
}

.related_title {
  position: relative;
  padding-bottom: 0;
  color: white;
  margin-bottom: 20px;
}

.related_title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 1px;
  width: 100%;
  background: var(--main-color);
}

.related_title > span {
  background: var(--main-color);
  padding: 10px 20px;
  display: inline-block;
}

@media screen and (min-width: 1081px) {
  .related_title {
    font-size: 20px;
  }
}
.row.img-item {
  margin-bottom: 1.6rem;
}
.row.img-item h2 {
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.row.img-item p {
  margin: 0;
  padding: 0;
}
.row.img-item .ServiceShowPic {
  height: 100%;
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
}
.row.img-item .ServiceShowPic img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin: 0;
}
.row.img-item:not(:first-of-type) {
  margin-top: 2rem;
}

.nomain-card {
  margin: 60px 0;
}

.nomain-card-header {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(121, 121, 121, 0.5);
}

@media screen and (max-width: 1080px) {
  .nomain-card-header {
    display: none;
  }
  .nomain-card-header > li {
    width: 100%;
  }
}
@media screen and (min-width: 1081px) {
  .nomain-card-header > li {
    width: 30%;
  }
}
.nomain-card-header > li {
  position: relative;
  padding: 6px 20px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin-right: 10px;
  color: var(--white-color);
  width: max-content;
  font-size: 1.2em;
  border: 1px solid rgba(121, 121, 121, 0.5);
  border-bottom: none;
  background: linear-gradient(to right, #afc080, #c1cb7a);
}

.nomain-card-current {
  color: var(--main-color) !important;
  background: var(--white-color) !important;
  font-weight: bold;
}
.nomain-card-current::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white-color);
}

.nomain-card h3 {
  font-size: 18px;
}
@media screen and (min-width: 1081px) {
  .nomain-card-cont {
    display: none;
  }
}
.nomain-card-cont {
  margin-top: 30px;
}
.nomain-card-cont .icon-star {
  color: var(--yellow-color);
}
.nomain-card-cont h4 {
  margin-bottom: 0;
  font-size: 1.2rem;
}
.nomain-card-cont .new-nuka-btn {
  margin-top: 20px;
}

.table-responsive {
  margin-bottom: 1em;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal.modal-show {
  display: flex;
}
.modal .modal-close {
  position: absolute;
  right: 1em;
  top: 0.5em;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.modal .modal-close:hover {
  color: #ef2727;
}
.modal .modal-content {
  position: relative;
  width: 60%;
  min-width: 600px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2em;
  animation: flipInY 1s 0.2s ease both;
  max-height: 70vh;
  overflow-y: auto;
}

@keyframes flipInY {
  0% {
    transform: perspective(1500px) rotateY(1deg);
    opacity: 0;
  }
  40% {
    transform: perspective(1500px) rotateY(-1deg);
  }
  70% {
    transform: perspective(1500px) rotateY(1deg);
  }
  100% {
    transform: perspective(1500px) rotateY(0deg);
    opacity: 1;
  }
}
.greenbg {
  background: linear-gradient(to right, rgba(229, 246, 228, 0.7), rgba(24, 247, 253, 0.15));
}

.inquiry-btn {
  right: 0;
  color: var(--white-color) !important;
  display: block;
  width: max-content;
  background: var(--main-color);
  padding: 12px 20px;
  line-height: 1rem;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
  z-index: 100;
}

.inquiry-btn:hover {
  background: var(--link-hover-color);
}

.layout-right {
  position: relative;
}

.service-table,
.service-tr,
.service-table.table-striped {
  margin-top: 1em !important;
  margin-top: 1.5em !important;
}
.service-table .firstRow > td,
.service-tr .firstRow > td,
.service-table.table-striped .firstRow > td {
  background: var(--main-color) !important;
  color: #fff !important;
}
.service-table.bg-dark-main .firstRow > td {
  background: var(--main-dark-color) !important;
  color: #fff !important;
}
.service-table .firstRow > td a,
.service-tr .firstRow > td a,
.service-table.table-striped .firstRow > td a {
  color: #fff !important;
}

.img-cover,
.img-contain {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-cover img,
.img-contain img {
  position: absolute;
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-contain img {
  -o-object-fit: contain;
  object-fit: contain;
}

.text-black {
  color: var(--black-color);
}

.fiexd-bg {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-position: center;
}

section h2 {
  font-size: 1.6rem;
}

a[herf] h2,
h2 a[href] {
  color: var(--main-dark-color);
}

.pb {
  padding-bottom: 3rem;
}
.new-title {
  position: relative;
}
.new-title a {
  color: var(--black-color);
}
.new-title::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 4em;
  background-color: var(--main-color);
  left: 0;
  bottom: -0.5em;
}

.new-style1 {
  position: relative;
  padding: 1rem 0;
  --title-height: auto;
}
.new-style1 > dt {
  position: relative;
  border-radius: 4px;
  padding: 0.5em 1em;
  border: 1px solid var(--main-400-color);
  --icon-src: "";
}
.new-style1 > dt .title {
  color: var(--main-dark-color);
  font-weight: bold;
  padding-bottom: 0.5em;
  height: var(--title-height);
  font-size: 1.2em;
}
.new-style1 > dt .title::before {
  position: relative;
  content: "";
  background-image: var(--icon-src);
  width: 2em;
  aspect-ratio: 1;
  display: block;
  margin-bottom: 0.5em;
}

.new-btn {
  position: relative;
  border: 1px solid var(--main-color);
  color: var(--white-color);
  background: var(--main-color);
  padding: 0.5em 1.5em;
  transition: all ease-in-out 0.3s;
  display: block;
  border-radius: 4px;
}
.new-btn:hover {
  color: var(--white-color);
  background: var(--link-hover-color);
  border: 1px solid var(--link-hover-color);
}
.new-btn.bg-orange {
  background: var(--link-hover-color);
  border: 1px solid var(--link-hover-color);
}
.new-btn.bg-orange:hover {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}
.text-center {
  text-align: center;
}

.text-main-dark {
  color: var(--main-dark-color);
}

.bg-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: top;
  --bg-url: "";
  background-image: var(--bg-url);
}

.new-style2 {
  position: relative;
  padding: 1rem 0;
}
.new-style2 > dt {
  position: relative;
  border-radius: 4px;
  padding: 1.2em;
  background-color: var(--white-color);
}
.new-style2.border > dt {
  border: 1px solid rgba(21, 21, 21, 0.1);
}
.new-title1 {
  position: relative;
  padding: 0.5em 1.5em;
  --bg-color: var(--main-color);
  background: linear-gradient(to right, var(--bg-color), rgba(21, 21, 21, 0));
  margin: 0.5em 0;
  font-weight: bold;
  font-size: 1rem !important;
}
.new-title1 a {
  color: var(--black-color);
}
.new-title1 a:hover {
  color: var(--main-dark-color);
}

.new-title2 {
  position: relative;
  text-align: center;
}
.new-title2 a {
  color: var(--black-color) !important;
}
.new-title2 a:hover {
  color: var(--main-dark-color) !important;
}
.new-title2::after {
  position: relative;
  content: "";
  height: 4px;
  width: 4em;
  background-color: var(--main-color);
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5em;
}

.service-table2 {
  border: 1px solid rgba(21, 21, 21, 0.1);
}
.service-table2 th {
  background-color: var(--main-color);
  border: 1px solid rgba(221, 221, 221, 0.6);
}
.service-table2 td {
  border: 1px solid rgba(21, 21, 21, 0.1);
}

.new-style3 {
  position: relative;
  --height: 30%;
  --tag-bg: #f4f8ef;
}
.new-style3 > dt {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgb(229, 246, 228);
}
.new-style3 > dt .title {
  font-size: 1.2em;
  text-align: center;
  padding-bottom: 1em;
  margin-bottom: 1em;
  height: var(--height);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-top: 0;
  margin-top: 0;
  background: var(--tag-bg);
}
.new-style3 > dt .title::after {
  position: relative;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(21, 21, 21, 0.2);
  margin-top: 0.5em;
}
.new-style3 > dt a {
  color: var(--main-color);
}
.new-style3 > dt a:hover {
  color: var(--yellow-color);
}
.new-style3 > dt .content {
  position: relative;
  padding: 1em;
}

@media screen and (min-width: 1280px) {
  .w-max-900 {
    max-width: 900px;
  }
}
.list-style {
  position: relative;
  margin-left: 0.5em;
}
.list-style::before {
  position: absolute;
  content: "";
  left: -0.4em;
  width: 1px;
  height: 100%;
  background-color: #fbe8be;
}
.list-style > li {
  position: relative;
  padding-left: 0.5em;
}
.list-style > li::marker {
  content: "●";
  color: var(--link-hover-color);
  font-size: 1.4em;
}

.new-title3 {
  position: relative;
  background-color: var(--main-color);
  color: var(--white-color);
}

.list-style1 {
  position: relative;
}
.list-style1 > li {
  position: relative;
  background-color: var(--light-main-color);
  padding: 0.5em 1em;
}
.list-style1 > li::before {
  content: "●";
  margin-right: 1em;
}

.new-style4 {
  position: relative;
  row-gap: 1em;
  margin: 1em 0;
}
.new-style4 > dt {
  position: relative;
  background: var(--white-color);
  padding: 1em;
  --icon-color: #f1ce5a;
}
.new-style4 > dt .title {
  font-size: 1.2em;
  padding-top: 0;
  padding-bottom: 1em;
  margin: 0;
  padding-right: 2.5em;
}
.new-style4 > dt .title::after {
  position: absolute;
  content: "\e986";
  font-family: "icomoon";
  width: 2em;
  height: 2em;
  margin-top: 0.5em;
  transform: rotateY(180deg);
  right: 1.5em;
  top: 0.5em;
  color: var(--icon-color);
}
.new-style4 > dt a {
  color: var(--main-color);
}
.new-style4 > dt a:hover {
  color: var(--yellow-color);
}
.new-style4 > dt .content {
  position: relative;
  padding: 1em;
}

.new-style4 > dt:nth-child(2) {
  --icon-color: #e9ba9b;
}
.new-style4 > dt:nth-child(3) {
  --icon-color: #8aaa41;
}
.new-style4 > dt:nth-child(4) {
  --icon-color: #57a9df;
}
.new-style4 > dt:nth-child(5) {
  --icon-color: #e79be9;
}
.new-style4 > dt:nth-child(6) {
  --icon-color: #9b9de9;
}
.new-style4 > dt:nth-child(7) {
  --icon-color: #ee886a;
}
.new-style4 > dt:nth-child(8) {
  --icon-color: #ad57df;
}
.new-style4 > dt:nth-child(9) {
  --icon-color: #df5757;
}
.faq-list1 {
  position: relative;
}
.faq-list1 > dt {
  position: relative;
  margin: 1em 0;
}
.faq-list1 > dt .title {
  padding: 0.5em 1em;
  border: 1px solid rgba(21, 21, 21, 0.1);
  margin: 0;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.faq-list1 > dt .title::after {
  position: absolute;
  content: "\e985";
  font-family: "icomoon";
  right: 0.8em;
  transition: all ease-in-out 0.3s;
}
.faq-list1 > dt .title.active::after {
  content: "\e978";
}
.faq-list1 > dt .title:hover {
  color: var(--link-hover-color);
}
.faq-list1 > dt .content {
  position: relative;
  display: none;
  background-color: var(--light-main-color);
  padding: 0.5em 1em;
}

.faq-list {
  position: relative;
}
.faq-list > dt {
  position: relative;
  padding: 0.5em 0;
  border-bottom: 1px solid var(--main-color);
}
.faq-list > dt:first-child {
  border-top: 1px solid var(--main-color);
}
.faq-list > dt .title {
  position: relative;
  padding: 0.5em 1em 0.5em 2em;
  margin: 0;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.faq-list > dt .title::after {
  position: absolute;
  content: "\e987";
  font-family: "icomoon";
  left: 0.4em;
  transition: all ease-in-out 0.3s;
  color: var(--link-hover-color);
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.faq-list > dt .title:hover {
  color: var(--link-hover-color);
}
.faq-list > dt .content {
  position: relative;
  display: none;
  padding: 0.6em 0.8em;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
  position: relative;
  margin-top: 1.5em;
}
.faq-list > dt .content::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 1em;
  aspect-ratio: 1;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  border: 1px solid #ccc;
  transform: rotateZ(45deg) translate3d(1em, -1.7em, 0);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-center {
  background-position: center;
}

.new-title4 {
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--white-color);
}

.tag-white.list-style1 > li {
  background-color: var(--white-color);
}
.tag-light-main.list-style1 > li {
  background-color: var(--light-main-color);
}
.tag-bg.new-style4 > dt {
  background-color: var(--light-main-color);
}
ul[anchorListTop] {
  background: linear-gradient(to right, rgba(210, 223, 242, 1), rgba(210, 223, 242, 0.5));
  z-index: 100;
  width: 100%;
  margin-bottom: 1em;
  padding: 0.5em;
  border-radius: 4px;
}
ul[anchorListTop] > li {
  position: relative;
  padding: 0.2em 1em;
  color: #45562e;
  text-align: center;
  transition: all ease-in-out 0.4s;
  width: max-content;
  display: inline-block;
  background-color: var(--white-color);
  cursor: pointer;
  border-radius: 4px;
  max-width: 100%;
}
@media screen and (min-width: 1081px) {
  ul[anchorListTop] {
    position: sticky;
    top: 69px;
    display: none;
    --child-width: 16%;
    --other-width: 12px;
  }
  ul[anchorListTop].active {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
  }

  ul[anchorListTop] > li:hover {
    background: linear-gradient(to right, #fff, #f7efdb);
    color: #ec9e40;
  }

  ul[anchorListTop] > li * {
    cursor: pointer;
  }
  ul[anchorListTop] > li.active {
    background: linear-gradient(to right, #fff, #f7efdb);
    color: #ec9e40;
  }
}
@media screen and (max-width: 1080px) {
  ul[anchorListTop] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
  }
}
.Placeholder-hidden {
  display: inline-block;
  opacity: 0;
  width: 0;
}

.side-inquiry {
  position: relative;
  margin-bottom: 2em;
}
.side-inquiry .title {
  position: relative;
  font-size: 1.2em;
  line-height: 1.4em;
  background-color: #f7e8a6;
  text-align: center;
  padding: 0.6em 0;
  font-weight: bold;
}
.side-inquiry .content {
  background-color: #ecf1e1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  text-align: center;
}
.side-inquiry .content .btn {
  position: relative;
  padding: 0.3em 2em;
  border-radius: 2em;
  color: #fff;
  background-color: #de9e53;
  display: block;
  margin: 1em 0;
  transition: all ease-in-out 0.3s;
}
.side-inquiry .content .btn[href]:hover {
  background-color: #d38a36;
}

.new-style5 .title {
  position: relative;
  color: #072437;
  font-size: 1.2em;
  font-weight: bold;
  padding-bottom: 0.5em;
}
.new-style5 .new-btn {
  padding: 0.3em 1em;
}
.new-style5 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.title-icon {
  position: relative;
  font-weight: bold;
  --icon: url(../images/title-icon.png);
  --width: 30px;
  font-size: 1.2em !important;
}
.title-icon::before {
  position: relative;
  content: "";
  background-image: var(--icon);
  width: var(--width);
  height: var(--width);
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.5em;
}

.tag-list {
  position: relative;
  --color: 218;
}
.tag-list > * {
  position: relative;
  background-color: hsl(var(--color), 51%, 93%);
  padding: 0.2em 1em;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
  color: #444;
}
.tag-list > *:hover {
  background-color: hsl(var(--color), 61%, 90%);
}

.new-title5 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.5em 1em;
}
.new-title5::before {
  position: absolute;
  content: attr(data-text);
  width: -moz-max-content;
  width: max-content;
  background-color: #fff;
  z-index: 2;
  padding: 0.5em 1em;
  top: 0;
}
.new-title5::after {
  position: absolute;
  content: "";
  background-color: #cccaca;
  height: 1px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  left: 0;
  top: 49%;
  z-index: 1;
}

.new-style6 > li {
  position: relative;
  padding-bottom: 1em;
  --icon: "";
  padding-left: 3em;
}
.new-style6 > li:not(:first-child) {
  padding-top: 1em;
}
.new-style6 > li:not(:last-child) {
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
}
.new-style6 > li::after {
  position: absolute;
  content: "";
  background-image: var(--icon);
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  left: 0.4em;
  top: calc(50% - 1.7em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.new-style6 > li::before {
  position: absolute;
  content: "";
  width: 2.2em;
  height: 2.2em;
  display: inline-block;
  left: 0;
  top: calc(50% - 2.1em);
  border-radius: 50%;
  background-color: var(--main-color);
}
.new-style6 > li:nth-child(1) {
  --icon: url(../images/new-style6-icon-1.svg);
}
.new-style6 > li:nth-child(2) {
  --icon: url(../images/new-style6-icon-2.svg);
}
.new-style6 > li:nth-child(3) {
  --icon: url(../images/new-style6-icon-3.svg);
}
.new-style6 > li:nth-child(4) {
  --icon: url(../images/new-style6-icon-4.svg);
}
.new-style6 > li:nth-child(5) {
  --icon: url(../images/new-style6-icon-5.svg);
}
.new-style6 > li:nth-child(6) {
  --icon: url(../images/new-style6-icon-6.svg);
}
.new-style6 > li:nth-child(7) {
  --icon: url(../images/new-style6-icon-7.png);
}
.new-style6 > li:nth-child(8) {
  --icon: url(../images/new-style6-icon-8.svg);
}
.new-style6 > li:nth-child(9) {
  --icon: url(../images/new-style6-icon-9.svg);
}
.new-style6 > li:nth-child(10) {
  --icon: url(../images/new-style6-icon-10.svg);
}
.new-style6 > li p {
  padding: 0;
}
.new-style6 > li .title {
  font-weight: bold;
}

.list-style2 {
  position: relative;
}
.list-style2 > li {
  position: relative;
  padding-left: 1.2em;
}
.list-style2 > li a[href] {
  color: #7fa8ee;
}
.list-style2 > li a[href]:hover {
  color: #5b8cee;
}
.list-style2 > li::before {
  position: absolute;
  content: "●";
  color: var(--main-color);
  left: 0;
}

.new-title6 {
  position: relative;
  padding: 0.5em;
  width: 100%;
  font-size: 1.4rem;
}
.new-title6::after {
  position: absolute;
  content: attr(data-text);
  background: linear-gradient(to right, #afc080, #c1cb7a);
  color: #fff;
  left: 0;
  top: 0;
  padding: 0.5em 1em;
  border-radius: 0.2em;
  box-shadow: 2px 0 0 4px var(--white-color);
}
.new-title6::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  top: 49%;
  left: 0;
}

.new-style7 {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.new-style7 > li {
  position: relative;
  display: inline-block;
  width: 0.7em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--main-color);
  margin-left: 0.5em;
}
.new-style7 > li:nth-child(2) {
  background-color: #a7be74;
}
.new-style7 > li:nth-child(3) {
  background-color: #e9efdd;
}

.outline-btn {
  padding: 0.2em 1em;
  --color: var(--main-color);
  border: 1px solid var(--color);
  background: none;
  color: var(--color) !important;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  --icon: "";
  transition: all ease-in-out 0.3s;
}
.outline-btn::before {
  position: relative;
  content: var(--icon);
  font-family: "icomoon";
}
.outline-btn:hover {
  --color: var(--main-dark-color);
}

.items-center {
  align-items: center;
}

.btn-style1 {
  position: relative;
  --icon: "";
  background-color: var(--light-yellow-color);
  transition: all ease-in-out 0.3s;
  border-radius: 1px;
}
.btn-style1:hover {
  background-color: #e7d378;
}
.btn-style1::after {
  position: relative;
  content: var(--icon);
  font-family: "icomoon";
  margin-left: 0.5em;
}

.tag-icon {
  position: relative;
  --icon: "";
  --icon-color: var(--main-color);
}
.tag-icon::before {
  position: relative;
  content: var(--icon);
  font-family: "icomoon";
  margin-right: 0.5em;
  color: var(--icon-color);
}

.new-title7 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  font-family: "TITILLIUMWEB-BOLD", Arial, sans-serif;
  padding: 0.5em 1em;
}
.new-title7::before {
  position: absolute;
  content: attr(data-text);
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  top: 0;
  color: var(--white-color);
  left: 0;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  background: linear-gradient(to right, #afc080, #c1cb7a);
}
.new-title7::after {
  position: absolute;
  content: "";
  background-color: #cccaca;
  height: 1px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.new-style8 {
  position: relative;
}
.new-style8 > li {
  background-color: var(--white-color);
  padding: 1em;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 1em;
  overflow: hidden;
  --transfomr-y: 0;
  --scale: 1;
}
.new-style8 > li .item {
  display: block;
  color: var(--black-color);
  text-align: center;
}
.new-style8 > li .title {
  font-weight: bold;
  line-height: 1.6em;
}
.new-style8 > li .img {
  position: relative;
  width: 100%;
  aspect-ratio: 2;
  border-bottom: 1px solid rgba(21, 21, 21, 0.2);
  padding: 1em;
  margin-bottom: 1em;
  display: block;
  overflow: hidden;
}
.new-style8 > li .img::before {
  position: absolute;
  content: "Hot";
  background-color: #df6f49;
  color: #fff;
  top: 0;
  left: 0;
  padding: 0.4em 1em;
  font-size: 0.8em;
  line-height: 1em;
  border-radius: 4px;
}
.new-style8 > li p {
  line-height: 1.2em;
}
.new-style8 > li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: all ease-in-out 0.3s;
  transform: scale3d(var(--scale), var(--scale), 1);
}
.new-style8 > li a {
  color: var(--black-color);
}

.new-style8 > li .btn-group .button {
  border: none;
  width: 100%;
  z-index: 1;
  transition: all ease-in-out 0.3s;
  padding: 0.2em 0;
  color: var(--main-color);
  display: block;
  cursor: pointer;
}
.new-style8 > li .btn-group .button:hover {
  z-index: 2;
  width: calc(100% + 3rem);
}
.new-style8 > li .btn-group .button.cart {
  background-color: #ffaf5f;
  color: var(--white-color);
}
.new-style8 > li .btn-group .button.cart::before {
  position: relative;
  content: "\e98f";
  font-family: "icomoon";
  display: block;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.new-style8 > li .btn-group .button.inquiry {
  background-color: #fbffe6;
}
.new-style8 > li .btn-group .button.inquiry::before {
  position: relative;
  content: "\e92f";
  font-family: "icomoon";
  display: block;
  font-size: 1.2em;
}
.new-style8 > li:hover {
  --scale: 1.05;
}

.new-title8 {
  position: relative;
  background: linear-gradient(to right, #afc080, #c1cb7a);
  padding: 0.5em 1em;
  color: var(--white-color);
}
.new-title8::after {
  position: absolute;
  content: "";
  background-color: var(--main-color);
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -12px;
}
@media screen and (min-width: 769px) {
  .new-style8 > li .item {
    padding-bottom: 3em;
  }
  .new-style8 > li .btn-group {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
  }
}
.btn-style2 {
  position: relative;
  padding: 2px 1em;
  border-radius: 2em;
  background-color: var(--main-color);
  color: var(--white-color);
  transition: all ease-in-out 0.3s;
  &:hover {
    background-color: var(--main-dark-color);
  }
}

.tag-list > .col-md-4 {
  float: none;
  display: inline-block;
  margin-right: 1em;
  width: max-content;
}
.tag-list > .col-md-4 a {
  color: var(--main-color);
}
.tag-list.pdf-icon > .col-md-4::before {
  content: "\e94a";
  font-family: "icomoon";
  color: var(--main-color);
  margin-right: 0.5em;
}

@media screen and (min-width: 768px) {
  .inquiry-cart > * {
    width: 50%;
  }
  .inquiry-cart.singleBtn > * {
    width: 100%;
  }
  .inquiry-cart.singleBtn > *:hover {
    color: var(--main-dark-color);
  }
}
.tank-table {
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid rgba(21, 21, 21, 0.1);
}
.tank-table thead tr {
  background: linear-gradient(to right, var(--main-color), var(--main-dark-color));
}
.tank-table thead tr th {
  background: none;
}
.tank-table tr,
.tank-table td {
  border: 1px solid rgba(21, 21, 21, 0.1);
}
.tank-table p {
  margin: 0;
  padding: 0;
}
.tank-table tbody tr:nth-child(even) {
  background: linear-gradient(to right, rgba(229, 246, 228, 0.2), rgba(133, 235, 164, 0.05));
}
.tank-table tbody td {
  background: none !important;
}

.new-style9 {
  position: relative;
}
.new-style9 > dt {
  position: relative;
  --angle: 0;
  --translateY: 0;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  padding: 1em 2em;
  align-items: flex-start;
  margin: 1em 0;
  border-radius: 6px;
  background: linear-gradient(to right, #f3f8ec, #e5f3d4);
  transform: translateY(var(--translateY));
  transition: all ease-in-out 0.3s;
}
.new-style9 > dt .title {
  margin: 0;
}
.new-style9 > dt .img {
  position: relative;
  width: 8em;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  background: linear-gradient(135deg, var(--main-dark-color), var(--main-800-color));
  transform: translateY(1em) rotateZ(var(--angle));
  margin-right: 1em;
  box-shadow: 1px 0 10px 0 rgba(0, 0, 0, 0.4);
  transition: all ease-in-out 0.3s;
  min-width: 4em;
  height: 4em;
}
.new-style9 > dt .img img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -o-object-fit: contain;
  object-fit: contain;
}
.new-style9 > dt:hover {
  --angle: 30deg;
  --translateY: -10px;
}

.new-title9 {
  position: relative;
  padding: 0.5em 1.5em;
  background: linear-gradient(-135deg, var(--main-dark-color), var(--main-color));
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
  text-align: center;
  color: var(--white-color);
}
.new-title9 a[href] {
  color: hsl(41, 87%, 48%) !important;
}
.new-title9 a[href]:hover {
  color: hsl(41, 87%, 60%) !important;
}

.check-list {
  position: relative;
  --icon: "✅";
  --color: unset;
}
.check-list h3 {
  margin: 0;
  padding: 0;
}
.check-list > li {
  position: relative;
  padding-left: 1.8em;
}
.check-list > li::before {
  position: absolute;
  content: var(--icon);
  width: 1em;
  left: 0;
  color: var(--color);
}
.new-btn2 {
  position: relative;
  border-radius: 2em;
  padding: 0.3em 2em;
  background: linear-gradient(to right, var(--main-color), var(--main-dark-color));
  color: var(--white-color) !important;
  margin: 2em auto;
  display: block;
  transition: all 0.3s ease-in-out;
  width: -moz-max-content;
  width: max-content;
}
.new-btn2:hover {
  background: linear-gradient(to right, var(--main-dark-color), var(--main-dark-color));
}

.new-style10 {
  position: relative;
}
.new-style10 > dt {
  position: relative;
  --translateY: 0;
  --width: 20%;
  box-shadow: 5px 5px 5px rgba(58, 58, 58, 0.1);
  padding: 1em 2em;
  margin: 1em 0;
  border-radius: 6px;
  background: linear-gradient(to right, var(--white-color), #e5f3d4);
  transform: translateY(var(--translateY));
  transition: all ease-in-out 0.3s;
}
.new-style10 > dt .title {
  margin: 0;
  position: relative;
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 1em;
}
.new-style10 > dt .title::after {
  position: absolute;
  content: "";
  width: var(--width);
  height: 1px;
  background: linear-gradient(to right, var(--main-color), var(--main-dark-color));
  left: 0;
  bottom: -0.5em;
  transition: all 0.3s ease-in-out;
}
.new-style10 > dt:hover {
  --translateY: -5px;
  --width: 100%;
}

.related-list {
  position: relative;
}
.related-list > li {
  position: relative;
  padding: 0.3em 1em;
  background: linear-gradient(to right, #e7f0dd, #e5f3d4);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  --color: var(--main-color);
}
.related-list > li:hover {
  background: linear-gradient(to right, #cce9bf, #acee8f);
  --color: var(--main-dark-color);
}
.related-list > li a[href] {
  color: var(--color);
}

/*   - ---------------------- carousel-item ------------------------- -   */
.carousel-plate {
  position: relative;
  --count: 3;
}
.carousel-plate .operate {
  position: absolute;
  top: 48%;
  width: 2em;
  aspect-ratio: 1;
  border: 1px solid #d0dfae;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-color);
  background-color: rgba(130, 171, 40, 0.1);
  transition: all ease-in-out 0.3s;
  cursor: pointer;
  z-index: 5;
}
.carousel-plate .operate > * {
  pointer-events: none;
}
.carousel-plate .operate:hover {
  background-color: rgba(130, 171, 40, 0.6);
}
.carousel-plate .operate.left {
  left: -1.5em;
}
.carousel-plate .operate.right {
  right: -1.5em;
}
.carousel-plate .view {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-plate .view .content {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.carousel-plate .view .content .item {
  position: relative;
  min-width: calc(100% / var(--count));
  padding: 5px 1em;
}

/*   - ---------------------- carousel-item ------------------------- -   */

.new-style11 {
  position: relative;
}
.new-style11 > dt {
  position: relative;
  padding: 1em 2em;
  border-radius: 1em;
  border: 1px solid rgba(21, 21, 21, 0.1);
  background-color: rgba(221, 221, 221, 0.2);
  margin: 1em 0;
}
.new-style11 > dt::before {
  position: absolute;
  content: "";
  background-image: url(../images/quote.svg);
  width: 1em;
  aspect-ratio: 1;
  top: 10px;
  left: 10px;
}
.new-style11 h3 {
  margin: 0;
  height: 4.1em;
}

.new-style12 {
  position: relative;
}
.new-style12 > dt {
  position: relative;
  padding: 1.8em 1em 0.5em 1em;
  border: 1px solid var(--main-400-color);
}
.new-style12 > dt::before {
  position: absolute;
  content: "";
  height: 1em;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #e8f3cf, #c5e4c2);
}
.new-style12 > dt .title {
  position: relative;
  font-size: 1.2em;
}
.new-style12 h3 {
  margin: 0;
  padding: 0;
}
.new-style13 {
  position: relative;
}
.new-style13 > dt {
  position: relative;
  padding: 1em;
  background-color: var(--white-color);
  border-radius: 0.5em;
  box-shadow: 1px 0 20px rgba(21, 21, 21, 0.1);
}
.new-style13 > dt .title {
  position: relative;
  font-size: 1.2em;
}
.new-style13 h3 {
  margin: 0.5em 0;
  padding: 0;
}

.check-list2 {
  position: relative;
  --icon: "✦";
  --color: #7c7c7c;
  --width: 1em;
  --top: 0;
}
.check-list2 h3 {
  margin: 0;
  padding: 0;
}
.check-list2 > li {
  position: relative;
  padding-left: calc(1.3 * var(--width));
}
.check-list2 > li::before {
  position: absolute;
  top: var(--top);
  content: var(--icon);
  width: var(--width);
  left: 0;
  color: var(--color);
}

.new-style14 {
  position: relative;
  counter-reset: dt;
}
.new-style14 > dt {
  position: relative;
  background-color: var(--white-color);
  border-radius: 0.5em;
  counter-increment: dt;
  padding-left: 7em;
  --img: "";
  --saturate: 0.1;
  --arrow: url(/upload/image/rna-technology-arrow.png);
}
.new-style14 > dt .title {
  position: relative;
  font-size: 1.2em;
  background-color: #ecf2e9;
  padding: 0.2em 1em;
  color: var(--main-dark-color);
  padding-left: 3em;
}
.new-style14 > dt .title::before {
  position: absolute;
  content: counter(dt);
  left: 0;
  top: 0;
  background-color: var(--main-color);
  color: var(--white-color);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
}
.new-style14 > dt::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: var(--img);
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.8em;
  aspect-ratio: 1;
  transition: all ease-in-out 0.3s;
  filter: saturate(var(--saturate));
}
.new-style14 > dt:not(:last-child)::after {
  position: absolute;
  content: "";
  left: 1.1em;
  top: 5em;
  background-image: var(--arrow);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2em;
  aspect-ratio: 1;
}
.new-style14 > dt:hover {
  --saturate: 1;
}
.new-style14 h3 {
  margin: 0.5em 0;
  padding: 0;
}
.new-style15 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  --width-cild: 33.3%;
  margin: 1rem 0;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.new-style15 > * {
  position: relative;
  flex: 1 1 var(--width-cild);
  padding: 1.5em 1em;
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: var(--width-cild);
  --saturate: 0.1;
  --color: var(--main-color);
  --scale: 1;
  --shadow: 0;
  --bg: transparent;
  transform: scale3d(var(--scale), var(--scale), 1);
  transform-style: preserve-3d;
  transition: all ease-in-out 0.3s;
  box-shadow: 1px 0 10px rgba(21, 21, 21, var(--shadow));
  background-color: var(--bg);
}
.new-style15 > * .img {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 0.5em;
}
.new-style15 > * .img img {
  vertical-align: top;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  width: 50px;
  filter: saturate(var(--saturate));
}
.new-style15 > * .title {
  font-size: 1.1em;
  margin: 0;
}
.new-style15 > * .title a[href] {
  color: var(--color);
}
.new-style15 > *:hover {
  --saturate: 1;
  --color: var(--main-dark-color);
  --scale: 1.01;
  --shadow: 0.1;
  --bg: rgba(245, 245, 245, 1);
  z-index: 1;
}
.check-list .mb-1 {
  margin-bottom: 1rem !important;
}

.blog-content .row.img-item .ServiceShowPic {
  padding: 1em;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 0.3em;
}
.blog-content .row.img-item .ServiceShowPic img {
  object-fit: contain;
}
.bg-img h2 a[href] {
  color: var(--white-color);
}
.bg-img h2 a[href]:hover {
  color: var(--main-dark-color);
}
.pt-0 {
  padding-top: 0;
}
.\!pt-0 {
  padding-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .product-table thead {
    display: none;
  }
  .product-table tr {
    margin-bottom: 1em;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .product-table td {
    border: none;
    display: block;
    line-height: 2;
  }
  .product-table td::before {
    content: attr(min-tag);
    display: block;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1em;
    color: var(--main-dark-color);
  }
}
