
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}
ul{
  padding:0;
}
a {
  color: #151fa1;
}

a:hover {
  color: #151fa1;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #86878b;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}
.icofont-simple-up2:before{
  content: url("../img/icon_top.png");
}
.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #fdd000;
  transition: background 0.2s ease-in-out;
}
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #1e4356;
}

#header.header-transparent {
  background:#6f838e;
}

#header.header-scrolled {
  background: #FFFFFF!important;
  height: 80px;
  padding: 20px 0;
  -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-image: url("../img/logo.png");
  background-size: 100% 100%;
  width: 68px;
  height:68px;
  margin-top: -12px;
}

#header.header-scrolled .logo h1{
  background-image: url("../img/top_logo2.png");
  background-size: 100% 100%;
  width:68px;
  height: 68px;
  margin-top: -12px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*#main {
  margin-top: 80px;
}*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  /*padding: 0 1px;*/
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
#header.header-transparent .nav-menu a {color: #ffffff;}
#header.header-transparent .nav-menu a:hover{
  color:#fdd000;
  border-bottom:2px solid #fdd000;

}

.nav-menu .active{
  color:#fdd000 !important;
  /*border-bottom:2px solid #fdd000;*/
}

#header.header-scrolled .nav-menu a {color: #000000;}
.nav-menu a {
  display: block;
  position: relative;
  color: #000000;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  z-index: 100;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #a2cce3;
  text-decoration: none;
}

.nav-menu .drop-down>ul {
  min-width: 200px;
  display: block;
  position: absolute;
  left: 0;
  /*top: 60px;*/
  top: calc(100% + 40px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  border-top: 2px solid #fdd000;
  opacity: 0.8;
  top: 60px;
  visibility: visible;
}
.nav-menu .drop-down  ul a:hover {
  color: #fdd000 !important;
}


.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #1c3745;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #68A4C4;
}

.nav-menu .drop-down > a:after {
  content: "\e9f8";
  font-family: boxicons;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\e9fa";
  font-family: boxicons;
  position: absolute;
  right: 15px;
}

/*@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\e9f9";
    font-family: boxicons;
  }
}*/

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #1e4356;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ddecf5;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #a2cce3;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\e9fa";
  font-family: boxicons;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.clo_underline {
  border-bottom: 2px solid #151fa1;
  width: 100px;
  margin: 10px auto;
}
.mobile-nav .active.drop-down > a:after {
  content: "\e9f8";

}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 75px;
  top: 28px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #fdd000;
}
.mobile-nav-toggle:focus{
  background: none;!important;
  border: 0;!important;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(30, 67, 86, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
}



#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #68A4C4;
}

#hero .btn-get-started:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
  #hero::after {
    width: 180%;
    height: 95%;
    transform: translateX(-50%) rotate(0deg);
  }
  #hero::before {
    top: 0;
    width: 180%;
    height: 94%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

@media (max-width: 575px) {
  #hero::after {
    left: 40%;
    top: 0;
    width: 200%;
    height: 95%;
    transform: translateX(-50%) rotate(0deg);
  }
  #hero::before {
    left: 50%;
    top: 0;
    width: 200%;
    height: 94%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
.section-title {
  text-align: center;
  color: #151a5b;
  font-weight: bold;
}
.section-subtitle {
  text-align: center;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #68A4C4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 20px;
  background:url("../img/solution_all.jpg") center no-repeat ;
overflow: hidden;
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0  0 40px 0;
  background: #fff;
  box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
  transition: all 0.3s ease-in-out;
  text-align:left;
  border: 1px solid #fff;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}
.containes_55{
  margin-top: 5%;
  max-width: 1140px;
}
.services .title a {
  color: #222222;
}
.services .title a:hover{
color:#151a5b;
}
.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-pink .icon {
  background: #fceef3;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-pink:hover {
  background-color:#fdd000;
  transition: all 1.5s;
}

.services .icon-box-cyan .icon {
  background: #e6fdfc;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-cyan:hover {
  background-color:#fdd000;
  transition: all 1.5s;
}
.read-more:hover:before{
  content: "\eb48";
  font-family: boxicons!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color:#151fa1;

}
.read-more_pro{
  text-align: left;
  font-weight: bold;
  padding-left: 4%;
}
.product_text {
  word-break: break-all;
  text-align: left;
  font-weight: bold;
  padding-top: 10%;
  padding-left: 4%;
  height: 90px;
  color: #222222;
  overflow: hidden;
  /*font-size: 20px;*/
}
.read-more_pro:hover:before{
  content: "\eb48";
  font-family: boxicons!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color:#151fa1;

}
.read-more2 {
  margin-left: 285px;
}
.read-more2:before{
   content: "\eb48";
   font-family: boxicons!important;
   speak: none;
   font-style: normal;
   font-weight: 400;
   font-variant: normal;
   text-transform: none;
   white-space: nowrap;
   word-wrap: normal;
   direction: ltr;
   line-height: 1;
   -webkit-font-feature-settings: "liga";
   -webkit-font-smoothing: antialiased;
   color:#151fa1;
 }
.read-more22:before{
  content: "\eb48";
  font-family: boxicons!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color:#151fa1;
}
.services .icon-box-green .icon {
  background: #eafde7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-green:hover {
  border-color: #41cf2e;
}

.services .icon-box-blue .icon {
  background: #e1eeff;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services .icon-box-blue:hover {
  border-color: #2282ff;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .container {
  background: #fff;
}

.why-us .icon-box + .icon-box {
  margin-top: 20px;
}

.why-us .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-box {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 4%;
}
.icon-box:last-child{
  border-bottom: none;
}
.why-us .icon-box .icon i {
  color: #68A4C4;
  font-size: 32px;
}

.why-us .icon-box:hover .icon {
  /*background: #68A4C4;*/
}

.why-us .icon-box:hover .icon i {
  color: #fff;
}

.why-us .icon-box .title {
  margin-left: 285px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.why-us .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.why-us .icon-box .title a:hover {
  color: #151fa1;
}

.why-us .icon-box .description {
  margin-left: 285px;
  line-height: 24px;
  font-size: 14px;
}
.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 26, 91, 0.75);
  color: #ffffff;
  opacity: 0;
}
.mask h3 {
  text-align: center;
  color: #fdd000;
  line-height: 150px;
}

