header .container,
.public_ad_header .container {
  max-width: 1440px !important;
}

.indexProduct {
  padding: 80px 0;
}

.indexTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.indexTitle h2,
.indexTitle h1 {
  font-size: 42px;
  font-weight: bolder;
  line-height: 1.3;
  color: #000;
}

.indexTitle p {
  margin-top: 4px;
  font-size: 22px;
  color: #000;
}

.indexTitle span {
  margin-top: 18px;
  display: inline-block;
  width: 226px;
  height: 3px;
  background-color: var(--second-color);
}

.indexPro_top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.indexPro_tl p {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.indexPro_tl h3 {
  font-size: 30px;
  color: #000;
  font-weight: bold;
}

.indexPro_tr a {
  display: inline-block;
  padding: 10px 55px;
  line-height: 28px;
  font-size: 20px;
  border: 1px solid var(--second-color);
  color: var(--second-color);
  transition: all 0.35s ease;
}

.indexPro_tr a:hover {
  background-color: var(--second-color);
  color: #fff;
}

.indexProduct .row>div {
  margin-bottom: 30px;
}

.ipro_box {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.ipro_boximg {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 100%;
  z-index: 1;
}

.ipro_boximg img {
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
}

.ipro_boximg::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 1;
  transition: all 0.35s ease;
}

.ipro_boxdes {
  position: relative;
  z-index: 1;
  padding: 10px 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ipro_boxdes h4 {
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
  transition: all ease 0.3s;
}

.ipro_boxdes p {
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.ipro_boxdes .indexPro_tr {
  margin-top: 15px;
}

.ipro_boxdes .indexPro_tr a {
  border-color: #000;
  color: #000;
}

.ipro_boxdes .indexPro_tr a:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
}

.ipro_box:hover img {
  transform: scale(1.1);
}

.ipro_boximg:hover::before {
  opacity: 1;
}

.ipro_boxdes h4:hover {
  color: var(--primary-color);
}


/* indexAbout */
.indexAbout {
  background: url(../images/iabg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.indexAbout .container {
  max-width: 1350px !important;
}

.indexAbout_left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10%;
}

.indexAbout_left h2 {
  font-size: 48px;
  color: #000;
  /*text-transform: uppercase;*/
  font-weight: bold;
  margin-bottom: 5px;
}

.indexAbout_left h3 {
  font-size: 30px;
  color: #000;
  font-weight: bold;
  margin-bottom: 30px;
}

.indexAbout_left>p {
  margin-bottom: 30px;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.indexAbout_box {
  margin-bottom: 30px;
}

.indexAbout_box>p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
}

.indexAbout_btn a {
  display: inline-block;
  padding: 10px 50px;
  line-height: 1.4;
  font-size: 20px;
  border: 1px solid var(--second-color);
  background-color: var(--second-color);
  color: #fff;
  transition: all 0.35s ease;
}

.indexAbout_btn a:hover {
  color: var(--second-color);
  background: transparent;
}

.indexAbout_right {
  position: relative;
}

.indexAbout_right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.indexAbout_img img {
  width: 100%;
  object-fit: cover;
}

.dr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.drbtn {
  position: relative;
}

.cw {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  background: #fff;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw:hover {
  border: 5px solid #ffffff;
  background-color: transparent;
  transition: 0.5s;
}

.cw:hover i {
  color: #ffffff;
}

.cw i {
  font-size: 50px;
  color: #3a382b;
}

.bo {
  position: absolute;
  top: 0;
}

.bo::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  animation: scale 2s infinite;
}

.bo::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  animation: scale2 2s infinite;
}

@keyframes scale {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes scale2 {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.videomain {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999999999999999999999;
}

.videoclose {
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
}

.videoclose img {
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
}

.videobox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  overflow: hidden;
  max-height: 800px;
  min-height: 600px;
}

.videobox video {
  width: 100%;
  height: 100%;
}

.videobox iframe {
  width: 100%;
  height: 100%;
  max-height: 800px;
  min-height: 600px;
}


/* indexApply */
.indexApply {
  padding: 90px 0 110px;
}

.indexApply .row>div {
  margin-top: 30px;
}

.iapply_box {
  width: 92%;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.iapply_img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 65%;
}

.iapply_img img {
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
}

.iapply_des {
  padding: 45px 45px 65px;
}

.iapply_des h3 {
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  transition: all ease 0.3s;
}

.iapply_des h3:hover {
  color: var(--second-color);
}

.iapply_des p {
  font-size: 20px;
  line-height: 1.3;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.iapply_box:hover img {
  transform: scale(1.1);
}

.iapply_img::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 1;
  transition: all 0.35s ease;
}

.iapply_img:hover::before {
  opacity: 1;
}


/* indexCon */
.indexCon {
  position: relative;
  padding: 90px 0;
  background: url(../images/icbg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  margin: 20px 0;
      margin-top: 90px;
}

.indexCon::before {
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(10, 49, 140, 0.33);
}

.indexCon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 0 100%);
  background-color: rgba(239, 114, 8, 0.8);
  z-index: 1;
  pointer-events: none;
}

.indexCon_main {
  padding-left: 8%;
  position: relative;
  z-index: 9;
}

.indexCon_main .indexTitle {
  align-items: flex-start;
  margin-bottom: 20px;
}

.indexCon_main .indexTitle h2 {
  color: #fff;
}

.indexCon_main>p {
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
  margin-bottom: 45px;
}

.indexCon_box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.indexCon_box span {
  flex: 0 0 50px;
  height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indexCon_box span i {
  font-size: 30px;
}

.indexCon_box p,
.indexCon_box a {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  flex: 0 0 calc(100% - 60px);
  transition: all ease 0.3s;
}

.indexCon_box a:hover {
  color: var(--second-color);
}

.indexCon_main .row>div {
  margin-bottom: 35px;
}

.indexCon_main .row>div:nth-child(n+5) {
  margin-bottom: 0;
}

/* indexNews */
.indexNews {
  padding: 80px 0;
}

.iNews_box {
  padding: 12px 12px 20px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.iNews_box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--primary-color);
  transition: all .5s ease;
}

.iNews_box:hover::before {
  height: 100%;
}

.iNews_img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 100%;
  z-index: 2;
}

