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

}

.indexTitle1 {
  color: #000;
  font-size: 40px;
  text-align: center;
  font-weight: bolder;
  line-height: 1.2;
  transition: all ease 2s .7s;
  opacity: 1;
  transform: translateY(0);
  word-break: keep-all !important;
  letter-spacing: 0px;
  word-wrap: break-word;
  word-break: break-all;
  width: 100%;
  z-index: 9;
  /* text-shadow: 4px 2px 6px rgb(0 0 0 / 0.3); */
}

.indexTitle2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 68px;
  text-align: center;
  line-height: 1;
  text-shadow: 3px 0 10px rgb(22 78 145 / 0%);
  transition: all ease 2s .5s;
  opacity: 0.5;
  margin-top: -3.5%;
  transform: translateY(0);
  font-family: Impact !important;
  letter-spacing: 3px;
  background-image: linear-gradient(to top, transparent 5%, rgba(230, 233, 235, 0.2) 20%, #dfdfdf94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  word-wrap: break-word;
  word-break: break-all;

}

.indexTitle2::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 3px;
  background-image: linear-gradient(to right, transparent 5%, rgba(230, 233, 235, 0.2) 20%, #dfdfdfd6);
  top: 50%;
  left: -270px;
  opacity: 0.4;
}

.indexTitle2::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 3px;
  background-image: linear-gradient(to left, transparent 5%, rgba(230, 233, 235, 0.2) 20%, #dfdfdfd6);
  top: 50%;
  right: -270px;
  opacity: 0.4;
}


.index_service {
  padding: 120px 0 60px;
}

.iService_box {
  position: relative;
  overflow: hidden;
}

.iService_box a{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.iService_Img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 115%;
  border-radius: 20px;
}

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

.iService_Img::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  content: '';
  background-image: linear-gradient(to bottom, rgba(46, 102, 206, 0.2) 20%, transparent);
  z-index: 9;
  transition: all ease 0.5s;
  opacity: 1;
}

.iService_des {
  position: absolute;
  z-index: 10;
  top: 35%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  padding: 30px;
  transition: all ease 0.5s;
}

.iService_i {
  max-width: 68px;
  margin-bottom: 50px;
}

.iService_des p {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  width: 100%;
  text-align: center;
  word-wrap: break-word;
  word-break: break-all;
}

.iService_box:hover .iService_Img::before {
  opacity: 0;
  transition: all ease 0.5s;
}

.iService_box:hover .iService_Img img {
  transform: scale(1.05);
  transition: all ease 0.5s;
}

.iService_box:hover .iService_des {
  top: 30%;
  transition: all ease 0.5s;
}


.index_product {
  padding: 60px 0;
}

.iPro_box {
  position: relative;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.5s ease;
  overflow: hidden;
}

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

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

.iProBox_a {
  position: relative;
  display: block;
  padding: 12px 15px;
}

.iPro_box p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 9999;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.iPro_box .iProBox_a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #126ad7;
  transition: all 0.5s ease;
  z-index: 99;
}

.iPro_box .iProBox_a::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: all 0.5s ease;
  z-index: 9;
}

.iPro_box:hover img {
  transform: scale(1.05);
  transition: all 0.5s ease;
}

.iPro_box:hover p {
  color: #126ad7;
}

.iPro_box:hover .iProBox_a::before {
  height: 100%;
  z-index: 99;
}

.iPro_box:hover .iProBox_a::after {
  height: 0%;
  z-index: 9;
}

.iProBox {
  margin-bottom: 30px;
}

