* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
}

header {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #1a202c;
}

header .logo {
  padding: 0.5rem 1rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .logo .eng {
  font-size: 1.2rem;
}

header nav.pcnav ul {
  margin: 0 1rem;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}

header nav.pcnav ul li {
  margin: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav.pcnav ul a {
  font-size: 1.2rem;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  padding: 8px 15px;
}

header nav.pcnav ul a.active-link {
  background: #2b6cb0;
}

header nav.pcnav ul a:hover {
  background: #2a4365;
}

header nav.mnav {
  display: none;
}

header nav.mnav .toggler {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav.mnav .toggler ul {
  margin-right: 10px;
}

header nav.mnav .toggler ul li div {
  color: white;
  cursor: pointer;
}

header nav.mnav .myCollapse {
  position: fixed;
  background: white;
  height: 100vh;
  width: 100vw;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  right: -100%;
  top: 0;
  z-index: 1;
}

header nav.mnav .myCollapse .dismiss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header nav.mnav .myCollapse .dismiss a {
  padding: 0.5rem;
}

header nav.mnav .myCollapse .nav ul li {
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header nav.mnav .myCollapse .nav ul li a {
  text-decoration: none;
  color: gray;
  font-size: 1.5rem;
  font-weight: 600;
  width: 50%;
  text-align: center;
  background: cornflowerblue;
  color: white;
  padding: 0.5rem;
  border-radius: 50px;
  -webkit-box-shadow: 3px 3px 15px grey;
          box-shadow: 3px 3px 15px grey;
}

@media screen and (max-width: 550px) {
  header {
    font-size: 1.5rem;
  }
  header .logo .eng {
    font-size: 1rem;
  }
  header nav.pcnav {
    display: none;
  }
  header nav.mnav {
    display: block;
  }
}

footer {
  padding: 2rem;
  color: white;
  background: #4c4c4c;
}

footer div {
  width: 1260px;
  margin: auto;
}

footer div div {
  font-size: 1.2rem;
  margin: 0.5rem;
}

@media screen and (max-width: 550px) {
  footer {
    padding: 2rem 5rem 5rem 1rem;
  }
}

ul {
  list-style: none;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

fix-contact {
  position: fixed;
  right: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

fix-contact .fix-contact {
  color: white;
  background: green;
}

fix-contact .fix-contact div {
  height: 50px;
  width: 50px;
}

fix-contact .fix-contact div.addline {
  border-top: solid 1px white;
  border-bottom: solid 1px white;
}

fix-contact .fix-contact div.addline a {
  font-size: 18px;
}

fix-contact .fix-contact div a {
  height: 100%;
  width: 100%;
  color: white;
  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;
  text-decoration: none;
  font-size: 26px;
}

@media screen and (max-width: 550px) {
  fix-contact {
    display: block;
    font-size: 12px;
    height: 50px;
    width: 100%;
    bottom: 0;
  }
  fix-contact .fix-contact {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
  }
  fix-contact .fix-contact div {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  fix-contact .fix-contact div.addline {
    border-top: none;
    border-bottom: none;
    border-left: solid 2px white;
    border-right: solid 2px white;
  }
  fix-contact .fix-contact div a {
    font-size: 2em;
  }
}

.main {
  width: 1260px;
  margin: 0 auto;
}

.main .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .product .productList {
  max-width: 300px;
  -webkit-box-flex: 300px;
      -ms-flex: 300px 1 1;
          flex: 300px 1 1;
}

.main .product .productList .productList-collapse {
  display: none;
  margin: 10px;
  text-align: center;
}

.main .product .productList .productList-collapse button {
  background: cadetblue;
  color: white;
  border-radius: 30px;
  padding: 0.3rem;
  border: none;
  width: 50%;
  font-size: 1.5rem;
}

.main .product .productList .productList-collapse button i {
  margin-right: 0.5rem;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  font-size: 2rem;
}

.main .product .productList div {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  overflow: hidden;
  max-height: 100%;
}

.main .product .productList div ul {
  margin: 10px;
  list-style: none;
  padding: 0;
}

.main .product .productList div ul li {
  text-align: center;
  background: cornflowerblue;
  border-radius: 5px;
  margin: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .product .productList div ul li:hover {
  background: gray;
}

.main .product .productList div ul li a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-decoration: none;
  color: white;
  text-align: center;
  padding: 0.2rem;
  min-height: 3rem;
  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;
}

.main .product .productDetail {
  -webkit-box-flex: 300px;
      -ms-flex: 300px 1 1;
          flex: 300px 1 1;
}

.main .product .productDetail img {
  max-width: 100%;
}

.main .product .productDetail .catalog-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .product .productDetail .catalog-container .catalog-item {
  background: #f7f7f7;
  width: 300px;
  margin: 10px;
  text-align: center;
}

.main .product .productDetail .catalog-container .catalog-item a {
  text-decoration: none;
}

.main .product .productDetail .catalog-container .catalog-item a .catalog-item-thumbnail {
  padding: 1rem 1rem 0 1rem;
  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;
  height: 350px;
}

.main .product .productDetail .catalog-container .catalog-item a .catalog-item-thumbnail img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.main .product .productDetail .catalog-container .catalog-item a .catalog-item-description {
  color: brown;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.card-shadow {
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.collapse {
  max-height: 0px !important;
}

.rotate180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.download-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem 0;
}

.download-container .download-btn {
  background: green;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
}

@media screen and (max-width: 550px) {
  .catalog-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

@media screen and (max-width: 650px) {
  .main .product div.productList {
    max-width: 100%;
  }
}

.main .index {
  width: 1260px;
  position: relative;
  z-index: -1;
}

.main .index img {
  width: 100%;
}

.main .index .scroll-effect-cover {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.35s ease-in;
  transition: width 0.35s ease-in;
  width: 100%;
  background: white;
  height: 100%;
}

@media screen and (max-width: 1260px) {
  .main .index {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  div.productList-collapse {
    display: block !important;
  }
}
/*# sourceMappingURL=style.css.map */