.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: 0s 0.6s opacity;
  transition: 0s 0.6s opacity;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  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;
  width: 15%;
  color: rgba(255, 255, 255, 0.404);
  text-align: center;
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: rgba(255, 255, 255, 0.404);
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: no-repeat 50% / 50% 50%;
  background-color: #fff;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%238d8d8d83' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%238d8d8d83' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  padding-top: 10px;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  border: #fff 2px solid !important;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  margin-left: 10px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0);
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    transition: none;
  }
}

@media screen and (max-width: 768px) {
  .carousel-indicators li {
    width: 5px;
    height: 5px;
  }
}

.carousel-indicators .active {
  background-color: #95c65d;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 0rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #fff;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.1rem;
  color: #6c757d;
  content: ">";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: none;
  border-bottom: #aaa 1px solid !important;
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card .card-header {
  margin-bottom: -1px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: white;
  background-color: #729BFD;
  border: 1px solid #729BFD;
  border-radius: 5px;
}

.page-link:hover {
  z-index: 2;
  color: #fff;
  text-decoration: none;
  background-color: #000088;
  border-color: #000;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  background-color: #000088;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* Variables */
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.indexTitle {
  text-align: center;
  color: #000088;
  font-size: 32px;
  letter-spacing: 3px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
}

.indexImg img {
  width: 100%;
}

.indexProduct .indexProduct-head img {
  width: 100%;
}

.indexProduct .indexProduct-body {
  text-align: center;
}

.indexProduct .indexProduct-body h3 {
  font-size: 18px;
  letter-spacing: 3px;
  color: #000088;
  font-weight: bold;
  cursor: default;
}

.indexProduct .indexProduct-body .Product-btn {
  margin-top: 10px;
  height: 40px;
  width: 120px;
  text-align: center;
  overflow: hidden;
  background: #000088;
  position: relative;
  border-radius: 0;
}

.indexProduct .indexProduct-body .Product-btn span {
  display: block;
  color: #fff;
  letter-spacing: 3px;
}

.indexProduct .indexProduct-body .Product-btn:hover span {
  -webkit-animation: animButtonSpan 0.4s;
          animation: animButtonSpan 0.4s;
}

@-webkit-keyframes animButtonSpan {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  33% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  66% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes animButtonSpan {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  33% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  66% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

main .news-title {
  text-align: center;
}

main .news-title h2 {
  font-size: 26px;
  line-height: 24px;
  letter-spacing: 3px;
  font-weight: 800;
  padding: 10px 0;
  margin-bottom: 0px;
  position: relative;
  color: #518715;
}

main .newsBreadcrumb {
  border-bottom: 3px solid #000088;
}

main .newsBreadcrumb .breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}

main .newsBreadcrumb .breadcrumb .breadcrumb-item a {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 3px;
  color: #000088;
  font-weight: bold;
  text-decoration: none;
}

main .newsBreadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: #ffbb00;
}

main .card .card-img {
  height: 100%;
}

main .card .card-title_txt {
  display: inline-block;
  float: left;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 36px;
  color: #518715;
}

main .card .card-title_time {
  float: right;
  margin-right: 10px;
  color: #518715;
  letter-spacing: 3px;
  font-size: 18px;
  line-height: 27px;
  margin-top: 0.5rem;
}

@media (max-width: 576px) {
  main .card .card-title_time {
    float: right;
    font-size: 1rem;
    line-height: 1rem;
    margin-top: 0.8rem;
  }
}

@media (max-width: 768px) {
  main .card .card-title_time {
    float: right;
    font-size: 1rem;
    line-height: 1rem;
    margin-top: 0.8rem;
  }
}

@media (max-width: 992px) {
  main .card .card-title_time {
    float: right;
    font-size: 1rem;
    line-height: 1rem;
    margin-top: 0.8rem;
  }
}

main .card .card-text {
  clear: both;
}

main .card .card-text p {
  font-size: 18px;
  line-height: 27px;
  color: #518715;
  letter-spacing: 3px;
  font-weight: 800;
}

main .card .arrowFromLeft {
  margin-right: 30px;
  padding: 10px 30px;
  overflow: hidden;
  background: #95c65d;
  position: relative;
  color: #fff;
  text-align: center;
  border: none;
}

@media (max-width: 576px) {
  main .card .arrowFromLeft {
    margin-right: 20px;
    padding: 5px 10px;
  }
}

main .card .arrowFromLeft span {
  font-weight: 800;
  letter-spacing: 2px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

main .card .arrowFromLeft:hover span {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

main .card .arrowFromLeft svg {
  position: absolute;
  top: 17px;
  left: 10px;
  fill: #fff;
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: opacity 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (max-width: 576px) {
  main .card .arrowFromLeft svg {
    display: none;
  }
}

main .card .arrowFromLeft:hover svg {
  opacity: 1;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.newsinner-title {
  position: relative;
  background-image: url(../image/bg_light.png);
}

.newsinner-title p {
  color: #95c65e;
}

.newsinner-title h2 {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 3px;
  font-weight: 800;
  color: #518715;
}

.newsinner-img img {
  width: 100%;
}

.newsinner-txt {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.newsinner-btn {
  background-color: #518715;
  padding: 10px 30px;
  color: #fff;
  border: 1px solid #518715;
  border-radius: 5px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  letter-spacing: 2px;
}

.newsinner-btn:hover {
  background-color: #95c65e;
  border: 1px solid #95c65e;
  color: #fff;
  text-decoration: none;
}

.introduction-title {
  text-align: center;
}

.introduction-title h2 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 3px;
  font-weight: 800;
  color: #000088;
  padding: 10px 0;
  margin-bottom: 0px;
  position: relative;
}

.introduction-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
}

.introduction-heading h2 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.introduction-img img {
  width: 100%;
}

.introduction-txt {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.introduction-describe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.introduction-describe h2 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.introduction-describe_content {
  text-align: center;
}

.introduction-describe_content h3 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.introduction-describe_section .card {
  border: 1px solid #95c65e;
}

.introduction-describe_section .card .describe_section-title {
  background-color: #518715;
  text-align: center;
}

.introduction-describe_section .card .describe_section-title h2 {
  color: #fff;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
}

@media (min-width: 576px) {
  .introduction-describe_section .card .describe_section-title h2 {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 3px;
  }
}

.introduction-describe_section .card .describe_section-body h3 {
  color: #518715;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  font-weight: 800;
}

.introduction-progress {
  text-align: center;
  margin-top: 50px;
  /* Timeline */
}

.introduction-progress h2 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.introduction-progress h3 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.introduction-progress #timeline-content {
  margin-top: 50px;
  text-align: center;
}

.introduction-progress #timeline-content .timeline {
  border-left: 4px solid #518715;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: fade(#fff, 3%);
  color: fade(white, 80%);
  margin: 50px 0% 50px 50%;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;
  padding: 50px 0 50px 40px;
  list-style: none;
  text-align: left;
  font-weight: 100;
  max-width: 40%;
}

.introduction-progress #timeline-content .timeline h1 {
  letter-spacing: 1.5px;
  font-weight: 100;
  font-size: 1.4em;
}

.introduction-progress #timeline-content .timeline h2,
.introduction-progress #timeline-content .timeline h3 {
  letter-spacing: 1.5px;
  font-weight: 400;
  font-size: 1.4em;
  color: #518715;
  font-weight: 800;
}

.introduction-progress #timeline-content .timeline p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  color: #518715;
}

.introduction-progress #timeline-content .timeline .event {
  border-bottom: 1px dashed fade(#fff, 10%);
  padding-bottom: 25px;
  margin-bottom: 50px;
  position: relative;
}

.introduction-progress #timeline-content .timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.introduction-progress #timeline-content .timeline .event:before, .introduction-progress #timeline-content .timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.introduction-progress #timeline-content .timeline .event:before {
  left: -200%;
  top: -3%;
  background-color: #518715;
  color: #fff;
  content: attr(data-date);
  text-align: right;
  font-weight: 100;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  min-width: 120px;
  text-align: center;
  padding: 10px;
}