.index_btn {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_btn a {
  display: inline-block;
  padding: 10px 65px;
  line-height: 24px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  box-shadow: inset 0px 70px 0px 0px #126ad7;
  /* background-color: #126ad7; */
  border-radius: 8px;
  transition: all ease 0.5s;
  transition-timing-function: ease;
  transition-timing-function: ease;
  transition-timing-function: ease;
}

.index_btn a:hover {
  box-shadow: inset 0px 0px 0px 2px #126ad7;
  color: #3f5ca4;
}


.index_aboutus {
  padding: 60px 0;
}

.indexAbout_main {
  background: url(../images/iabg.png);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.indexAbout_main::before {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  width: 120px;
  height: 140px;
  background-color: #126ad7;
}

.iAbout_img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 80%;
  border-radius: 20px;
}

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

.iAbout_des {
  height: 100%;
  padding-left: 3%;
  padding-right: 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.iAbout_des h6 {
  color: #616161;
  font-size: 24px;
  margin-bottom: 18px;
}

.iAbout_des h1 {
  color: #071c36;
  font-size: 48px;
  padding-bottom: 18px;
  font-weight: bold;
  margin-bottom: 70px;
  position: relative;
}

.iAbout_des h1::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 330px;
  height: 3px;
  background-color: #c7c7c7;
}

.iAbout_des p {
  color: #636363;
  font-size: 16px;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.indexAbout_bot {
  margin-top: 100px;
}

.iAbout_num {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
      justify-content: flex-start;
    gap: 18px;
    height: 100%;
}

.iAbout_num h6 {
  text-align: center;
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  line-height: 1;
      height: 100%;
          word-wrap: break-word;
    word-break: break-all;
}

.iAbout_numbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 56px;
  line-height: 1;
  color: #126ad7;
  font-weight: bold;
}

.iAbout_num p {
  line-height: 1;
  font-size: 18px;
  color: #2b447e;
  text-align: center;
}


.index_news {
  padding: 60px 0;
}

.iNews_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #95a1be;
}

.iNews_tab {
  display: flex;
  align-items: center;
  gap: 110px;
}

.iNews_title {
  color: #071c36;
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
}

.iNews_tab h4 {
  padding: 10px 54px;
  line-height: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #2b447e;
  /* border: 1px solid #2b447e; */
  box-shadow: inset 0px 0px 0px 1px #2b447e;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all ease 0.5s;
  transition-timing-function: ease;
  transition-timing-function: ease;
  transition-timing-function: ease;
}

.iNews_tab h4:hover,
.iNews_tab h4.active {
  color: #fff;
  /* background-color: #126ad7;
  border: 1px solid #126ad7; */
  box-shadow: inset 0px 70px 0px 0px #126ad7;
}

.iNews_bot {
  padding: 70px 50px 0;
}

.iNews_result {
  display: none;
}

.iNews_result.active {
  display: block;
}

.inewsBox {
  overflow: hidden;
}

.inews_img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 74%;
  border-radius: 15px;
}

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

.inews_img::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

.inews_des {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
  padding: 30px 20px 40px;
  z-index: 10;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.inews_des h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;

}

.inews_des p {
  font-size: 18px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;

}

.inews_desbtn {
  position: absolute;
  bottom: 30px;
  top: auto;
  left: -75%;
  right: auto;
  width: 70%;
  opacity: 0;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  z-index: 11;
  overflow: hidden;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
  display: block;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.inews_desbtn a {
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.3;
  width: 100%;
  text-align: center;
  color: #2b447e;
  font-weight: bold;
  word-wrap: break-word;
  word-break: break-all;
}

.inewsBox:hover .inews_desbtn {
  left: 0;
  opacity: 1;
}

.inewsBox:hover .inews_des {
  padding-bottom: 85px;
}

.iNewstSwiper,
.iNewsoSwiper {
  padding-bottom: 90px;
}

.iNews_result .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #2b447e;
  opacity: 1;
  margin: 0 6px !important;
}

.iNews_result .swiper-pagination-bullet-active {
  background-color: #2b447e;
}


.indexContact {
  padding: 60px 0 100px;
}

.indexContact .row>* {
  padding: 0;
}

.indexContact_img {
  height: 100%;
}

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

.indexContact_form {
  height: 100%;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: -1;
  padding-top: 30px;
}

.indexContact_form>div {
  position: relative;
  z-index: 9;
}

.inewsTitle {
  justify-content: start;
  margin-bottom: 20px;
  padding: 0 8%;
}

.inewsTitle h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}

.indexContact_form .list {
  padding: 0 8%;
}

.indexContact_form .yandex-form #form .list p {
  line-height: 1.5;
}

.indexContact_form .yandex-form #form .list input {
  padding: 6px 5px 6px 10px;
  border: none;
  background-color: transparent;
  border-bottom: solid #dedede 1px;
  color: #666;
}

.indexContact_form .yandex-form #form .list input::placeholder {
  color: #bbb;
}

.indexContact_form .yandex-form #form .list textarea {
  height: 100px;
  border: none;
  color: #666;
  background-color: transparent;
  border-bottom: solid #dedede 1px;
}

.indexContact_form .yandex-form #form .list textarea::placeholder {
  color: #bbb;
}