.icon a:hover .mask {
  opacity: 1;
}
.why-us .video-box {
  position: relative;
  -moz-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 8px  rgba(0, 0, 0, 0.15);
  margin-top: 2em;
  height: 548px;
}
.section-title22{
  text-align: left;
  color: #151a5b;
  font-size: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.video_box_left {
  position: absolute;
}
.video_box_right {
  margin-left: 18%;
}
.section-subtitle222{
  text-align: left;
}
.testimonial-thumb1 {
  width: 88%;
  margin-top: 18%;
  margin-left: 6%;
}
.testimonial-thumb1 img {
  width: 100%;
}
@media (max-width: 1600px) {
.testimonial-thumb1{
  width: 60%;
  margin: 0 20%;
}
  .testimonial-thumb1 img{
    width: auto;
  }

  .why-us .video-box {
    position: relative;
    -moz-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 8px  rgba(0, 0, 0, 0.15);
    margin-top: 2em;
    height:auto;
  }
  .icon{
    width: 100%;
  }
  .why-us .icon-box .description {
    margin-left: 0px;
  }
  .why-us .icon-box .title {
    margin-left: 0px;
  }
  .read-more2 {
    margin-left: 0px;
  }
}
.p-5{
  padding: 2rem!important;
}
.why-us .video-box img {
  padding-top: 15px;
  padding-bottom: 15px;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#68A4C4 50%, rgba(104, 164, 196, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(104, 164, 196, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #68A4C4;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .row + .row {
  margin-top: 100px;
}

.features h3 {
  font-weight: 400;
  font-size: 24px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features ul li {
  padding-bottom: 10px;
}

.features ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.features p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
  font-size: 48px;
  display: block;
  color: #68A4C4;
}

.facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills {
  padding: 60px 0;
}

.skills .progress {
  height: 35px;
  margin-bottom: 10px;
}

.skills .progress .skill {
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

.skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: .9s;
}

/*--------------------------------------------------------------
# Tetstimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #fbfcfd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #68A4C4 !important;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  padding-bottom: 10px;
}

.service-details .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.service-details .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.service-details .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.service-details .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.service-details .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.service-details .card-title a {
  color: #1e4356;
  transition: 0.3s;
}

.service-details .card-text {
  color: #5e5e5e;
}

.service-details .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.service-details .read-more a:hover {
  color: #68A4C4;
}

.service-details .card:hover img {
  transform: scale(1.1);
}

.service-details .card:hover .card-body {
  border-color: #68A4C4;
}

.service-details .card:hover .card-body .card-title a {
  color: #68A4C4;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #68A4C4;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #68A4C4;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #1e4356;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #68A4C4;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #68A4C4;
}

.pricing .featured .get-started-btn:hover {
  background: #85b6cf;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding-bottom: 60px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 12px 5px 12px;
  display: inline-block;
  padding: 0 4px 6px 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #444;
  background: white;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid #fff;
  font-family: "Roboto", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  border-color: #68A4C4;
  color: #68A4C4;
}

.portfolio .portfolio-item {
  background: #1e4356;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all .3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
}

.portfolio .portfolio-item .portfolio-info h3 a {
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item .portfolio-info a i {
  color: #68A4C4;
  font-size: 24px;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding-bottom: 30px;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
  background: rgba(30, 67, 86, 0.8);
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #68A4C4;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #68A4C4;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 30px;
}

.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
}

.contact .info-box i {
  font-size: 32px;
  color: #68A4C4;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #a2cce3;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  margin-bottom: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #68A4C4;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #68A4C4;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #8dbad2;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: -6px;
}

.map iframe {
  width: 100%;
  height: 380px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 20px 0 20px 0;
}

@media screen  and (max-width: 500px){
  .blog {
    padding: 0;
  }
}

/*.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
}*/

.blog .entry .entry-img {
  max-height: 400px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #32627b;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #68A4C4;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #dddddd;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 15px;
}

.blog .entry .entry-meta i {
  font-size: 14px;
  padding-right: 4px;
}

.blog .entry .entry-meta a {
  color: #aaaaaa;
  font-size: 14px;
  display: inline-block;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #68A4C4;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #32627b;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote .quote-left {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote .quote-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #32627b;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #4c99c1;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #90c0d8;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #68A4C4;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
  margin-left: 20px
}
@media screen and(max-width: 500px){
  .entry-single {
    margin-left: 0px !important;
  }
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
}

.blog .blog-author h4 {
  margin-left: 140px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
}

.blog .blog-author .social-links {
  margin: 0 0 5px 140px;
}

.blog .blog-author .social-links a {
  color: #72afce;
}

.blog .blog-author p {
  margin-left: 140px;
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  width: 50px;
}

.blog .blog-comments .comment h5 {
  margin-left: 65px;
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #68A4C4;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #32627b;
}

.blog .blog-comments .comment time {
  margin-left: 65px;
  display: block;
  font-size: 14px;
  color: #72afce;
  margin-bottom: 5px;
}

.blog .blog-comments .comment p {
  margin-left: 65px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 0;
  padding: 20px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #a2cce3;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 0;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #a2cce3;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 0;
  padding: 10px 20px;
  border: 0;
  background-color: #32627b;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #68A4C4;
}

.blog .blog-pagination {
  color: #7b9bab;
}

.blog .blog-pagination ul {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.blog .blog-pagination li {
  border: 1px solid white;
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li.active {
  background: white;
}

.blog .blog-pagination li a {
  color: #aaaaaa;
  padding: 7px 16px;
  display: inline-block;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #68A4C4;
  border: 1px solid #68A4C4;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .blog-pagination li.disabled {
  background: #fff;
  border: 1px solid white;
}

.blog .blog-pagination li.disabled i {
  color: #f1f1f1;
  padding: 10px 16px;
  display: inline-block;
}

.blog .sidebar {
  background-color: #f2f4f6;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  color: #fdd000;
  position: relative;
  background-color: #151a5b;
  text-align: center;
  padding: 5% 0;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #32627b;
  color: #fff;
  transition: 0.3s;
}

.blog .sidebar .search-form form button:hover {
  background: #68A4C4;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  /*padding-top: 10px;*/
}

.blog .sidebar .categories ul li {
  padding: 3% 0px 3% 12%;
  border-bottom: 1px solid #fff;
}
.selected{
   background-color:#fdd000;
   box-shadow: 0px 0px 0px 4px rgba(253, 208, 0,1);
   border-bottom: none !important;
 }
.choose {
  background-color:#fdd000;
  /*border-radius:4px !important;*/
}
.tcdPageCode .choose a{
  border:none !important;
  color:#000000 !important;
  background: none !important;
}
.selected a{
  color:#000000 !important;
}
.blog .sidebar .categories ul a {
  color: #555555;
}

.blog .sidebar .categories ul a:hover {
  color: #68A4C4;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #bedae8;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #0d2735;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #68A4C4;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #72afce;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #3f8db5;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #e4eff5;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #32627b;
  background: #32627b;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #bedae8;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:url("../img/footer_bg.jpg") center no-repeat ;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  background-size: cover;
}

#footer .footer-newsletter {
  padding: 50px 0;
  height:500px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #a2cce3;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #68A4C4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #468db3;
}

#footer .footer-top {
  border-bottom: 1px solid rgba(119,119, 119, 0.2);
  padding: 60px 0 30px 0;
  overflow: hidden;
}
.logo_bottom {
  border-right: 1px solid #fff;
  width: 20%;
  float: left;
}
.footer-links{
  padding-left: 5%;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #a2cce3;
  font-weight: 600;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a:not(.mail) {
  font-size: 18px;
  display: inline-block;
  /* background: #ffffff; */
  /* color: #000000; */
  line-height: 1;
  padding: 8px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  /* opacity:0.3; */
  background: #fdd000;
  color: #000000;
  text-decoration: none;
  opacity:0.9;
}
.line2 {
  border-top: 2px solid #fff;
  position: absolute;
  top: 26px;
  width: 40px;
}


#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
.btn-subcribe {
  background-color: #fdd000;
  border-radius: 0;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #a2cce3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #dddddd;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  white-space:nowrap;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fdd000;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #a2cce3;
}
.testimonial-wrapper2{
  padding: 40px;
  position: relative;
  text-align: center;
}
.section-subtitle2{
  text-align: center;
  color:#666666;
}
#header-search {
  position: relative;
  float: right;
  margin-left: 15px;
}

@media (max-width: 1600px) {
  #header-search {
    margin-left: 0 !important;
  }
}
#header-search a.search-icon {
  padding: 10px 0 0;
  display: block;
  font-size: 16px;
  color: #fff;
}
/*#header.header-scrolled a.search-icon{
  color: #000000;
}*/
.search-box-wrap {
  background: #ffffff;
  display: none;
  position: absolute;
  right: 0;
  top: 64px;
  padding: 25px 30px 25px;
  z-index: 9991;
  box-shadow: 0 0 6px #00000036;
}
.searchform {
  width: 430px;
  margin: 0 auto;
  max-width: 100%;
}
form.search-form {
  position: relative;
}
input.search-field {
  width: 100%;
  border: 2px solid #f7f7f7;
  border-radius: 50px;
  padding: 12px 25px;
}
input.search-submit, input.search-submit:visited {
  position: absolute;
  top: 0;
  margin: 0;
  right: 0;
  font-size: 13px;
  padding: 16px 20px;
  border-radius: 0 50px 50px 0;
}
@media (max-width: 900px){
  #header-search a.search-icon {
    padding: 10px 0;
  }
  }
