@charset "UTF-8";
/* ------- 標頭設計(字級,字距,顏色) ------- */
.bg-img {
  width: 100%;
  position: relative;
  background: url() 50% 50% no-repeat;
  background-size: 100% 100%;
  background-clip: content-box;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transform: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#products {
  position: relative;
  overflow: hidden;
}
#products .swiper-products-row {
  padding: 0 6rem;
}
#products .swiper-wrapper {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#products .swiper-products {
  margin: 6rem 0;
}
#products .swiper-products .swiper-slide {
  padding: 2rem 0.5rem;
}
#products .pd-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 2rem;
  overflow: hidden;
}
#products .pd-item * {
  -ms-flex: 0 1 auto;
}
#products .pd-item::after {
  content: "";
  background: url(../../assets/img/home/product/pd-ovr.jpg) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: transform 3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: transform 3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: transform 3s ease-in-out, opacity 0.3s ease-in-out;
  -ms-transform: transform 3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
#products .pd-item:hover {
  text-decoration: none;
}
#products .pd-item:hover::after {
  -moz-transform: translate(-50%, -50%) scale(1.5);
  -webkit-transform: translate(-50%, -50%) scale(1.5);
  -o-transform: translate(-50%, -50%) scale(1.5);
  -ms-transform: translate(-50%, -50%) scale(1.5);
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 1;
}
#products .pd-item:hover .type-txt,
#products .pd-item:hover h6,
#products .pd-item:hover .arrow {
  color: #fff;
}
#products .pd-item:hover .pd-img:after {
  -webkit-animation: btn_shine 2s infinite;
  animation: btn_shine 2s infinite;
  opacity: 0.5;
}
#products .pd-item:hover .pd-img > img {
  -moz-transform: translate(-50%, -50%) scale(1.05);
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -o-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}
#products .pd-item .pd-img {
  position: relative;
  padding: 1rem;
  margin-bottom: 2.5rem;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}
#products .pd-item .pd-img:before {
  content: "";
  padding-top: 50%;
  display: block;
}
#products .pd-item .pd-img:after {
  content: "";
  opacity: 0.6;
  width: 200%;
  height: 200%;
  background: url(../../assets/img/pattern/pattern-shine-light.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}
@keyframes btn_shine {
  0% {
    left: -100%;
  }
  50%, to {
    left: 200%;
  }
}
#products .pd-item .pd-img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  transform-origin: 50% 50%;
}
#products .pd-item .type-txt {
  width: 100%;
  color: #777777;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
#products .pd-item h6 {
  width: 50%;
  height: 60px;
  color: #000;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#products .pd-item .arrow {
  font-size: 4rem;
  color: #E60012;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  #products .swiper-products {
    margin: 0;
  }
}
@media (max-width: 767px) {
  #products .swiper-products-row {
    padding: 0;
  }
  #products .pd-item h6 {
    width: 100%;
  }
}