.indexContact_form .yandex-form #form #submit {
  font-weight: bold;
  border: none;
  line-height: 4;
  font-size: 18px;
  margin-bottom: 0;
}

.iContxt {
  padding-top: 100px;
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.iContxt h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  color: #071c36;
  text-align: center;
}

.iContxt p {
  font-size: 20px;
  color: #636363;
  text-align: center;
}


.footer {
  background-color: #043E50E5;
}

.footer_top {
  padding: 100px 0;
}

.footTop_box h3 {
  font-size: 18px;
  font-weight: bold;
  color: #E9C46A;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footTop_box p a,
.footTop_box li a,
.footTop_email p a {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  font-weight: bold;
  transition: all ease 0.3s;
}

.footTop_box p a:hover,
.footTop_box li a:hover,
.footTop_email p a:hover {
  opacity: 1;
  /* color: #126ad7; */
}

.footTop_box p,
.footTop_box li{
  margin-bottom: 15px;
}

.footTop_box p:nth-last-child(1) {
  margin-bottom: 0;
}

.footTop_rbox {
  margin-bottom: 30px;
}

.footTop_rbox h3 {
  font-size: 18px;
  font-weight: bold;
  color: #E9C46A;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footTop_rbox p {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  font-weight: bold;
}

.footTop_con {
  display: flex;
  margin-bottom: 15px;
}

.footTop_con h3 {
  flex: 0 0 40%;
  font-size: 18px;
  font-weight: bold;
  color: #E9C46A;
  margin-bottom: 10px;
}

.footTop_con p {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  font-weight: bold;
}

.footTop_email {
  flex-direction: column;
}

.footTop_email p {
  flex-direction: row;
  gap: 10px;
  opacity: 1;
}

/* .footTop_box {
  height: 100%;
} */

.footVideo {
  /* height: calc(100% - 80px); */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.footTop_boxt {
  margin-bottom: 30px;
}

.footTop_boxt .footVideo {
  gap: 30px;
  justify-content: flex-start;
}

.footTop_boxt a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footTop_boxt img {
  height: 40px;
}

.footVideo img {
  /* height: 45px; */
  object-fit: cover;
  margin-bottom: 20px;
}

.footVideo a {
  color: #fff;
}

.footVideo a span {
  font-size: 16px;
  font-weight: bold;
  opacity: 0.7;
  transition: all ease 0.3s;
}

.footVideo a:hover span {
  opacity: 1;
  /* color: #126ad7;/ */
}

.footer_bot {
  border-top: 1px solid #ffffff;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

/* shi pei */
@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: #126ad7;
  }

  .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: #f1f1f1;
    color: #333;
  }

  .indexTitle {
    margin-bottom: 60px;
  }

  .indexTitle1 {
    font-size: 30px;
    z-index: 999;
  }

  .indexTitle2::after,
  .indexTitle2::before {
    display: none;
  }

  .indexTitle2 {
    font-size: 32px;
    margin-top: -12%;
  }
  

  .banner .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 10px !important;
  }

  .banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
  }

  .index_service {
    padding: 40px 0 0;
  }

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

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

  .index_product {
    padding: 30px 0;
  }

  .iProBox:nth-child(n+7) {
    /*display: none;*/
  }

  .index_btn {
    margin-top: 15px;
  }

  .index_btn a {
    padding: 10px 60px;
    font-size: 16px;
  }

  .index_aboutus {
    padding: 15px 0;
  }

  .indexAbout_main {
    padding-top: 30px;
  }

  .iAbout_des {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 40px
  }

  .iAbout_des h6 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .iAbout_des h1 {
    font-size: 30px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .iAbout_des h1::before {
    width: 270px;
  }

  .indexAbout_main::before {
    width: 50px;
    height: 30px;
  }

  .indexAbout_bot {
    margin-top: 30px;
  }

  .iAbout_num {
    padding: 0 0 28px;
    gap: 15px;
  }

  .iAbout_num h6 {
    font-size: 20px;
  }

  .iAbout_numbox {
    font-size: 32px;
  }

  .index_news {
    padding: 0;
  }

  .iNews_title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .iNews_top {
    flex-direction: column;
  }

  .iNews_tab {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  .iNews_tab h4 {
    padding: 8px 24px;
    font-size: 16px;
  }

  .iNews_bot {
    padding: 35px 0px 0;
  }

  .iNewstSwiper,
  .iNewsoSwiper {
    padding-bottom: 55px;
  }

  .indexContact {
    padding: 30px 0 50px;
  }

  .indexContact .row {
    width: 100%;
    margin: auto;
  }

  .indexContact_form {
    padding-top: 35px;
  }

  .indexContact_form .yandex-form #form #submit {
    line-height: 3;
  }

  .iContxt {
    padding-top: 50px;
    width: 100%;
    gap: 20px;
  }

  .iContxt h2 {
    font-size: 28px;
  }

  .iContxt p {
    line-height: 1.3;
  }

  .footer {
    padding-bottom: 80px;
  }

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

  .footerLeft {
    display: none;
  }

  .footTop_email p {
    gap: 5px;
    flex-wrap: wrap;
  }

  .footVideo {
    height: auto;
    gap: 30px;
  }

  .footVideo img {
    margin-bottom: 10px;
    width: 130px;
    max-width: 180px;
  }

  .footTop_box h3 {
    margin-bottom: 12px;
  }

  .footer_bot {
    font-size: 16px;
  }

  .footTop_last {
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
  }

  .footTop_boxt {
    margin-bottom: 0;
  }

  .footTop_boxt .footVideo img {
    height: 35px;
    width: auto;
  }
}

