.fp-warning,
.fp-watermark {
  display: none;
}

#fp-nav.fp-right {
  left: 17px;
  right: auto;
}

#fullpage .fp-table {
  justify-content: flex-end;
}

#fullpage .section>section {
  height: 100vh;
}

#fullpage .section {
  transition: all, transform 1000ms ease, opacity 1000ms ease !important;
  transition-delay: 200ms;
  transform: translate3d(0, 0, 0) scale(0.9) skew(0, 0) rotate3d(0, 0, 0, 0deg) !important;
  opacity: 1;
  backface-visibility: hidden;
}

#fullpage .section.active {
  visibility: visible;
  z-index: 1;
  transition-delay: 1000ms !important;
  transition-timing-function: ease;
  transform-origin: 50% 50%;
  transform: translate3d(0, 0, 0) scale(1) skew(0, 0) rotate3d(0, 0, 0, 0deg) !important;
}


#fp-nav ul li a span:nth-last-child(1) {
  display: block;
  opacity: 1 !important;
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 10px 0 !important;
  position: relative;
}

#fp-nav ul li a.active span:nth-last-child(1)::before {
  content: "";
  position: absolute;
  left: -1px;
  right: 0;
  top: -1px;
  bottom: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ddd;
  animation: scale 2s infinite;
}


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

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


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

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

.indexAbout_des {
  width: 40%;
  position: absolute;
  right: -40%;
  bottom: 0;
  left: auto;
  top: auto;
  padding: 60px 6% 60px 80px;
  background-color: #d8000f;
  border-top-left-radius: 40px;
  transition: all ease 0.5s;
  transition-delay: 500ms;
}

#fullpage .section.active .indexAbout_des {
  left: auto;
  right: 0;
}

