@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:300,400,700|Roboto:300,400,700&display=swap&subset=chinese-traditional");
@import url("https://use.fontawesome.com/releases/v5.0.9/css/all.css");
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus {
  outline: none;
}

html {
  height: 100%;
  font-size: 15px;
}

body {
  width: 100%;
  min-width: 360px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
  line-height: 1.6rem;
  color: #4d4e52;
  min-height: 100%;
  background: #f4f4f4;
}

a,
a:hover,
a:active {
  color: #4d4e52;
  line-height: 0;
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

p {
  text-align: left;
}

input,
select,
textarea {
  padding: 0.5rem;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  background: white;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 1rem;
  color: #4d4e52;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-size: 0.8rem;
  font-style: italic;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-size: 0.8rem;
  font-style: italic;
}

input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-size: 0.8rem;
  font-style: italic;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  font-size: 0.8rem;
  font-style: italic;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #4d4e52;
}

select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  z-index: 2;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.select {
  width: 50%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .select {
    width: 100%;
  }
}

.select::after {
  content: "\25bc";
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 7px;
  padding: 0.5rem 1rem;
  background: #f6f6f6;
  color: #aaaaaa;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.select:hover::after {
  color: #4d4e52;
}

option {
  font-family: "Roboto";
}

table {
  width: 100%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: 400;
  padding: 0.5rem;
  background: #f6f6f6;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

td {
  padding: 0.5rem;
  text-align: center;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.sp_td td {
  width: 110px;
  font-weight: 400;
  background: #f6f6f6;
}

.width_60 {
  width: 60%;
}

@media screen and (max-width: 450px) {
  .width_60 {
    width: 100%;
  }
}

.crossrow {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  padding: 1rem 0 4rem;
  margin: 4rem 0;
  background-color: #f6f6f6;
}

#goTop {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column-align: end;
      justify-self: end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 90px;
  height: 90px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* 動畫效果 持續期間 */
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media screen and (max-width: 450px) {
  #goTop {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}

#goTop:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.grid_layout_front {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(10px, 1fr) minmax(50%, 900px) minmax(10px, 1fr);
      grid-template-columns: minmax(10px, 1fr) minmax(50%, 900px) minmax(10px, 1fr);
  -ms-grid-rows: auto auto auto 1fr auto;
      grid-template-rows: auto auto auto 1fr auto;
}

.headerspace {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  background-color: #28a745;
  z-index: -999;
}

.header {
  background-color: #28a745;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  text-align: right;
}

.header ul {
  list-style: none;
}

.header li {
  display: inline-block;
  border-right: 1px #fff solid;
  margin-right: -4px;
}

.header li:last-child {
  border-right: 0;
  margin-right: 1px;
}

.header__link {
  color: #fff;
  padding: 8px 10px;
  font-size: 1rem;
  line-height: 2rem;
  position: relative;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  z-index: 1;
}

.header__link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  z-index: -1;
}

.header__link:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.header__link:hover {
  padding: 8px 10px;
  line-height: 2rem;
  color: #28a745;
}

.menuspace {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  background: white;
}

#menu {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  padding: 1.5rem 0;
  position: relative;
}

.navbar {
  font-size: 1rem;
}

.main-nav {
  list-style-type: none;
  display: none;
}

.main-nav li {
  text-align: center;
  position: relative;
}

.main-nav li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eee;
}

.main-nav li:first-child {
  margin-top: 20px;
}

.main-nav li a {
  position: relative;
  z-index: 99;
  display: block;
  line-height: 3rem;
}

.main-nav li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #28a745;
  bottom: 0px;
  left: 0;
  opacity: 1;
  border-radius: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-out;
  transition: -webkit-transform 250ms ease-out;
  transition: transform 250ms ease-out;
  transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;
}

.main-nav li a:hover::after {
  -webkit-transform: scaleX(0.3);
          transform: scaleX(0.3);
}

.nav-links {
  text-decoration: none;
  color: #4d4e52;
  font-size: 1.2rem;
}

.nav-links:hover {
  color: darkenen(#4d4e52, 40%);
  font-weight: 400;
}

.logo {
  display: block;
  width: 280px;
}

.navbar-toggle {
  position: absolute;
  top: 35px;
  right: 10px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.8rem;
}

.active {
  display: block;
}

@media screen and (min-width: 767px) {
  .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .main-nav li {
    margin: 0;
    padding-left: 0px;
  }
  .main-nav li:first-child {
    margin-top: 0px;
  }
  .main-nav li::after {
    all: unset;
  }
  .main-nav a {
    position: relative;
    z-index: 999;
  }
  .main-nav a::after,
  .main-nav a:hover::after {
    all: unset;
  }
  .main-nav a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #28a745;
    bottom: 0px;
    left: 0;
    opacity: 1;
    border-radius: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 250ms ease-out;
    transition: -webkit-transform 250ms ease-out;
    transition: transform 250ms ease-out;
    transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;
  }
  .main-nav a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .nav-links {
    padding: 0 10px;
    font-size: 1rem;
  }
  .logo {
    margin-top: 0;
    display: block;
    width: 280px;
  }
  .navbar-toggle {
    display: none;
  }
  .nav-links:hover {
    color: darkenen(#4d4e52, 40%);
    font-weight: 400;
  }
}

.mainpicspace {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  margin-bottom: 1.5rem;
  background: #006837 url(../img/sliderbg.png) center center no-repeat;
  background-size: auto 100%;
  z-index: -999;
}

#mainpic {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  display: block;
  padding-bottom: 1vh;
  position: relative;
}

#mainpic .slogan {
  font-size: calc(3vw + 0.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 4rem;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

@media screen and (min-width: 1000px) {
  #mainpic .slogan {
    font-size: 3rem;
  }
}

@media screen and (max-width: 450px) {
  #mainpic .slogan {
    line-height: 2rem;
    padding: 2rem 0;
  }
}

#mainpic .flex-caption {
  position: relative;
}

#mainpic .flex-caption img {
  position: absolute;
  width: 100%;
  max-width: 404px;
  bottom: 2.5rem;
  right: 2rem;
}

@media screen and (max-width: 450px) {
  #mainpic .flex-caption img {
    width: 70%;
    bottom: 0.5rem;
    right: 0;
  }
}

.main_topic_picspace {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  padding: 2.5rem;
  position: relative;
  height: 333px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_topic_picspace::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.5;
  z-index: -1;
  -webkit-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}

.main_topic_picspace:hover::before {
  opacity: 0.3;
}

.topic_Pic_bg1 {
  background: black url(../img/pic_about.png) center center no-repeat;
  background-size: cover;
}

.topic_Pic_bg2 {
  background: black url(../img/pic_product.png) center right 5.5% no-repeat;
  background-size: cover;
}

.topic_Pic_bg3 {
  background: black url(../img/pic_hr.png) center center no-repeat;
  background-size: cover;
}

.topic_Pic_bg4 {
  background: black url(../img/pic_news.png) center center no-repeat;
  background-size: cover;
}