.iNews_img img {
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}

.iNews_des {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.iNews_des h3 {
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  color: var(--primary-color);
  transition: all ease 0.5s;
}

.iNews_des p {
  font-size: 18px;
  line-height: 1.3;
  color: var(--primary-color);
  text-align: center;
  transition: all ease 0.5s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.iNews_btn {
  width: 100%;
}

.iNews_btn a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
  transition: all ease 0.5s;
}

.iNews_box:hover img {
  transform: scale(1.1);
}

.iNews_box:hover .iNews_des h3,
.iNews_box:hover .iNews_des p {
  color: #fff;
}

.iNews_box:hover .iNews_btn a {
  background: var(--second-color);
  color: #fff;
}

.indexNews .row>div {
  margin-bottom: 30px;
}

/* indexHonor */
.indexHonor {
  padding-bottom: 90px;
}

.indexHonor_main {
  position: relative;
}

.indexHonor .indexTitle {
  margin-bottom: 60px;
}

.indexHonor .container {
  max-width: 1280px !important;
}

.ihonorSwiper {
  max-width: 1280px !important;
  margin: 0 auto !important;
  position: static !important;
}

.ihonorwrapper_box {
  background: url(../images/ihbg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 15px;
}

.ihonorwrapper_img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 155%;
}

.ihonorwrapper_img img {
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
}

.swiperbtns {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 115%;
  z-index: 1;
}

.ihonorSwiper .swiper-button-next {
  right: 0px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #fff;
  z-index: 9999;
  position: absolute;
  color: #999;
  border-radius: 50%;
  transition: all ease 0.3s;
  border: 2px solid #999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.ihonorSwiper .swiper-button-prev {
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #fff;
  z-index: 9999;
  position: absolute;
  color: #999;
  border-radius: 50%;
  transition: all ease 0.3s;
  border: 2px solid #999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.ihonorSwiper .swiper-button-next::after,
.ihonorSwiper .swiper-button-prev::after {
  font-size: 26px;
  font-weight: bold;
}

.ihonorSwiper .swiper-button-next:hover,
.ihonorSwiper .swiper-button-prev:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transition: all ease 0.3s;
}


/* footer */
.footer_top {
  position: relative;
  padding: 90px 0 60px;
  background: url(../images/footerbg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer_top .container {
  max-width: 1300px !important;
}

.footer_con {
  padding-right: 15%;
}

.footerTitle {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 15px;
  min-height: 70px;
}

.footer_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_box p span,
.footer_box p a,
.footer_box li a{
  font-size: 16px;
  color: #fff;
  transition: all ease 0.3s;
}

.footer_box p a:hover,
.footer_box li a:hover {
  color: var(--second-color);
}

.footer_con .footer_box p:nth-child(1) {
  margin-bottom: 20px;
}

.footer_top .public_ad_header_social_media {
  justify-content: flex-start;
  margin-top: 40px;
}

.footer_top .yandex-form #form .list p {
  line-height: 1;
  border: 1px solid var(--second-color);
}

.footer_top .yandex-form #form .list textarea {
  height: 100px;
}

.footer_top .yandex-form #form #submit {
  line-height: 2.5;
  background: var(--second-color);
}