.indexAbout_des h1 {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.indexAbout_des p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin: 20px 0 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.indexBtn a {
  position: relative;
  display: inline-block;
  width: 200px;
  padding: 10px 30px;
  background-color: #fff;
  color: #111;
  font-size: 16px;
  line-height: 20px;
  z-index: 0;
  text-align: center;
  transition: all ease 0.3s;
}

.indexBtn a::after {
  background: #eee;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  width: 100%;
  z-index: -1;
}

.indexBtn a:hover {
  letter-spacing: 2px;
}

.indexBtn a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.indexProduct {
  /* padding: 80px 0 60px; */
  overflow: hidden;
  height: calc(100vh - 136px);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.indexTitle h2 {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  position: relative;
  z-index: 1;
}

.indexTitle h2::before {
  position: absolute;
  content: '';
  left: -8px;
  bottom: 3px;
  right: auto;
  top: auto;
  width: 110px;
  height: 10px;
  background-color: #d8000f;
  transform: skew(-20deg);
  z-index: -2;
}

.iPro_box {
  background-color: #eaeaea;
  padding: 20px;
}

.iPro_img {
  border: 2px solid #fff;
  background-color: #fff;
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 80%;
}

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

.iPro_des {
  padding: 20px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iPro_des h3 {
  font-size: 30px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.iPro_des p {
  font-size: 16px;
  color: #818181;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.iPro_des .indexBtn a {
  background-color: #d8000f;
  padding: 12px 30px;
  font-size: 17px;
  color: #fff;
}

.iPro_des .indexBtn a::after {
  background: #f5999a;
}

.iPro_box:hover img {
  transform: scale(1.05);
}

#fullpage .section:nth-child(n+4) {
  background-color: #f6f6f6;
}

.indexNews {
  background-color: #f6f6f6;
  /* padding: 70px 0 60px; */
  overflow: hidden;
  height: calc(100vh - 136px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iNew_box {
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid #828282;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.iNew_box h3 {
  font-size: 24px;
  color: #000;
  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;
}

.iNew_box h3:hover {
  color: #d8000f;
}

.iNew_box p {
  font-size: 15px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

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

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

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

footer {
  border-top: 1px solid #cecece;
  background-color: #f6f6f6;
}

.footerLeft {
  padding: 100px 0 150px;
  padding-right: 10%;
  border-right: 1px solid #cecece;
}

.footerLeft_top {
  padding-bottom: 60px;
  border-bottom: 1px solid #cecece;
  margin-bottom: 70px;
}

.footerLeft_top h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

.footerSearch {
  display: flex;
  align-items: center;
}

.footerSearch form {
  flex: 0 60%;
  width: 100%;
  position: relative;
}

.footerSearch form input {
  width: 100%;
  border: none;
  font-size: 24px;
  padding: 13px 50px 13px 25px;
  line-height: 1;
  color: #333;
}

.footerSearch form input::placeholder {
  color: #a7a7a7;
}

.footerSearch form button {
  background-color: #fff;
  border: none;
  padding: 0 15px;
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerSearch form button i {
  font-size: 26px;
  color: #a7a7a7;
}

.footerSearch p {
  flex: 0 40%;
  padding-left: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.footerSearch span,
.footerSearch a {
  font-size: 16px;
  color: #000;
  margin-right: 20px;
  transition: all ease 0.3s;
}

.footerSearch p a:hover {
  color: #d60329;
}

.footerNav p,
.footerCon h4 {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.footerCon h4 {
  padding-bottom: 20px;
  border-bottom: 1px solid #cecece;
  color: #d60329;
  position: relative;
}

.footerCon h4::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #d60329;
}

.footerNav a,
.footerCon p a {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  transition: all ease 0.3s;
}

.footerNav a:hover {
  padding-left: 8px;
  color: #d60329;
}

.footerCon p a:hover {
  color: #d60329;
}

.footerCon p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footerCon p i {
  font-size: 22px;
  color: #d60329;
  display: block;
  margin-right: 25px;
}

.footerRight {
  padding: 0 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footerLogo {
  /*width: 60%;*/
  margin-bottom: 60px;
}

.footerLogo img {
  width: 100%;
}

.footer_social_media {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.footer_social_media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #d60329;
  border-radius: 50%;
  margin: 0 10px 10px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid #d60329;
}

.footer_social_media a i {
  font-size: 20px;
  text-align: center;
  color: #fff;
  transition: all 0.35s ease;
  line-height: 35px;
}

.footer_social_media a:hover {
  background-color: transparent;
}

.footer_social_media a:hover i {
  color: #d60329;
}

.newslistBox {
  margin-bottom: 30px;
}

.newslistBox:nth-child(n+4) {
  margin-bottom: 0;
}

.newslistBox .iNew_box {
  border: 1px solid #ddd;
}



.footerBot{
    border-top: 1px solid #cecece;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: #333;
}

/* shi pei */
@media (max-width:576px) {

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

  .navbar-toggler {
    background-color: #d60329;
  }

  .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;
  }

  .mobile .offcanvas-body .btn {
    border: none;
  }

  .mobile .offcanvas-body .btn i {
    color: #fff;
  }

  #fullpage .section {
    transform: translate3d(0, 0, 0) scale(1) skew(0, 0) rotate3d(0, 0, 0, 0deg) !important;
  }

  #fullpage .section>section,
  .bannerimg img,
  .indexAbout img,
  .indexProduct,
  .indexNews {
    height: auto;
  }

  .indexAbout img {
    height: 60vh;
  }

  .indexAbout {
    position: relative;
  }

  .indexAbout::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.06);
    z-index: 1;
  }

  .indexAbout_des {
    width: 70%;
    right: 0;
    bottom: auto;
    top: 15px;
    padding: 30px;
    background-color: transparent;
    border-top-left-radius: 0;
    z-index: 2;
  }

  .indexAbout_des h1,
  .indexTitle h2 {
    font-size: 30px;
  }

  .indexTitle {
    margin-bottom: 30px;
  }

  .indexAbout_des p {
    margin: 15px 0 20px;
  }

  .indexBtn a {
    width: 160px;
    padding: 10px 30px !important;
  }

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

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

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

  .iPro_des {
    padding: 16px 0 8px;
    gap: 12px;
  }

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

  .iPro_des p,
  .iNew_box p {
    -webkit-line-clamp: 3;
  }

  .iNew_box {
    padding: 25px 20px;
    gap: 12px;
  }

  footer {
    padding-bottom: 80px;
  }

  .footerLeft {
    padding: 50px 0 20px;
            border-bottom: none;
        border-right: none;
        margin-bottom: 0;
  }

  .footerLeft_top h2 {
    font-size: 24px;
    margin-bottom: 26px;
  }

  .footerSearch {
    flex-direction: column;
    align-items: flex-start;
  }

  .footerSearch form input {
    font-size: 16px;
    padding: 12px 50px 12px 20px;
  }

  .footerSearch form button i {
    font-size: 24px;
  }

  .footerSearch p {
    margin-top: 14px;
    padding-left: 0;
  }

  .footerSearch span,
  .footerSearch a {
    font-size: 14px;
    margin-right: 10px;
  }

  .footerLeft_top {
    padding-bottom: 20px;
    border-bottom: 1px solid #cecece;
    margin-bottom: 30px;
  }

  .footerNav p,
  .footerCon h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footerNav {
    margin-bottom: 30px;
  }

  .footerCon p i {
    margin-right: 18px;
  }

  .footerRight {        display: none;
    padding: 0;
  }

  .footerLogo {
    width: 70%;
    margin-bottom: 26px;
  }

  .footer_social_media a {
    width: 35px;
    height: 35px;
    margin: 0 6px;
  }

  .footer_social_media a i {
    font-size: 18px;
  }

  .newslistBox:nth-child(n+4) {
    margin-bottom: 30px;
  }

  .newslistRight{
    padding: 30px 20px;
  }

}

@media (min-width:577px) and (max-width:768px) {

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

  .navbar-toggler {
    background-color: #d60329;
  }

  .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;
  }

  .mobile .offcanvas-body .btn {
    border: none;
  }

  .mobile .offcanvas-body .btn i {
    color: #fff;
  }

  #fullpage .section {
    transform: translate3d(0, 0, 0) scale(1) skew(0, 0) rotate3d(0, 0, 0, 0deg) !important;
  }

  #fullpage .section>section,
  .bannerimg img,
  .indexAbout img,
  .indexProduct,
  .indexNews {
    height: auto;
  }

  .indexAbout img {
    height: 50vh;
  }

  .indexAbout {
    position: relative;
  }

  .indexAbout::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.06);
    z-index: 1;
  }

  .indexAbout_des {
    width: 100%;
    right: 0;
    bottom: auto;
    top: 15px;
    padding: 30px;
    background-color: transparent;
    border-top-left-radius: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .indexAbout_des h1,
  .indexTitle h2 {
    font-size: 30px;
  }

  .indexTitle {
    margin-bottom: 30px;
  }

  .indexAbout_des p {
    margin: 15px 0 20px;
  }

  .indexBtn a {
    width: 160px;
    padding: 10px 30px !important;
  }

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

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

  .indexProduct .row>div:nth-child(n+3),
  .indexNews .row>div:nth-child(n+3) {
    margin-bottom: 0px;
  }

  .iPro_des {
    padding: 16px 0 8px;
    gap: 12px;
  }

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

  .iPro_des p,
  .iNew_box p {
    -webkit-line-clamp: 3;
  }

  .iNew_box {
    padding: 25px 20px;
    gap: 12px;
  }

  footer {
    padding-bottom: 80px;
  }

  .footerLeft {
    padding: 50px 0 20px;
            border-bottom: none;
        border-right: none;
        margin-bottom: 0;
  }

  .footerLeft_top h2 {
    font-size: 24px;
    margin-bottom: 26px;
  }

  .footerSearch {
    flex-direction: column;
    align-items: flex-start;
  }

  .footerSearch form input {
    font-size: 16px;
    padding: 12px 50px 12px 20px;
  }

  .footerSearch form button i {
    font-size: 24px;
  }

  .footerSearch p {
    margin-top: 14px;
    padding-left: 0;
  }

  .footerSearch span,
  .footerSearch a {
    font-size: 14px;
    margin-right: 10px;
  }

  .footerLeft_top {
    padding-bottom: 20px;
    border-bottom: 1px solid #cecece;
    margin-bottom: 30px;
  }

  .footerNav p,
  .footerCon h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footerNav {
    margin-bottom: 30px;
  }

  .footerCon p i {
    margin-right: 18px;
  }

  .footerRight {
              display: none;
    padding: 0;
    flex-direction: row;
  }

  .footerLogo {
    flex: 1;
    margin-bottom: 26px;
  }

  .footer_social_media {
    flex: 1;
    padding-left: 5%;
    justify-content: flex-start;
  }

  .footer_social_media a {
    width: 40px;
    height: 40px;
    margin: 0 6px 10px;

  }

  .footer_social_media a i {
    font-size: 20px;
  }

  .newslistBox:nth-child(n+6) {
    margin-bottom: 20px;
  }

}

@media (min-width:769px) and (max-width:992px) {

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

  .navbar-toggler {
    background-color: #d60329;
  }

  .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;
  }

  .mobile .offcanvas-body .btn {
    border: none;
  }

  .mobile .offcanvas-body .btn i {
    color: #fff;
  }

  #fullpage .section {
    transform: translate3d(0, 0, 0) scale(1) skew(0, 0) rotate3d(0, 0, 0, 0deg) !important;
  }

  #fullpage .section>section,
  .bannerimg img,
  .indexAbout img,
  .indexProduct,
  .indexNews {
    height: auto;
  }

  .indexAbout {
    position: relative;
  }

  .indexAbout::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.06);
    z-index: 1;
  }

  .indexAbout_des {
    width: 100%;
    right: 0;
    bottom: auto;
    top: 15px;
    padding: 30px;
    background-color: transparent;
    border-top-left-radius: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .indexTitle {
    margin-bottom: 40px;
  }

  .indexProduct,
  .indexNews {
    padding: 60px 0;
  }

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

  .indexProduct .row>div:nth-child(n+3),
  .indexNews .row>div:nth-child(n+3) {
    margin-bottom: 0px;
  }

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

  footer {
    padding-bottom: 80px;
  }

  .footerLeft {
    padding: 70px 0 20px;
            border-bottom: none;
        border-right: none;
        margin-bottom: 0;
  }

  .footerLeft_top h2 {
    font-size: 28px;
    margin-bottom: 26px;
  }

  .footerSearch form input {
    font-size: 16px;
    padding: 12px 50px 12px 20px;
  }

  .footerSearch form button i {
    font-size: 24px;
  }

  .footerLeft_top {
    padding-bottom: 35px;
    border-bottom: 1px solid #cecece;
    margin-bottom: 40px;
  }

  .footerNav {
    margin-bottom: 40px;
  }

  .footerCon p i {
    margin-right: 18px;
  }

  .footerRight {
        display: none;
    padding: 0;
    flex-direction: row;
  }

  .footerLogo {
    flex: 0 0 30%;
    margin-bottom: 0;
  }

  .footer_social_media {
    flex: 0 0 70%;
    justify-content: center;
  }

  .newslistBox:nth-child(n+6) {
    margin-bottom: 25px;
  }
}

