.download .listBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 1px;
  --itemMargin: 20px;
}
@media screen and (min-width: 1400px) {
  .download .listBox {
    --itemMargin: 33px;
  }
}
@media screen and (max-width: 1000px) {
  .download .listBox {
    --itemMargin: 15px;
  }
}
.download .item {
  width: 33.3333333333%;
  margin: 0 0 -1px -1px;
  position: relative;
  border: #dedede 1px solid;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .download .item {
  width:50%;
  }
}
@media screen and (max-width: 550px) {
  .download .item {
  width:100%;
  }
}
.download .item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.download .item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.download .item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.download .item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.download .item:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.download .item:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.download .item:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.download .item:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.download .item:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@media screen and (max-width: 767px) {
  .download .item {
    width: 50%;
  }
}
.download .item .picBox {
  padding: 10.1%;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 30%, rgb(238, 238, 238) 100%);
}
.download .item .picBox .pic {
  display: block;
  margin-bottom: 5%;
  background: radial-gradient(ellipse at center, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 100%);
  transition: all 0.3s ease;
}
.download .item .picBox .pic img {
  width: 100%;
  aspect-ratio: 88/125;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.download .item .txtBox {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 550px) {
  .download .item .txtBox {
  padding: 10px;
  }
}
.download .item .txtBox:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.download .item .txtBox:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.download .item .txtBox:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.download .item .txtBox:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.download .item .txtBox:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.download .item .txtBox:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.download .item .txtBox:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.download .item .txtBox:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.download .item .txtBox:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.download .item .txtBox .title {
  max-height: 90px;
  font-size: 1.5rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .download .item .txtBox .title {
    font-size: 1.25rem;
  max-height: 87px;
  }
}
.download .item .txtBox .downloadBtn {
  width: 0;
  position: relative;
  font-weight: 700;
  font-size: 0.8125rem;
  color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  overflow:hidden;
}
.download .item .txtBox .downloadBtn::before {
  content: "";
  display: block;
  -webkit-mask: url("../images/pdf.svg") center no-repeat;
          mask: url("../images/pdf.svg") center no-repeat;
  width: 44px;
  height: 61px;
  background: #fff;
  margin-bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .download .item .txtBox .downloadBtn::before {
    width: 20px;
    height: 30px;
  }
}
.download .item .txtBox .downloadBtn::after {
  content: "";
  position: absolute;
  width: 1px;
  left: -15px;
  top: 0;
  bottom: 0;
  display: block;
  background: #fff;
}
.download .item:hover {
  border-color: #f90d08;
  z-index: 9;
}
.download .item:hover .pic {
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.download .item:hover .txtBox {
  background: #f90d08;
}
.download .item:hover .txtBox .title {
  color: #fff;
  width: 75%;
  padding-right: 30px;
}
@media screen and (max-width: 550px) {
  .download .item:hover .txtBox .title {
  width: calc(100% - 70px);
  }
}
.download .item:hover .txtBox .downloadBtn {
  color: #fff;
  width: 25%;
  cursor:pointer;
}
@media screen and (max-width: 550px) {
  .download .item:hover .txtBox .downloadBtn{
  flex-shrink: 0;
  width:70px;
  }
}

.lb-cover {
  position: fixed;
  z-index: 9999;
  top: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lb-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}
.lb-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 35px;
  border-radius: 100%;
  color: #f90c07;
  cursor: pointer;
  text-align: center;
}

.lb-close::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #f90d08;
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.lb-close::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #f90d08;
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}
.lbtitle {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  font-family: Arial, sans-serif, "0xe804";
  text-align: center;
  margin-bottom: 30px;
}
.lbtitle h5 {
  display: block;
  font-size: 36px;
    font-weight: 800;
    color: #000000;
    font-family: Arial, sans-serif, "0xe804";
    text-align: center;
    margin-bottom: 30px;
	text-transform: uppercase;
}
.lbtitle span {
  display: block;
  font-size: 18px;
  color: red;
  font-weight: 300;
}

.lb-form {
  max-width: 430px;
  width: 100%;
  z-index: 99;
  padding: 25px 20px 20px 20px;
  background: #FFF;
  position: relative;
  border-top: #f90c07 4px solid;
}
.lb-form .form-box .list-box {
  width: 100%;
  margin: 0 0 10px 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 5px 7px 5px;
    margin-bottom: 8px;
    position: relative;
    border-bottom: #E9E9E9 1px solid;
}

.lb-form .form-box .list-box input {

  width: 100%;
  padding: 5px 10px;
  position: relative;
  display: flex;
  align-items: flex-start;
  border: 0 solid transparent;
  border-width: 0;
}

.lb-form .form-box .list-box input:focus {
  -webkit-box-shadow: 0 0 8px 0 rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 8px 0 rgba(255, 0, 0, 0.5);
}

.lb-form .form-box .list-box .control-label {
  width: 40px;
  text-align: center;
}
.form-box .list-box .control-label {
    width: 150px;
    padding: 0 12px 0 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 16px;
    display: block;
    color: #333333;
    border-right: #E9E9E9 1px solid;
}
.lb-form .form-box .list-box .control-label img {
  height: 24px;
}