.footer_top .yandex-form {
  min-height: auto;
}

.footer_bot {
  background: #001226;
  text-align: center;
  font-size: 16px;
  line-height: 85px;
  color: #fff;
}

@media (max-width:575px) {
  .bg-dark {
    background-color: #fff !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .navbar-toggler {
    background-color: var(--primary-color);
  }

  .btn:hover {
    background-color: #333 !important;
    border-color: #333 !important;
  }

  .text-bg-dark {
    background-color: #fff !important;
  }

  .navbar-nav .show>.nav-link,
  .navbar-nav .nav-link.active {
    color: #111;
    font-weight: bold;
  }

  .nav-link {
    color: #111;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: #111;
  }

  .btn-close {
    --bs-btn-close-white-filter: auto;
  }

  .dropdown-menu-dark {
    --bs-dropdown-bg: transparent;
  }

  .dropdown-item {
    color: #222;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: var(--primary-color);
  }


  .indexProduct,
  .indexApply,
  .indexNews {
    padding: 40px 0;
  }

  .indexPro_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .indexPro_tl h3,
  .indexAbout_left h2 {
    font-size: 24px;
  }

  .indexTitle {
    margin-bottom: 20px;
  }

  .indexTitle h2,
  .indexTitle h1 {
    font-size: 28px;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;
  }

  .indexTitle p {
    text-align: center;
  }

  .indexPro_tr a {
    padding: 8px 45px;
    line-height: 28px;
    font-size: 18px;
  }

  .indexAbout_left {
    padding-bottom: 30px;
  }

  .indexAbout_left h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .indexAbout_left {
    padding-right: 0;
  }

  .indexAbout_left>p,
  .indexAbout_box {
    margin-bottom: 15px;
  }

  .indexAbout_btn a {
    padding: 8px 35px;
    line-height: 28px;
    font-size: 16px;
  }

  .cw,
  .bo::before,
  .bo::after {
    width: 60px;
    height: 60px;
  }

  .cw i {
    font-size: 30px;
  }

  .videobox {
    width: 90%;
    margin: 0 auto;
    max-height: auto;
    min-height: 300px;
  }

  .videobox iframe {
    width: 100%;
    max-height: auto;
    min-height: 300px;
  }

  .iapply_box {
    width: 100%;
  }

  .indexApply .row>div:nth-child(1) {
    margin-top: 0;
  }

  .iapply_des {
    padding: 25px 20px 35px;
  }

  .iapply_des h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .iapply_des p {
    font-size: 18px;
  }

  .indexCon {
    padding: 50px 0;
  }

  .indexCon_main {
    padding-left: 0;
  }

  .indexCon_main .indexTitle {
    align-items: center;
  }

  .indexCon_main>p,
  .indexCon_main .row>div {
    margin-bottom: 20px !important;
  }

  .indexCon::after {
    display: none;
  }

  .iNews_des h3 {
    font-size: 28px;
  }

  .iNews_btn {
    text-align: center;
  }

  .iNews_btn a {
    width: auto;
    font-size: 18px;
    padding: 10px 20px;
    display: inline-block;
  }

  .indexNews .row>div:nth-last-child(1) {
    margin-bottom: 0;
  }

  .indexHonor .indexTitle {
    margin-bottom: 30px;
  }

  .indexHonor {
    padding-bottom: 40px;
  }

  .swiperbtns {
    display: none;
  }

  .footer_top {
    padding: 40px 0 30px;
  }

  .footerTitle {
    font-size: 26px;
    margin-bottom: 8px;
    min-height: auto;
  }

  .footer_con {
    padding: 0;
  }

  .footer_con .footer_box p:nth-child(1) {
    margin-bottom: 0;
  }

  .footer_top .public_ad_header_social_media {
    margin-top: 20px;
    gap: 20px;
  }

  .footer_top .public_ad_header_social_media a {
    display: block;
    height: 30px;
  }

  .public_ad_header_social_media a i {
    font-size: 22px;
  }

  .footer_box {
    margin-bottom: 30px;
  }

  .footer_bot {
    padding-top: 10px;
    padding-bottom: 90px;
    line-height: 1.3;
  }

  .bottomDiv a:hover {
    color: var(--second-color);
  }
}