@media (min-width:993px) and (max-width:1200px) {

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

  .navbar-toggler {
    background-color: #d60329;
  }

  .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;
  }

  .mobile .offcanvas-body .btn {
    border: none;
  }

  .mobile .offcanvas-body .btn i {
    color: #fff;
  }

  #fullpage .section {
    transform: translate3d(0, 0, 0) scale(1) skew(0, 0) rotate3d(0, 0, 0, 0deg) !important;
  }

  #fullpage .section>section,
  .bannerimg img,
  .indexAbout img,
  .indexProduct,
  .indexNews {
    height: auto;
  }

  .indexAbout {
    position: relative;
  }

  .indexAbout::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.06);
    z-index: 1;
  }

  .indexAbout_des {
    width: 100%;
    right: 0;
    text-align: center;
    bottom: auto;
    top: 15px;
    padding: 30px 15%;
    background-color: transparent;
    border-top-left-radius: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .indexAbout_des h1,
  .indexTitle h2 {
    font-size: 38px;
  }

  .indexTitle {
    margin-bottom: 50px;
  }

  .indexProduct,
  .indexNews {
    padding: 70px 0;
  }

  .indexBtn a {
    width: 100%;
    min-width: 150px;
  }

  .indexProduct .row>div:nth-child(n+3),
  .indexNews .row>div:nth-child(n+3) {
    margin-bottom: 0px;
  }

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

  footer {
    padding-bottom: 80px;
  }

  .footerSearch p {
    padding-left: 20px;
  }

  .footerLeft {
    padding: 60px 0 30px;
  }

  .footerLeft_top h2 {
    font-size: 32px;
    margin-bottom: 36px;
  }

  .footerSearch form input {
    font-size: 16px;
    padding: 12px 50px 12px 20px;
  }

  .footerSearch form button i {
    font-size: 24px;
  }

  .footerLeft_top {
    padding-bottom: 40px;
    border-bottom: 1px solid #cecece;
    margin-bottom: 45px;
  }

  .footerNav {
    margin-bottom: 40px;
  }

  .footerCon p i {
    margin-right: 18px;
  }

  .footerRight {
    padding: 0 4%;
  }

  .footerLogo {
    /*width: 60%;*/
  }

  .footer_social_media {
    display: flex;
    justify-content: flex-start;
  }

  .footer_social_media a {
    margin-bottom: 10px;
  }
}