#banner {
  position: relative;
  z-index: 1;
}
#banner .banner-link {
  position: relative;
}
#banner .banner-link .bn-box {
  display: block;
  width: 100%;
  position: relative;
  z-index: 0;
}
#banner .banner-link .bn-box img {
  width: 100%;
  object-fit: contain;
}
#banner .banner-link .btn-arrow {
  z-index: 1;
}
#banner .banner-link .btn-arrow.skyblue-btn {
  position: absolute;
  color: #93D1FF;
  right: 55px;
  bottom: 50px;
}
#banner .banner-link .btn-arrow.skyblue-btn::before {
  border: 1px solid #93D1FF !important;
  color: #93D1FF;
  z-index: -1;
}
#banner .banner-link .btn-arrow.skyblue-btn::after {
  transition: all 0.1s ease-in-out;
}
#banner .banner-link .btn-arrow.skyblue-btn:hover {
  color: #113285 !important;
}
#banner .banner-link .btn-arrow.skyblue-btn:hover::before {
  -moz-transform: skewX(-10deg) translate(-50%, -50%);
  -webkit-transform: skewX(-10deg) translate(-50%, -50%);
  -o-transform: skewX(-10deg) translate(-50%, -50%);
  -ms-transform: skewX(-10deg) translate(-50%, -50%);
  transform: skewX(-10deg) translate(-50%, -50%);
  background-color: #93D1FF !important;
}
#banner .banner-link .btn-arrow.skyblue-btn:hover::after {
  -moz-transform: translate(-20%, 0%);
  -webkit-transform: translate(-20%, 0%);
  -o-transform: translate(-20%, 0%);
  -ms-transform: translate(-20%, 0%);
  transform: translate(-20%, 0%);
  transition: all 0.1s ease-in-out;
}
#banner .banner-link .btn-arrow.coffee-btn {
  position: absolute;
  color: #FFE5B4;
  left: 55px;
  top: 50px;
  padding-left: 60px;
}
#banner .banner-link .btn-arrow.coffee-btn::before {
  border: 1px solid #FFE5B4 !important;
  color: #FFE5B4;
  z-index: -1;
}
#banner .banner-link .btn-arrow.coffee-btn::after {
  position: absolute;
  left: 0;
  margin: 0rem 2rem;
  transition: all 0.1s ease-in-out;
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
#banner .banner-link .btn-arrow.coffee-btn:hover {
  color: #773F0C !important;
}
#banner .banner-link .btn-arrow.coffee-btn:hover::before {
  -moz-transform: skewX(-10deg) translate(-50%, -50%);
  -webkit-transform: skewX(-10deg) translate(-50%, -50%);
  -o-transform: skewX(-10deg) translate(-50%, -50%);
  -ms-transform: skewX(-10deg) translate(-50%, -50%);
  transform: skewX(-10deg) translate(-50%, -50%);
  background-color: #FFCAA4 !important;
}
#banner .banner-link .btn-arrow.coffee-btn:hover::after {
  -moz-transform: scaleX(-1) translate(20%, 0%);
  -webkit-transform: scaleX(-1) translate(20%, 0%);
  -o-transform: scaleX(-1) translate(20%, 0%);
  -ms-transform: scaleX(-1) translate(20%, 0%);
  transform: scaleX(-1) translate(20%, 0%);
  transition: all 0.1s ease-in-out;
}
@media (max-width: 1024px) {
  #banner .banner-link .btn-arrow.skyblue-btn {
    -moz-transform: scale(0.75);
    -webkit-transform: scale(0.75);
    -o-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    right: 1%;
    bottom: 5%;
  }
  #banner .banner-link .btn-arrow.coffee-btn {
    -moz-transform: scale(0.75);
    -webkit-transform: scale(0.75);
    -o-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    left: 1%;
    top: 5%;
  }
}
@media (max-width: 767px) {
  #banner .banner-link .btn-arrow.skyblue-btn {
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    right: -6%;
    bottom: 3%;
  }
  #banner .banner-link .btn-arrow.coffee-btn {
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    left: -6%;
    top: 3%;
  }
}
@media (max-width: 480px) {
  #banner .banner-link .btn-arrow.skyblue-btn {
    -moz-transform: scale(0.38);
    -webkit-transform: scale(0.38);
    -o-transform: scale(0.38);
    -ms-transform: scale(0.38);
    transform: scale(0.38);
    right: -8%;
    bottom: 0%;
  }
  #banner .banner-link .btn-arrow.coffee-btn {
    -moz-transform: scale(0.38);
    -webkit-transform: scale(0.38);
    -o-transform: scale(0.38);
    -ms-transform: scale(0.38);
    transform: scale(0.38);
    left: -8%;
    top: 0%;
  }
}

#partners {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(358.93deg, #F2F2F2 0.37%, rgba(255, 255, 255, 0) 95.71%);
}
#partners:before {
  content: "";
  background: url(../../assets/img/home/partners/bg-pattern.svg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 60%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
}

#newsWrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  z-index: 2;
}
#newsWrap > article {
  position: relative;
  width: 50%;
  padding-left: 4%;
  padding-right: 4%;
  padding-top: 3vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
#newsWrap > article * {
  -ms-flex: 0 1 auto;
}
#newsWrap > article#news {
  background-color: #fff;
  padding-right: 0;
}
#newsWrap > article#video {
  background-color: #F5F5F5;
  border-left: 1px solid #ddd;
}
#newsWrap > article .btn-red {
  position: absolute;
  -moz-transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  left: 50%;
  bottom: 0;
  z-index: 2;
}
#newsWrap .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
#newsWrap .news-list * {
  -ms-flex: 0 1 auto;
}
#newsWrap .news-list > li {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .news-list > li + li a {
  border-top: 1px dashed #C7C7C7;
}
#newsWrap .news-list > li + li a:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #E60012;
  -ms-border-radius: 50rem;
  -moz-border-radius: 50rem;
  -webkit-border-radius: 50rem;
  border-radius: 50rem;
  position: absolute;
  left: 0;
  top: 0;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#newsWrap .news-list > li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-flex-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}