@media (min-width: 768px) {
  .introduction-progress #timeline-content .timeline .event:before {
    left: -100%;
  }
}

@media (min-width: 992px) {
  .introduction-progress #timeline-content .timeline .event:before {
    left: -68%;
  }
}

@media (min-width: 1200px) {
  .introduction-progress #timeline-content .timeline .event:before {
    left: -60%;
  }
}

.introduction-progress #timeline-content .timeline .event:after {
  -webkit-box-shadow: 0 0 0 4px #518715;
          box-shadow: 0 0 0 4px #518715;
  left: -49.5%;
  background: white;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  content: "";
  top: 10px;
}

@media (min-width: 414px) {
  .introduction-progress #timeline-content .timeline .event:after {
    left: -42.5%;
  }
}

@media (min-width: 768px) {
  .introduction-progress #timeline-content .timeline .event:after {
    left: -20.5%;
  }
}

@media (min-width: 992px) {
  .introduction-progress #timeline-content .timeline .event:after {
    left: -14.5%;
  }
}

@media (min-width: 1200px) {
  .introduction-progress #timeline-content .timeline .event:after {
    left: -11.8%;
  }
}

.b-0 {
  border-bottom: none !important;
}

.br-0 {
  border-radius: 0%;
}

.catalogue-active {
  top: 30% !important;
  left: 0% !important;
}

