/* Post */

.hero-banner {
  position: relative;
}

.hero-banner img {
  display: flex;
}

.hero-title.pos--left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.hero-title.pos--left .title {
  font-size: 5rem;
  font-weight: 700;
  font-family: 'Linotte';
  text-shadow: 2px 3px 10px rgba(0, 0, 0, .6);
}

.bic-breadcrumbs a {
  color: #fff;
  text-shadow: 2px 3px 10px rgba(0, 0, 0, .6);
}

.post-ctn{
  padding: 8rem 0;
}

.post-list.row {
  row-gap: 8rem;
}

.archive .post-item{
  margin-bottom: 30px;
}

.post-item .post-link{
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 100%;
}

.post-item:hover .post-item-img img {
  transform: scale(1.1) translate(-50%, -50%);
}

.post-item-img a{
  display: block;
  padding-top: calc((2 / 3)* 100%);
  position: relative;
  overflow: hidden;
  border-radius: 3rem 0;
}

.post-item-img  img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.post-item:not(.widget-post-item):hover .post-item-img > img{
  transform: scale(1.05) translate(-50%, -50%);
}

.post-title {
  padding: 3rem 0 2rem;
  min-height: 9.5rem;
}

.post-title a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: normal;

}

.post-excerpt{
  color: #222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.post-excerpt p{
  margin: 0
}

.post-item-none .post-item-ct{
  margin: 0;
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.see-more-post {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--primary-color);
  margin-top: 2rem;
  gap: 5px;
  padding-bottom: 5px;
}

/* Single Post */

.post-detail {
  width: 72.8%;
  margin: auto;
}

.post-related {
  background: url(../images/FAQ.webp) no-repeat center center;
  background-size: cover;
}

.post-dt-header{
  padding-bottom: 3rem;   
  margin-bottom: 3rem;
  border-bottom: 1px solid #d9d9d9;
}

.post-dt-header .box-title {
  margin: 0;
}

ul.post-dt-meta.d-flex li svg path {
  fill: var(--primary-color);
}