#newsWrap .news-list > li a * {
  -ms-flex: 0 1 auto;
}
#newsWrap .news-list > li a .title {
  width: 100%;
  font-size: 1.8rem;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  padding-left: 4%;
  padding-right: 8%;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .news-list > li a .date {
  font-size: 1.6rem;
  color: #777777;
  padding-left: 4%;
  padding-right: 8%;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .news-list > li:hover {
  background: #eee;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .news-list > li:hover a {
  text-decoration: none;
}
#newsWrap .news-list > li:hover a .title {
  color: #E60012;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .news-list > li:hover a .date {
  color: #113285;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .card-video {
  width: 100%;
}
#newsWrap .card-video .video {
  position: relative;
  width: 100%;
  margin: 2.5rem 0 1.5rem;
}
#newsWrap .card-video .video:before {
  content: "";
  display: block;
  pointer-events: none;
  content: "";
  padding-top: 56.25%;
}
#newsWrap .card-video .video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
#newsWrap .card-video .title-box h5 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .card-video .title-box .date {
  font-size: 1.6rem;
  color: #777777;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .card-video:hover .title-box {
  cursor: pointer;
}
#newsWrap .card-video:hover .title-box h5 {
  color: #E60012;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#newsWrap .card-video:hover .title-box .date {
  color: #113285;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  #newsWrap {
    display: block;
  }
  #newsWrap > article {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (max-width: 767px) {
  #newsWrap > article {
    padding-top: 4rem;
  }
  #newsWrap > article#news {
    padding-right: 5%;
  }
  #newsWrap article .btn-red {
    position: relative;
    left: initial;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    margin: 2rem 0;
  }
  #newsWrap .news-list > li a {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #newsWrap .news-list > li a .title {
    font-size: 1.6rem;
  }
  #newsWrap .news-list > li a .date {
    font-size: 1.2rem;
  }
}

#commitments {
  position: relative;
  padding-bottom: 0;
}
#commitments .section-heading {
  margin-bottom: 15%;
}
#commitments #particles {
  position: absolute;
  top: 8vw;
  left: 0;
  right: 0;
  width: 70%;
  height: 60%;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
  margin-left: 15%;
}
#commitments .feature-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 5vw;
}
#commitments .feature-wrap .container {
  padding-top: 5vw;
}
#commitments .feature-wrap .top-box {
  width: 100%;
  position: absolute;
  top: 0;
}
#commitments .feature-wrap .top-box .left,
#commitments .feature-wrap .top-box .right {
  display: inline-block;
  position: absolute;
}
#commitments .feature-wrap .top-box .left {
  width: 255px;
  height: 233px;
  background: url(../../assets/img/home/about/bg-Top-left.png);
  background-size: 255px auto;
  left: 0;
}
#commitments .feature-wrap .top-box .right {
  width: 304px;
  height: 493px;
  background: url(../../assets/img/home/about/bg-Top-right.png);
  background-size: 304px auto;
  right: 0;
}
#commitments .feature-wrap .bg-pattern {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: url(../../assets/img/home/about/bg-pattern.svg) no-repeat center center;
  background-size: cover;
  pointer-events: none;
  -webkit-animation: pattern 10s ease-in-out infinite;
  /* Safari 4+ */
  -moz-animation: pattern 10s ease-in-out infinite;
  /* Fx 5+ */
  -o-animation: pattern 10s ease-in-out infinite;
  /* Opera 12+ */
  animation: pattern 10s ease-in-out infinite;
  /* IE 10+, Fx 29+ */
}
@-webkit-keyframes pattern {
  0%, 100% {
    -moz-transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  50% {
    -moz-transform: translateY(100%) scale(2);
    -webkit-transform: translateY(100%) scale(2);
    -o-transform: translateY(100%) scale(2);
    -ms-transform: translateY(100%) scale(2);
    transform: translateY(100%) scale(2);
  }
}
@-moz-keyframes pattern {
  0%, 100% {
    -moz-transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  50% {
    -moz-transform: translateY(100%) scale(2);
    -webkit-transform: translateY(100%) scale(2);
    -o-transform: translateY(100%) scale(2);
    -ms-transform: translateY(100%) scale(2);
    transform: translateY(100%) scale(2);
  }
}
@keyframes pattern {
  0%, 100% {
    -moz-transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  50% {
    -moz-transform: translateY(100%) scale(2);
    -webkit-transform: translateY(100%) scale(2);
    -o-transform: translateY(100%) scale(2);
    -ms-transform: translateY(100%) scale(2);
    transform: translateY(100%) scale(2);
  }
}
#commitments .feature-row {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#commitments .feature-row-top {
  padding: 6rem 0;
  margin-bottom: 6rem;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-flex-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
#commitments .feature-row-top > .icon-item:nth-child(1),
#commitments .feature-row-top > .icon-item:nth-child(3) {
  margin-top: -30%;
}
#commitments .feature-row-top > .icon-item {
  width: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-flex-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#commitments .feature-row-top > .icon-item:nth-child(1) .rounded-circle .badge:before {
  opacity: 0;
}
#commitments .feature-row-top > .icon-item:nth-child(1) .rounded-circle .badge:after {
  opacity: 1;
}
#commitments .feature-row-top > .icon-item:nth-child(2) .rounded-circle .badge:before {
  opacity: 1;
}
#commitments .feature-row-top > .icon-item:nth-child(2) .rounded-circle .badge:after {
  opacity: 1;
}
#commitments .feature-row-top > .icon-item:nth-child(3) .rounded-circle .badge:before {
  opacity: 1;
}
#commitments .feature-row-top > .icon-item:nth-child(3) .rounded-circle .badge:after {
  opacity: 0;
}
#commitments .feature-row-top > .icon-item:hover {
  -moz-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