#header.header-scrolled .multi-language-current:after{
  content: '';
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  right: 4px;
  top: 5px;
  background-image: url("../img/top_cn_nor1.png");
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
}
#header.header-scrolled .multi-language-current {
  color: #151a5b;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 10px;
  padding-right: 30px;
  position: relative;
  border: 1px solid #151a5b;
  border-radius: 20px;
}
@media screen and (max-width: 768px){
  #header.header-scrolled .multi-language-current {
    color: #fdd000 !important;
    padding-top: 0;
  }

  #header.header-scrolled .multi-language-current:after{
    background-image: url("../img/top_cn_pre.png");
  }

}
.multi-language-current:after {
  content: '';
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  right: 4px;
  top: 5px;
  background-image: url("../img/top_cn_pre.png");
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
}
.multi-language {
  float: right;
  position: relative;
  padding-top: 10px;
  left: 3%;
}
a.multi-language-current {
  color: #fff;
  padding-top:4px;
  padding-bottom:4px;
  padding-left:10px;
  padding-right:30px;
  position: relative;
  border: 1px solid #fdd000;
  border-radius: 20px;
}
.multi-language img {
  margin-right: 9px;
}
.multi-language-sub {
  padding: 10px 20px;
  background-color: #46545b;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  top: 130%;
  right: 0;
  -webkit-box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
  -moz-box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
  box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
  width: 180px;
  position: absolute;
  z-index: 9999;
  margin: 0;

}
.multi-language:hover .multi-language-current {
  color: #fff !important;
}

.header-scrolled .multi-language:hover .multi-language-current{
  color: inherit!important;
}

.multi-language:hover .multi-language-sub {
  visibility: visible;
  opacity: 1;
  top: 113%;
  right: 0;
}
.multi-language-sub li {
  display: block;
  width: 100%;
  float: none;
  margin: 6px 0;
  color:#ffffff;
}
.multi-language-sub li a{
  color:#ffffff;
}
.container .nav-menu > ul li.on a::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
}



/*--------------------------------------------------------------
# products
--------------------------------------------------------------*/
.section-carousel-enabled .slick-prev.slick-arrow {
  left: -150px;
}
.section-carousel-enabled .slick-next.slick-arrow {
  right: -150px;
}

.section-carousel-enabled .slick-prev.slick-arrow, .section-carousel-enabled .slick-next.slick-arrow {
  color: #999999;
  cursor: pointer;
  display: block;
  font-weight: normal;
  line-height: 0.8;
  padding-top: 5px;
  position: absolute;
  text-align: center;
  top: 45%;
  z-index: 9;
  font-size: 30px;
  padding: 16px 20px;
}
.section-carousel-enabled .slick-prev.slick-arrow:hover,
.section-carousel-enabled .slick-next.slick-arrow:hover {
  color: #fdd000;
}
.section, .widget {
  margin: 46px 0 15px;
}
.section-testimonial .testimonial-summary p {
  font-size: 14px;
  color: #999999;
}
.testimonial-summary:hover,
.col-grid-6 .testimonial-summary h3:hover,
.col-grid-6 .testimonial-summary p:hover{
  color:#151fa1;
}
.section-testimonial .testimonial-summary h3 {
  margin: 0;
  margin-top: 8px;
  font-size:24px;
}
.section-testimonial .testimonial-wrapper {
  padding: 40px 20px;
  position: relative;
  background: #fff;
  text-align:left;
}
.section-testimonial .testimonial-thumb {
  display: block;
  position: relative;
  padding: 50px 0px;
}

@media screen and (max-width: 400px){
  .section-testimonial .testimonial-thumb {
    display: inline;
  }
  .pro_link_box{
   display: none;
  }
}
.testimonial-thumb span:hover,
.testimonial-thumb:hover{
  -moz-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 8px  rgba(0, 0, 0, 0.15);
  transform:scale(1.1,1.1);
  transition: all 1s;
}
@media screen and (min-width: 768px){
  .listul_li9:hover{
    -moz-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 1px 8px  rgba(0, 0, 0, 0.15);
    transform:scale(1.1,1.1);
    transition: all 1s;
  }
}