.post-dt-title{
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.post-dt-meta>li{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 1.4rem;
}

.post-dt-meta>li:not(:last-child){
  margin-right: 20px;
}

.post-dt-meta>li i{
  margin-right: 5px;
}

.post-dt-body h1, .post-dt-body h2, .post-dt-body h3, .post-dt-body h4, .post-dt-body h5, .post-dt-body h6 {
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 16px;
}

.post-dt-body h1{
  font-size: 36px;
}

.post-dt-body h2{
  font-size: 30px;
}

.post-dt-body h3{
  font-size: 24px;
}

.post-dt-body h4{
  font-size: 20px;
}

.post-dt-body h5,.post-dt-body h6{
  font-size: 18px;
}

.post-dt-share{
  align-items: center;
  background: #fff;
  padding: 10px 15px;
  margin-top: 30px;
  border-radius: var(--radius);
}

.share-title{
  font-weight: 600;
  line-height: 1;
  margin-right: 10px;
}

.share-list{
  align-items: center;
}

.share-list>li:not(:last-child){
  margin-right: 10px;
}

.share-list>li>a{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.share-list>li>a img{
  transition: transform .3s;
}

.share-list>li>a:hover img{
  transform: scale(1.05);
}


/* Template with sidebar */

.post-wr{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.post-wr .post-detail{
  width: 68%;
}

.post-wr .post-sidebar{
  width: 32%;
  padding-left: 30px;
}

.widget{
  position: relative;
  background: #fff;
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 30px;
}

.widget:last-child{
  margin: 0;
}

.widget .widget-title{
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #222;
}

.widget-post-item{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
}

.widget-post-item:not(:last-child){
  margin-bottom: 30px;
}

.widget-post-item .post-item-img{
  flex: 0 0 120px;
  max-width: 120px;
  height: 80px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-right: 20px;
  padding: 0;
}

.widget-post-item .post-item-img > img{
  position: relative;
  transform: none;
  left: 0;
  top: 0;
}

.widget-post-item .post-item-ct{
  padding: 0;
}

.widget-post-item .post-title {
  font-size: 1.6rem;
}

.widget-post-item .post-title a{
  color: #222;
}

.widget-post-item:hover .post-title a{
  color: var(--primary-color);
}

.widget-post-item .post-date{
  color: #666;
  font-size: 1.4rem;
  line-height: 1;
}

/* Pagination */

.bicweb-pagination{
  margin-top: 10px;
  position: relative;
}

.bicweb-pagination .wp-pagenavi{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.wp-pagenavi a, .wp-pagenavi span:not(.pages){
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: #222;
  background: #fff;
  box-shadow: 5px 5px 10px -10px #000000;
}

.wp-pagenavi span.current, .wp-pagenavi a:hover{
  background: var(--primary-color);
  font-weight: bold;
  color: #fff;
}

/*//banner*/
.banner.section {

}

.banner-item img{
  width: 100%;
  display: flex
  ;
}
.swiper-pagination.anduc .swiper-pagination-bullet-active {
 height: 15px;
 border-radius: 15px;
 background: rgb(255 255 255);
}
.swiper-pagination.anduc .swiper-pagination-bullet {
 margin: 3px 0 !important;
 background: hsl(0deg 0% 100% / 40%);
 opacity: 1;
 width: 10px;
 height: 10px;
 transition: all ease .3s;
}


/*section-cat*/
.sc{
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.section-cat{
  background-color: rgba(0,0,0,1);
}
.sc .title-cate-home {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color);
  padding-bottom: 30px;
}
.sc .des-cat{
  color: rgba(255,255,255,1);
  text-align: center;
  letter-spacing: 5px;
  padding-top: 10px;
  font-size: 20px;
}

/* contact */

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 8rem 0;
}

.contact-address {
  padding: 10rem 6rem 10rem 7rem;
  background-color: #f5f5f5;
  border-radius: 1.5rem;
}

.form-ctact p {
  margin: 0;
}

.form-contact {
  padding: 5rem 6rem;
  background: url(../images/bg-ct.png) center center no-repeat;
  background-size: cover;
  border-radius: 2.2rem;
}

.form-contact  .box-title {
  margin-bottom: 4rem;
}

.contact-address a {
  color: #000;
}

.contact-address .ft-info-list {
  font-family: 'Montserrat';
}

.contact-address .ft-info-item svg {
  flex: 0 0 4.5rem;
}

.contact-address .ft-info-item:not(:last-child) {
  margin-bottom: 7rem;
}

input.form-input-ct {
  width: 100%;
  padding: 1.8rem 4rem;
  border-radius: 6rem;
  border: none;
  outline: none;
}

.form-ctact:not(:last-child) {
  margin-bottom:1.2rem;
}

.form-btn-ct:hover {
  background: #B00664 !important;
  transition: all .3s;
  transform: scale(1.01);
  box-shadow: 0 4px 8px rgba(176, 6, 100, 0.6);
}


input.wpcf7-form-control.wpcf7-submit.has-spinner.form-btn-ct {
  width: 160px;
  height: 54px;
  background: var(--primary-color);
  border-radius: 50px;
  text-align: left;
  z-index: 1;
}


.form-ctact.prod-submit {
  display: inline-block;
  position: relative;
  margin-top: 4.4rem;
  margin-bottom: 0;
}

.form-ctact.prod-submit p {
  margin: 0;
}

.contact-desc {
  font-family: 'Montserrat';
}

.form-ctact.prod-submit svg {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  margin: 0;
  width: 4.4rem;
  height: 4.4rem;
}

.form-ctact.prod-submit svg path {
  stroke: var(--primary-color);
}

.map-ct {
  margin-bottom: 8rem;
}

.map-ct iframe {
  width: 100%;
  height: 66rem;
}

/*  */

.load-more {
  text-align: center;
  margin-top: 8rem;
}

.see-more {
  display: inline-flex;
  padding: 1.4rem 6px 1.4rem 3rem;
  background: var(--primary-color);
  border-radius: 5rem;
  width: 180px;
  height: 54px;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.see-more:hover::before {
  width: 100% ;
  transition: all .3s;
}

div#more_posts svg {
  width: 4.4rem;
  height: 4.4rem;
}

div#more_posts svg path {
  stroke: var(--primary-color);
}

.see-more::before {
  position: relative;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #B32272;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}

.see-more:hover {
  transform: scale(1.02);
  transition: all .3s;
  box-shadow: 0 6px 10px rgba(176, 6, 100, 0.6);
}

.icon-load {
  display: none;
}

.icon-load img {
  width: 10rem;
}

.post-dt-body ul {
  list-style: initial;
  margin-left: 3rem;
}

/* about */

.mg-8 {
  margin-bottom: 8rem;
}

.mission {
  background: url(../images/bg-mission.webp) no-repeat center center;
  background-size: cover;
  padding: 11.5rem 0;
}

.mission .title {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.mission .title::before {
  border-bottom: 1px solid #8C8E90;
  width: 12rem;
  position: absolute;
  content: "";
  bottom: 0;
}

.mission-inner {
  display: flex;
  gap: 7.2rem;
  padding: 0 6rem;
}
.mission-right {
  flex: 0 0 61.5rem;
  max-width: 61.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-left {
  flex: 0 0 calc(100% - 61.5rem - 7.2rem);
  max-width: calc(100% - 61.5rem - 7.2rem);
  position: relative;
  padding: 8rem 6rem 8rem 0;
}

.misstion-control {
  display: flex;
  gap: 2rem;
  margin-top: 5rem;
}

.misstion-control > div{
  cursor: pointer;
}

.swiper-mission {
  border-radius: 2rem;
}

.mission-left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 21.1rem;
  height: 100%;
  background: var(--primary-color);
  border-radius: 2rem 0;
}

.mission-img {
  position: relative;
  padding-top: 60.2%;
  overflow: hidden;
  border-radius: 2rem;
}

.mission-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  width: 100%;
}

.misstion-control .icon-heart {
  width: 5rem;
}

.misstion-control .icon-heart svg {
  height: 1.8rem;
}

.mission-desc {
  color: var(--primary-color);
  font-weight: 600;
}

.factory-inner {
  display: flex
  ;
}

.swiper-factory {
  height: 100%;
}

.factory-left {
  flex: 0 0 calc(100% - 70.3rem);
  max-width: calc(100% - 70.3rem);
}

.factory-right {
  flex: 0 0 70.3rem;
  max-width: 70.3rem;
  background: var(--primary-color);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.factory-img {
  position: relative;
  padding-top: 63%;
  overflow: hidden;
  height: 100%;
}

.factory-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.factory .title {
  color: #fff !important;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  position: relative;
}

.factory .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 15rem;
  height: 1px;
  background: #fff;
}

.factory-desc {
  color: #fff;
  font-family: 'Montserrat';
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 1rem;
}


.factory-thumb {
  position: relative;
  padding-top: 51%;
  overflow: hidden;
}

.factory-thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.factory .factory-btn {
  display: flex;
  justify-content: end;
  width: 100%;
}
/* 
.factory .see-more::before {
  display: none;
}

.factory .see-more:hover {
  transform: unset;
  transition: all .3s;
  box-shadow: unset;
} */

.factory-thumbs {
  margin-top: auto;
}


.icon-heart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  position: relative;
}

.icon-heart svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  width: 1rem;
  height: 1rem;
}

/*--------------------------------------------------------------
# Modals
--------------------------------------------------------------*/

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.modal.show {
  visibility: visible;
  opacity: 1;
  z-index: 111;
}

.modal .modal-overlay {
  position: fixed;
  cursor: pointer;
  inset: 0;
  opacity: 0;
  background-color: rgba(28, 25, 25, 0.3);
  backdrop-filter: blur(11.5px) opacity(0);
  z-index: -1;
  transition: all .3s ease-in-out;
}

.modal.show .modal-overlay {
  opacity: 1;
  transition: all .3s ease-in-out;
}

.modal .modal-content {
  position: absolute;
  width: 100%;
  max-width: var(--content-size);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  z-index: 1;
  transition: all .3s ease-in-out;
}

.modal.show .modal-content{
  transform: translate(-50%, -50%);
}

.modal .modal-content .modal-body{
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 8rem 14rem 6rem;
}

.modal .modal-close{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  color: #222;
}

#close-modal {
  position: absolute;
  z-index: 1;
  right: 2rem;
  top: 2rem;
}