@media (min-width:480px) and (max-width:575px) {
  .indexTitle {
    margin-bottom: 50px;
  }

  .indexTitle1 {
    font-size: 30px;
    z-index: 999;
  }

  .indexTitle2 {
    font-size: 32px;
    margin-top: -8%;
  }

  .index_service .indexTitle {
    margin-bottom: 30px;
  }
  
  .inews_des h2 {
        -webkit-line-clamp: 1;
    }
    
    .inews_desbtn {
    left: -85%;
    width: 85%;
    bottom: 18px;
    }
    
    .inewsBox:hover .inews_des {
        padding-bottom: 65px;
    }
}

@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: #126ad7;
  }

  .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: #f1f1f1;
    color: #333;
  }

  .indexTitle {
    margin-bottom: 50px;
  }

  .indexTitle1 {
    font-size: 32px;
    z-index: 999;
  }

  .indexTitle2::after,
  .indexTitle2::before {
    display: none;
  }

  .indexTitle2 {
    font-size: 38px;
    margin-top: -6%;
  }

  .banner .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 10px !important;
  }

  .banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
  }
  
  .inews_des h2 {
    -webkit-line-clamp: 1;
  }



  .index_service {
    padding: 45px 0 0;
  }

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

  .index_product {
    padding: 30px 0;
  }

  .iProBox:nth-child(n+7) {
    /*display: none;*/
  }

  .index_btn {
    margin-top: 15px;
  }

  .index_btn a {
    padding: 10px 60px;
    font-size: 16px;
  }

  .index_aboutus {
    padding: 15px 0;
  }

  .indexAbout_main {
    padding-top: 30px;
  }

  .iAbout_des {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 40px
  }

  .iAbout_des h6 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .iAbout_des h1 {
    font-size: 30px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .indexAbout_main::before {
    width: 50px;
    height: 30px;
  }

  .indexAbout_bot {
    margin-top: 30px;
  }

  .iAbout_num {
    padding: 0 0 28px;
    gap: 15px;
  }

  .iAbout_num h6 {
    font-size: 22px;
  }

  .iAbout_numbox {
    font-size: 36px;
  }

  .index_news {
    padding: 30px 0 0;
  }

  .iNews_title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .iNews_top {
    flex-direction: column;
  }

  .iNews_tab {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  .iNews_tab h4 {
    padding: 8px 24px;
    font-size: 16px;
  }

  .iNews_bot {
    padding: 35px 0px 0;
  }

  .iNewstSwiper,
  .iNewsoSwiper {
    padding-bottom: 55px;
  }

  .indexContact {
    padding: 30px 0 50px;
  }

  .indexContact .row {
    width: 100%;
    margin: auto;
  }

  .indexContact_form {
    padding-top: 35px;
  }

  .indexContact_form .yandex-form #form #submit {
    line-height: 3;
  }

  .iContxt {
    padding-top: 50px;
    width: 90%;
    gap: 20px;
  }

  .iContxt h2 {
    font-size: 28px;
  }

  .iContxt p {
    line-height: 1.3;
  }

  .footer {
    padding-bottom: 80px;
  }

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

  .footerLeft {
    padding-bottom: 30px;
  }

  .footTop_email p {
    gap: 5px;
    flex-wrap: wrap;
  }

  .footVideo {
    gap: 30px;
  }

  .footVideo img {
    margin-bottom: 10px;
    max-width: 120px;
  }

  .footTop_box h3 {
    margin-bottom: 12px;
  }

  .footer_bot {
    font-size: 16px;
  }

  .footTop_last {
    flex-direction: row;
    display: flex;
    gap: 50px;
  }
  .footTop_boxt .footVideo {
    gap: 15px;
  }
}