#commitments .feature-row-top > .icon-item:hover .rounded-circle .icon {
  color: #113285;
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -o-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
#commitments .feature-row-top > .icon-item:hover .rounded-circle .badge {
  background-color: #113285;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#commitments .feature-row-top > .icon-item:hover .rounded-circle .badge:before, #commitments .feature-row-top > .icon-item:hover .rounded-circle .badge:after {
  content: " ";
  background-color: #113285;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#commitments .feature-row-top > .icon-item:hover .rounded-circle .badge .en {
  color: #FEFFBB;
}
#commitments .feature-row-top > .icon-item:hover .rounded-circle:after {
  opacity: 1;
}
#commitments .feature-row-top > .icon-item .rounded-circle {
  position: relative;
  padding: 1rem;
  border: 1px solid #C9C9C9;
  -ms-border-radius: 50rem !important;
  -moz-border-radius: 50rem !important;
  -webkit-border-radius: 50rem !important;
  border-radius: 50rem !important;
}
#commitments .feature-row-top > .icon-item .rounded-circle:after {
  content: "";
  width: 80%;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  display: block;
  position: absolute;
  left: 50%;
  bottom: -4rem;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -ms-border-radius: 50rem;
  -moz-border-radius: 50rem;
  -webkit-border-radius: 50rem;
  border-radius: 50rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
#commitments .feature-row-top > .icon-item .rounded-circle .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background-color: #fff;
  padding: 6rem 3rem;
  padding-bottom: 5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  -ms-border-radius: 50rem;
  -moz-border-radius: 50rem;
  -webkit-border-radius: 50rem;
  border-radius: 50rem;
}
#commitments .feature-row-top > .icon-item .rounded-circle .inner * {
  -ms-flex: 0 1 auto;
}
#commitments .feature-row-top > .icon-item .rounded-circle .icon {
  text-align: center;
  font-size: 7rem;
  color: #666;
  margin-bottom: 3rem;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge {
  position: relative;
  background-color: #E60012;
  padding: 1rem;
  margin-left: -4rem;
  margin-right: -4rem;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge:before, #commitments .feature-row-top > .icon-item .rounded-circle .badge:after {
  content: " ";
  width: 4rem;
  height: 100%;
  background-color: #E60012;
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge:before {
  left: -4rem;
  -ms-border-radius: 50rem 0 0 50rem;
  -moz-border-radius: 50rem 0 0 50rem;
  -webkit-border-radius: 50rem 0 0 50rem;
  border-radius: 50rem 0 0 50rem;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge:after {
  right: -4rem;
  -ms-border-radius: 0 50rem 50rem 0;
  -moz-border-radius: 0 50rem 50rem 0;
  -webkit-border-radius: 0 50rem 50rem 0;
  border-radius: 0 50rem 50rem 0;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #C9C9C9;
  -ms-border-radius: 50rem;
  -moz-border-radius: 50rem;
  -webkit-border-radius: 50rem;
  border-radius: 50rem;
  z-index: 1;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge .dot:before {
  content: " ";
  width: 3px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge .dot-1 {
  top: 0;
  right: 0;
  -moz-transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge .dot-1:before {
  top: -25px;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge .dot-2 {
  bottom: 0;
  left: 0;
  -moz-transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge .dot-2:before {
  bottom: -25px;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge .title {
  font-size: 2.4rem;
  font-weight: 700;
}
#commitments .feature-row-top > .icon-item .rounded-circle .badge .en {
  display: block;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #FFD1D5;
}
#commitments .feature-row-top > .icon-item .rounded-circle .txt {
  text-align: justify;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
  padding: 2rem 1rem;
  margin-bottom: 0;
}
#commitments .feature-row-bottom > .icon-item {
  position: relative;
  width: 100%;
  height: 450px;
  text-align: center;
  background: url() 50% 50% no-repeat;
  background-size: cover;
  background-clip: content-box;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transform: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #commitments .feature-row-bottom > .icon-item:hover .txt {
    background: rgba(8, 31, 89, 0.7);
  }
  #commitments .feature-row-bottom > .icon-item:hover .icon {
    opacity: 0;
  }
  #commitments .feature-row-bottom > .icon-item:hover h5 {
    -moz-transform: translateY(-190%);
    -webkit-transform: translateY(-190%);
    -o-transform: translateY(-190%);
    -ms-transform: translateY(-190%);
    transform: translateY(-190%);
  }
  #commitments .feature-row-bottom > .icon-item:hover p {
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
#commitments .feature-row-bottom > .icon-item + .icon-item {
  border-left: 1px solid #aaa;
}
#commitments .feature-row-bottom > .icon-item .inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-flex-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 2rem;
}
#commitments .feature-row-bottom > .icon-item .inner * {
  -ms-flex: 0 1 auto;
}
#commitments .feature-row-bottom > .icon-item .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
#commitments .feature-row-bottom > .icon-item .txt {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-flex-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background: rgba(8, 31, 89, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
#commitments .feature-row-bottom > .icon-item .txt * {
  -ms-flex: 0 1 auto;
}
#commitments .feature-row-bottom > .icon-item .txt strong {
  color: #113285;
}
#commitments .feature-row-bottom > .icon-item .icon {
  font-size: 10rem;
  margin-bottom: 3rem;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