@media (min-width:1201px) and (max-width:1440px) {
  .indexTitle {
    margin-bottom: 36px;
  }

  .indexAbout_des h1,
  .indexTitle h2 {
    font-size: 42px;
  }

  .iPro_des p,
  .iNew_box p {
    -webkit-line-clamp: 3;
  }

  
  .iNew_box {
    padding: 30px ;
  }
  .iNew_box h3 {
    font-size: 21px;
  }
  .iPro_des h3 {
    font-size: 26px;
  }

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

  .footerRight {
    padding: 0 4%;
  }

  .footerLogo {
    /*width: 50%;*/
  }

  .footer_social_media {
    display: flex;
    justify-content: flex-start;
  }
}

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

  .indexAbout_des h1,
  .indexTitle h2 {
    font-size: 42px;
  }

  .iPro_des h3 {
    font-size: 26px;
  }

  .iPro_des p,
  .iNew_box p {
    -webkit-line-clamp: 3;
  }

  .footerLeft {
    padding: 80px 0 80px;
  }

  
  .iNew_box {
    padding: 30px ;
  }
  .iNew_box h3 {
    font-size: 21px;
  }
}

@media (min-width: 1401px) and (max-width: 1810px) {
    
  .footerSearch form input::placeholder{
      font-size: 20px;
  }
  .footerLeft_top h2 {
    font-size: 30px;
  }
  .footerLogo {
    /*width: 50% !important;*/
  }
  
  .iNew_box {
    padding: 30px ;
  }
  .iNew_box h3 {
    font-size: 21px;
  }
}