@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: #126ad7;
  }

  .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: #f1f1f1;
    color: #333;
  }

  .indexTitle1 {
    font-size: 40px;
  }

  .indexTitle2::after,
  .indexTitle2::before {
    display: none;
  }

  .indexTitle2 {
    font-size: 60px;
    /* margin-top: -15%; */
  }

  .indexTitle {
    margin-bottom: 60px;
  }

  .indexTitle1 {
    font-size: 32px;
    z-index: 999;
  }

  .indexTitle2::after,
  .indexTitle2::before {
    display: none;
  }

  .indexTitle2 {
    font-size: 34px;
    margin-top: -5%;
  }
  
  .inews_des h2 {
    -webkit-line-clamp: 1;
  }.inews_desbtn {
    left: -80%;
    width: 80%;
   bottom: 15px; 
  }

    .inewsBox:hover .inews_des {
    padding-bottom: 65px;
}

  .index_service {
    padding: 60px 0 60px;
  }

  .iService_i {
    max-width: 45px;
    margin-bottom: 20px;
  }

  .iService_des p {
    font-size: 16px;
    transition: all ease 0.5;
    opacity: 0;
  }

  .iService_box:hover .iService_des {
    top: 0;
    transition: all ease 0.5s;
    height: 100%;
  }

  .iService_box:hover .iService_des p {
    opacity: 1;
    transition: all ease 0.5;
  }

  .index_product {
    padding: 20px 0;
  }

  .iProBox:nth-child(n+7) {
    display: none;
  }

  .index_btn {
    margin-top: 20px;
  }

  .index_aboutus {
    padding: 40px 0;
  }

  .iAbout_des {
    padding: 40px 0 50px 0;
  }

  .iAbout_des h6 {
    margin-bottom: 10px;
  }

  .iAbout_des h1 {
    font-size: 38px;
    padding-bottom: 14px;
    margin-bottom: 30px;
  }

  .indexAbout_main::before {
    width: 60px;
    height: 50px;
  }

  .indexAbout_bot {
    margin-top: 40px;
  }

  .iAbout_num h6 {
    font-size: 20px;
  }

  .iAbout_numbox {
    font-size: 38px;
  }

  .iAbout_num {
    padding: 20px 10px;
    gap: 15px;
  }

  .index_news {
    padding: 10px 0;
  }

  .iNews_tab {
    gap: 16px;
  }

  .iNews_title {
    font-size: 30px;
  }

  .iNews_tab h4 {
    padding: 10px 25px;
    font-size: 16px;
  }

  .iNews_bot {
    padding: 40px 0 0;
  }

  .iNewstSwiper,
  .iNewsoSwiper {
    padding-bottom: 60px;
  }

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

  .iContxt {
    padding-top: 60px;
  }

  .iContxt h2 {
    font-size: 36px;
  }

  .indexContact_form .yandex-form #form #submit {
    line-height: 3;
  }

  .indexContact_form {
    padding-top: 30px;
  }

  .yandex-form #form .list {
    margin-bottom: 12px;
  }


  .footer {
    padding-bottom: 80px;
  }

  .footer_top {
    padding: 70px 0 50px;
  }

  .footerLeft {
    padding-bottom: 40px;
  }

  .footTop_email p {
    gap: 5px;
    flex-wrap: wrap;
  }

  .footVideo {
    gap: 30px;
  }

  .footVideo img {
    margin-bottom: 10px;
    height: 35px;
  }

  .footTop_box h3 {
    margin-bottom: 12px;
  }

  .footTop_boxt .footVideo {
    gap: 15px;
  }

}