.pro_link_box  {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 5px;
  background-color: #fdd000;
  margin: 0 auto;
  line-height: 60px;
  text-align: center;
  font-size: 30px;
}
.testimonial-thumb a {
  color: #000000;
}
.testimonial-item > div .testimonial-thumb .pro_link_box, .testimonial-item > a .testimonial-thumb .pro_link_box {
  opacity: 0;
  transition: all 1s ease;
}
.testimonial-item > div:hover .testimonial-thumb .pro_link_box, .testimonial-item > a:hover .testimonial-thumb .pro_link_box {
  opacity: 1;
}
.custom-button, .custom-button:visited, a.button, .custom-button.custom-primary-button, .custom-button.custom-primary-button:visited {
  transition: all 0.3s ease 0s;
  color: #221f1a;
  font-size: 14px;
  line-height: 1.8;
  /*padding: 10px 35px;*/
  padding: 10px 30px 10px 25px;
  border: none;
  height: auto;
  width: auto;
  cursor: pointer;
  display: inline-block;
  min-width: 135px;
  text-align: center;
  margin: 0;
  position: relative;
  font-weight: 600;
  vertical-align: middle;
  border: 1px solid #221f1a
}
.more-wrapper {
  text-align: center;
  padding: 15px 0px;
}
a.custom-button:after{
  margin-right: 13px;
  font-weight: 900;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
}
.custom-button:hover, .button:hover, button:focus, .button:focus, .custom-button:focus, .custom-button:active, .custom-button.custom-primary-button:hover, .custom-button.custom-primary-button:active, .custom-button.custom-primary-button:focus {
  background: #fdd000;
  border: 1px solid #fdd000;
}
@media (max-width: 768px) {
  .section-carousel-enabled .slick-prev.slick-arrow {
    left: -15px;
  }
  .section-carousel-enabled .slick-next.slick-arrow {
    right: -15px;
  }

}
/*--------------------------------------------------------------
# Solution
--------------------------------------------------------------*/
.section-title-wrap_2{
  margin-top: 6%;
}
.breadcrumbs {
  padding: 30px 0;
  min-height: 40px;
}
.align-items-center a{
  color: #666666;
}
.align-items-center a:hover{
  color: #fdd000;
  font-size:20px;
  background-color:#151fa1;
  padding: 5px;
} /* 鼠标经过 */
.align-items-center2 a{
  color: #9f9f9f;
}

.align-items-center2 ol li:last-child a{
  color: #666666;
}