.topic_Pic_bg5 {
  background: black url(../img/pic_contact1.png) center center no-repeat;
  background-size: cover;
}

.topic_Pic_bg5_icons {
  height: 75%;
}

.topic_Pic_bg6 {
  background: black url(../img/pic_investor.png) center center no-repeat;
  background-size: cover;
}

.topic_Pic_bg7 {
  background: black url(../img/pic_relations.png) center center no-repeat;
  background-size: cover;
}

.topic_title {
  width: 80%;
  max-width: 350px;
  display: block;
  font-size: calc(1vw + 2rem);
  line-height: calc(2vw + 2.2rem);
  font-weight: 300;
  color: #fff;
  text-align: center;
  padding-bottom: 1.8rem;
  padding-top: 1rem;
  border-bottom: 1px solid #fff;
}

#content {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
}

#content .topictitle {
  margin: 4rem auto;
  width: 90%;
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  clear: both;
}

#content .topictitle h1 {
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 2.5rem;
  text-align: center;
  max-width: 200px;
  position: relative;
}

#content .topictitle h1::after, #content .topictitle h1::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 24px;
  z-index: -1;
  background-size: cover;
}

#content .topictitle h1::after {
  right: -5rem;
  background: url(../img/titleline_right.svg) right center no-repeat;
}

#content .topictitle h1::before {
  left: -5rem;
  background: url(../img/titleline_left.svg) left center no-repeat;
}

#content .maincont {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 4rem 2rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

#content .maincont__flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (max-width: 450px) {
  #content .maincont {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#content .maincont .card {
  width: 43%;
  background-color: #004c5c;
}

@media screen and (max-width: 450px) {
  #content .maincont .card {
    width: 80%;
    margin-bottom: 2rem;
  }
}

#content .maincont .card__body {
  padding: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: flex-end;
}

#content .maincont .card__body__title {
  color: #ffc107;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
}

#content .maincont .card__body__txt {
  color: #fff;
  font-size: 1rem;
  margin: 0 1rem;
}

#content .maincont .card__btn {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  background-color: #00768f;
  border: 0;
  padding: 5px 25px;
  margin: 1.5rem 0 0 0;
  border-radius: 10px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  cursor: pointer;
  display: block;
}

#content .maincont .card__btn:hover {
  color: #ffc107;
  background-color: #006980;
}

@media screen and (max-width: 450px) {
  #content .maincont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#content .pagecont {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 4rem 4rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 450px) {
  #content .pagecont {
    width: 100%;
    padding: 4rem 2rem;
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

#content .pagecont .circle4 {
  max-width: 800px;
  margin: 2rem auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
      grid-template-columns: 1fr auto;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 690px) {
  #content .pagecont .circle4 {
    max-width: 80%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr auto;
        grid-template-rows: 1fr auto;
  }
}

#content .pagecont .circle4__w4 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#content .pagecont .circle4__w4 .w4bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#28a745), to(#9be7ac));
  background: linear-gradient(to top, #28a745, #9be7ac);
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 550ms ease-in-out;
  transition: all 550ms ease-in-out;
}

#content .pagecont .circle4__w4 .w4bg h3,
#content .pagecont .circle4__w4 .w4bg h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  background-clip: padding-box;
  border-radius: 50%;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
  -webkit-transition: all 550ms ease-in-out;
  transition: all 550ms ease-in-out;
}

#content .pagecont .circle4__w4 .w4bg h3 {
  width: 105px;
  height: 105px;
  color: #fff;
  border: 6px solid transparent;
  background-color: #14783e;
}

#content .pagecont .circle4__w4 .w4bg h1 {
  width: 150px;
  height: 150px;
  color: #14783e;
  background-color: #fff;
  border: 8px solid transparent;
  -webkit-box-shadow: inset 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: inset 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}

#content .pagecont .circle4__w4 .w4bg:hover {
  -webkit-transform: rotate(360deg) scale(1.1);
          transform: rotate(360deg) scale(1.1);
}

#content .pagecont .circle4__w4 .w4bg:hover h3,
#content .pagecont .circle4__w4 .w4bg:hover h1 {
  -webkit-transform: rotate(-360deg) scale(0.95);
          transform: rotate(-360deg) scale(0.95);
  color: #fff;
  background-color: #14783e;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#content .pagecont .article-title {
  font-weight: 300;
  font-size: 2rem;
  color: black;
  text-align: center;
  margin: 2rem 0 4rem;
}

@media screen and (max-width: 450px) {
  #content .pagecont .article-title {
    font-size: 1.5rem;
  }
}

#content .pagecont .logo_30th {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  width: 200px;
  -ms-grid-column-align: end;
      justify-self: end;
}

@media screen and (max-width: 690px) {
  #content .pagecont .logo_30th {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    width: 60%;
    -ms-grid-column-align: end;
        justify-self: end;
  }
}

#content .pagecont article {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #content .pagecont article {
    width: 100%;
  }
}

#content .pagecont article p {
  margin-bottom: 1rem;
}

#content .pagecont article .intro p {
  margin-bottom: 0;
}

#content .pagecont .regulation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #content .pagecont .regulation {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

#content .pagecont .regulation__list {
  width: 47%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background-image: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media screen and (max-width: 768px) {
  #content .pagecont .regulation__list {
    width: auto;
    margin-bottom: 1rem;
  }
}

#content .pagecont .regulation__list h4 {
  background-color: #14783e;
  color: #fff;
  text-align: center;
  padding: 1rem 4rem;
  border-top: 6px solid #2dbc4e;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#content .pagecont .regulation__list__body {
  padding: 2rem 4rem;
}

#content .pagecont .regulation__list span {
  font-family: "Roboto";
  font-size: 3rem;
  font-weight: 700;
  color: #ddd;
  line-height: 3rem;
  margin-bottom: 5px;
  margin-right: 10px;
  letter-spacing: -2px;
  float: left;
}

@media screen and (max-width: 450px) {
  #content .pagecont .regulation__list span {
    float: none;
    margin-left: -4px;
  }
}

#content .pagecont .regulation .item_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3rem;
}

#content .pagecont .regulation .item_table h2 {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  position: relative;
}

#content .pagecont .regulation .item_table h2 .dot_right {
  width: 50px;
  height: 50px;
  background: #f6f6f6;
  border-radius: 100%;
  position: absolute;
  right: -25px;
  bottom: calc(50% - 25px);
}

@media screen and (max-width: 768px) {
  #content .pagecont .regulation .item_table h2 .dot_right {
    right: calc(50% - 25px);
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    bottom: -25px;
  }
}

#content .pagecont .regulation .item_table h2 .dot_left {
  width: 50px;
  height: 50px;
  background: #f6f6f6;
  border-radius: 100%;
  position: absolute;
  left: -25px;
  bottom: calc(50% - 25px);
}

@media screen and (max-width: 768px) {
  #content .pagecont .regulation .item_table h2 .dot_left {
    left: calc(50% - 25px);
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    bottom: -25px;
  }
}

@media screen and (max-width: 768px) {
  #content .pagecont .regulation .item_table h2 {
    width: 100%;
    padding: 2rem;
  }
}