.catalogue {
  display: block;
  position: relative;
}

.catalogue .catalogue-list {
  text-align: center;
  height: 100%;
  padding: 0 5px;
}

@media (min-width: 576px) {
  .catalogue .catalogue-list {
    max-width: 100%;
  }
}

.catalogue .catalogue-list h4 {
  border: 1px solid #000088;
  background-color: #000088;
}

.catalogue .catalogue-list h4 .catalogue-btn {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  width: 100%;
  color: #fff;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .catalogue .catalogue-list h4 .catalogue-btn {
    width: 80%;
  }
}

.catalogue .catalogue-list h4:hover {
  background-color: #ffbb00;
  border: 1px solid #ffbb00;
}

.catalogue .catalogue-list h4:hover .catalogue-btn {
  color: #fff;
}

.catalogue .catalogue-list h4 .btn:active {
  -webkit-box-shadow: 0 0 0 0.2rem transparent;
          box-shadow: 0 0 0 0.2rem transparent;
  border-radius: 0%;
}

.catalogue .catalogue-list h4 .btn:focus {
  -webkit-box-shadow: 0 0 0 0.2rem transparent;
          box-shadow: 0 0 0 0.2rem transparent;
  border-radius: 0%;
}

.catalogue .catalogue-list .active {
  background-color: #ffbb00;
  border-color: #ffbb00;
}

.catalogue .catalogue-list .active .catalogue-btn {
  color: #fff;
}

.catalogue-item_listitle {
  background: #ffb30f;
  text-align: center;
  text-decoration: none;
}

.catalogue-item_listitle:hover {
  text-decoration: none;
}

.catalogue-item_listitle button {
  color: #000;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none !important;
}

.catalogue-item_listitle button:hover {
  color: #000;
  text-decoration: none;
}

.catalogue-item_listwrap {
  border: #ffb30f solid 1px;
}

.catalogue-item_listwrap .catalogue-item_list {
  border-bottom: none;
}

.catalogue-item_listwrap .catalogue-item_list ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.catalogue-item_listwrap .catalogue-item_list ul:hover {
  text-decoration: none;
}

.catalogue-item_listwrap .catalogue-item_list ul .arrowLeft {
  overflow: hidden;
  background: #fff;
  position: relative;
  color: #000;
  text-align: left;
  padding-left: 20px;
  margin-bottom: 10px;
}