.align-items-center2 a:hover{
  color: #fdd000;
} /* 鼠标经过 */
.align-items-center a:active {
  color: #fdd000;
  font-size:24px;
  background-color:#151fa1;
} /* 选定的链接 */

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li{
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "-";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# partner
--------------------------------------------------------------*/
.slick-slide img {
  display: block;
  margin: 0 auto;
}

.section-carousel-enabled .slick-slide:focus,
.section-carousel-enabled .slick-slide.slick-active{
  outline: none!important;
}
.section-carousel-enabled .slick-list {
  text-align: left;
}
.carousel-indicators li{
  background-image: url("../img/carousel_circle2.png");
  background-repeat: no-repeat;
  width:18px!important;
  height:18px!important;
  background-size: 100% 100%;

}
.carousel-indicators .active {
  background-image: url("../img/carousel_circle.png");
  width:24px!important;
  height:24px!important;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
/*--------------------------------------------------------------
# product(list子页面)
--------------------------------------------------------------*/
.filters-container .pagination-container ul li.prev, .filters-container .pagination-container ul li.next {
  background: none repeat scroll 0 0 #dddddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.list-inline>li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
ul li{
  list-style: none;
}

/*产品列表展示css*/
.listul_li9{
  float: left;
  position: relative;
  width: 31.3%;
  text-align: center;
  padding-top: 4%;
  padding-bottom: 6%;
  margin: 0 1% 20px 1%;
  height: 440px;
}
.tcdPageCode li {
  float: left;
  height: 26px;
  line-height: 26px;
  /*margin-right: 10px;*/
  margin-right: 4px;
}
.tcdPageCode{padding: 15px 20px;text-align: left;color: #ccc;text-align:center;}
.tcdPageCode a{
  color: #8a8a8a;
  display: inline-block;
  height: 25px;	line-height: 25px;	padding: 0 10px;border: 1px solid #ebebeb;	margin: 0 2px;vertical-align: middle;}
.tcdPageCode a:hover{text-decoration: none;background-color:#fccf2e;}
.tcdPageCode span.current{display: inline-block;height: 25px;line-height: 25px;padding: 0 10px;margin: 0 2px;color: #fff;background-color: #428bca;	border: 1px solid #428bca;border-radius: 4px;vertical-align: middle;}
.tcdPageCode span.disabled{	display: inline-block;height: 25px;line-height: 25px;padding: 0 10px;margin: 0 2px;	color: #bfbfbf;background: #f2f2f2;border: 1px solid #bfbfbf;border-radius: 4px;vertical-align: middle;}
.pro_banner{
  background-image: url("../img/product/product_top_bg.jpg");
  height:400px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pro_banner{
    height:250px;
  }
}
.banner_ad_box{
  padding-top: 180px;
}
.rotateInDownLeft {
  font-size: 42px;
  font-weight: bold;
  color: #ffffff;
  /* position:absolute;
  top: 180px;
  left: 20%; */
}

@media screen and (max-width: 768px) {
  .rotateInDownLeft {
    top: 100px;
    left: 10%;
    font-size: 23px;
  }
  .banner_ad_box{
    padding-top: 90px;
  }
}
.ad_l_title{
  font-size: 18px;
  color: #ffffff;
  /* position:absolute; */
  /* top: 236px;
  left: 20%; */
}

@media screen and (max-width: 768px) {
  .ad_l_title {
    top: 152px !important;
    left: 10% !important;
    font-size: 14px !important;
  }
}
#header.product_top_o .nav-menu a {
  color: #000000;
}
/*.product_top_o{*/
/*  background:rgba(0, 0, 0, 0.6)!important;*/
/*}*/
.product_top_o{
  background:rgb(255 255 255)!important
}
#header.product_top_o .nav-menu a:hover{
  color:#fdd000;
  /*border-bottom:2px solid #fdd000;*/

}
#header.header-scrolled .nav-menu>ul>li>a {color: #000000;}
 .imagebox-content {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  background-color: #1d2088;
  /*border-radius: 4px;*/
  font-size: 14px;
   color:#fff;
  padding: 30px 30px 30px 30px;
  transform: translateY(100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
   text-align: left;
}

#header-scrolled .nav-menu ul .drop-down ul a{
  color: #ffffff !important;
}

.imagebox-content h5{
  height: 70px;
  overflow: hidden;
  word-break: break-all;
}
.read-more_pro2 a{
  color:#fdd000;
  padding-left: 2%;
}
.listul_li9:hover .imagebox-content {
  opacity: 0.9;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.listul_li9.imagebox-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .listul_li9 {
    float: left;
    position: relative;
    width: 100%;
    text-align: center;
    padding-top: 4%;
    padding-bottom: 6%;
  }
.listul {
    list-style: none;
    padding: 0;
  }
  #footer {
    background-size: auto 100%;
  }
  .logo_bottom {
    border-bottom: 1px solid #fff;
    width: 100%;
    text-align: center;
    padding-bottom: 4%;
    margin-bottom: 4%;
    border-right: none;
  }
  }
.footer-newsletter{
  background-image: url("../img/newsletter_bg.jpg");
  background-size: auto 100%;
  padding-bottom: 4%;
}
.testimonial-thumb1:hover{
  border:2px solid #fdd000;
}
.breadcrumbs2 {
  padding: 30px 0;
  min-height: 40px;
}
.breadcrumbs2 ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.breadcrumbs2 ol li:nth-of-type(1)::before {
  display: inline-block;
  padding: 10px;
  color: #6c757d;
  content: "/";
  visibility: hidden;
}
.breadcrumbs2 ol li + li::before {
  display: inline-block;
  padding: 10px;
  color: #cecece;
  content: "/";
}

.carousel-item:before{
  content: "";
  position: absolute;
  top:53%;
  left:-18%;
  display: inline-block;
  vertical-align: middle;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  width: 46%;
}
.carousel-item{
  position: relative;

}
/*--------------------------------------------------------------
# product_detail(产品详情)
--------------------------------------------------------------*/
#bullets {
  width: 100%;
  padding: 0 0 55px 0;
  float: left;
  clear: both;
}
.twocol {
  width: 50%;
  display: block;
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
}
#bullets .rightfloat {
  width: 50%;
  float: left;
}
#bullets .leftfloat {
  padding: 0 20px 0 0;
}
#imageholder {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 370px;
  margin: 0 0 20px 0;
  cursor: ne-resize;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  text-align: center;
  line-height: 370px;
}
#imageholder img {
  display: inline-block;
  vertical-align: middle;
  max-height: 100%;
  height: auto;
  width: 100%;
}
#bullets .leftfloat ul li:before{
  content: "\2022";
  font-size: 24px;
  color: #1e2188;
  vertical-align: middle;
  padding-right: 2%;
}
#bullets .leftfloat .btn-green {
  margin: 0 10px 10px 0;
}
a.button2018, a.button, a.btn-green {
  display: inline-block;
  color: #ffffff;
  background: #22ad38;
  padding: 16px 22px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  text-decoration: none;
}
.left_top_text{
  padding-bottom: 2%;
  border-bottom: 1px dashed #d7d7d7;
}
.left_top_textall{
  margin: 3% 0 5% 0%;
}
.left_title_de{
  color: #999999;
  background-color: #f5f6f8;
  padding: 2%;
  display: inline-block;
  margin: 0 2px 2px 0;
}
.left_title_de2{
  background-color: #f5f6f8;
  padding: 2%;
  color:#121fa1;
}
.carousel-indicators2 {
  position: absolute;
  right: 0;
  bottom:-25px;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.animated2 {
  border: 1px solid #f3f3f3;
  float: left;
}
.fh5co_ll{
  color: #8489cb;
  padding-left: 2%;
  float: left;
  line-height: 20px!important;
}
.fh5co-portfolio-item2 {
  clear: both;
  border-bottom: 1px solid #f3f4f8;
  overflow: hidden;
  margin-top: 4%;
  flex-direction: row;
  align-items: center;
  display: flex;
  padding-bottom: 4%;
}
.prlated_title {
  color: #151b59;
  font-size: 1.2rem;
  font-weight: bold;
}
.animated2 img{
  width:100%;
}
.carousel-indicators2 li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 8px;
  height:8px;
  margin-right: 18px;
  margin-left: 18px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #e6e6e6;
  background-clip: padding-box;
  transition: opacity .6s ease;
}
.carousel-indicators2 .active {
  background-color: #fdd001;
  width:28px;
}
.carousel-item33:before{
  content: "";
  position: absolute;
  top:53%;
  left:-18%;
  display: none!important;
  vertical-align: middle;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  width: 46%;
}
.product_tabs {
  background-color: #f8f8f8;
  overflow: hidden;
  clear: both;
}
.product_tabs li {
  float: left;
  text-align: center;
  height: 62px;
  line-height: 62px;
}
.product_tabs li a{
  color: #666666;
  border-right: 1px solid #cecece;
  padding: 0px 30px;
}
.product_bottom {
  border: 1px solid #cecece;
  float: left;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .product_bottom {
    width: 100%;
  }
}
.product_tabs .producttab-title{
background-color:#ffffff;
  color: #333333;
  border-top: 5px solid #fdd000;
}
.product_tabs .producttab-title a{
  border-right:none;
}
.producttabs-content > .product_content.active {
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
.fh5co-portfolio-item {
  float: left;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2%;
}
.fh5co-portfolio-description {
  background: #fff;
  font-size: 1em;
  line-height: 36px;
}
 .fh5co-portfolio-figure {
   width: 30%;
   text-align: center;
}
.fh5co-portfolio-description{
  width: 70%;

}
#product_container{
  clear: both;
  overflow: hidden;
  display: block;
}
.product_choose_title{
  color: #17185b;
  font-size: 1.6rem;
  font-weight: bold;
}
.product_choose_text {
  color: #17185b;
  float: left;
  border: 1px solid #cfd1de;
  padding: 1% 2%;
  margin-right: 2%;
  margin-bottom: 2%;
}
@media (max-width: 568px){
  .twocol {
    width: 100% !important;
    padding: 0;
  }
#bullets h1 {
    font-size: 35px;
    line-height: 1em;
  }
 #bullets .rightfloat #imageholder {
    height: 200px;
    margin: 0 0 20px 0;
    line-height: 200px;
  }
  .btn-green {
    padding: 10px 20px;
  }
  .fh5co-portfolio-figure {
    width: 100%;
    text-align: center;
  }
  .fh5co-portfolio-description{
    width: 100%;

  }
  .fh5co-portfolio-item {
    display: block;
  }

}
@media (max-width: 767px){

  #bullets h1 {
    font-size: 35px;
    line-height: 1em;
  }
  #bullets .rightfloat #imageholder {
    height: 270px;
    margin: 0 0 20px 0;
    line-height: 270px;
  }
  .fh5co-portfolio-figure {
    width: 100%;
    text-align: center;
  }
  .fh5co-portfolio-description{
    width: 100%;

  }
  .fh5co-portfolio-item {
    display: block;
  }
}
/*--------------------------------------------------------------
# Solution(解决方案)
--------------------------------------------------------------*/
.pro_banner2{
    background-image: url(../img/solution/solution_top_bg.jpg);
    height: 400px;
    position: relative;
}
.solution_left_all {
    width: 47.8%;
    border: 1px solid #ececec;
    float: left;
    margin-bottom: 2%;
}
.solution_right_all{
  width: 47.8%;
  border: 1px solid #ececec;
  float: right;
  margin-bottom: 2%;
}
.solution_left_all:hover{
    -moz-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 8px  rgba(0, 0, 0, 0.15);
    transform:scale(1.02,1.02);
    transition: all 1s;
}
.solution_right_all:hover{
    -moz-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 8px  rgba(0, 0, 0, 0.15);
    transform:scale(1.02,1.02);
    transition: all 1s;
}
.solution_title {
    padding-left: 4%;
    padding-bottom: 2%;
}
.solution_left_toprx{
    padding-left: 4%;
}
.solution_text {
    width: 92%;
    margin: 0 4%;
}
.solution_read2{
    padding: 4%;
}
@media (max-width: 767px){

    .solution_left_all {
        width: 100%;
        border: 1px solid #ececec;
        float: left;
        margin-bottom: 2%;
    }
    .solution_left_all .solution_text_ope img{
        width:100%;
    }
    .solution_right_all{
        width: 100%;
        border: 1px solid #ececec;
        float: right;
        margin-bottom: 2%;
    }
    .solution_right_all .solution_text_ope img{
        width:100%;
    }

}
/*--------------------------------------------------------------
# Solution(解决方案详情)
--------------------------------------------------------------*/
.soulution_d_title{
  color: #151a5b;
  text-align: center;
}
.soulution_d_time{
  text-align: center;
}
.soulution_d_text2 {
  color: #151a5b;
  padding-top: 2%;
}
.soulution_bottom_all{
  background-color: #f8f8f8;
  text-align: center;
  padding:2%;
  margin-top: 4%;
}
.solution_bottom_te {
  padding-left: 2%;
}
.soulution_d_img{
  margin: 0 auto;
}
.soulution_d_img img{
  width:100%;
}
.solution_bottom_te1 {
  padding-left: 2%;
  margin-top: 2%;
  padding-bottom: 1%;
  border-bottom: 1px dashed #cccccc;
}
.solution_bottom_te2 {
  color: #17209e;
  word-spacing: 12px;
}
.solution_bottom_te3{
  color: #17209e;
  padding-left: 10%;
}
/*--------------------------------------------------------------
# Service(服务支持)
--------------------------------------------------------------*/
.pro_banner3{
  background-image: url("../img/service/service_top_bg.jpg");
  height:400px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .pro_banner3{
    height:250px !important;
  }
}