.modal-training-desc {
  overflow: scroll;
  height: 100%;
}

.modal-training-ct {
  height: 60rem;
  overflow: scroll;
}
.service-content,
.policy-content {
  margin-bottom: 8rem;
}

.service-content ul,
.policy-content ul {
  list-style: initial;
  margin-left: 3.5rem;
}

.factory-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.factory-control-prev.btn-control ,
.factory-control-next.btn-control  {
  width: 3.5rem !important;
  cursor: pointer;
}

.factory-control-prev.btn-control .icon-heart,
.factory-control-next.btn-control .icon-heart {
  width: 3.5rem !important;
  cursor: pointer;
}

/* responsive */

@media (max-width: 1536px) and (min-width: 1441px) {
  .modal-training-ct {
    height: 50rem;
  }

  .contact-address .ft-info-item svg {
    flex: 0 0 3.5rem;
    height: 3.5rem;
  }

  .see-more {
    width: 17rem;
    height: 5rem;
  }

  .mission-right {
    flex: 0 0 59.5rem;
    max-width: 59.5rem;
  }

  .mission-left {
    flex: 0 0 calc(100% - 59.5rem - 7.2rem);
    max-width: calc(100% - 59.5rem - 7.2rem);
  }

  .mission-img {
    padding-top: 63.2%;
  }

  .btn-control {
    width: 5rem;
  }

  .mission-left::before {
    width: 19rem;
  }

  .misstion-control .icon-heart {
    width: 4rem;
  }

  .swiper-control-btn .icon-heart {
    width: 4rem;
  }

}