#content .pagecont .regulation .item_table ul {
  width: 50%;
  padding: 3rem;
  background: #f6f6f6;
}

@media screen and (max-width: 768px) {
  #content .pagecont .regulation .item_table ul {
    width: 100%;
  }
}

#content .pagecont .regulation .item_table ul li {
  margin-left: 1rem;
}

#content .pagecont .regulation .item_table .dep_1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#content .pagecont .regulation .item_table .dep_2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 768px) {
  #content .pagecont .regulation .item_table .dep_2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#content .pagecont .regulation .item_table .dep_bg1,
#content .pagecont .regulation .item_table .dep_bg2,
#content .pagecont .regulation .item_table .dep_bg3,
#content .pagecont .regulation .item_table .dep_bg4,
#content .pagecont .regulation .item_table .dep_bg5 {
  background-size: cover;
}

#content .pagecont .regulation .item_table .dep_bg1 {
  background: url(../img/depart1.jpg) center top 20% no-repeat;
}

#content .pagecont .regulation .item_table .dep_bg2 {
  background: url(../img/depart2.jpg) right 10% bottom 30% no-repeat;
}

#content .pagecont .regulation .item_table .dep_bg3 {
  background: url(../img/front_item3.png) center bottom no-repeat;
}

#content .pagecont .regulation .item_table .dep_bg4 {
  background: url(../img/depart4.jpg) left 10% center no-repeat;
}

#content .pagecont .regulation .item_table .dep_bg5 {
  background: url(../img/depart5.jpg) center center no-repeat;
}

@media screen and (max-width: 768px) {
  #content .pagecont .regulation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#content .pagecont .org_pic {
  width: 100%;
}

#content .pagecont .milestone {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#content .pagecont .milestone ul {
  list-style: none;
}

#content .pagecont .milestone li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
}

@media screen and (max-width: 450px) {
  #content .pagecont .milestone li {
    display: block;
    padding: 1.5rem;
  }
  #content .pagecont .milestone li:hover {
    background: #f6f6f6;
  }
}

#content .pagecont .milestone li div:first-child {
  padding: 0 1.5rem 0 0;
  border-right: 1px solid #ccc;
}

@media screen and (max-width: 450px) {
  #content .pagecont .milestone li div:first-child {
    padding: 1rem 1.5rem;
    margin: -1.5rem -1.5rem 0 -1.5rem;
    border-right: 0px solid #ccc;
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    padding-bottom: 0.5rem;
  }
}

#content .pagecont .milestone li div:first-child span {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 2rem;
  line-height: 2rem;
  letter-spacing: -2px;
  display: block;
}

@media screen and (max-width: 450px) {
  #content .pagecont .milestone li div:first-child span {
    display: inline;
    padding-right: 0.5rem;
  }
}

#content .pagecont .milestone li div:last-child {
  width: 90%;
  padding-left: 2rem;
}

@media screen and (max-width: 450px) {
  #content .pagecont .milestone li div:last-child {
    padding: 1rem 0;
    width: 100%;
  }
}

#content .pagecont .milestone li:nth-child(2n-1) {
  background: #f6f6f6;
}

@media screen and (max-width: 450px) {
  #content .pagecont .milestone li:nth-child(2n-1) {
    background: none;
  }
  #content .pagecont .milestone li:nth-child(2n-1):hover {
    background: #f6f6f6;
  }
}

.social_citizen {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 1fr;
      grid-template-columns: 30% 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
}

.social_citizen__body {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding-left: 2rem;
}

.social_citizen__photo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

@media screen and (max-width: 768px) {
  .social_citizen {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
  }
  .social_citizen__body {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    padding-left: 0;
  }
  .social_citizen__photo {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    text-align: center;
  }
}

.social_citizen ol {
  margin-left: 1rem;
}

.social_citizen ol h3 {
  margin-top: 1rem;
  font-weight: 400;
}

.social_citizen h2 {
  color: #14783e;
  margin: 1rem 0 0 0;
  font-weight: 400;
}

.social_citizen img {
  width: 100%;
  max-width: 300px;
  margin: 1rem 0 0 0;
}

@media screen and (max-width: 768px) {
  .social_citizen img {
    width: 100%;
    margin-top: 2rem;
  }
}

.social_citizen figure {
  font-style: italic;
  font-size: 0.8rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}

.submenu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1rem;
  background: #fff;
}

.submenu ul {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 1rem 2rem;
}

.submenu li {
  padding: 0 0.5rem;
  border-right: 1px solid #4d4e52;
}

.submenu li:last-child {
  border: 0;
}

.submenu__hr {
  margin-bottom: 5rem;
  border: none;
  border-bottom: 0px solid #28a745;
  border-top: 1px solid #28a745;
  clear: both;
  height: 0;
  width: 100%;
  position: relative;
}

.submenu__hr::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 150px);
  width: 300px;
  height: 4px;
  background: #28a745;
}

.submenu .nav-links {
  font-size: 1rem;
}

.transform_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.transform_scale:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.intro {
  padding: 0rem 2rem 2rem;
  position: relative;
}