.catalogue-item_listwrap .catalogue-item_list ul .arrowLeft:hover svg {
  opacity: 1;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.catalogue-item_listwrap .catalogue-item_list ul .arrowLeft svg {
  position: absolute;
  top: 8px;
  left: 0px;
  fill: #ffb30f;
  opacity: 0;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: opacity 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.catalogue-item_listwrap .catalogue-item_list ul .arrowLeft a {
  color: #000;
  letter-spacing: 1px;
}

.catalogue-item_listwrap .catalogue-item_list ul .arrowLeft a:hover {
  text-decoration: none;
}

.catalogue-item {
  border: #000088 solid 1px;
  position: relative;
}

.catalogue-item:hover {
  border: #ffbb00 solid 1px;
}

.catalogue-item:hover .catalogue-item_body {
  background-color: #ffbb00;
}

.catalogue-item:hover .catalogue-item_img {
  border-left-color: #ffbb00;
}

.catalogue-item a {
  text-decoration: none;
  color: #000088;
}

.catalogue-item a .catalogue-item_img {
  position: relative;
  text-align: center;
  border-left: #000088 solid 1px;
}

.catalogue-item a .catalogue-item_img:after {
  content: url(../../image/zoomIn.png);
  position: absolute;
  right: 5%;
  bottom: 0;
}

.catalogue-item a .catalogue-item_img img {
  width: 100%;
}

.catalogue-item a:hover .catalogue-item_img:after {
  content: url(../../image/zoomInYellow.png);
}

.catalogue-item a .catalogue-item_body {
  padding: 10px 20px;
  background-color: #000088;
}

.catalogue-item a .catalogue-item_body:hover {
  background-color: #ffbb00;
}

.catalogue-item a .catalogue-item_body h5 {
  padding-bottom: 10px;
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 3px;
  border-bottom: #fff solid 1px;
}

.catalogue-item a .catalogue-item_body h5 span {
  font-size: 10px;
  line-height: 10px;
  font-weight: normal;
}

.catalogue-item a .catalogue-item_body h6 {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 3px;
  font-weight: bold;
}

.catalogue-item a .catalogue-item_body h6 span {
  font-size: 10px;
  line-height: 10px;
  font-weight: normal;
}

.catalogue-item a:hover {
  color: #fff;
  background-color: #95c65e;
}

.catalogue-item .catalogue-item_txt {
  text-align: center;
  margin-top: 20px;
}

.catalogue-item .catalogue-item_txt h2 {
  font-size: 1.25rem;
  color: #aaa;
  letter-spacing: 2px;
}

.catalogue-item .catalogue-item_txt p {
  font-size: 1rem;
}

.catalogueItem {
  border-radius: 0%;
}

.catalogueItem .catalogueInner-imgWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}

.catalogueItem .catalogueInner-imgWrap .catalogueInner-img {
  width: 323px;
  height: 323px;
}

@media (min-width: 576px) {
  .catalogueItem .catalogueInner-imgWrap .catalogueInner-img {
    width: 100%;
  }
}

.catalogueItem .catalogueInner-share {
  float: left;
}

.catalogueItem .catalogueInner-share p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.catalogueItem .catalogueInner-share_btn {
  text-align: end;
  border: none;
  padding-top: 2%;
  padding-left: 1%;
}

@media (max-width: 576px) {
  .catalogueItem .catalogueInner-share_btn {
    text-align: left;
  }
}

.catalogueItem .catalogueInner-wrap {
  clear: both;
  padding: 0;
}

.catalogueItem .catalogueInner-wrap h2 {
  font-size: 28px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 0;
  color: #000088;
}

.catalogueItem .catalogueInner-wrap h3 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 0;
  color: #000088;
}

.catalogueItem .catalogueInner-wrap ul {
  padding-left: 20px;
}

.catalogueItem .catalogueInner-wrap ul li {
  margin: 10px 0;
  color: #000088;
}

.catalogueItem .catalogueInner-wrap ul li h4 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  color: #000088;
  font-weight: bold;
}

.catalogueContent h3 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 3px;
  color: #000088;
  margin-bottom: 20px;
  font-weight: bold;
}

.catalogueContent p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  color: #000088;
  font-weight: bold;
}

.catalogueContent h4 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  color: #000088;
}

.catalogueContent ul li {
  color: #000088;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
}

.catalogueImg img {
  width: 100%;
  margin-bottom: 20px;
}

.catalogue-pressDown {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  background-color: #000088;
  padding: 10px 30px;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  text-decoration: none;
  border: 1px solid #95c65e;
}

.catalogue-pressDown:hover {
  background-color: #fff;
  color: #000088;
  background-color: #ffbb00;
  border: 1px solid #ffbb00;
  text-decoration: none;
}

.project-image {
  text-align: center;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}

.project-image:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: red;
}

.project-image p {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 10px;
}

.projectItem-heading img {
  width: 100%;
}

.projectItem-title {
  text-align: center;
  margin: 50px 0;
}

.projectItem-title h2 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 3px;
  padding: 10px 0;
  margin: 0 auto;
  width: 50%;
  color: #fff;
  background-color: #518715;
}