@media (max-width: 1440px) and (min-width: 1200px) {
  .modal-training-ct {
    height: 45rem;
  }

  .contact-address {
    padding: 8rem 5rem 8rem 5rem;
  }

  .contact-address .ft-info-item svg {
    flex: 0 0 3rem;
  }

  .contact-address .ft-info-item:not(:last-child) {
    margin-bottom: 4rem;
  }

  .form-contact {
    padding: 4rem 4rem;
  }

  input.form-input-ct {
    padding: 1.6rem 3rem;
  }

  input.wpcf7-form-control.wpcf7-submit.has-spinner.form-btn-ct {
    width: 150px;
    height: 50px;
  }

  .form-ctact.prod-submit {
    margin-top: 3rem;
  }

  .map-ct iframe {
    height: 50rem;
  }

  .see-more {
    padding: 1rem 6px 1rem 2rem;
    width: 15rem;
    height: 42px;
  }

  div#more_posts svg {
    width: 3.4rem;
    height: 3.4rem;
  }

  .icon-load img {
    width: 6rem;
  }

  .post-title {
    min-height: 7rem;
  }

  .mission {
    padding: 7rem 0;
  }

  .mission-inner {
    gap: 5.2rem;
  }

  .mission-left::before {
    width: 13rem;
  }

  .mission-img {
    padding-top: 63%;
  }

  .mission-left {
    flex: 0 0 calc(100% - 45.5rem - 5.2rem);
    max-width: calc(100% - 45.5rem - 5.2rem);
    padding: 7rem 5rem 7rem 0;
  }

  .mission-right {
    flex: 0 0 45.5rem;
    max-width: 45.5rem;
  }

  .btn-control {
    width: 4rem;
  }

  .misstion-control {
    margin-top: 4rem;
  }

  .mg-8 {
    margin-bottom: 6rem;
  }

  .factory-left {
    flex: 0 0 calc(100% - 58rem);
    max-width: calc(100% - 58rem);
  }

  .factory-right {
    flex: 0 0 58rem;
    max-width: 58rem;
  }

  .factory-thumbs {
    margin-top: 3rem;
  }

  .see-more img {
    width: 25%;
  }

  .modal .modal-content {
    max-width: 990px;
  }

  .modal-body.modal-body-traning.relative {
    padding: 5rem 8rem;
  }

  .mission-img {
    padding-top: 63%;
  }

  .misstion-control .icon-heart svg {
    height: 1.4rem;
  }

  .swiper-control-btn .icon-heart {
    width: 3.5rem;
  }

  .swiper-control-btn .icon-heart svg {
    height: 1.4rem;
  }

  .form-ctact.prod-submit svg {
    right: 5px;
    width: 4rem;
    height: 4rem;
  }

  .misstion-control .icon-heart {
    width: 4rem;
  }

  .icon-heart {
    width: 2rem;
  }

  .icon-heart svg {
    height: 8px;
  }
  .service-content,
  .policy-content {
    margin-bottom: 6rem;
  }
}