.service_title{
  text-align: center;
  color: #151a5b;
  width: 100%;
  font-weight: bold;
}
.service_title2 {
  width: 100%;
  text-align: center;
}
.service_all{
  display: flex;
  width:100%;
  margin: 4% 0;
}
.service_icon_all {
  text-align: center;
  flex: 1;
  float: left;
  /*margin-left: 10%;*/
  position: relative;
}
.service_img_all img{
  margin: 0 auto;
}
.service_img_all .service_pic-2 {
  position: absolute;
  top: 0;
  left:30%;
  opacity: 0;
  transform: rotateY(-90deg);
  transition: all 0.5s ease-out 0s;
}
.service_img_all .service_pic-1{
  opacity: 1;
  transform: rotateY(0);
  transition: all 0.5s ease-out 0s;
}
.service_icon_all h4:hover{
  color:#fdd000;
}
.service_img_all:hover .service_pic-2{
  opacity: 1;
  transform: rotateY(0deg);
}

.service_img_all:hover .service_pic-1{
  opacity: 0;
  transform: rotateY(-90deg);
}
.service_icon_all h4{
  color:#333333;
}
.service_icon_all p{
  color:#666666;
}
@media (max-width: 767px){
  .service_icon_all{
    width:100%;
    margin-left:0;
  }
  .service_img_all .service_pic-2 {

    left: 38%;

  }
}
/*--------------------------------------------------------------
# Service_Download(服务支持)
--------------------------------------------------------------*/
.ui-content {
  padding: 2%;
}
.ui-content2 {
  background-color: #f8f8f8;
  padding: 2%;
}
.service_search {
  background-color: #151a5b;
  border: 0;
  outline: none;
  background-image: url(../img/Soulution_details/search.png);
  width: 60px;
  height: 42px;
  vertical-align: middle;
  border-radius: 0;
  /*margin-left: 20%;*/
}
.download_choose{
  height: 42px;
  vertical-align: middle;
  width: 30%;
  max-width: 260px;
  margin-right: 1%;
  color: #999999;
  margin-bottom: 5px;

}
.table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th {
  border-top: 0;
  text-align: center;
  border-bottom: 1px solid #151a5b;
}
.table {
  margin-top: 2%;
}

.table td, .table th {
  text-align: center;
}
.table td:first-child
{
text-align: left;
}
@media screen and (max-width: 500px){
  tr th:first-child,tr td:first-child{
    white-space: normal !important;
    min-width:100px;
    word-break: break-all;
  }

  .download_choose{
    max-width: none;
    width: 100%;
  }
  .table thead tr th:nth-child(3),.table tbody tr td:nth-child(3),.table thead tr th:nth-child(4),.table tbody tr td:nth-child(4){
    display: none !important;
  }
  .table td, .table th {
    padding: 0.5rem !important;
  }

}
@media screen and (max-width: 320px){
  tr th:first-child,tr td:first-child{
    min-width:200px;
  }
}

.table td:first-child:hover
{
  color: #151fa1;
}
.download_leftimg {
  padding: 0 4%;
}
/*--------------------------------------------------------------
# New(新闻)
--------------------------------------------------------------*/
.pro_banner3{
  background-image: url(../img/new/new_topbg.jpg);
  height: 400px;
  position: relative;
}
.solution_left_all2 {
  width: 100%;
  padding-bottom: 2%;
  border-bottom: 1px solid #e1e1e1;
  overflow: hidden;
  margin-bottom: 2%;
}
.solution_right_all2{
  width: 100%;
  float: right;
  margin-bottom: 2%;
}
.new_text_left {
  width: 30%;
  float: left;
  position: relative;
}
.new_text_right {
  width: 70%;
  float: right;
}
.left_title_de2{
  color: #666666;
  background-color: #f5f6f8;
  padding: 1%;
}
.solution_title2 {
  padding-left: 4%;
  padding-bottom: 1%;
}
.solution_text2 {
  width: 100%;
  margin: 0 0px 0 4%;
  /* text-indent: 2em; */
}
.read-more3:before {
  content: "\eb48";
  font-family: boxicons!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color: #151fa1;
}
.solution_read3 {
  padding: 2%;
  border: 1px solid #1d2088;
  width: 138px;
  margin: 2% 4%;
}
.new_text_left img{
  width:100%;
}
.solution_read3:hover{
  background-color: #ffd100;
  border:1px solid transparent;
}
.pro_link_box2 {
  position: absolute;
  width: 80px;
  height: 72px;
  background-color: #151a5b;
  margin: 0 auto;
  text-align: center;
  bottom: -25px;
  right: -8px;
}