@media (min-width:576px) and (max-width:767px) {
  .bg-dark {
    background-color: #fff !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .navbar-toggler {
    background-color: var(--primary-color);
  }

  .btn:hover {
    background-color: #333 !important;
    border-color: #333 !important;
  }

  .text-bg-dark {
    background-color: #fff !important;
  }

  .navbar-nav .show>.nav-link,
  .navbar-nav .nav-link.active {
    color: #111;
    font-weight: bold;
  }

  .nav-link {
    color: #111;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: #111;
  }

  .btn-close {
    --bs-btn-close-white-filter: auto;
  }

  .dropdown-menu-dark {
    --bs-dropdown-bg: transparent;
  }

  .dropdown-item {
    color: #222;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: var(--primary-color);
  }


  .indexProduct,
  .indexApply,
  .indexNews {
    padding: 40px 0;
  }

  .indexPro_tl h3,
  .indexAbout_left h2 {
    font-size: 24px;
  }

  .indexTitle {
    margin-bottom: 20px;
  }

  .indexTitle h2,
  .indexTitle h1 {
    font-size: 30px;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;
  }

  .indexTitle p {
    text-align: center;
  }

  .indexPro_tr a {
    padding: 8px 45px;
    line-height: 28px;
    font-size: 18px;
  }

  .indexAbout_left {
    padding-bottom: 30px;
  }

  .indexAbout_left h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .indexAbout_left {
    padding-right: 0;
  }

  .indexAbout_left>p,
  .indexAbout_box {
    margin-bottom: 15px;
  }

  .indexAbout_btn a {
    padding: 8px 35px;
    line-height: 28px;
    font-size: 16px;
  }

  .cw,
  .bo::before,
  .bo::after {
    width: 80px;
    height: 80px;
  }

  .cw i {
    font-size: 40px;
  }


  .videobox {
    width: 90%;
    margin: 0 auto;
    max-height: auto;
    min-height: 350px;
  }

  .videobox iframe {
    width: 100%;
    max-height: auto;
    min-height: 350px;
  }

  .iapply_box {
    width: 100%;
  }

  .indexApply .row>div:nth-child(1) {
    margin-top: 0;
  }

  .iapply_des {
    padding: 25px 25px 35px;
  }

  .iapply_des h3 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .iapply_des p {
    font-size: 18px;
  }

  .indexCon {
    padding: 60px 0;
  }

  .indexCon_main {
    padding-left: 0;
  }

  .indexCon_main .indexTitle {
    align-items: center;
  }

  .indexCon_main>p,
  .indexCon_main .row>div {
    margin-bottom: 20px !important;
  }

  .indexCon::after {
    display: none;
  }

  .iNews_des h3 {
    font-size: 28px;
  }

  .iNews_btn {
    text-align: center;
  }

  .iNews_btn a {
    width: auto;
    font-size: 18px;
    padding: 10px 20px;
    display: inline-block;
  }

  .indexNews .row>div:nth-last-child(1) {
    margin-bottom: 0;
  }

  .indexHonor .indexTitle {
    margin-bottom: 30px;
  }

  .indexHonor {
    padding-bottom: 40px;
  }

  .swiperbtns {
    display: none;
  }

  .footer_top {
    padding: 40px 0 30px;
  }

  .footerTitle {
    font-size: 26px;
    margin-bottom: 8px;
    min-height: auto;
  }

  .footer_con {
    padding: 0;
  }

  .footer_con .footer_box p:nth-child(1) {
    margin-bottom: 0;
  }

  .footer_top .public_ad_header_social_media {
    margin-top: 20px;
    gap: 20px;
  }

  .footer_top .public_ad_header_social_media a {
    display: block;
    height: 30px;
  }

  .public_ad_header_social_media a i {
    font-size: 22px;
  }

  .footer_box {
    margin-bottom: 30px;
  }

  .footer_bot {
    padding-top: 10px;
    padding-bottom: 90px;
    line-height: 1.3;
  }

  .bottomDiv a:hover {
    color: var(--second-color);
  }
}