@media (max-width: 1280px) and (min-width: 1025px) {

  .modal-training-ct {
    height: 40rem;
  }
  .contact-address {
    padding: 8rem 5rem 8rem 5rem;
  }

  .contact-address .ft-info-item svg {
    flex: 0 0 3rem;
  }

  .contact-address .ft-info-item:not(:last-child) {
    margin-bottom: 4rem;
  }

  .post-title {
    min-height: 6.5rem;
  }

  .form-contact {
    padding: 4rem 4rem;
  }

  input.form-input-ct {
    padding: 1.6rem 3rem;
  }

  input.wpcf7-form-control.wpcf7-submit.has-spinner.form-btn-ct {
    width: 150px;
    height: 50px;
  }

  .form-ctact.prod-submit {
    margin-top: 3rem;
  }

  .map-ct iframe {
    height: 50rem;
  }

  .see-more {
    padding: 1rem 6px 1rem 3rem;
    width: 15rem;
    height: 42px;
  }

  div#more_posts svg {
    width: 3.4rem;
    height: 3.4rem;
  }

  .see-more img {
    width: 25%;
  }


  .icon-load img {
    width: 6rem;
  }

  .post-list.row {
    row-gap: 6rem;
  }

  .post-ctn{
    padding: 6rem 0;
  }

  .swiper-control-btn .icon-heart {
    width: 3.5rem;
  }

  .swiper-control-btn .icon-heart svg {
    height: 1.4rem;
  }

  .icon-heart {
    width: 2rem;
  }


  .mission {
    padding: 7rem 0;
  }

  .mission-inner {
    gap: 5.2rem;
  }

  .mission-left::before {
    width: 13rem;
  }


  .misstion-control .icon-heart {
    width: 4rem;
  }



  .mission-left {
    flex: 0 0 calc(100% - 45.5rem - 5.2rem);
    max-width: calc(100% - 45.5rem - 5.2rem);
    padding: 7rem 5rem 7rem 0;
  }

  .mission-right {
    flex: 0 0 45.5rem;
    max-width: 45.5rem;
  }

  .btn-control {
    width: 4rem;
  }

  .misstion-control {
    margin-top: 4rem;
  }

  .mg-8 {
    margin-bottom: 6rem;
  }

  .factory-left {
    flex: 0 0 calc(100% - 58rem);
    max-width: calc(100% - 58rem);
  }

  .factory-right {
    flex: 0 0 58rem;
    max-width: 58rem;
  }

  .factory-thumbs {
    margin-top: 3rem;
  }

  .modal .modal-content {
    max-width: 990px;
  }

  .modal-body.modal-body-traning.relative {
    padding: 5rem 8rem;
  }

  .form-ctact.prod-submit svg {
    right: 5px;
    width: 4rem;
    height: 4rem;
  }
  .service-content,
  .policy-content {
    margin-bottom: 6rem;
  }
}