@media (min-width: 576px) {
  .projectItem-title h2 {
    width: 50%;
  }
}

.projectItem-title h3 {
  font-size: 18px;
  line-height: 27px;
  color: #518715;
  font-weight: 800;
  margin-top: 2%;
  margin-bottom: 2%;
}

.projectItem-content {
  text-align: center;
  margin-bottom: 40px;
}

.projectItem-content .projectItem-content_One {
  position: relative;
  padding: 80px;
  border: 1px solid #518715;
}

.projectItem-content .projectItem-content_One::before {
  position: absolute;
  content: "1";
  font-size: 18px;
  color: #fff;
  top: -10%;
  left: 43%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 3px solid #518715;
  border-radius: 50px;
  background-color: #518715;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.projectItem-content .projectItem-content_One h3 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.projectItem-content .projectItem-content_Two {
  position: relative;
  padding: 80px;
  border: 1px solid #518715;
}

.projectItem-content .projectItem-content_Two::before {
  position: absolute;
  content: "2";
  font-size: 18px;
  color: #fff;
  top: -10%;
  left: 43%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 3px solid #518715;
  border-radius: 50px;
  background-color: #518715;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.projectItem-content .projectItem-content_Two h3 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.projectItem-content .projectItem-content_Three {
  position: relative;
  padding: 80px;
  border: 1px solid #518715;
}

.projectItem-content .projectItem-content_Three::before {
  position: absolute;
  content: "3";
  font-size: 18px;
  color: #fff;
  top: -10%;
  left: 43%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 3px solid #518715;
  border-radius: 50px;
  background-color: #518715;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.projectItem-content .projectItem-content_Three h3 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.projectItem-content .projectItem-content_Four {
  position: relative;
  padding: 80px;
  border: 1px solid #518715;
}

.projectItem-content .projectItem-content_Four::before {
  position: absolute;
  content: "4";
  font-size: 18px;
  color: #fff;
  top: -10%;
  left: 43%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 3px solid #518715;
  border-radius: 50px;
  background-color: #518715;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.projectItem-content .projectItem-content_Four h3 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.projectItem-content .projectItem-content_Five {
  position: relative;
  padding: 80px;
  border: 1px solid #518715;
  width: 100%;
}