@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: #126ad7;
  }

  .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: #f1f1f1;
    color: #333;
  }

  .indexTitle {
    margin-bottom: 50px;
  }

  .indexTitle1 {
    font-size: 40px;
  }

  .indexTitle2::after,
  .indexTitle2::before {
    display: none;
  }

  .indexTitle2 {
    font-size: 60px;
    margin-top: -6%;
  }
  
  .inews_des h2 {
    -webkit-line-clamp: 1;
  }

  .index_service {
    padding: 70px 0 60px;
  }

  .iService_i {
    margin-bottom: 20px;
  }

  .iService_des p {
    font-size: 16px;
    transition: all ease 0.5;
    opacity: 0;
  }

  .iService_box:hover .iService_des {
    top: 15%;
    transition: all ease 0.5s;
    height: 100%;
  }

  .iService_box:hover .iService_des p {
    opacity: 1;
    transition: all ease 0.5;
  }

  .index_product {
    padding: 20px 0;
  }

  .iProBox:nth-child(n+9) {
    display: none;
  }

  .index_btn {
    margin-top: 30px;
  }

  .iAbout_des h6 {
    margin-bottom: 12px;
  }

  .iAbout_des h1 {
    font-size: 36px;
    padding-bottom: 12px;
    margin-bottom: 30px;
  }

  .iAbout_des {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .indexAbout_main::before {
    width: 80px;
    height: 100px;
  }

  .indexAbout_bot {
    margin-top: 60px;
  }

  .iAbout_numbox {
    font-size: 46px;
  }

  .index_news {
    padding: 0;
  }

  .iNews_tab {
    gap: 15px;
  }

  .iNews_bot {
    padding: 60px 50px 0;
  }

  .iNewstSwiper,
  .iNewsoSwiper {
    padding-bottom: 70px;
  }

  .indexContact {
    padding: 60px 0 80px;
  }

  .iContxt {
    padding-top: 70px;
  }

  .iContxt h2 {
    font-size: 40px;
  }

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

  .footVideo {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer {
    padding-bottom: 80px;
  }

  .footVideo img {
    max-width: 80px;
  }

}

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

  .navbar-toggler {
    background-color: #126ad7;
  }

  .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: #f1f1f1;
    color: #333;
  }

  .indexTitle {
    margin-bottom: 70px;
  }

  .indexTitle2 {
    font-size: 60px;
    margin-top: -4.5%;
  }

  .indexTitle2::before,
  .indexTitle2::after {
    display: none;
  }
  
  
  
  .inews_des h2 {
    font-size: 20px;
        -webkit-line-clamp: 1;
  }
  
  .inewsBox:hover .inews_des {
    padding-bottom: 68px;
    }
    
    .inews_desbtn {
        bottom: 18px;
        left: -83%;
    width: 83%;
    }

  .index_service {
    padding: 90px 0 40px;
  }

  .index_btn {
    margin-top: 40px;
  }

  .index_aboutus {
    padding: 30px 0;
  }

  .iAbout_des {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .iAbout_des h1 {
    font-size: 42px;
    padding-bottom: 14px;
    margin-bottom: 35px;
  }

  .indexAbout_bot {
    margin-top: 80px;
  }

  .iAbout_numbox {
    font-size: 50px;
  }

  .iNews_tab {
    gap: 30px;
  }

  .iNewstSwiper,
  .iNewsoSwiper {
    padding-bottom: 70px;
  }

  .indexContact {
    padding: 30px 0 90px;
  }

  .iContxt {
    padding-top: 90px;
  }

  .iContxt h2 {
    font-size: 44px;
  }

  /* .footVideo img{
    max-width: 10px;
  } */

  .footer_top {
    padding: 100px 0 80px;
  }

  .headernav_box input {
    min-width: 120px;
    width: 120px;
  }

  .footTop_boxt .footVideo img {
    height: 30px;
    width: auto;
  }

  .footTop_boxt .footVideo {
    gap: 10px;
  }

  .footVideo a span {
    font-size: 14px;
  }

}

@media (min-width:1441px) and (max-width:1680px) {

  .indexTitle1 {
    width: calc(100vw - 300px);
  }

  .indexTitle2 {
    width: calc(100vw - 300px);
    font-size: 68px;
  }

  .indexTitle2::before,
  .indexTitle2::after {
    width: 150px;
  }

  .footer_top {
    padding-bottom: 80px;
  }

  .footTop_boxt .footVideo {
    gap: 15px;
  }

  .footTop_boxt img {
    height: 35px;
  }
}

@media (min-width:1200px) {
  .index_product .row .col-xxl-2 {
    width: 20%;
  }
}

@media (min-width:1440px) {
  .indexTitle {
    width: 98vw;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }
}