.intro_date::before, .intro_employee::before, .intro_capital::before, .intro_business::before, .intro_r_enterprise::before, .intro_investment::before {
  margin-right: 2rem;
  font-weight: 400;
  color: black;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.intro_date::before {
  content: "創立時間：";
}

.intro_employee::before {
  content: "員工人數：";
}

.intro_capital::before {
  content: "資本額：";
  margin-right: 3rem;
}

.intro_business::before {
  content: "主要業務：";
}

.intro_r_enterprise::before {
  content: "關係企業：";
}

.intro_investment::before {
  content: "企業投資：";
}

.intro_date, .intro_employee, .intro_capital, .intro_business, .intro_r_enterprise, .intro_investment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.intro_date ul, .intro_employee ul, .intro_capital ul, .intro_business ul, .intro_r_enterprise ul, .intro_investment ul {
  margin-left: 1rem;
}

.intro_investment li {
  margin-bottom: 1rem;
}

.intro_investment a {
  color: #4d4e52;
}

@media screen and (max-width: 450px) {
  .intro {
    padding: 0rem 0rem 2rem;
  }
  .intro_date::before, .intro_employee::before, .intro_capital::before, .intro_business::before, .intro_r_enterprise::before, .intro_investment::before {
    margin-right: 0rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    font-weight: 400;
    color: black;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    background-color: #f5f5f6;
  }
  .intro_date, .intro_employee, .intro_capital {
    display: block;
  }
  .intro_date p, .intro_employee p, .intro_capital p {
    margin-left: 0.5rem;
  }
  .intro_business, .intro_r_enterprise, .intro_investment {
    display: block;
  }
  .intro_business ul, .intro_r_enterprise ul, .intro_investment ul {
    margin-left: 2rem;
  }
}

.admin {
  width: 100%;
  background: url(../img/building.png) top right no-repeat;
  background-size: contain;
  padding: 3rem 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .admin {
    padding: 1rem 1rem 15rem;
    background-position: left 30% bottom;
    background-size: cover;
  }
}

.admin__body {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .admin__body {
    width: 100%;
  }
}

.admin__body_man {
  width: 45%;
  padding: 1rem;
  border: 12px solid #fff;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 8px;
  -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 450px) {
  .admin__body_man {
    width: 100%;
  }
}

.admin__body_man h3,
.admin__body_man h4,
.admin__body_man h5 {
  font-weight: 400;
}

.admin__body_man h3 {
  margin-bottom: 5px;
}

.product {
  width: 100%;
  max-width: 990px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (max-width: 750px) {
  .product__card:nth-child(2n + 1) {
    background: #f6f6f6;
    padding: 2rem 2rem 2rem;
    border-radius: 20px;
  }
}

.product__card {
  width: 250px;
  margin: 0 auto 3rem;
  text-align: center;
}

.product__card h3 {
  padding: 1rem 0rem;
}

.product__card img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  border: 1px solid #ddd;
}

.product__card a {
  color: #4d4e52;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  border-bottom: 1px dotted #fff;
}

.product__card a:hover {
  border-bottom: 1px dotted #28a745;
  color: #28a745;
}

.product__card span {
  color: #b3b4b8;
}

.partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.partner__imgbg {
  max-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  opacity: 0.8;
  margin: 1.5rem;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 768px) {
  .partner__imgbg {
    opacity: 1;
  }
}

.partner__imgbg:hover {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.partner__imgbg figure {
  line-height: 1.2rem;
  text-align: center;
}

.partner__title {
  width: 100%;
  text-align: center;
  margin: 3rem 0;
  z-index: 999;
  position: relative;
}

.partner__title h4 {
  padding: 6px 2rem;
  background: #14783e;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  margin: 0 auto;
}

.partner__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  min-width: 300px;
  height: 1px;
  background: #ccc;
  z-index: -1;
}

.partner img {
  width: auto;
  margin-bottom: 10px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.productpage {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

@media screen and (max-width: 450px) {
  .productpage {
    width: 100%;
  }
}

.product-item_select {
  width: 100%;
}

@media screen and (max-width: 450px) {
  .product-item_select {
    padding: 0 2rem;
  }
}

.product-item_select form {
  margin: 0.5rem 0 2rem;
}

.product-item_select .select {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .product-item_select .select {
    width: 100%;
  }
}

.product-item_body {
  width: 100%;
  background: white;
  padding: 4rem 4rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .product-item_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 450px) {
  .product-item_body {
    width: 100%;
    padding: 4rem 3rem;
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.product-item_body_pic {
  width: 40%;
}

.product-item_body_pic img {
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .product-item_body_pic {
    width: 100%;
  }
}

.product-item_body_cont {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .product-item_body_cont {
    width: 100%;
  }
}

.product-item_body_cont h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 2rem;
}

.product-item_body_cont h4 {
  padding: 1rem 0;
}

.product-item_body_cont ul {
  margin-left: 1.5rem;
}

.product-item_body_cont table {
  margin: 1rem 0;
}

.timeline {
  position: relative;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 768px) {
  .timeline {
    padding: 0;
  }
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  top: 0;
  left: calc(33% + 20px);
  bottom: 0;
  background-color: #ddd;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: calc(3rem + 12px);
  }
}

@media screen and (max-width: 450px) {
  .timeline::after {
    left: calc(1rem + 12px);
  }
}

.newsitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4rem;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 768px) {
  .newsitem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.newsitem__date {
  width: 33%;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.newsitem__date::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  top: 0px;
  right: -14px;
  border-radius: 50%;
  background: #f6f6f6;
  border: 4px solid #ddd;
  z-index: 99;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 768px) {
  .newsitem__date::after {
    right: unset;
    left: -14px;
  }
}

@media screen and (max-width: 768px) {
  .newsitem__date {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.newsitem__tag_normal {
  display: inline-block;
  padding: 0px 1rem;
  line-height: 1rem;
  margin: 5px 0 0.5rem;
  text-align: center;
  background: #28a745;
  border-radius: 5px;
  color: #fff;
}

.newsitem__tag_stock {
  display: inline-block;
  padding: 0px 1rem;
  line-height: 1rem;
  margin: 5px 0 0.5rem;
  text-align: center;
  background: #b42323;
  border-radius: 5px;
  color: #fff;
}

.newsitem__body {
  width: 67%;
  padding-left: 2rem;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.newsitem__body h4 {
  margin-bottom: 0.5rem;
  color: black;
}

@media screen and (max-width: 768px) {
  .newsitem__body {
    width: 100%;
  }
}

.contact h4 {
  margin: 0 0 2rem 0;
  font-weight: 400;
  text-align: center;
}

.contact form {
  padding: 3rem;
}

@media screen and (max-width: 768px) {
  .contact form {
    padding: 3rem 1rem;
  }
}

.contact form label {
  display: block;
  margin: 1rem 0 0.3rem;
}

.contact form label::after {
  content: "*";
  color: red;
}

.contact form .unrequired::after {
  content: "";
}

.contact form #company,
.contact form #proddep,
.contact form #email,
.contact form #message {
  width: 100%;
}

.contact form #name,
.contact form #phone,
.contact form #fax {
  width: 49%;
}

@media screen and (max-width: 450px) {
  .contact form #name,
  .contact form #phone,
  .contact form #fax {
    width: 100%;
  }
}

.contact form #firstname {
  margin-right: 2%;
}

@media screen and (max-width: 450px) {
  .contact form #firstname {
    margin-right: 0;
  }
}

.contact form #send,
.contact form #reset {
  margin-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background: none;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.contact form #send:hover,
.contact form #reset:hover {
  cursor: pointer;
  color: #fff;
  border-color: #28a745;
  background: #28a745;
}

.contact form #send {
  margin-right: 8px;
}

.contact__flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.contact__tw {
  text-align: center;
  padding-bottom: 5rem;
}

.contact__tw h2 {
  color: #14783e;
}

.contact__tw h3 {
  margin: 10px 0 50px;
  color: #14783e;
  position: relative;
}

.contact__tw h3::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: calc(50% - 2.5rem);
  width: 5rem;
  height: 3px;
  background: #14783e;
}

.contact__tw p {
  text-align: center;
  font-size: 1.3rem;
  line-height: 2rem;
}

.contact__tw a {
  color: #4d4e52;
}

.contact__tw .tw_photo {
  padding: 1rem 0;
  border-top: 1px solid #cdced1;
  border-bottom: 1px solid #cdced1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact__tw .tw_photo a {
  width: 18%;
  min-width: 120px;
  border: 7px solid #fff;
  margin: 7px 5px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 768px) {
  .contact__tw .tw_photo a {
    width: 30%;
  }
}

@media screen and (max-width: 450px) {
  .contact__tw .tw_photo a {
    width: 80%;
  }
}

.contact__tw .tw_photo a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.contact__cn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 900px;
  text-align: center;
}

.contact__cn h2 {
  color: #14783e;
}