@media (min-width: 576px) {
  .projectItem-content .projectItem-content_Five {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .projectItem-content .projectItem-content_Five {
    width: 60%;
  }
}

.projectItem-content .projectItem-content_Five::before {
  position: absolute;
  content: "5";
  font-size: 18px;
  color: #fff;
  top: -10%;
  left: 43.5%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 3px solid #518715;
  border-radius: 50px;
  background-color: #518715;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

@media (min-width: 576px) {
  .projectItem-content .projectItem-content_Five::before {
    left: 43.5%;
  }
}

@media (min-width: 768px) {
  .projectItem-content .projectItem-content_Five::before {
    left: 44.5%;
  }
}

@media (min-width: 992px) {
  .projectItem-content .projectItem-content_Five::before {
    left: 45.5%;
  }
}

@media (min-width: 1200px) {
  .projectItem-content .projectItem-content_Five::before {
    top: -10%;
    left: 46.5%;
  }
}

.projectItem-content .projectItem-content_Five h3 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #518715;
  font-weight: 800;
}

.projectItem-service h2 {
  font-size: 1.75rem;
  letter-spacing: 3px;
  padding: 10px 0;
  margin: 0 auto;
  text-align: center;
  width: 50%;
  background-color: #ffb30f;
}

@media (min-width: 576px) {
  .projectItem-service h2 {
    width: 20%;
  }
}

.projectItem-service p {
  font-size: 1.25rem;
  line-height: 30px;
  letter-spacing: 3px;
  margin-top: 30px;
}

.contact-txt {
  color: #000088;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  text-align: center;
  font-weight: 800;
}

.contact-form .contact-form_txt label {
  text-align: left;
  padding-right: 0;
  color: #000088;
  font-weight: 600;
}

@media (min-width: 576px) {
  .contact-form .contact-form_txt label {
    text-align: right;
  }
}

.contact-form .contact-form_txt input {
  border: 1px solid #000088;
  border-radius: 0%;
  color: #000088;
}

.contact-form .contact-form_txt textarea {
  border: 1px solid #000088;
  border-radius: 0%;
  color: #000088;
}

.contact-form .contact-form_txt select {
  border: 1px solid #000088;
  border-radius: 0%;
  color: #000088;
}

.contact-form .contact-form_txt ::-webkit-input-placeholder {
  color: #000088;
}

.contact-form .contact-form_txt input::-moz-placeholder {
  color: #000088;
}

.contact-form .contact-form_txt input::-moz-placeholder {
  color: #000088;
}

.contact-form .contact-form_txt :-ms-input-placeholder {
  color: #000088;
}

.contact-form .contact-form_txt .col-form_check {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  padding-left: 30px;
}

.contact-form_btn button {
  width: 100%;
}

.contact-form_btn .form-pressDown {
  background-color: #000088;
  padding: 10px 30px;
  color: #fff;
  letter-spacing: 2px;
  border-radius: 5px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.contact-form_btn .form-pressDown:hover {
  border: 1px solid #95c65e;
  color: #fff;
  background-color: #729BFD;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

@media screen and (max-width: 864px) {
  .contact-info ul {
    margin-top: 20px;
    margin-right: 20px;
    padding-left: 0;
  }
}

.contact-info ul .contact-info_textZoom {
  position: relative;
}

.contact-info ul .contact-info_textZoom a {
  color: #000088;
  font-weight: 600;
}

.contact-info ul .contact-info_textZoom a:hover {
  text-decoration: none;
}

.contact-info ul .contact-info_textZoom a i {
  vertical-align: top;
}

.privacy-txt {
  letter-spacing: 2px;
}

.privacy-txt h3 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #000088;
  margin-top: 10px;
}

.privacy-txt p {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
  color: #000088;
}

.privacy-txt img {
  width: 100%;
}

.aboutImg img {
  width: 100%;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular");
}

body {
  position: relative;
  height: 100%;
  font-family: Arial, Helvetica, "LiHei Pro", sans-serif !important;
  -moz-font-family: Arial, Helvetica, "LiHei Pro", sans-serif !important;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 1.5;
}

body .scroll-icon {
  position: fixed;
  right: 0;
  top: 60%;
  z-index: 900;
}

body header {
  position: relative;
}

body header .language {
  background-color: #ffbb00;
}

body header .language .btn-en {
  background-color: #ffbb00;
  border-radius: 0%;
  letter-spacing: 2px;
  font-weight: bold;
}

body header .language .btn-en:hover {
  background-color: #fff;
}

body header .language .btn-ch {
  background-color: #ffbb00;
  border-radius: 0%;
  letter-spacing: 2px;
  font-weight: bold;
}

body header .language .btn-ch:hover {
  background-color: #fff;
}

body header .language .active {
  background-color: #fff;
  color: #000088;
  font-weight: bold;
}

body header nav {
  z-index: 999;
  background: #fff !important;
}

@media (min-width: 1200px) {
  body header nav {
    padding: 0 80px;
  }
}

body header nav .navbar-brand img {
  width: 50%;
}

@media (min-width: 992px) {
  body header nav .navbar-brand img {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  body header nav .navbar-brand img {
    width: 100%;
  }
}

body header nav .nav-btn {
  top: 40px;
}

@media (max-width: 576px) {
  body header nav .nav-btn {
    top: 40px;
  }
}

@media (max-width: 768px) {
  body header nav .nav-btn {
    position: absolute;
    right: 5px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 992px) {
  body header nav .nav-btn {
    position: absolute;
    right: 5px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  body header nav .nav-btn i {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    margin-left: 14px;
  }
  body header nav .nav-btn i:nth-child(1) {
    margin-top: 16px;
  }
  body header nav .nav-btn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  body header nav .nav-btn i:nth-child(3) {
    margin-top: 4px;
  }
}

body header nav .nav-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ffbb00;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media (min-width: 992px) {
  body header nav .nav-wrapper {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    background: #fff;
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  body header nav .nav-wrapper {
    padding: 0 80px;
  }
}

body header nav .nav-wrapper .nav-wrapper_block {
  padding-top: 15%;
  padding-right: 10%;
}

@media (min-width: 992px) {
  body header nav .nav-wrapper .nav-wrapper_block {
    padding-top: 15%;
    padding-right: 10%;
  }
}

@media (min-width: 1024px) {
  body header nav .nav-wrapper .nav-wrapper_block {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  body header nav .nav-wrapper .nav-wrapper_block {
    padding: 0;
  }
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media (max-width: 1024px) {
  body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content {
    width: 70%;
  }
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt {
  position: relative;
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt .nav-link {
  cursor: pointer;
  padding-left: 0;
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt .nav-link h3 {
  display: inline-block;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 3px;
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt .nav-link .nav-link_icon {
  vertical-align: middle;
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt .nav-link .nav-link_icon .rotate {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt .nav-toggle {
  list-style: none;
  padding-left: 0;
  opacity: 0;
  background: #ffbb00;
  display: none;
}

@media (min-width: 1024px) {
  body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt .nav-toggle {
    position: absolute;
    display: block;
  }
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt .nav-toggle .nav-toggle_list .dropdown-item h4 {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 3px;
  font-weight: bold;
}

body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt:hover .nav-toggle {
  opacity: 1;
}

@media (min-width: 992px) {
  body header nav .nav-wrapper .nav-wrapper_block .nav-wrapper_Content .nav-wrap .nav-wrap_txt:hover .nav-link h3 {
    color: #ffbb00;
  }
}

body header nav #nav:checked + .nav-btn {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body header nav #nav:checked + .nav-btn i {
  background: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

body header nav #nav:checked + .nav-btn i:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(180deg);
          transform: translateY(6px) rotate(180deg);
}

body header nav #nav:checked + .nav-btn i:nth-child(2) {
  opacity: 0;
}

body header nav #nav:checked + .nav-btn i:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(90deg);
          transform: translateY(-6px) rotate(90deg);
}

body header nav #nav:checked ~ .nav-wrapper {
  right: -18%;
  z-index: 999;
  opacity: 1;
  overflow: scroll;
}

body header nav #nav:checked ~ .nav-wrapper .nav-wrapper_block .nav-wrap .nav-wrap_txt {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

body header nav #nav:checked ~ .nav-wrapper .nav-wrapper_block .nav-wrap .nav-wrap_txt:nth-child(3) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

body header nav #nav:checked ~ .nav-wrapper .nav-wrapper_block .nav-wrap .nav-wrap_txt:nth-child(4) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

body header nav #nav-wrap_txt:checked ~ .nav-toggle {
  display: block;
}

body header .navigation .navbar {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 576px) {
  body header .navigation .navbar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

body header .navigation .navbar .navbarImg {
  margin-right: auto;
}

@media (max-width: 576px) {
  body header .navigation .navbar .navbarImg {
    margin: 0 auto;
  }
}

body header .navigation .navbar .navbarList ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0;
}

body header .navigation .navbar .navbarList ul .dropdown {
  display: inline-block;
}

body header .navigation .navbar .navbarList ul .dropdown:hover .dropdown-menu {
  -webkit-transform: scale(1);
          transform: scale(1);
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-toggle::after {
  display: none;
}

body header .navigation .navbar .navbarList ul .dropdown:nth-child(2) .dropdown-menu {
  left: -10px;
}

body header .navigation .navbar .navbarList ul .dropdown:nth-child(3) .dropdown-menu {
  left: -10px;
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-menu {
  min-width: 6rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  display: block;
  border: 0px solid transparent;
  background-color: #000088;
  text-align: left;
}

@media (max-width: 1024px) {
  body header .navigation .navbar .navbarList ul .dropdown .dropdown-menu {
    display: none;
  }
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-menu li {
  text-align: center;
  padding-right: 15px;
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-menu li .dropdown-item {
  font-size: 14px;
  padding: 8px 10px !important;
  color: #fff;
  background-color: #000088;
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-menu li .dropdown-item:hover {
  color: #ffbb00 !important;
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-menu li .dropdown-item h3,
body header .navigation .navbar .navbarList ul .dropdown .dropdown-menu li .dropdown-item span {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 3px;
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-menu li .dropdown-item h4 {
  font-size: 16px;
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-toggle {
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: bold;
  text-decoration: none;
}

body header .navigation .navbar .navbarList ul .dropdown .dropdown-toggle h3,
body header .navigation .navbar .navbarList ul .dropdown .dropdown-toggle span {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 3px;
}

body header .custom-swiper {
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body header .swiper-container {
  width: 100%;
  height: 100%;
}

body header .swiper-container .swiper-wrapper {
  height: auto;
}

body header .swiper-container .swiper-slide {
  text-align: left;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  position: relative;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body header .swiper-container .swiper-slide a {
  text-decoration: none;
}

@media (max-width: 576px) {
  body header .swiper-container .swiper-slide a {
    display: block;
  }
}

body header .swiper-container .swiper-slide a h2,
body header .swiper-container .swiper-slide a h3 {
  color: #ffbb00;
  font-weight: bold;
  letter-spacing: 3px;
}

body header .swiper-container .swiper-slide img {
  width: 100%;
}

body header .swiper-container .swiper-button-next,
body header .swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 5%;
}

body header .swiper-container .swiper-button-prev,
body header .swiper-container .swiper-container-rtl .swiper-button-next {
  left: 5%;
}

body main {
  position: relative;
}

body main .toTop-arrow {
  width: 32px;
  height: 30px;
  padding: 0;
  margin: 0;
  border: 0;
  background: #ffbb00;
  cursor: pointer;
  position: fixed;
  right: 1%;
  bottom: 5%;
  display: none;
  z-index: 999;
}

body main .toTop-arrow::before, body main .toTop-arrow::after {
  width: 13px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  content: "";
}

body main .toTop-arrow::before {
  -webkit-transform: rotate(-45deg) translate(0, -50%);
          transform: rotate(-45deg) translate(0, -50%);
  left: 0.42rem;
}

body main .toTop-arrow::after {
  -webkit-transform: rotate(45deg) translate(0, -50%);
          transform: rotate(45deg) translate(0, -50%);
  right: 0.42rem;
}

body main .toTop-arrow:focus {
  outline: none;
}

body main .wrongtitle {
  padding: 5%;
}

body main .wrongtitle h1 {
  font-size: 10rem;
  color: #000088;
  text-align: center;
  letter-spacing: 3px;
}

body main .wrongtitle .wrongtxt {
  font-size: 1.75rem;
  text-align: center;
  color: #000088;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  body main .wrongtitle .wrongtxt {
    font-size: 1.25rem;
  }
}

body footer {
  clear: both;
  background: #729BFD;
}

body footer .footer {
  clear: both;
}

body footer .footer .sitemap {
  padding: 20px;
  background-color: #ffbb00;
}

body footer .footer .sitemap li {
  margin-right: 20px;
}

body footer .footer .sitemap li .gradientBorder {
  position: relative;
  overflow: hidden;
  padding-bottom: 2px;
  margin-bottom: -2px;
  cursor: pointer;
  color: #fff;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
}

body footer .footer .sitemap li .gradientBorder::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

body footer .footer .sitemap li .gradientBorder:hover::before {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

body footer .footer .footer-img {
  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;
}

body footer .footer .footer-img img {
  display: inline-block;
}

body footer .footer .footer-img .footer-txt {
  display: inline-block;
  margin-top: 30px;
  margin-left: 10px;
  color: red;
  text-decoration: none;
}

body footer .footer .footer-img .footer-txt .footer-txt_ch {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3.3px;
}

body footer .footer .footer-img .footer-txt .footer-txt_en {
  font-size: 12px;
  font-weight: 700;
}

body footer .footer .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body footer .footer .footer-info ul {
  list-style: none;
  padding-left: 0;
  width: 80%;
}

@media screen and (max-width: 864px) {
  body footer .footer .footer-info ul {
    margin-top: 20px;
    padding-left: 0;
    width: 100%;
  }
}

body footer .footer .footer-info ul .textZoom {
  margin: 20px 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body footer .footer .footer-info ul .textZoom:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

body footer .footer .footer-info ul .textZoom a {
  color: #fff;
  font-weight: bold;
}

body footer .footer .footer-info ul .textZoom a:hover {
  text-decoration: none;
}

body footer .footer .footer-info ul .textZoom a i {
  vertical-align: top;
}

body footer .copyright {
  background: #000088;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 3px;
  text-align: center;
  padding: 10px;
}

body footer .copyright p {
  margin-bottom: 0;
}
/*# sourceMappingURL=all.css.map */