.new_text_time{
  color: #fdd000;
  border-bottom: 1px solid #fdd000;
  width: 80%;
  margin: 9% 10% 0% 10%;
}
.new_text_y{
  color: #ffd000;
  font-size: 16px;
}
.new_text_left a:hover .mask2 {
  opacity: 1;
}
.mask2 {
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  background: rgba(21, 26, 91, 0.75);
  opacity: 0;
  text-indent:5px;
}

.new_text_time2{
  color: #fdd000;
  position:relative;
  margin:50px auto;
  width:100px;
  height:100px;
  box-sizing:border-box;
  text-indent:15px;
  background: linear-gradient(-45deg, transparent 49.5%, #fdd000 49.5%, #fdd000 50.5%, transparent 50.5%);
}
.new_text_y2{
  color: #ffd000;
  font-size: 16px;
  position: relative;
  top: -100px;
  left: 50%;
}
@media (max-width: 767px){
  .new_text_left {
    width: 100%;
    position: relative;
  }
  .new_text_right {
    width: 100%;
    margin-top: 8%;
  }
  .solution_read3 {
    width: 40%;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# New_d(新闻详情)
--------------------------------------------------------------*/
.pro_link_box3 {
  width: 80px;
  height: 72px;
  background-color: #151a5b;
  text-align: center;
}
.new_detail_toptitle{
  color:#151a5b;
}
.new_detail_topall {
  clear: both;
  overflow: hidden;
}
.new_detail_topleft {
  float: left;
  width: 80%;
}
.new_detail_topright {
  float: right;

}
.new_detail_img {
  margin: 2% 0px;
}
.new_detail_img img{
  width: 100%;
}
.new_detail_ttt{
  color: #151a5b;
  font-weight: 600;
  margin: 4% 0px;
}
.solution_bottom_te4{
  padding-left: 80%;
}
/*--------------------------------------------------------------
# About us(关于我们)
--------------------------------------------------------------*/
.pro_banner4{
  background-image: url("../img/about/about_bg.jpg");
  height:400px;
  position: relative;
}
.about_video_all{
  background: url("../img/about/about_bg_vbg.jpg") no-repeat;
  background-size: 100% 100%;
  clear: both;
  overflow: hidden;
}
.about_video_left {
  width: 32%;
  float:left;
  margin-left: 13%;
  margin-top: 5%;
}
.about_video_right{
  float:right;
  width: 50%;
  padding: 2% 8% 2% 0px;
}
.about_video_title{
  color:#151a5b;
}
.about_video_text {
  padding: 2% 0px;
}
.inner-wrapper {
  margin: 2% 10% 0px 10%;
  overflow: hidden;
}
.service-block-item22 {
  width: 23.5%;
  border: 1px solid #dadada;
  border-bottom: 6px solid #fdd000;
  float: left;
  margin-right: 2%;
  position: relative;

}
.service-block-item22:last-child{
  margin-right: 0%;
}
.group_td1 {
  padding: 10% 0 0 0;
  text-align: center;
}
.service-item-title {
  color: #151a5b;
  font-weight: 600;
  padding: 0px 8%;
}
.group_td2 {
  height: 190px;
  overflow: hidden;
  padding: 0px 8% 8% 8%;
}
.service-block-list {
  overflow: hidden;
  clear: both;
  margin: 4% 0px;
}
.timeline_all{
  /*background-image: url("../img/about/hist_bg.jpg");*/
  background:url("../img/about/hist_bg.jpg") no-repeat;
  height: 750px;
  /*background-attachment: fixed;*/
}

.about_section-title {
  text-align: center;
  color: #fdd000;
  font-weight: bold;
  padding: 2% 0px;
}

#timeline {width:100%;height:auto;overflow: hidden;position: relative;/*background: url('../img/about/dot.png') 43px 385px repeat-x;*/}
#dates-wrap {background: url('../img/about/dot.png') 50% 26px repeat-x;background-size: 165px 14px}
#dates {width: 760px;height:100px;overflow: hidden;margin-top: -20px;}
#dates li {list-style: none;float: left;width:165px;height: 50px;font-size: 24px;text-align: center;background: url('../img/about/biggerdot.png') center bottom no-repeat;}
#dates a {line-height:148px;padding-bottom: 10px;color:#ffffff;}
#dates .selected {color: #fdd000;background-color: rgba(0, 0,0,0);box-shadow: 0px 0px 0px 0px rgba(253, 208, 0,0);font-size: 40px;}
#issues {width: 760px;height: 300px;overflow: hidden;margin-bottom:4%;padding: 0 30%;}
#issues li {width: 760px;height: 300px;list-style: none;float: left;}
.about_time_iss{ }
/*#issues .selected:last-child{margin-left:0px;}*/
#issues .selected {background-color: rgba(0, 0,0,.35);box-shadow: 0px 0px 0px 0px rgba(253, 208, 0,0);/*margin-left: 6%;*/}
#issues li h1 {color: #ffcc00;font-size: 42px;margin: 20px 0;text-shadow: #000 1px 1px 2px;}
#issues li p {
  font-size: 18px;
  font-weight: normal;
  line-height: 22px;
  color: #fff;
}

@media screen and (max-width:1680px) {
  #issues{
    padding: 0 28%;
  }
}
@media screen and (max-width:1530px) {
  #issues{
    padding: 0 23%;
  }
}