@media (min-width:1024px) and (max-width:1440px){
   ._link-regis .see-more img {
    width: 15%;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {

  .btn-control {
    width: 4rem;
  }
  
  
  .mission {
    padding: 7rem 0;
  }
  
  .mission-inner {
    gap: 5.2rem;
  }
  
  .mission-left::before {
    width: 13rem;
  }
  
  .mission-img {
    padding-top: 63%;
  }
  
  .mission-left {
    flex: 0 0 calc(100% - 35.5rem - 5.2rem);
    max-width: calc(100% - 35.5rem - 5.2rem);
    padding: 7rem 5rem 7rem 0;
  }

  .mission-right {
    flex: 0 0 35.5rem;
    max-width: 35.5rem;
  }
  
  .misstion-control {
    margin-top: 4rem;
  }
  
  .mg-8 {
    margin-bottom: 6rem;
  }
  
  .factory-left {
    flex: 0 0 calc(100% - 50rem);
    max-width: calc(100% - 50rem);
  }
  
  .factory-right {
    flex: 0 0 50rem;
    max-width: 50rem;
  }

  .modal .modal-content {
    max-width: 990px;
  }

  .modal-body.modal-body-traning.relative {
    padding: 5rem 8rem;
  }
  .service-content,
  .policy-content {
    margin-bottom: 6rem;
  }
}

@media (max-width: 767px) and (min-width:577px) {
  .post-detail {
    width: 100%;
  }

  .hero-title.pos--left .title {
    font-size: 3rem;
    font-weight: 700;
  }

  .post-list.row {
    row-gap: 6rem;
  }

  .post-ctn{
    padding: 6rem 0;
  }


/* contact */

.contact-inner {
  grid-template-columns: 1fr;
  margin: 3rem 0;
}

.contact-address {
  padding: 4rem;
}

.contact-address .ft-info-item svg {
  flex: 0 0 3rem;
  height: 6rem;
}

.contact-address .ft-info-item:not(:last-child) {
  margin-bottom: 3rem;
}

.form-contact {
  padding: 6rem 4rem;
}

.form-contact .box-title {
  margin-bottom: 3rem;
}

.form-ctact.prod-submit {
  margin-top: 3rem;
}

.map-ct iframe {
  height: 50rem;
}

.map-ct {
  margin-bottom: 6rem;
}

.load-more {
  margin-top: 6rem;
}


/* about */

.mg-8 {
  margin-bottom: 6rem;
}

.mission.mg-8 {
  padding: 6rem 0;
}

.mission-inner {
  display: block;
  padding: 0;
}

.mission-left {
  max-width: 100%;
  padding: 8rem 6rem 8rem 0;
  margin-bottom: 2rem;
}

.mission-right {
  max-width: 100%;
}

.mission-left::before {
  width: 12rem;
}

.misstion-control img {
  width: 90%;
}

.misstion-control {
  gap: 1rem;
  margin-top: 3rem;
}

.mission-img {
  padding-top: 60.2%;
}


.factory-inner {
  display: block;
}

.factory-left {
  max-width: 100%;
}

.factory-right {
  max-width: 100%;
  padding: 3rem 1.5rem;
}


.modal-body.modal-body-traning {
  padding: 5rem  !important;
}

.factory-thumbs {
  margin-top: 3rem;
}

.factory-img {
  padding-top: 50%;
}

.mission-right {
  position: relative;
}

.misstion-control {
  gap: 1rem;
  margin-top: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  z-index: 999;
}

.service-content,
.policy-content {
  margin-bottom: 6rem;
}
}

@media (max-width: 1024px) and (min-width:768px) {
  .post-detail {
    width: 100%;
  }

  .hero-title.pos--left .title {
    font-size: 3rem;
    font-weight: 700;
  }

  .post-list.row {
    row-gap: 6rem;
  }

  .post-ctn{
    padding: 6rem 0;
  }


/* contact */

.contact-inner {
  grid-template-columns: 1fr;
  margin: 3rem 0;
}

.contact-address {
  padding: 4rem;
}

.contact-address .ft-info-item svg {
  flex: 0 0 3rem;
  height: 6rem;
}

.contact-address .ft-info-item:not(:last-child) {
  margin-bottom: 3rem;
}

.form-contact {
  padding: 6rem 4rem;
}

.form-contact .box-title {
  margin-bottom: 3rem;
}

.form-ctact.prod-submit {
  margin-top: 3rem;
}

.map-ct iframe {
  height: 50rem;
}

.map-ct {
  margin-bottom: 6rem;
}

.load-more {
  margin-top: 6rem;
}


/* about */

.mg-8 {
  margin-bottom: 6rem;
}

.mission.mg-8 {
  padding: 6rem 0;
}

.mission-inner {
  display: block;
  padding: 0;
}

.mission-left {
  max-width: 100%;
  padding: 8rem 6rem 8rem 0;
  margin-bottom: 4rem;
}

.mission-right {
  max-width: 100%;
}

.mission-left::before {
  width: 12rem;
}

.misstion-control img {
  width: 90%;
}

.misstion-control {
  gap: 1rem;
  margin-top: 3rem;
}

.mission-img {
  padding-top: 60.2%;
}

.factory-inner {
  display: block;
}

.factory-left {
  max-width: 100%;
}

.factory-right {
  max-width: 100%;
  padding: 3rem 1.5rem;
}


.modal-body.modal-body-traning {
  padding: 5rem  !important;
}

.factory-thumbs {
  margin-top: 3rem;
}

.factory-img {
  padding-top: 50%;
}

.see-more:hover::before {
  width: unset;
}

.mission-right {
  position: relative;
}

.misstion-control {
  gap: 1rem;
  margin-top: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  z-index: 999;
}
.service-content,
.policy-content {
  margin-bottom: 6rem;
}
}

@media (max-width: 576px) {
  .post-title {
    padding: 2rem 0 1rem;
    min-height: unset;
  }

  .hero-banner img {
    height: 20rem;
  }

  .hero-title.pos--left .title {
    font-size: 3rem;
    margin-bottom: 8px;
  }

  .post-detail {
    width: 100%;
  }

  .post-list.row {
    row-gap: 3rem;
  }

  .post-ctn {
    padding: 3rem 0;
  }

  .post-dt-header {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .post-dt-body {
    text-align: justify;
  }

/* contact */

.contact-inner {
  grid-template-columns: 1fr;
  margin: 3rem 0;
}

.contact-address {
  padding: 2rem;
}

.contact-address .ft-info-item svg {
  flex: 0 0 3rem;
  height: 3rem;
}

.contact-address .ft-info-item:not(:last-child) {
  margin-bottom: 3rem;
}

.form-contact {
  padding: 3rem 2rem;
}

.form-contact .box-title {
  margin-bottom: 3rem;
}

input.form-input-ct {
  padding: 1.5rem 2rem;
}

.form-ctact.prod-submit {
  margin-top: 3rem;
}

input.has-spinner.form-btn-ct {
  width: 160px;
  height: 48px;
}

.map-ct iframe {
  height: 40rem;
}

.map-ct {
  margin-bottom: 3rem;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.form-btn-ct {
  width: 150px;
  height: 50px;
}

/*  */
.load-more {
  text-align: center;
  margin-top: 3rem;
}

.see-more {
  padding: 1.4rem 8px 1.4rem 3rem;
  width: 180px;
  height: 50px;
}

.icon-load img {
  width: 4rem;
}

div#more_posts svg {
  width: 4rem;
  height: 4rem;
}

.form-ctact.prod-submit svg {
  width: 4rem;
  height: 4rem;
  right: 5px;
}

/* about */

.mg-8 {
  margin-bottom: 4rem;
}

.mission.mg-8 {
  padding: 4rem 0;
}

.mission-inner {
  display: block;
  padding: 0;
}

.mission-left {
  max-width: 100%;
  padding:  0;
  margin-bottom: 3rem;
}

.mission-right {
  max-width: 100%;
  position: relative;
}

.mission-left::before {
  width: 8rem;
}

.misstion-control img {
  width: 90%;
}

.misstion-control {
  gap: 1rem;
  margin-top: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  z-index: 999;
}

.mission-left::before {
  display: none;
}

.mission-img {
  padding-top: 70.2%;
}

.misstion-control .icon-heart {
  width: 4rem;
}

.misstion-control .icon-heart svg {
  height: 1.4rem;
}

.factory-inner {
  display: block;
}

.factory-left {
  max-width: 100%;
}

.factory-right {
  max-width: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column-reverse;
}

.factory-desc {
  text-align: justify;
}

.factory-control-prev.btn-control ,
.factory-control-next.btn-control  {
  width: 3rem !important;
  cursor: pointer;
}

.factory-control-prev.btn-control .icon-heart,
.factory-control-next.btn-control .icon-heart {
  width: 3rem !important;
  cursor: pointer;
}

.factory-thumb {
  padding-top: 70%;
}

.modal-body.modal-body-traning {
  padding: 5rem 1.5rem !important;
}

.factory-thumbs {
  margin-bottom: 3rem;
}

.see-more:hover::before {
  width: unset;
}

.service-content,
.policy-content {
  margin-bottom: 4rem;
}
}