@media (min-width:768px) and (max-width:991px) {
  .bg-dark {
    background-color: #fff !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .navbar-toggler {
    background-color: var(--primary-color);
  }

  .btn:hover {
    background-color: #333 !important;
    border-color: #333 !important;
  }

  .text-bg-dark {
    background-color: #fff !important;
  }

  .navbar-nav .show>.nav-link,
  .navbar-nav .nav-link.active {
    color: #111;
    font-weight: bold;
  }

  .nav-link {
    color: #111;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: #111;
  }

  .btn-close {
    --bs-btn-close-white-filter: auto;
  }

  .dropdown-menu-dark {
    --bs-dropdown-bg: transparent;
  }

  .dropdown-item {
    color: #222;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: var(--primary-color);
  }

  .indexProduct,
  .indexApply,
  .indexNews {
    padding: 50px 0;
  }

  .indexPro_tl h3,
  .indexAbout_left h2 {
    font-size: 26px;
  }

  .indexTitle h2,
  .indexTitle h1 {
    font-size: 32px;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;
  }

  .indexTitle p {
    text-align: center;
  }

  .indexPro_tr a {
    padding: 8px 45px;
    font-size: 20px;
  }


  .indexAbout_left h3 {
    font-size: 22px;
  }

  .indexAbout_left>p,
  .indexAbout_box {
    margin-bottom: 15px;
  }

  .indexAbout_btn a {
    padding: 8px 35px;
    line-height: 28px;
    font-size: 16px;
  }

  .cw,
  .bo::before,
  .bo::after {
    width: 80px;
    height: 80px;
  }

  .cw i {
    font-size: 40px;
  }


  .videobox {
    width: 90%;
    margin: 0 auto;
    max-height: auto;
    min-height: 400px;
  }

  .videobox iframe {
    width: 100%;
    max-height: auto;
    min-height: 400px;
  }

  .iapply_box {
    width: 100%;
  }

  .iapply_des {
    padding: 25px 25px 35px;
  }

  .iapply_des h3 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .iapply_des p {
    font-size: 18px;
  }

  .indexCon {
    padding: 60px 0;
  }

  .indexCon_main {
    padding-left: 0;
  }

  .indexCon_main .indexTitle {
    align-items: center;
  }

  .indexCon_main>p,
  .indexCon_main .row>div {
    margin-bottom: 20px !important;
  }

  .indexCon::after {
    display: none;
  }

  .iNews_des h3 {
    font-size: 28px;
  }

  .iNews_btn {
    text-align: center;
  }

  .iNews_btn a {
    width: auto;
    font-size: 18px;
    padding: 10px 20px;
    display: inline-block;
  }

  .indexNews .row>div:nth-last-child(1) {
    margin-bottom: 0;
  }

  .indexHonor .indexTitle {
    margin-bottom: 30px;
  }

  .indexHonor {
    padding-bottom: 50px;
  }

  .swiperbtns {
    display: none;
  }

  .footer_top {
    padding: 60px 0 40px;
  }

  .footerTitle {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .footer_con {
    padding: 0;
  }

  .footer_con .footer_box p:nth-child(1) {
    margin-bottom: 0;
  }

  .footer_top .public_ad_header_social_media {
    margin-top: 20px;
    gap: 20px;
  }

  .footer_top .public_ad_header_social_media a {
    display: block;
    height: 30px;
  }

  .public_ad_header_social_media a i {
    font-size: 22px;
  }

  .footer_box {
    margin-bottom: 30px;
  }

  .footer_bot {
    padding-top: 10px;
    padding-bottom: 90px;
    line-height: 1.8;
  }

  .bottomDiv a:hover {
    color: var(--second-color);
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .bg-dark {
    background-color: #fff !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .navbar-toggler {
    background-color: var(--primary-color);
  }

  .btn:hover {
    background-color: #333 !important;
    border-color: #333 !important;
  }

  .text-bg-dark {
    background-color: #fff !important;
  }

  .navbar-nav .show>.nav-link,
  .navbar-nav .nav-link.active {
    color: #111;
    font-weight: bold;
  }

  .nav-link {
    color: #111;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: #111;
  }

  .btn-close {
    --bs-btn-close-white-filter: auto;
  }

  .dropdown-menu-dark {
    --bs-dropdown-bg: transparent;
  }

  .dropdown-item {
    color: #222;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: var(--primary-color);
  }

  .indexProduct,
  .indexApply,
  .indexNews {
    padding: 50px 0;
  }

  .indexPro_tl h3,
  .indexAbout_left h2 {
    font-size: 26px;
  }

  .indexTitle h2,
  .indexTitle h1 {
    font-size: 32px;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;
  }

  .indexTitle p {
    text-align: center;
  }

  .indexPro_tr a {
    padding: 8px 45px;
    font-size: 20px;
  }


  .indexAbout_left h3 {
    font-size: 22px;
  }

  .indexAbout_left>p,
  .indexAbout_box {
    margin-bottom: 15px;
  }

  .indexAbout_btn a {
    padding: 8px 35px;
    line-height: 28px;
    font-size: 16px;
  }

  .cw,
  .bo::before,
  .bo::after {
    width: 80px;
    height: 80px;
  }

  .cw i {
    font-size: 40px;
  }


  .videobox {
    width: 90%;
    margin: 0 auto;
    max-height: auto;
    min-height: 500px;
  }

  .videobox iframe {
    width: 100%;
    max-height: auto;
    min-height: 500px;
  }

  .iapply_box {
    width: 100%;
  }

  .iapply_des {
    padding: 25px 25px 35px;
  }

  .iapply_des h3 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .iapply_des p {
    font-size: 18px;
  }

  .indexCon {
    padding: 60px 0;
  }

  .indexCon_main {
    padding-left: 0;
  }

  .indexCon_main .indexTitle {
    align-items: center;
  }

  .indexCon_main>p,
  .indexCon_main .row>div {
    margin-bottom: 20px !important;
  }

  .iNews_des h3 {
    font-size: 28px;
  }

  .iNews_btn {
    text-align: center;
  }

  .iNews_btn a {
    width: auto;
    font-size: 18px;
    padding: 10px 20px;
    display: inline-block;
  }

  .indexNews .row>div:nth-last-child(1) {
    margin-bottom: 0;
  }

  .indexHonor .indexTitle {
    margin-bottom: 30px;
  }

  .indexHonor {
    padding-bottom: 50px;
  }

  .swiperbtns {
    display: none;
  }

  .footer_top {
    padding: 60px 0 40px;
  }

  .footerTitle {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .footer_con {
    padding: 0;
  }

  .footer_con .footer_box p:nth-child(1) {
    margin-bottom: 0;
  }

  .footer_top .public_ad_header_social_media {
    margin-top: 20px;
    gap: 20px;
  }

  .footer_top .public_ad_header_social_media a {
    display: block;
    height: 30px;
  }

  .public_ad_header_social_media a i {
    font-size: 22px;
  }

  .footer_box {
    margin-bottom: 30px;
  }

  .footer_bot {
    padding-top: 10px;
    padding-bottom: 90px;
    line-height: 1.8;
  }

  .bottomDiv a:hover {
    color: var(--second-color);
  }
}

@media (min-width:1200px) and (max-width:1400px) {
  .bg-dark {
    background-color: #fff !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .navbar-toggler {
    background-color: var(--primary-color);
  }

  .btn:hover {
    background-color: #333 !important;
    border-color: #333 !important;
  }

  .text-bg-dark {
    background-color: #fff !important;
  }

  .navbar-nav .show>.nav-link,
  .navbar-nav .nav-link.active {
    color: #111;
    font-weight: bold;
  }

  .nav-link {
    color: #111;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: #111;
  }

  .btn-close {
    --bs-btn-close-white-filter: auto;
  }

  .dropdown-menu-dark {
    --bs-dropdown-bg: transparent;
  }

  .dropdown-item {
    color: #222;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: var(--primary-color);
  }

  .nav_wrap{
    flex: 0 0 85%;
  }

  .headernav_box {
    flex: 0 0 5%;
  }


  .videobox {
    width: 90%;
    margin: 0 auto;
    max-height: auto;
    min-height: 500px;
  }

  .videobox iframe {
    width: 100%;
    max-height: auto;
    min-height: 500px;
  }

  .indexTitle h2,
  .indexTitle h1,
  .indexAbout_left h2 {
    font-size: 36px;
  }

  .indexHonor .container,
  .ihonorSwiper {
    max-width: 1050px !important;
  }

  .cw,
  .bo::before,
  .bo::after {
    width: 100px;
    height: 100px;
  }

  .iNews_btn a {
    font-size: 24px;
  }

  .iapply_des {
    padding: 35px 35px 50px;
  }

  .iapply_des h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media (min-width:1401px) and (max-width:1680px) {
  .videobox {
    width: 88%;
    margin: 0 auto;
    max-height: auto;
    min-height: 600px;
  }

  .videobox iframe {
    width: 100%;
    max-height: auto;
    min-height: 600px;
  }

  .indexHonor .container,
  .ihonorSwiper {
    max-width: 1150px !important;
  }
}