@media screen and (max-width:1280px) {
  #issues{
    padding: 0 18%;
  }
}
.issusw_text_all {
  border: 4px solid rgba(255,255,255,.3);
  margin: 2%;
  padding: 1%;
}
.section-title-wrap {
  margin-top: 4%;
}
.about_section-img {
  display: inline-block;
  width: 100%;
  margin-bottom: 4%;
}
.about_section-text1 {
  width: 21%;
  overflow: hidden;
  display: block;
  margin-left: 5%;
  float: left;
}
.about_section-textall{
  width: 80%;
  margin: 4% 10% 0px;
  overflow: hidden;
}
.about_section-text1:first-child{
  margin-left: 0px;
}
.about_where_find{
  background-color: #f2f4f6;
}
.about_where_title{
  padding-top: 4%;
}
.about_tel_all {
  color: #fccf2e;
  padding-top: 2%;
}
.about_tel_li{
  color:#04132a;
}
.about_where_mf{
  margin-top: 3%;
  margin-bottom: 0px;
}
.ad__ass{
  padding-bottom: 8%;
}
.about_tel_ul {
  margin: 0px 32.5%;
  width: 35%;
}
.about_contact{
  background-image: url(../img/about/con_bg.png);
  position: relative;
  overflow: hidden;
  clear: both;
  padding: 1%;
}
.about_contact_text{
  font-size: 26px;
  color: #081d68;
  margin: 0px;
  padding-left: 10%;
}
.about_contact_li{
  position: absolute;
  background-color: #081d68;
  color: #fff;
  padding: 5px 18px;
  right: 22%;
  top: 30%;
}
@media (max-width: 767px){
  .about_video_left {
    width: 90%;
    margin-left: 5%;
    margin-top: 8%;
    margin-right: 5%;
  }
  .about_video_right {
    width: 90%;
    padding: 2% 8% 2% 0px;
    margin: 0 auto;
  }
  .service-block-item22 {
    width: 48%;
    border: 1px solid #dadada;
    border-bottom: 6px solid #fdd000;
    float: left;
    margin-right: 2%;
  }
  .inner-wrapper {
    margin: 2% 5% 0px 5%;
    overflow: hidden;
  }
  .about_section-text1 {
    width: 100%;
    overflow: hidden;
    display: block;
    margin-left:0;
  }
  .about_tel_ul {
    margin: 0px 10%;
    width: 80%;
  }
  .about_contact_li {
    position: relative;
    background-color: #081d68;
    color: #fff;
    padding: 5px 18px;
    left: 38%;
    top: 30%;
  }
}
/*--------------------------------------------------------------
# Contact(联系我们)
--------------------------------------------------------------*/
.pro_banner04{
  background-image: url("../img/contact/contact_top_bg.jpg");
  height:400px;
  position: relative;
}
.contact_all{
  background-image: url("../img/contact/contact_bg.jpg");
  overflow: hidden;
  background-size: 110%;
}
.contact_li_all{
  width: 80%;
  background-color: #ffffff;
  margin: 0 10% 6%;
  overflow: hidden;
}
.map-pos {
  float: left;
  width: 50%;
}
.map-pos_right{
  float: right;
  width: 50%;
}
.contact_title{
  color: #151a5b;
  font-weight: 600;
  padding: 12% 12% 2% 12%;
}
.address-left {
  float: left;
}
.address-right {
  padding-left: 12%;
}
.address-row {
  padding: 2% 12% 6% 12%;
}
.contact_li2{
  color: #999999;
}
.contact_f_right{
  padding: 3.2% 12% 2% 0%;
}
.section-title-wrap2{
  width: 30%;
  text-align: right;
  padding: 2% 2% 2% 2%;
  margin-left: 55%;
}
.section-title2 {
  color: #151a5b;
  font-weight: bold;
}
.lemaon_all{
  float:right;
  width:50%;
}
@media (max-width: 767px){
  .section-title-wrap2 {
    width: 100%;
    text-align: right;
    padding: 4% 2% 2% 2%;
    margin-left:0;
  }
  .contact_li_all {
    width: 90%;
    background-color: #ffffff;
    margin: 0 5% 6%;
    overflow: hidden;
  }
  .map-pos {
    float: left;
    width: 100%;
  }
  .lemaon_all {
    float: right;
    width: 100%;
    overflow: hidden;
    clear: both;
  }
  .contact_f_right {
    padding: 3.2% 12% 2% 0px;
  }
}


/*分页*/
@media screen and (max-width:750px) {
  .tcdPageCode {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .rotateInDownLeft{
    font-size: 30px;
  }
}



/*product产品列表样式*/
.top-div{
  margin-left: 20px;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 30px;
}

.top-catname{
  display: block;
  font-size: xx-large;
  line-height: 50px;
  color: #151a5b;
}
.top-description{
  display: block;
  text-indent: 40px;
  padding: 20px 0;
  font-size: 18px;
}

.product-show {
  width: 100%;
  height: 280px;
  margin-bottom: 30px
}
.product-show>div{
  width: inherit;
  height: inherit;
}
@media screen and (min-width: 500px){
  .product-show>div:hover{
    box-shadow: 0 1px 8px rgba(0,0,0,0.15);
    transform: scale(1.02);
    transition: all 1s;
  }
  .product-show>div:hover>.product-title{color: #161FA2;}
}

.product-img{
  width: 30%;
  height: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center
}

.product-img img{
  max-width: 80%;
  max-height: 100%
}
.product-title{
  line-height: 50px;
  font-size: x-large;
  color: #232323;
  display: inline-block;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 10px 0;
}
.product-content{
  font-size: 14px;
  width: 70%;
  height: 150px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  color:#676767
}
.product-detail{
  cursor: pointer;
  margin-top: 10px;
  padding: 5px 30px;
  border: 1px solid #151fa1;
  display: inline-block;
}
.product-detail:hover{
  border: none;
  background: #fdd000;
}
@media screen and (min-width: 1600px){
  .product-content{
    max-height:130px ;
  }
  .product-title{
    line-height: normal;
  }
  .product-show{
    height: 250px;
  }
}
@media screen and (max-width: 1600px){
  .product-content{
    max-height:110px ;
  }
  .product-title{
    line-height: normal !important;
  }
}


@media screen and (max-width: 500px){
  .top-div{
    margin-left:0;
  }
  .top-catname {
    font-size: x-large;
  }
  .top-description{
    font-size: 15px;
  }
  .product-show {
    height: 350px;
  }

  .product-img{
    width: 100%;
    height: 60%;
    max-height: 110px;
    float: none;
  }
  .product-title{
    margin: 10px 0;
    font-size: large;
    max-width: 100%;
    line-height: normal !important;
  }
  .product-content{
    width: 100%;
    max-height:100px ;
  }
  .product-detail{
    text-align: center;
    display: block;
  }
}


/*悬浮窗*/
div.pos_abs
{
  position: fixed;
  bottom: 10px;
  right: 0px;
  display: flex;
  flex-direction:column;
  flex-wrap: wrap-reverse;
  z-index: 9999;

}

@media screen and (max-width: 500px){
  div.pos_abs{
    display: none;
  }
}

.pos_abs div{
  cursor: pointer;
  display: inline-block;
  background: black;
  width: 50px;
  border-bottom: 1px solid #696c70;
  height:50px;
  transition: width 0.3s;
  -moz-transition: width 0.3s; /* Firefox 4 */
  -webkit-transition: width 0.3s; /* Safari 和 Chrome */
  -o-transition: width 0.3s; /* Opera */
}

.pos_abs div:not(:last-child):hover {
  background: #ffc107;
  width:200px;
}
.pos_abs div:hover>span{
  line-height: 50px;
}
.pos_abs div img{
  max-width:100%;
  max-height:100%;
  float: left;
  padding: 9px;
}