.contact__cn h3 {
  margin: 10px 0 50px;
  color: #14783e;
  position: relative;
}

.contact__cn h3::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: calc(50% - 2.5rem);
  width: 5rem;
  height: 3px;
  background: #14783e;
}

.contact__cn p {
  text-align: center;
}

.contact__cn a {
  color: #4d4e52;
}

.contact__cn #hkmap,
.contact__cn #szmap,
.contact__cn #shmap,
.contact__cn #bjmap,
.contact__cn #vnmap {
  width: 46%;
  margin: 10px;
}

@media screen and (max-width: 850px) {
  .contact__cn #hkmap,
  .contact__cn #szmap,
  .contact__cn #shmap,
  .contact__cn #bjmap,
  .contact__cn #vnmap {
    width: 100%;
  }
}

.contact__cn #ksmap {
  width: 94.5%;
  margin: 10px;
}

@media screen and (max-width: 850px) {
  .contact__cn #ksmap {
    width: 100%;
  }
}

.contact__cn_area {
  padding: 3rem;
  background: #f6f6f6;
  border-radius: 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
}

.contact__cn_area_body {
  -ms-grid-column: 1;
  grid-column: 1/1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.contact__cn_area .cn_photo {
  -ms-grid-column: 1;
  grid-column: 1/1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  width: calc(100% + 6rem);
  height: 200px;
  margin: 0 0 -3rem -3rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__cn_area .cn_photo h1 {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.contact__cn_area .hk_photo {
  background: url(https://picsum.photos/800/400);
}

.contact__cn_area .sz_photo {
  background: url(https://picsum.photos/801/400);
}

.contact__cn_area .sh_photo {
  background: url(https://picsum.photos/800/401);
}

.contact__cn_area .ks_photo {
  background: url(https://picsum.photos/802/400);
}

.contact__cn_area .bj_photo {
  background: url(https://picsum.photos/802/400);
}

.contact__cn_area .vn_photo {
  background: url(https://picsum.photos/802/400);
}

.logo_pic {
  width: 63px;
  height: 54px;
  margin: 0 auto 0.8rem;
  background: transparent url(../img/logo.svg) top left no-repeat;
  background-size: 270px 54px;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

@media screen and (max-width: 768px) {
  .logo_pic {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.map {
  margin: 1rem 0;
}

.map img {
  width: 70px;
}

.portfolio-lightbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: 0;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
  padding: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 100;
}

.portfolio-lightbox:target {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
  opacity: 1;
}

.portfolio-lightbox__content {
  width: auto;
  height: auto;
  padding: 2rem;
  border-radius: 10px;
  background: #222222;
  position: relative;
}

.portfolio-lightbox__content h4 {
  margin: 1rem 0;
}

.portfolio-lightbox__image {
  display: block;
}

.portfolio-lightbox iframe {
  width: 70vw;
  height: 70vh;
}

.close {
  position: absolute;
  right: -1rem;
  top: -1rem;
  border: white 3px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
  background: black;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.close::after {
  content: "x";
  color: white;
  font-family: "Roboto";
  font-weight: 400;
}

@media screen and (max-height: 480px) {
  .close {
    top: unset;
    bottom: -1rem;
  }
}

.complaint,
.sexual_harassment {
  border-radius: 50px;
  width: 48%;
  line-height: 3rem;
  text-align: center;
  color: #fff;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.complaint:hover,
.sexual_harassment:hover {
  line-height: 3rem;
}

@media screen and (max-width: 450px) {
  .complaint,
  .sexual_harassment {
    width: 100%;
    margin-bottom: 10px;
  }
}

.complaint {
  background: #30aadc;
}

.complaint:hover {
  background: #5bbce4;
}

.sexual_harassment {
  background: #ff5a77;
}

.sexual_harassment:hover {
  background: #ff8da1;
}

.investor {
  width: 80%;
  margin: 0 auto 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.investor__card {
  width: 32%;
  margin: 0 5px 10px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 940px) {
  .investor__card {
    width: 60%;
    margin: 0 auto 10px;
  }
}

@media screen and (max-width: 450px) {
  .investor__card {
    width: 80%;
    margin: 0 auto 10px;
  }
}

.investor__card .invbg {
  width: 100%;
  height: 150px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.investor__card .invbg h1 {
  font-size: 1.4rem;
  padding: 0.3rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
}

.investor__card .title1 {
  background: url(../img/inv_pic1.jpg);
  background-size: cover;
}

.investor__card .title2 {
  background: url(../img/inv_pic2.jpg);
  background-size: cover;
}

.investor__card .title4 {
  background: url(../img/inv_pic4.jpg);
  background-size: cover;
}

.investor__card_body {
  padding: 2rem 1rem;
}

.investor__card_body ul,
.investor__card_body ol {
  padding-left: 1.5rem;
}

.investor__card_body a {
  color: #4d4e52;
}

.investor__card_body a:hover {
  color: #28a745;
  border-bottom: 1px dotted #28a745;
}

.investor__square {
  border: 1px solid #e15d7e;
  border-top: 6px solid #e15d7e;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 10px 0;
}

.investor__square h1 {
  padding: 1rem 2rem;
  color: #fff;
}

.investor__square_title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #b12061;
}

.investor__square_body {
  height: 100%;
  padding: 2rem;
}

.investor__square_body ol {
  margin: 1.5rem 0 0 2rem;
}

.investor__square_body a {
  width: 70%;
  text-align: center;
  padding: 0.5rem 2rem;
  background: #4d4e52;
  color: #fff;
  border-radius: 20px;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 450px) {
  .investor__square_body a {
    width: 100%;
  }
}

.investor__square_body a:hover {
  background: #999a9f;
}

.investorcont {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  width: 100%;
  padding: 0rem 4rem 4rem;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .investorcont {
    padding: 0rem 2rem 4rem;
  }
}

@media screen and (max-width: 450px) {
  .investorcont {
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.investorcont h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.6rem;
  margin: 5rem 0 3rem;
}

.investorcont__block-6-col, .investorcont__block-5-col, .investorcont__block-4-col, .investorcont__block-3-col, .investorcont__block-2-col, .investorcont__block-1-col, .investorcont__block-0-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.investorcont__block-6-col h4,
.investorcont__block-6-col a,
.investorcont__block-6-col p, .investorcont__block-5-col h4,
.investorcont__block-5-col a,
.investorcont__block-5-col p, .investorcont__block-4-col h4,
.investorcont__block-4-col a,
.investorcont__block-4-col p, .investorcont__block-3-col h4,
.investorcont__block-3-col a,
.investorcont__block-3-col p, .investorcont__block-2-col h4,
.investorcont__block-2-col a,
.investorcont__block-2-col p, .investorcont__block-1-col h4,
.investorcont__block-1-col a,
.investorcont__block-1-col p, .investorcont__block-0-col h4,
.investorcont__block-0-col a,
.investorcont__block-0-col p {
  padding: 1rem;
  line-height: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4d4e52;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.investorcont__block-6-col a:hover, .investorcont__block-5-col a:hover, .investorcont__block-4-col a:hover, .investorcont__block-3-col a:hover, .investorcont__block-2-col a:hover, .investorcont__block-1-col a:hover, .investorcont__block-0-col a:hover {
  background: #4d4e52;
  color: #fff;
  cursor: pointer;
}

.investorcont__block-6-col:nth-child(2n + 1), .investorcont__block-5-col:nth-child(2n + 1), .investorcont__block-4-col:nth-child(2n + 1), .investorcont__block-3-col:nth-child(2n + 1), .investorcont__block-2-col:nth-child(2n + 1), .investorcont__block-1-col:nth-child(2n + 1), .investorcont__block-0-col:nth-child(2n + 1) {
  background: #f4f4f4;
}

@media screen and (max-width: 768px) {
  .investorcont__block-6-col:nth-child(2n + 1), .investorcont__block-5-col:nth-child(2n + 1), .investorcont__block-4-col:nth-child(2n + 1), .investorcont__block-3-col:nth-child(2n + 1), .investorcont__block-2-col:nth-child(2n + 1), .investorcont__block-1-col:nth-child(2n + 1), .investorcont__block-0-col:nth-child(2n + 1) {
    background: none;
  }
}

.investorcont__block-6-col h4,
.investorcont__block-6-col a,
.investorcont__block-6-col p {
  width: 16.66%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .investorcont__block-6-col h4 {
    width: 100%;
    border-top: 1px solid #4d4e52;
    border-bottom: 1px solid #f4f4f4;
  }
  .investorcont__block-6-col a {
    width: 16.66%;
    background: #f4f4f4;
  }
}

.investorcont__block-5-col h4,
.investorcont__block-5-col a,
.investorcont__block-5-col p {
  width: 20%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .investorcont__block-5-col h4 {
    width: 100%;
    border-top: 1px solid #4d4e52;
    border-bottom: 1px solid #f4f4f4;
  }
  .investorcont__block-5-col a {
    width: 20%;
    background: #f4f4f4;
  }
}

.investorcont__block-4-col h4,
.investorcont__block-4-col a,
.investorcont__block-4-col p {
  width: 25%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .investorcont__block-4-col h4 {
    width: 100%;
    border-top: 1px solid #4d4e52;
    border-bottom: 1px solid #f4f4f4;
  }
  .investorcont__block-4-col a {
    width: 25%;
    background: #f4f4f4;
  }
}

.investorcont__block-3-col a {
  width: 33.33%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1000px) {
  .investorcont__block-3-col a {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .investorcont__block-3-col a {
    width: 100%;
  }
}

.investorcont__block-3-col .execute {
  background: #f4f4f4;
}

.investorcont__block-2-col a {
  width: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .investorcont__block-2-col a {
    width: 100%;
  }
}

.investorcont__block-1-col h4 {
  width: 20%;
}

.investorcont__block-1-col a {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.investorcont__block-0-col ol,
.investorcont__block-0-col ul {
  width: 100%;
  margin-left: 1rem;
}

.investorcont__block-0-col li {
  font-weight: 400;
}

.investorcont__block-0-col li p {
  font-weight: 300;
  padding: 0.2rem 0 0.2rem 0;
  line-height: 1.6rem;
}

.investorcont__block-0-col a {
  display: inline;
}

.investorcont__block-0-col a::after {
  font-family: "Font Awesome\ 5 free";
  font-weight: 900;
  font-size: 1.2rem;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.investorcont__block-0-col a:hover::after {
  color: #fff;
}

.investorcont__block-0-col table {
  margin: 1rem 0;
}

.investorcont__block-0-col table td {
  padding: 1rem;
  width: 25%;
}

.investorcont__block-0-col .vlr {
  display: table-cell;
  width: 10%;
  min-width: 40px;
}

.investorcont__block-0-col .vlr p {
  min-height: 400px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 2px;
  margin: auto;
}

.investorcont__block-0-col .idnumber_vlr {
  display: table-cell;
}

@media screen and (max-width: 450px) {
  .investorcont__block-0-col .idnumber_vlr p {
    min-height: 100px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}

.investorcont .director_table_ps {
  margin-left: 2rem;
  padding-right: 2rem;
}

.investorcont .director_table_ps li {
  font-weight: 100;
}

@media screen and (max-width: 767px) {
  .investorcont .dividend th:nth-of-type(3),
  .investorcont .dividend th:nth-of-type(5),
  .investorcont .dividend th:nth-of-type(6),
  .investorcont .dividend th:nth-of-type(7),
  .investorcont .dividend td:nth-of-type(3),
  .investorcont .dividend td:nth-of-type(6),
  .investorcont .dividend td:nth-of-type(7),
  .investorcont .dividend td:nth-of-type(8) {
    display: none;
  }
}

.investorcont .revenue {
  margin-top: 1rem;
  border-bottom: 1px solid #ccc;
}

.investorcont .revenue__th {
  width: 100%;
  font-weight: 400;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.investorcont .revenue__th div {
  width: 16.7%;
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .investorcont .revenue__th div {
    font-size: 70%;
    line-height: 1rem;
  }
}

@media screen and (max-width: 450px) {
  .investorcont .revenue__th div {
    font-size: 50%;
    line-height: 0.8rem;
  }
}

.investorcont .revenue__month {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.investorcont .revenue__month div {
  width: 16.7%;
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .investorcont .revenue__month div {
    font-size: 70%;
  }
}

@media screen and (max-width: 450px) {
  .investorcont .revenue__month div {
    font-size: 50%;
    line-height: 0.8rem;
  }
}

.investorcont .revenue .total {
  background: #f6f6f6;
}

.sustainable {
  width: 80%;
  margin: 0 auto 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sustainable__card {
  width: 32%;
  margin: 0 5px 10px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 940px) {
  .sustainable__card {
    width: 60%;
    margin: 0 auto 10px;
  }
}

@media screen and (max-width: 450px) {
  .sustainable__card {
    width: 80%;
    margin: 0 auto 10px;
  }
}

.sustainable__card .susbg {
  width: 100%;
  height: 150px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sustainable__card .susbg h1 {
  font-size: 1.4rem;
  padding: 0.3rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
}

.sustainable__card .title1 {
  background: url(../img/sus_pic1.jpg);
  background-size: cover;
}

.sustainable__card .title2 {
  background: url(../img/sus_pic2.jpg);
  background-size: cover;
}

.sustainable__card .title4 {
  background: url(../img/sus_pic4.jpg);
  background-size: cover;
}

.sustainable__card_body {
  padding: 2rem 1rem;
}

.sustainable__card_body ul,
.sustainable__card_body ol {
  padding-left: 1.5rem;
}

.sustainable__card_body a {
  color: #4d4e52;
}

.sustainable__card_body a:hover {
  color: #28a745;
  border-bottom: 1px dotted #28a745;
}

.sustainable__square {
  border: 1px solid #e15d7e;
  border-top: 6px solid #e15d7e;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 10px 0;
}

.sustainable__square h1 {
  padding: 1rem 2rem;
  color: #fff;
}

.sustainable__square_title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #b12061;
}

.sustainable__square_body {
  height: 100%;
  padding: 2rem;
}

.sustainable__square_body ol {
  margin: 1.5rem 0 0 2rem;
}

.sustainable__square_body a {
  width: 70%;
  text-align: center;
  padding: 0.5rem 2rem;
  background: #4d4e52;
  color: #fff;
  border-radius: 20px;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

@media screen and (max-width: 450px) {
  .sustainable__square_body a {
    width: 100%;
  }
}

.sustainable__square_body a:hover {
  background: #999a9f;
}

.sustainablecont {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  width: 100%;
  padding: 0rem 4rem 4rem;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .sustainablecont {
    padding: 0rem 2rem 4rem;
  }
}

@media screen and (max-width: 450px) {
  .sustainablecont {
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.sustainablecont h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.6rem;
  margin: 5rem 0 3rem;
}

.sustainablecont__block-6-col, .sustainablecont__block-5-col, .sustainablecont__block-4-col, .sustainablecont__block-3-col, .sustainablecont__block-2-col, .sustainablecont__block-1-col, .sustainablecont__block-0-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sustainablecont__block-6-col h4,
.sustainablecont__block-6-col a,
.sustainablecont__block-6-col p, .sustainablecont__block-5-col h4,
.sustainablecont__block-5-col a,
.sustainablecont__block-5-col p, .sustainablecont__block-4-col h4,
.sustainablecont__block-4-col a,
.sustainablecont__block-4-col p, .sustainablecont__block-3-col h4,
.sustainablecont__block-3-col a,
.sustainablecont__block-3-col p, .sustainablecont__block-2-col h4,
.sustainablecont__block-2-col a,
.sustainablecont__block-2-col p, .sustainablecont__block-1-col h4,
.sustainablecont__block-1-col a,
.sustainablecont__block-1-col p, .sustainablecont__block-0-col h4,
.sustainablecont__block-0-col a,
.sustainablecont__block-0-col p {
  padding: 1rem;
  line-height: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4d4e52;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.sustainablecont__block-6-col a:hover, .sustainablecont__block-5-col a:hover, .sustainablecont__block-4-col a:hover, .sustainablecont__block-3-col a:hover, .sustainablecont__block-2-col a:hover, .sustainablecont__block-1-col a:hover, .sustainablecont__block-0-col a:hover {
  background: #4d4e52;
  color: #fff;
  cursor: pointer;
}

.sustainablecont__block-6-col:nth-child(2n + 1), .sustainablecont__block-5-col:nth-child(2n + 1), .sustainablecont__block-4-col:nth-child(2n + 1), .sustainablecont__block-3-col:nth-child(2n + 1), .sustainablecont__block-2-col:nth-child(2n + 1), .sustainablecont__block-1-col:nth-child(2n + 1), .sustainablecont__block-0-col:nth-child(2n + 1) {
  background: #f4f4f4;
}

@media screen and (max-width: 768px) {
  .sustainablecont__block-6-col:nth-child(2n + 1), .sustainablecont__block-5-col:nth-child(2n + 1), .sustainablecont__block-4-col:nth-child(2n + 1), .sustainablecont__block-3-col:nth-child(2n + 1), .sustainablecont__block-2-col:nth-child(2n + 1), .sustainablecont__block-1-col:nth-child(2n + 1), .sustainablecont__block-0-col:nth-child(2n + 1) {
    background: none;
  }
}

.sustainablecont__block-6-col h4,
.sustainablecont__block-6-col a,
.sustainablecont__block-6-col p {
  width: 16.66%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .sustainablecont__block-6-col h4 {
    width: 100%;
    border-top: 1px solid #4d4e52;
    border-bottom: 1px solid #f4f4f4;
  }
  .sustainablecont__block-6-col a {
    width: 16.66%;
    background: #f4f4f4;
  }
}

.sustainablecont__block-5-col h4,
.sustainablecont__block-5-col a,
.sustainablecont__block-5-col p {
  width: 20%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .sustainablecont__block-5-col h4 {
    width: 100%;
    border-top: 1px solid #4d4e52;
    border-bottom: 1px solid #f4f4f4;
  }
  .sustainablecont__block-5-col a {
    width: 20%;
    background: #f4f4f4;
  }
}

.sustainablecont__block-4-col h4,
.sustainablecont__block-4-col a,
.sustainablecont__block-4-col p {
  width: 25%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .sustainablecont__block-4-col h4 {
    width: 100%;
    border-top: 1px solid #4d4e52;
    border-bottom: 1px solid #f4f4f4;
  }
  .sustainablecont__block-4-col a {
    width: 25%;
    background: #f4f4f4;
  }
}

.sustainablecont__block-3-col a {
  width: 33.33%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1000px) {
  .sustainablecont__block-3-col a {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .sustainablecont__block-3-col a {
    width: 100%;
  }
}

.sustainablecont__block-3-col .execute {
  background: #f4f4f4;
}

.sustainablecont__block-2-col a {
  width: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .sustainablecont__block-2-col a {
    width: 100%;
  }
}

.sustainablecont__block-1-col h4 {
  width: 20%;
}

.sustainablecont__block-1-col a {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sustainablecont__block-0-col ol,
.sustainablecont__block-0-col ul {
  width: 100%;
  margin-left: 1rem;
}

.sustainablecont__block-0-col li {
  font-weight: 400;
}

.sustainablecont__block-0-col li p {
  font-weight: 300;
  padding: 0.2rem 0 0.2rem 0;
  line-height: 1.6rem;
}

.sustainablecont__block-0-col a {
  display: inline;
}

.sustainablecont__block-0-col a::after {
  font-family: "Font Awesome\ 5 free";
  font-weight: 900;
  font-size: 1.2rem;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.sustainablecont__block-0-col a:hover::after {
  color: #fff;
}

.sustainablecont__block-0-col table {
  margin: 1rem 0;
}

.sustainablecont__block-0-col table td {
  padding: 1rem;
  width: 25%;
}

.sustainablecont__block-0-col .vlr {
  display: table-cell;
  width: 10%;
  min-width: 40px;
}

.sustainablecont__block-0-col .vlr p {
  min-height: 400px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 2px;
  margin: auto;
}

.sustainablecont__block-0-col .idnumber_vlr {
  display: table-cell;
}

@media screen and (max-width: 450px) {
  .sustainablecont__block-0-col .idnumber_vlr p {
    min-height: 100px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}

.sustainablecont .director_table_ps {
  margin-left: 2rem;
  padding-right: 2rem;
}

.sustainablecont .director_table_ps li {
  font-weight: 100;
}

@media screen and (max-width: 767px) {
  .sustainablecont .dividend th:nth-of-type(3),
  .sustainablecont .dividend th:nth-of-type(5),
  .sustainablecont .dividend th:nth-of-type(6),
  .sustainablecont .dividend th:nth-of-type(7),
  .sustainablecont .dividend td:nth-of-type(3),
  .sustainablecont .dividend td:nth-of-type(6),
  .sustainablecont .dividend td:nth-of-type(7),
  .sustainablecont .dividend td:nth-of-type(8) {
    display: none;
  }
}

.sustainablecont .revenue {
  margin-top: 1rem;
  border-bottom: 1px solid #ccc;
}

.sustainablecont .revenue__th {
  width: 100%;
  font-weight: 400;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.sustainablecont .revenue__th div {
  width: 16.7%;
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .sustainablecont .revenue__th div {
    font-size: 70%;
    line-height: 1rem;
  }
}

@media screen and (max-width: 450px) {
  .sustainablecont .revenue__th div {
    font-size: 50%;
    line-height: 0.8rem;
  }
}

.sustainablecont .revenue__month {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.sustainablecont .revenue__month div {
  width: 16.7%;
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .sustainablecont .revenue__month div {
    font-size: 70%;
  }
}

@media screen and (max-width: 450px) {
  .sustainablecont .revenue__month div {
    font-size: 50%;
    line-height: 0.8rem;
  }
}

.sustainablecont .revenue .total {
  background: #f6f6f6;
}

.stakeholder {
  width: 80%;
  margin: 0 auto 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.stakeholder__card {
  width: 30%;
  margin: 0 5px 10px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1250px) {
  .stakeholder__card {
    width: 48%;
  }
}

@media screen and (max-width: 680px) {
  .stakeholder__card {
    width: 80%;
    margin: 0 auto 10px;
  }
}

.stakeholder__card_body {
  padding: 2rem 1rem;
}

.stakeholder__card_body ul,
.stakeholder__card_body ol {
  padding-left: 1.5rem;
}

.stakeholder__card_body a {
  color: #4d4e52;
}

.stakeholder__card_body a:hover {
  color: #28a745;
  border-bottom: 1px dotted #28a745;
}

.stakeholder .title1 {
  background: url(../img/sk_pic1.jpg);
  background-size: cover;
}

.stakeholder .title2 {
  background: url(../img/sk_pic2.jpg);
  background-size: cover;
}

.stakeholder .title3 {
  background: url(../img/sk_pic3.jpg);
  background-size: cover;
}

.stakeholder .title4 {
  background: url(../img/sk_pic4.jpg);
  background-size: cover;
}

.stkbg {
  width: 100%;
  height: 150px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stkbg h1 {
  font-size: 1.2rem;
  padding: 0.3rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
}

.humanr {
  width: 80%;
  margin: 0 auto 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.humanr__card {
  width: 330px;
  margin: 0 1rem 2rem;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1800px) {
  .humanr__card {
    width: 500px;
  }
}

.humanr__card_body {
  padding: 2rem 1rem;
}

.humanr .title1 {
  background: url(../img/hr_pic1.jpg);
  background-size: cover;
}

.humanr .title2 {
  background: url(../img/hr_pic2.jpg);
  background-size: cover;
}

.humanr .title3 {
  background: url(../img/hr_pic3.jpg);
  background-size: cover;
}

.humanr .title4 {
  background: url(../img/hr_pic4.jpg);
  background-size: cover;
}

.humanr .title5 {
  background: url(../img/hr_pic5.jpg);
  background-size: cover;
}

.humanr .title6 {
  background: url(../img/hr_pic6.jpg);
  background-size: cover;
}

.humanr .title7 {
  background: url(../img/hr_pic7.jpg) center bottom 20%;
  background-size: cover;
}

#Education,
#Department,
#Sex,
#Seniority {
  width: 300px;
  height: 300px;
  margin: auto;
}

@media screen and (max-width: 360px) {
  #Education,
  #Department,
  #Sex,
  #Seniority {
    width: 180px;
    height: 250px;
    margin: auto;
  }
}

#bonus,
#labor,
#happyfamily {
  width: 30%;
  height: auto;
}

@media screen and (max-width: 1200px) {
  #bonus,
  #labor,
  #happyfamily {
    width: 43%;
  }
}

@media screen and (max-width: 768px) {
  #bonus,
  #labor,
  #happyfamily {
    width: 80%;
  }
}

#bonus ul,
#labor ul,
#happyfamily ul {
  padding: 0 1rem 0 2rem;
}

#bonus a,
#labor a,
#happyfamily a {
  display: inline;
}

#bonus a:hover,
#labor a:hover,
#happyfamily a:hover {
  padding: 2px 5px;
  background: #4d4e52;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

#bonus a::after,
#labor a::after,
#happyfamily a::after {
  font-family: "Font Awesome\ 5 free";
  font-weight: 900;
  font-size: 1.2rem;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

#bonus a:hover::after,
#labor a:hover::after,
#happyfamily a:hover::after {
  color: #fff;
}

#recruit {
  width: 60%;
  height: auto;
}

@media screen and (max-width: 1200px) {
  #recruit {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  #recruit {
    width: 80%;
  }
}

#recruit ul {
  padding: 0 1rem 0 2rem;
}

#recruit a {
  display: inline;
}

#recruit a:hover {
  padding: 2px 5px;
  background: #4d4e52;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

#recruit a::after {
  font-family: "Font Awesome\ 5 free";
  font-weight: 900;
  font-size: 1.2rem;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

#recruit a:hover::after {
  color: #fff;
}

.goback {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  margin: 1rem 0;
}

.goback a {
  color: #4d4e52;
}

.goback a:hover {
  border: 0;
  color: #28a745;
}

.footer {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  grid-row: 5/6;
  margin-top: 1.5rem;
}

.footer__layout {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(10px, 1fr) minmax(1fr, 700px) minmax(10px, 1fr);
      grid-template-columns: minmax(10px, 1fr) minmax(1fr, 700px) minmax(10px, 1fr);
  -ms-grid-rows: 7rem 3rem 3rem auto;
      grid-template-rows: 7rem 3rem 3rem auto;
}

.footer__layout .address {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
  min-height: 273px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__layout .address img {
  display: block;
  width: 300px;
  height: 87px;
  padding-bottom: 2rem;
}

.footer__layout .address p {
  font-style: normal;
  color: #fff;
  text-align: center;
}

.footer__layout .address a {
  color: #fff;
}

.footer .footerspace {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  grid-row: 3/5;
  background-color: #14783e;
  background-image: url(../img/footerbg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
}

.footer__btn {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__btn__a {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding: 8px;
  margin: 0px 10px;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
}

.footer__btn__a a {
  color: #4d4e52;
  font-size: 1rem;
  line-height: 3.5rem;
  display: block;
  position: relative;
}

.footer__btn__a a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 2px;
  left: 0;
  background-color: #28a745;
  -webkit-transform: scaleX(0.4);
          transform: scaleX(0.4);
  -webkit-transition: -webkit-transform 250ms ease-out;
  transition: -webkit-transform 250ms ease-out;
  transition: transform 250ms ease-out;
  transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;
}

.footer__btn__a a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.footer__btn__a a:hover {
  color: #28a745;
  font-weight: 400;
}

.footer__darkbar {
  display: block;
  background-color: #075034;
  width: 100%;
  height: 15px;
}
/*# sourceMappingURL=style.css.map */