#commitments .feature-row-bottom > .icon-item h5 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#commitments .feature-row-bottom > .icon-item h5 .en {
  display: block;
  font-size: 2rem;
}
#commitments .feature-row-bottom > .icon-item p {
  position: absolute;
  width: 80%;
  left: 50%;
  bottom: -3rem;
  -moz-transform: translate(-50%, 100%);
  -webkit-transform: translate(-50%, 100%);
  -o-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  color: #000;
  background-color: #fff;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  -ms-transform: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  font-size: 1.6rem;
  padding: 4rem 3rem;
  text-align: justify;
  line-height: 1.5;
  opacity: 0;
}
@media (max-width: 992px) {
  #commitments .feature-wrap {
    padding-bottom: 6rem;
  }
  #commitments .feature-row-top {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
  }
  #commitments .feature-row-top * {
    -ms-flex: 0 1 auto;
  }
  #commitments .feature-row-top > .icon-item {
    width: 80%;
    max-width: 350px;
    margin: 0 auto 3rem !important;
  }
  #commitments .feature-row-top > .icon-item .rounded-circle .txt {
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #commitments .feature-row-top > .icon-item .rounded-circle .badge:before,
  #commitments .feature-row-top > .icon-item .rounded-circle .badge:after {
    opacity: 1 !important;
  }
  #commitments .feature-row-bottom {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  #commitments .feature-row-bottom * {
    -ms-flex: 0 1 auto;
  }
  #commitments .feature-row-bottom > .icon-item {
    height: auto;
  }
  #commitments .feature-row-bottom > .icon-item + .icon-item {
    border-left: none;
    border-top: 1px solid #aaa;
  }
  #commitments .feature-row-bottom > .icon-item p {
    margin-top: 4rem;
    padding: 2rem;
    position: static;
    opacity: 1;
    left: inherit;
    bottom: inherit;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    background-color: rgba(255, 255, 255, 0.5);
    -ms-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
  }
  #commitments .feature-row-bottom > .icon-item .inner {
    position: static;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  #commitments #particles {
    width: 100%;
    margin-left: unset;
  }
  #commitments .feature-wrap .top-box .left, #commitments .feature-wrap .top-box .right {
    display: none;
  }
}

#patents {
  position: relative;
  width: 100%;
  background-color: rgba(217, 217, 217, 0.2);
}
#patents .pattern-top {
  display: block;
  background: url(../../assets/img/home/patents/top-pattern.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -0.5%;
  width: 720px;
  height: 420px;
  pointer-events: none;
  z-index: -1;
}
#patents .pattern-bottom {
  display: block;
  background: url(../../assets/img/home/patents/bottom-pattern.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -8%;
  right: -2%;
  width: 1200px;
  height: 1200px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}
