
.carousel-container {
  width: 100%;
}

.bannerSwiper {
  width: 100%;
  height: calc(100vh - 9.75rem);
}

.banner-img {
  height: 100%;
  width: 100%;
}

.banner-img > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 60% 60%;
}

.banner-text {
  position: absolute;
  background: linear-gradient(to right, rgba(88, 88, 88, 0.4), rgba(88, 88, 88, 0.2), transparent);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 6rem;
}

.banner-text-box {
  display: flex;
  flex-direction: row;
  align-items: start;
}

.banner-text-vertical > div {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  white-space: nowrap;
  color: white;
  font-size: 1.25rem;
  letter-spacing: 0.3rem;
  border-right: .0625rem solid rgb(212, 212, 212);
  font-weight: bold;
}

.banner-text-vertical > div > span {
  color: rgb(218, 81, 12);
}

.banner-text-desc {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-left: 1rem;
}

.banner-text-title {
  font-size: 3.125rem;
  color: white;
  font-weight: bold;
  margin-bottom: .75rem;
}

.banner-text-sub-title {
  font-size: 1.25rem;
  color: white;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.banner-text-more > span {
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border: .0625rem solid rgb(212, 212, 212);
  color: white;
  font-size: .875rem;
  cursor: pointer;
}

@media screen and (max-width: 1920px) { 
  .banner-text {
    padding-left: 100px;
  }
  
  .banner-text-vertical > div {
    font-size: 22px;
    letter-spacing: 5px;
    border-right: 1px solid rgb(212, 212, 212);
  }
  
  .banner-text-desc {
    padding-left: 16px;
  }
  
  .banner-text-title {
    font-size: 60px;
    margin-bottom: 12px;
  }
  
  .banner-text-sub-title {
    font-size: 22px;
    margin-top: 16px;
    margin-bottom: 48px;
  }
  
  .banner-text-more > span {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    border: 1px solid rgb(212, 212, 212);
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) { 
  .banner-text {
    padding-left: 60px;
  }

  .banner-text-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 550px) { 
  .banner-text {
    padding-left: 30px;
  }

  .banner-text-title {
    font-size: 30px;
  }
}
.about-container {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url(../images/about-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-title {
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.25rem;
  font-weight: bold;
  padding-bottom: 1rem;
}

.about-title > span {
  color: rgb(254, 108, 34);
}

.about-content {
  font-size: .875rem;
  color: #555;
  line-height: 1.75;
  text-align: center;
}

.about-count-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.about-count-list-item:not(:last-child) {
  margin-right: 5rem;
}

.about-count-list-item-count {
  width: 100%;
}

.about-count-list-item-number {
  color: rgb(254, 108, 34);
  font-size: 2.5rem;
  font-weight: bold;
}

.about-count-list-item-unit {
  font-size: .75rem;
}

.about-count-list-item-desc {
  font-size: .9375rem;
  padding-left: .25rem;
}

.about-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 3rem;
}

.about-list-item {
  width: 23%;
  height: 25rem;
  position: relative;
  cursor: pointer;
  transition: transform .3s ease-in-out;
}

.about-list-item-img {
  width: 100%;
  height: 100%;
}

.about-list-item-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-list-item:hover > .about-list-item-text {
  transition: all .3s;
  background-color: rgba(231, 100, 34, 0.8);
}

.about-list-item:hover {
  transform: translateY(-.75rem);
}

.about-list-item:hover > .about-list-item-text > .about-list-item-text-box > .about-list-item-text-title > span {
  transition: all .3s;
  color: white;
}

.about-list-item-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  background-color: rgb(0, 0, 0, 0.25);
}

.about-list-item-text-box {
  padding: 2rem;
}

.about-list-item-text-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.about-list-item-text-title > span {
  color: rgb(233, 91, 20);
  font-weight: bold;
  margin-right: .2rem;
}

.about-list-item-text-content {
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 1920px) { 
  .about-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .about-title {
    font-size: 56px;
    letter-spacing: 4px;
    padding-bottom: 20px;
  }
  
  .about-content {
    font-size: 16px;
  }
  
  .about-count-list {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  
  .about-count-list-item:not(:last-child) {
    margin-right: 100px;
  }
  
  .about-count-list-item-number {
    font-size: 50px;
  }
  
  .about-count-list-item-unit {
    font-size: 14px;
  }
  
  .about-count-list-item-desc {
    font-size: 17px;
    padding-left: 6px;
  }
  
  .about-list {
    margin-top: 50px;
  }
  
  .about-list-item {
    height: 500px;
  }
  
  .about-list-item-text-box {
    padding: 40px;
  }
  
  .about-list-item-text-title {
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
  
  .about-list-item-text-title > span {
    margin-right: 3px;
  }
  
  .about-list-item-text-content {
    font-size: 20px;
  }
}

@media screen and (max-width: 1500px) {
  .about-list-item {
    height: 450px;
  }

  .about-list-item-text-content {
    font-size: 16px;
  }
}

@media screen and (max-width: 1400px) {

  .about-title {
    font-size: 40px;
  }

  .about-list-item-text-content {
    font-size: 16px;
  }
}

@media screen and (max-width: 1350px) {
  .about-list-item {
    height: 400px;
  }
  
  .about-list-item-text-box {
    padding: 30px;
  }
  
  .about-list-item-text-title {
    font-size: 30px;
  }
  
  .about-list-item-text-content {
    font-size: 16px;
  }
}

@media screen and (max-width: 1150px) {
  .about-list {
    flex-wrap: wrap;
  }

  .about-list-item {
    height: 500px;
    width: 48%;
    margin-bottom: 40px;
  }
  
  .about-list-item-text-box {
    padding: 30px;
  }
  
  .about-list-item-text-title {
    font-size: 40px;
  }
  
  .about-list-item-text-content {
    font-size: 20px;
  }
}

@media screen and (max-width: 720px) {
  .about-count-list-item:not(:last-child) {
    margin-right: 40px;
  }
  
  .about-count-list-item-number {
    font-size: 25px;
  }
  
  .about-count-list-item-desc {
    font-size: 14px;
    padding-left: 0;
  }

  .about-content {
    text-align: left;
  }

  .about-content > div {
    margin-bottom: 10px;
    text-indent: 2em;
  }
}

@media screen and (max-width: 666px) {
  .about-list-item {
    height: 500px;
    width: 100%;
  }
}
.product-container {
  background-image: url(../images/product-background.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 40rem;
}

.product-mask-container {
  background-color: rgba(113, 146, 192, 0.4);
  min-height: 40rem;
  width: 100%;
}

.product-inner-mask-container {
  min-height: 40rem;
  width: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 4rem;
}

.product-inner-mask-box {
  display: flex;
  flex-direction: row;
}

.product-vertical {
  padding-top: .5rem;
}

.product-vertical > div {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  white-space: nowrap;
  color: white;
  font-size: 1.25rem;
  letter-spacing: 0.3rem;
  border-right: .0625rem solid rgb(212, 212, 212);
  font-weight: bold;
}

.product-vertical > div > span {
  color: rgb(218, 81, 12);
}

.product-text {
  margin-left: 2rem;
}

.product-title {
  color: white;
  font-size: 2.5rem;
  letter-spacing: .2rem;
}

.product-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 85%;
  margin-top: 2rem;
}

.product-list-item {
  width: 23%;
  height: 15rem;
  cursor: pointer;
  border-top: .375rem solid rgb(254, 108, 34);
  position: relative;
  overflow: hidden;
}

.product-list-item-img {
  width: 100%;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
}

.product-list-item-img > img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center;
}

.product-list-item:hover > .product-list-item-text {
  transform: translateY(-100%);
}

.product-list-item-text {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform .3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  color: white;
  background-color: rgba(254, 107, 34, 0.8);
}

.product-list-item-text-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-list-item-text-more {
  font-size: .75rem;
}

.product-list-item-text-more > span {
  text-decoration: underline;
}

.product-more {
  margin-top: 3rem;
}

.product-more > span {
  border: .0625rem solid rgb(166, 166, 166);
  color: rgb(233, 233, 233);
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  cursor: pointer;
}

.product-more > span:hover {
  transition: all .3s;
  border: .0625rem solid rgb(255, 130, 67);
  background-color: rgb(255, 130, 67);
  color: white;
}

@media screen and (max-width: 1920px) {
  .product-container {
    min-height: 800px;
  }
  
  .product-mask-container {
    min-height: 800px;
  }
  
  .product-inner-mask-container {
    min-height: 800px;
    padding-left: 80px;
  }
  
  .product-vertical {
    padding-top: 10px;
  }
  
  .product-vertical > div {
    font-size: 24px;
    letter-spacing: 5px;
    border-right: 1px solid rgb(212, 212, 212);
  }
  
  .product-text {
    margin-left: 40px;
  }
  
  .product-title {
    font-size: 46px;
    letter-spacing: 4px;
  }
  
  .product-list {
    margin-top: 36px;
  }
  
  .product-list-item {
    width: 23%;
    height: 280px;
    border-top: 6px solid rgb(254, 108, 34);
  }
  
  .product-list-item-img {
    height: 280px;
  }
  
  .product-list-item-text-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .product-list-item-text-more {
    font-size: 14px;
  }
  
  .product-more {
    margin-top: 50px;
  }
  
  .product-more > span {
    border: 1px solid rgb(166, 166, 166);
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .product-more > span:hover {
    border: 1px solid rgb(255, 130, 67);
  }
}

@media screen and (max-width: 1200px) {
  .product-inner-mask-box {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .product-list {
    flex-wrap: wrap;
  }
  
  .product-list-item {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 900px) {
  .product-inner-mask-container {
    padding-left: 5%;
    width: 90%;
  }

  .product-vertical {
    display: none;
  }
  
  .product-text {
    margin-left: 0;
  }

  .product-list {
    width: 100%;
  }
}

@media screen and (max-width: 666px) {
  .product-list-item {
    width: 100%;
  }
}

.hot-product-container {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: rgb(250, 250, 250);
}

.hot-product-title {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.hot-product-title-text {
  font-size: 2.5rem;
  letter-spacing: .2rem;
  font-weight: bold;
}

.hot-product-title-text > svg {
  width: 1.75rem;
  height: 1.75rem;
}

.hot-product-title-more {
  transition: all .2s;
  font-size: .875rem;
  color: rgb(88, 88, 88);
  user-select: none;
  cursor: pointer;
}

.hot-product-title-more:hover {
  color: rgb(254, 108, 34);
}

.productSwiper {
  width: 100%;
  height: 20rem;
}

.product-img {
  width: 100%;
  height: 20rem;
  background-color: white;
  display: flex;
  flex-direction: row;
  border-top: .375rem solid rgb(254, 108, 34);
}

.product-img-box {
  width: 50%;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.product-img-name {
  width: 50%;
  height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(240, 240, 240);
}

.product-img-title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.product-img-text {
  font-size: .875rem;
  color: rgb(100, 100, 100);
  line-height: 1.5;
}

.product-img-more {
  margin-top: 1.5rem;
}

.product-img-more > span {
  background-color: rgb(254, 108, 34);
  color: white;
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  cursor: pointer;
}

.product-img-more > span:hover {
  background-color: rgb(255, 130, 67);
}

.product-img-box:hover > img {
  transform: scale(1.2);
}

.product-img-box > img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: all .3s;
}

.product-pagination {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}

.product-pagination-item {
  background-color: rgb(200, 200, 200);
  width: .75rem;
  height: .75rem;
  margin-right: .625rem;
  border-radius: .5rem;
  cursor: pointer;
}

.product-pagination-item-active {
  background-color: rgb(254, 108, 34);
}

@media screen and (max-width: 1920px) {
  .hot-product-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .hot-product-title {
    margin-bottom: 40px;
  }
  
  .hot-product-title-text {
    font-size: 50px;
    letter-spacing: 4px;
  }
  
  .hot-product-title-text > svg {
    width: 35px;
    height: 35px;
  }
  
  .hot-product-title-more {
    font-size: 16px;
  }
  
  .productSwiper {
    height: 380px;
  }
  
  .product-img {
    height: 380px;
    border-top: 6px solid rgb(254, 108, 34);
  }
  
  .product-img-box {
    height: 380px;
  }
  
  .product-img-name {
    height: 380px;
  }
  
  .product-img-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .product-img-text {
    font-size: 16px;
  }
  
  .product-img-more {
    margin-top: 30px;
  }
  
  .product-img-more > span {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .product-pagination {
    margin-top: 20px;
  }
  
  .product-pagination-item {
    background-color: rgb(200, 200, 200);
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .product-pagination-item-active {
    background-color: rgb(254, 108, 34);
  }
}

@media screen and (max-width: 1600px) {
  .productSwiper {
    height: 330px;
  }
  
  .product-img {
    height: 330px;
  }
  
  .product-img-box {
    height: 330px;
  }
  
  .product-img-name {
    height: 330px;
  }
}

@media screen and (max-width: 1500px) {
  .productSwiper {
    height: 280px;
  }
  
  .product-img {
    height: 280px;
  }
  
  .product-img-box {
    height: 280px;
  }
  
  .product-img-name {
    height: 280px;
  }
}

@media screen and (max-width: 1400px) {
  .product-img-title {
    font-size: 18px;
    font-weight: bold;
  }
  
  .product-img-text {
    font-size: 14px;
  }
  
  .product-img-more > span {
    font-size: 14px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 666px) {
  .productSwiper {
    height: 250px;
  }
  
  .product-img {
    height: 250px;
  }
  
  .product-img-box {
    height: 250px;
  }
  
  .product-img-name {
    height: 250px;
  }

  .hot-product-title-text {
    font-size: 30px;
  }

  .hot-product-title-text > svg {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 600px) {
  .productSwiper {
    height: 600px;
  }
  
  .product-img {
    height: 600px;
  }
  
  .product-img-box {
    height: 300px;
  }
  
  .product-img-name {
    height: 300px;
  }

  .product-img {
    flex-wrap: wrap;
  }

  .product-img-box {
    width: 100%;
  }
  
  .product-img-name {
    width: 100%;
  }

  .hot-product-title-text {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .hot-product-title-text > svg {
    width: 20px;
    height: 20px;
  }
}

.example-container {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.example-title {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: .1rem;
}

.example-more {
  margin-bottom: 3rem;
  text-align: center;
}

.example-more > span {
  background-color: rgb(254, 108, 34);
  color: white;
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  cursor: pointer;
}

.example-more > span:hover {
  background-color: rgb(255, 130, 67);
}

.example-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.example-list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  cursor: pointer;
}

.example-list-item-bg {
  width: 32%;
  height: 20rem;
}

.example-list-item-sm {
  width: 24%;
  height: 15rem;
}

.example-list-item-img {
  width: 100%;
  height: 80%;
  position: relative;
  overflow: hidden;
}

.example-list-item-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s;
}

.example-list-item-img-mask {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform .5s ease-in-out;
}

.example-list-item-img-mask > svg {
  height: 1.5rem;
  width: 1.5rem;
}

.example-list-item:hover > .example-list-item-img > img {
  transform: scale(1.1);
}

.example-list-item:hover > .example-list-item-img > .example-list-item-img-mask {
  transform: translateY(100%);
}

.example-list-item-text {
  height: 20%;
  background-color: rgb(237, 244, 247);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.example-list-item-text-title {
  font-size: .875rem;
  font-weight: bold;
  letter-spacing: .1rem;
}

.example-list-item-text-sub-title {
  font-size: .8125rem;
  color: rgb(111, 111, 111);
}

@media screen and (max-width: 1920px) {
  .example-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .example-title {
    font-size: 40px;
    margin-bottom: 30px;
    letter-spacing: 2px;
  }
  
  .example-more {
    margin-bottom: 50px;
  }
  
  .example-more > span {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .example-list-item {
    margin-bottom: 40px;
  }
  
  .example-list-item-bg {
    height: 400px;
  }
  
  .example-list-item-sm {
    height: 280px;
  }
  
  .example-list-item-img-mask > svg {
    height: 26px;
    width: 26px;
  }
  
  .example-list-item-text {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .example-list-item-text-title {
    font-size: 16px;
    letter-spacing: 2px;
  }
  
  .example-list-item-text-sub-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 1550px) {
  .example-list { 
    flex-wrap: wrap;
  }

  .example-list-item-bg {
    height: 350px;
  }
  
  .example-list-item-sm {
    height: 230px;
  }
}

@media screen and (max-width: 1400px) {
  .example-list-item-bg {
    height: 300px;
  }
  
  .example-list-item-sm {
    height: 180px;
  }
}

@media screen and (max-width: 1200px) {
  .example-list-item-bg {
    width: 100%;
    height: 400px;
  }
  
  .example-list-item-sm {
    width: 49%;
    height: 280px;
  }
}

@media screen and (max-width: 700px) {
  .example-list-item-sm {
    width: 100%;
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  .example-title {
    font-size: 30px;
  }

  .example-list-item-bg {
    height: 300px;
  }
  
  .example-list-item-sm {
    height: 300px;
  }
}
.certificate-container {
  width: 80%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: column;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-image: url(../images/cert-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.certificate-title-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.certificate-title {
  font-size: 2.5rem;
  font-family: "SourceHanSansSC";
  color: rgb(51, 51, 51);
  font-weight: bold;
}

.certificate-title > span {
  color: rgb(253, 115, 32);
}

.certificate-category {
  font-size: 1.5rem;
  font-family: "SourceHanSansSC";
  color: rgb(102, 102, 102);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.certificate-category > div:not(:last-child) {
  margin-right: 2.5rem;
}

.certificate-category > div:not(.certificate-category-item-divide) {
  cursor: pointer;
}

.certificate-category > div:not(.certificate-category-item-divide):hover {
  color: rgb(253, 115, 32);
}

.certificate-category-item-active {
  color: rgb(253, 115, 32);
}

.cert-swiper {
  width: calc(100% - 7.5rem);
  margin-top: 9.375rem;
  user-select: none;
  position: relative;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  display: none;
}

.cert-swiper-active {
  display: block;
}

.certificate-img {
  background-image: url(../images/cert-outline.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 9%;
  padding-bottom: 9%;
  padding-left: 10%;
  padding-right: 10%;
}

.certificate-img > img {
  width: 100%;
  object-fit: contain;
}

.cert-swiper-btn {
  position: absolute;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 3.125rem;
  height: 3.125rem;
  top: 35%;
}

.cert-swiper-prev {
  left: -3.125rem;
  background-image: url(../images/honor-left.png);
}

.cert-swiper-next {
  right: -3.125rem;
  background-image: url(../images/honor-right.png);
}

.cert-swiper-selection {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 5.625rem;
}

.cert-swiper-selection-item {
  width: .625rem;
  height: .625rem;
  border-radius: 50%;
  background-color: rgb(136, 136, 136);
  cursor: pointer;
}

.cert-swiper-selection-item:not(:last-child) {
  margin-right: 1rem;
}

.cert-swiper-selection-item-active {
  transition: all .3s ease;
  width: 2.5rem;
  background-color: rgb(253, 115, 32);
  border-radius: .625rem;
}

@media screen and (max-width: 1200px) {
  .certificate-title {
    font-size: 4rem;
  }  

  .certificate-category {
    font-size: 2.5rem;
  }

  .cert-swiper-btn {
    width: 5rem;
    height: 5rem;
  }

  .cert-swiper-selection-item {
    width: 1rem;
    height: 1rem;
  }
}
.news-container {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  /* background-image: url(../images/news-background.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
}

.news-title-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.news-title-text {
  font-size: 2.5rem;
  color: #333;
}

.news-title-more {
  color: #333;
  font-size: .875rem;
  cursor: pointer;
  transition: all .3s;
}

.news-title-more:hover {
  color: rgb(254, 108, 34);
}

.news-list-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.news-carousel-list {
  width: 38.5%;
}

.news-img {
  width: 100%;
  height: 22.5rem;
}

.news-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-text {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  color: white;
}

.news-text-box {
  padding: 1rem;
}

.news-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.25rem;
  margin-bottom: .375rem;
  font-weight: bold;
}

.news-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: .75rem;
  color: #e7e7e7;
  line-height: 1.5;
}

.swiper-pagination-bullet-active {
  background-color: rgb(254, 108, 34);
}

.news-text-list {
  width: 58.5%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.news-text-list-item {
  width: 48%;
  color: #333;
  cursor: pointer;
  margin-bottom: .5rem;
}

.news-text-list-item:hover > .news-text-list-item-date {
  transition: all .3s;
  color: rgb(253, 115, 32);
}

.news-text-list-item:hover > .news-text-list-item-text > .news-text-list-item-title {
  transition: all .3s;
  color: rgb(253, 115, 32);
}

.news-text-list-item:hover > .news-text-list-item-text > .news-text-list-item-content {
  transition: all .3s;
  color: rgb(253, 115, 32);
}

.news-text-list-item-date {
  font-size: .875rem;
  letter-spacing: .0625rem;
  color: #333;
}

.news-text-list-item-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.25rem;
  margin-bottom: .375rem;
  font-weight: bold;
}

.news-text-list-item-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: .75rem;
  color: #333;
  line-height: 1.5;
}

@media screen and (max-width: 1920px) {
  .news-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .news-title-box {
    margin-bottom: 70px;
  }
  
  .news-title-text {
    font-size: 48px;
  }
  
  .news-title-more {
    font-size: 16px;
  }
  
  .news-img {
    height: 440px;
  }
  
  .news-text-box {
    padding: 20px;
  }
  
  .news-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .news-content {
    font-size: 14px;
  }

  .news-text-list-item {
    margin-bottom: 8px;
  }
  
  .news-text-list-item-date {
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .news-text-list-item-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .news-text-list-item-content {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .news-list-container {
    flex-wrap: wrap;
  }
  
  .news-carousel-list {
    width: 100%;
    margin-bottom: 30px;
  }

  .news-text-list {
    width: 100%;
  }
}

@media screen and (max-width: 888px) {
  .news-text-list-item {
    width: 100%;
  }

  .news-title-text {
    font-size: 30px;
  }
}

@media screen and (max-width: 700px) {
  .news-img {
    height: 400px;
  }
}

@media screen and (max-width: 620px) {
  .news-img {
    height: 360px;
  }
}

@media screen and (max-width: 550px) {
  .news-img {
    height: 320px;
  }
}

.coop-container {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url(../images/coop-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 40rem;
}

.coop-box {
  background-color: white;
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0px 0px .5625rem rgba(0, 0, 0, 0.02), 
              0px 0px 1.5313rem rgba(0, 0, 0, 0.025), 
              0px 0px 3.6938rem rgba(0, 0, 0, 0.025), 
              0px 0px 12.25rem rgba(0, 0, 0, 0.02);
}

.coop-text {
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
  text-align: center;
}

.coop-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.coop-content {
  color: rgb(170, 170, 170);
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 5%;
  padding-right: 5%;
}

.coop-more-button {
  margin-top: 2.5rem;
}

.coop-more-button > span {
  border: .0625rem solid rgb(254, 108, 34);
  color: rgb(254, 108, 34);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  border-radius: 1rem;
  transition: all .3s;
  cursor: pointer;
  font-size: 1rem;
}

.coop-more-button > span:hover {
  background-color: rgb(254, 108, 34);
  color: white;
}

.coop-logo-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.coop-logo-list-item {
  width: 23%;
  margin: 1%;
  height: 6rem;
  overflow: hidden;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.coop-logo-list-item:hover > img {
  transform: scale(1.2);
}

.coop-logo-list-item > img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  object-position: center;
  transition: transform .3s ease-in-out;
}

@media screen and (max-width: 1920px) {
  .coop-container {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 800px;
  }
  
  .coop-box {
    border-radius: 30px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.02), 
                0px 0px 24.5px rgba(0, 0, 0, 0.025), 
                0px 0px 59.1px rgba(0, 0, 0, 0.025), 
                0px 0px 196px rgba(0, 0, 0, 0.02);
  }
  
  .coop-text {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .coop-title {
    font-size: 44px;
    margin-bottom: 30px;
  }
  
  .coop-content {
    font-size: 18px;
  }
  
  .coop-more-button {
    margin-top: 50px;
  }
  
  .coop-more-button > span {
    border: 1px solid rgb(254, 108, 34);
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 20px;
    font-size: 18px;
  }
  
  .coop-logo-list {
    margin-top: 64px;
  }
  
  .coop-logo-list-item {
    height: 120px;
  }
}

@media screen and (max-width: 1150px) {
  .coop-logo-list-item {
    width: 48%;
  }
}

@media screen and (max-width: 666px) { 
  .coop-box {
    background-color: white;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}

@media screen and (max-width: 550px) {
  .coop-logo-list-item {
    height: 100px;
  }
}