.lb-form .form-box .fcheck {
  margin: 0 0 10px 0;
}

.lb-form .form-box .lb-btn {
  width: 100%;
  margin: 0;
}
.lb-form .lazyload, .lazyloading {
    opacity: 1;
}
.lb-form .form-box .lb-btn .submit {
  width: 100%;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  font-family: Arial, sans-serif, "0xe804";
  background: #f90c07;
  display: block;
  position: relative;
  padding: 16px 10px 11px;
}

.lb-form .form-box .lb-btn .submit:hover {
  background: #000;
}

.lb-form .form-box a {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  color: #f90c07;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lb-form .form-box a:hover {
  color: #000;
}

.lb-form .lightbox-info {
  border-top: #DEDEDE 1px solid;
  padding: 30px 0 0 0;
  text-align: center;
}

.lb-form .lightbox-info span.on-sign {
  color: #229536;
  text-decoration: underline;
  cursor: pointer;
}

.lb-form .info {
  text-align: center;
  padding: 15px 0 0 0;
}

.lb-form .info a {
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lb-form .info a:hover {
  color: #FD8A15;
}
.form-box .list-box .reBtn {
    width: 15px;
    height: 12px;
    top: 10px;
    right: 5px;
    z-index: 2;
    line-height: 1.2;
    position: absolute;
    cursor: pointer;
    background: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.form-box .reBtn::before {
  content: "";
  width: 15px;
  height: 15px;
  top: 0;
  left: 0;
  -webkit-mask: url("../images/re.svg") no-repeat;
          mask: url("../images/re.svg") no-repeat;
  background: #000;
  position: absolute;
  transition: all 0.3s ease;
}
.form-box .reBtn:hover::before {
  transform: rotate(180deg);
  background: #e50012;
}
.form-box .list-box .chktext {
    height: 24px;
    top: 4px;
    right: 35px;
    z-index: 2;
    position: absolute;
}
.form-box .list-box.fcheck {
    padding-right: 100px;
}
@media screen and (max-width: 550px) {
  .lb-form .form-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .lb-form .form-box .list-box {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 20px;
  }

  .lb-btn {
    width: 100%;
    margin: 0;
  }

  .lb-btn .submit {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1000px) {
  .video .listBox {
    display: flex;
    flex-wrap: wrap;
  }
}
.video .item {
  display: flex;
  align-items: center;
  border: #dddddd 1px solid;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .video .item {
  width:50%;
  }
}
@media screen and (max-width: 550px) {
  .video .item {
  width:100%;
  }
}
.video .item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.video .item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.video .item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.video .item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.video .item:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.video .item:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.video .item:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.video .item:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.video .item:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@media screen and (min-width: 1000px) and (max-width: 600px) {
  .video .item {
    width: 50%;
    margin: 0 0 -1px -1px;
  }
}
@media screen and (max-width: 1000px) {
  .video .item {
    flex-direction: column;
  }
}
@media screen and (min-width: 1000px) {
  .video .item + .item {
    margin-top: 30px;
  }
}
.video .item .picBox {
  padding: 0;
  position: relative;
  aspect-ratio: 31/21;
}
@media screen and (min-width: 1000px) {
  .video .item .picBox {
    width: 46%;
  }
}
.video .item .picBox .pic {
  line-height: 0;
}
.video .item .picBox .openVideo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  border: none;
}
.video .item .picBox .openVideo i {
  display: block;
  padding: 0;
  margin: 0 auto;
  position: relative;
  max-width: 130px;
  width: 100%;
  aspect-ratio: 1/1;
  background: none;
  border-radius: 100%;
}
@media screen and (max-width: 1000px) {
  .video .item .picBox .openVideo i {
    max-width: 100px;
  }
}
.video .item .picBox .openVideo i::before {
  content: "";
  inset: 10px;
  border-radius: 100%;
  display: block;
  position: absolute;
  border: 1px solid rgba(249, 13, 8, 0.3);
}
.video .item .picBox .openVideo i::after {
  content: "";
  position: absolute;
  inset: 0px;
  display: block;
  border-radius: 100%;
  border: 1px solid rgba(249, 13, 8, 0.15);
}
.video .item .picBox .openVideo i span {
  position: absolute;
  inset: 20px;
  display: block;
  border-radius: 100%;
  background: #f90d08;
}
.video .item .picBox .openVideo i span::after {
  content: "";
  z-index: 2;
  display: block;
  position: absolute;
  width: 28px;
  top: 50%;
  left: 50%;
  transform: translateX(-30%) translateY(-50%);
  aspect-ratio: 1/1.5;
  margin: auto;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 1000px) {
  .video .item .picBox .openVideo i span::after {
    width: 18px;
  }
}
.video .item .txtBox {
  padding: 20px;
}
@media screen and (min-width: 1000px) {
  .video .item .txtBox {
    width: 54%;
    padding: 3%;
  }
}
.video .item .txtBox .title {
  padding: 0;
  margin: 0 0 15px 0;
  font-weight: 700;
  font-size: 1.75rem;
  color: #1f1f1f;
}
.video .item .txtBox .txt {
  line-height: 1.45;
  font-size: 1.125rem;
  color: #666666;
}/*# sourceMappingURL=media.css.map */