/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
iframe {
  width: 100%;
  height: auto;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2C2E81;
  text-decoration: none;
}

a:hover {
  color: #4749a8;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2C2E81;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #4749a8;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: #333;
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}
@media (max-width: 992px) {
  #header {
    height: 60px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  z-index: 2000;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li + li {
  margin-left: 30px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background-color: #E9B34F;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #333;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #fff;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #E9B34F;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0,0,0, 0.9);
  transition: 0.3s;
  z-index: 100;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #333;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li + li {
  margin: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #E9B34F;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #333;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #E9B34F;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;
}
#hero .carousel-content {
  background: rgba(4, 4, 4, 0.7);
  padding: 20px;
  color: #fff;
}
#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}
#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: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #4749A8;
}
#hero .btn-get-started:hover {
  background: #4749A8;
  color: #fff;
  text-decoration: none;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.6);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #4749A8;
}
@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }
  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  #hero .carousel-content p {
    font-size: 15px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner{
  transition: 0.5s;
  margin-bottom: -10px;
}

@media screen and (min-width:993px) {
  .banner{
    margin-top: 70px;
    width: 100%;
    height: 56vw;
    overflow: hidden;
    position: relative;
  }
  .banner .img_container{
    width: 100%;
    height: 56vw;
    overflow: hidden;
    position: relative;
  }
  .banner .img_container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    position:absolute;
    top: 0px;
    transition: 0.1s;
    opacity: 0.1;
  }
  .banner .img_container video {
    width: 100%;
    height: auto;
    position:absolute;
    top: 0px;
  }
  .banner .control_panel {
    position: absolute;
    bottom: 20px;
    width: 100%;
    height: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    z-index: 10;
  }

  .banner .control_panel div{
    background-color: rgba(212, 212, 212, 0.8);
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 14px;
    height: 14px;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    margin: 5px;
    user-select: none;
  }

  .banner .control_panel div.active {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
  }
   
}

@media screen and (max-width:992px) {
  .banner{
    margin-top: 60px;
    width: 100%;
    height: 56vw;
    overflow: hidden;
  }
  .banner .img_container{
    width: 100%;
    height: 56vw;
    overflow: hidden;
    position: relative;
  }
  .banner .img_container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    position:absolute;
    top: 0px;
    transition: 0.1s;
    opacity: 0.1;
  }
  .banner .img_container video {
    width: 100%;
    height: auto;
    position:absolute;
    top: 0px;
  }
  .banner .control_panel {
    position: absolute;
    top: calc(56vw + 30px);
    width: 100%;
    height: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    z-index: 10;
  }

  .banner .control_panel div{
    background-color: rgba(212, 212, 212, 0.8);
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 14px;
    height: 14px;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    margin: 5px;
    user-select: none;
  }

  .banner .control_panel div.active {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
  }
   
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.about-us .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}
.about-us .content ul {
  list-style: none;
  padding: 0;
}
.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}
.about-us .content ul li strong{
  font-size: 20px;
}
.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #2C2E81;
}
.about-us .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# about page
--------------------------------------------------------------*/
@media screen and (min-width:993px) {
  .han{
    width: 60%;
    margin-left:20%;
  }

}
.title {
  text-align: left;
}
.han h2{
  font-weight: 700;
  font-size: 32px;
  line-height: 60px;
  margin-bottom: 20px;
}
.han p{
  font-size: 20px;
  text-indent: 2em;
}

.han img .big {
  width: 100%;
  height: auto;
}
.han li{
  font-size: 20px;
  list-style: none;
}
.han #certs img {
  width: 100%;
  height: auto;
}

@media screen and (max-width:992px) {
  .han{
    width: 90%;
    margin-left:5%;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #F2F3FB;
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #141838;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Text
--------------------------------------------------------------*/
@media screen and (min-width:1201px){
  .textBox{
    margin-top: 70px;
    /* padding-left: 15%;
    padding-right: 15%; */
    text-align: center;
  }
  .textBox img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width:1200px){
  .textBox{
    margin-top: 70px;
    padding-left: 0%;
    padding-right: 0%;
    text-align: center;
  }
  .textBox img {
    width: 100%;
    height: auto;
  }
}

.textBox video.intext{
  width: 100%;
  height: auto;
}

.textBox video.bottom{
  width: 80%;
  height: auto;
}


.textBox h2{
  font-size: 44px;
  font-weight:bold;
}
.textBox p{
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 100;
  color: #555;
}



/*--------------------------------------------------------------
# Trial
--------------------------------------------------------------*/
.trial {
  text-align: center;
  /* padding-top: 60px;
  padding-bottom: 120px;
  width: 100%; */
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 15%;
  padding-left: 15%;
}

.trial.bg{
  background-image: linear-gradient(to right,#D6D8ED,#ACB1DB);
}

.trial h2{
  font-size: 36px;
  font-weight:bold;
  color: #141838;
  margin-top: 20px;
  margin-bottom: 20px;
}
.trial h3{
  font-size: 28px;
  font-weight:normal;
  color: #141838;
  margin-top: 20px;
  margin-bottom: 20px;
}

.trial p{
  font-size: 14px;
  font-weight:100;
  color: #444;
  margin-top: 10px;
  margin-bottom: 20px;
}

@media screen and (min-width:1201px) {
  .trialBox{
    margin-left: 25%;
    width: 50%;
  }
}

@media screen and (max-width:1200px) {
  .trialBox{
    margin-left: 10%;
    width: 80%;
  }
}

.trialBox div{
  width: 50%;
  text-align: center;
  float: left;
}

@media (min-width:993px) {
  .trial button{
    width: 40%;
    height: 50px;
    color: #4749a8;
    background: none;
    border: 2px solid #4749a8;
    padding: 10px 24px;
    margin-top: 20px;
    transition: 0.4s;
    border-radius: 4px;
  }
}

@media (max-width:992px) {
  .trial button{
    width: calc(100px + 5em);
    height: 50px;
    color: #4749a8;
    background: none;
    border: 2px solid #4749a8;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 20px;
    transition: 0.4s;
    border-radius: 4px;
  }
}

.trial img{
  width: 64px;
  height: auto;
}

.trial button:hover {
  background: rgba(255,255,255,0.3);
}

/*--------------------------------------------------------------
# Demo
--------------------------------------------------------------*/

.demo {
  width: 100%;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F2F3FB;
  text-align: center;
}

@media screen and (min-width:1201px) {
  .demo .containerz {
    margin-left: 20%;
    width: 60%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content:center;
  }
}

@media screen and (max-width:1200px) {
  .demo .containerz {
    margin-left: 10%;
    width: 80%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content:center;
  }
}

.demo h2{
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #141838;
}

.demo .outer1 {
  width: 350px;
  height: auto;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 30px;
}

.demo .outer2 {
  width: 350px;
  height: auto;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 70px;
}

.demo .inner {
  width: 300px;
  height: auto;
  padding: 20px;
  background-color: rgba(255,255,255,0.8);
  box-shadow: 0px 0px 16px rgb(0 0 0 / 40%);
  border-radius: 10px;
  text-align: left;
}

.demo .inner h2 {
  font-size: 24px;
  font-weight: 300;
}

.demo .inner p {
  font-size: 15px;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.ep {
  background-color: #F2F3FB;
}

.ep h3 {
  font-weight: 400;
  font-size: 34px;
  color: #141838;
}
.ep .icon-box {
  margin-top: 44px;
}
.ep .icon-box i {
  font-size: 48px;
  float: left;
  color: #2C2E81;
}
.ep .icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-left: 60px;
  color: #141838;
}
.ep .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.ep button{
  margin-top: 30px;
  width: 40%;
  background: #2C2E81;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.ep button:hover {
  background: #4749A8;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3fbbc0;
}
.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #3fbbc0;
  float: left;
}
.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #555555;
  margin-left: 50px;
}
.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7b7b7b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: #3fbbc0;
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}
.doctors .member .member-img {
  position: relative;
  overflow: hidden;
}
.doctors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctors .member .social a {
  transition: color 0.3s;
  color: #555555;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.doctors .member .social a i {
  line-height: 0;
}
.doctors .member .social a:hover {
  color: #3fbbc0;
}
.doctors .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.doctors .member .member-info {
  padding: 25px 15px;
}
.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555555;
}
.doctors .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.doctors .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.doctors .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}
.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3fbbc0;
}
.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3fbbc0;
}
.gallery .swiper-slide-active {
  text-align: center;
}
@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }
  .gallery .swiper-slide-active {
    border: 6px solid #3fbbc0;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}



/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  padding: 50px 0 40px 0;
  background-color: #fff;
}

.steps .text-center{
  text-align: center;
}

.steps h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #141838;
}

.steps .row {
  overflow: hidden;
}
.steps .content-item {
  padding: 40px;
  border-left: 1px solid #d4e9e6;
  border-bottom: 1px solid #d4e9e6;
  margin: -1px;
}
.steps .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #2C2E81;
}
.steps .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
  color: #141838;
}
.steps .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .steps .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #2C2E81;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
/* .portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
} */
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* .portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
} */
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4749a8;
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

.portfolio .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.portfolio .entry .entry-img {
  /* max-height: 350px; */
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.portfolio .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.portfolio .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}
.portfolio .entry .entry-title a:hover {
  color: #2C2E81;
}
.portfolio .entry .entry-content p {
  line-height: 24px;
}
.portfolio .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.portfolio .entry .entry-content .read-more a {
  display: inline-block;
  background: #2C2E81;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.portfolio .entry .entry-content .read-more a:hover {
  background: #4749A8;
}
.portfolio .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.portfolio .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.portfolio .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.portfolio .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2C2E81;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4749a8;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}
.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}
.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}
.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}
.team .member .social a:hover {
  color: #4749a8;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}
.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}
.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #97cac2;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #1bac91;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.contact .info i {
  font-size: 20px;
  color: #1bac91;
  float: left;
  width: 44px;
  height: 44px;
  background: #e1f0ee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #141838;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #43857a;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #1bac91;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #1bac91;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.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 {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #1bac91;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #22d8b6;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #333;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #333;
  border-bottom: 1px solid #333;
  padding: 50px 0 0 0;
}
#footer .footer-top .footer-info {
  padding-left: 10%;
  padding-right: 10%;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .footer-info img {
  width: 100px;
  height: auto;
  margin-top: 20px;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1c3733;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #E9B34F;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #E9B34F;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #E9B34F;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #E9B34F;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #14806c;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
/* @media screen and (max-width:992px) {
  .blog {
    padding: 40px 0 20px 0;
    margin-top: 60px;
  }
}

@media screen and (min-width:993px) {
  .blog {
    padding: 40px 0 20px 0;
    margin-top: 70px;
  }
} */

.blog {
  padding: 40px 0 20px 0;
}

.blog h1{
  font-size: 44px;
  margin: 20px;
  font-weight: 1000;
}


.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
  /* max-height: 350px; */
  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: #111;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #2C2E81;
}
.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: #2C2E81;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #4749A8;
}
.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: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .empty{
  width: 100%;
  height: 200px;
  text-align: center;
}

.blog .empty p{
  margin-top: 100px;
}

/*--------------------------------------------------------------
# Employ
--------------------------------------------------------------*/
.employ{
  padding-top: 30px;
  padding-bottom: 30px;
  transition: 0.5s;
}

.employ .bold{
  font-weight: 700;
}

.employ .slim{
  font-weight: 200;
}

.employ li{
  list-style: none;
  font-size: 20px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (min-width:993px){
  .employ{
    width: 80%;
    margin-left: 10%;
    margin-top: 70px;
  }
}

@media screen and (max-width:992px){
  .employ{
    width: 90%;
    margin-left: 5%;
    margin-top: 60px;
  }
}

.employ h2{
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.employ h3 {
  font-size: 24px;
  color: black;
}

.employ h4 {
  font-size: 20px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 10px;
}

.employ p {
  font-size: 20px;
  margin-left: 1.5em;
}


.employ .title{
  height: auto;
  background-image: linear-gradient(to right,#FFC500,#FFF);
  padding-top: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.employ .box{
  border: 2px solid #FFC500;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Contact Float
--------------------------------------------------------------*/
@media screen and (min-width:993px) {
  .float{
    width: 210px;
    height: 40px;
    text-align: center;
    background-color: white;
    position: fixed;
    bottom:15px;
    right: 70px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .float .left{
    width: 40px;
    height: 40px;
    background-color: #2C2E81;
    float: left;
  }
  .float .right{
    width: 170px;
    height: 40px;
    background-color: white;
    float: left;
  }
  
  /*.float .top p{*/
  /*  padding-top: 5px;*/
  /*  font-size: 18px;*/
  /*  font-weight: 400;*/
  /*  color: #fff;*/
  /*  user-select: none;*/
  /*}*/
  
  .float img{
    height: 40px;
    width: 40px;
    margin-top: 0px;
  }
  
  .float .num{
    margin-top: 5px;
    font-size: 20px;
    color: #2C2E81;
  }
}

/*@media screen and (min-width:993px) {*/
  .float{
    width: 210px;
    height: 40px;
    text-align: center;
    background-color: white;
    position: fixed;
    bottom:15px;
    right: 70px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border-radius: 10px;
    overflow: hidden;
  }

  .float .left{
    width: 40px;
    height: 40px;
    background-color: #2C2E81;
    float: left;
  }
  .float .right{
    width: 170px;
    height: 40px;
    background-color: white;
    float: left;
  }

  /*.float .top p{*/
  /*  padding-top: 5px;*/
  /*  font-size: 18px;*/
  /*  font-weight: 400;*/
  /*  color: #fff;*/
  /*  user-select: none;*/
  /*}*/

  .float img{
    height: 40px;
    width: 40px;
    margin-top: 0px;
  }

  .float .num{
    margin-top: 5px;
    font-size: 20px;
    color: #2C2E81;
  }
/*}*/

/*@media screen and (max-width:992px) {*/
/*  .float{*/
/*    width: 80px;*/
/*    height: 120px;*/
/*    text-align: center;*/
/*    background-color: white;*/
/*    position: fixed;*/
/*    bottom: 60px;*/
/*    right: 0px;*/
/*    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
/*  }*/
/*  */
/*  .float .top{*/
/*    width: 100%;*/
/*    height: 25px;*/
/*    background-color: #2C2E81;*/
/*  }*/
/*  */
/*  .float .top p{*/
/*    padding-top: 2px;*/
/*    font-size: 14px;*/
/*    font-weight: 400;*/
/*    color: #fff;*/
/*    user-select: none;*/
/*  }*/
/*  */
/*  .float img{*/
/*    height: 35px;*/
/*    width: 35px;*/
/*    margin-top: 10px;*/
/*  }*/
/*  */
/*  .float .num{*/
/*    margin-top: 6px;*/
/*    font-size: 12px;*/
/*    color: #333;*/
/*  }*/
/*}*/


.li-lingxing{ padding-left: 1.5em;
 background: url('data:image/svg+xml;utf8,%3Csvg%20t%3D%221670335120872%22%20class%3D%22icon%22%20viewBox%3D%220%200%201024%201024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20p-id%3D%228847%22%20width%3D%22200%22%20height%3D%22200%22%3E%3Cpath%20d%3D%22M512%2069.479l442.498%20442.498-442.498%20442.498-442.498-442.498%20442.498-442.498z%22%20p-id%3D%228848%22%20fill%3D%22%235a5b5c%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left center / 1em auto no-repeat ;
}
.li-lingxing-white{ padding-left: 1.5em;
 background: url('data:image/svg+xml;utf8,%3Csvg%20t%3D%221670335120872%22%20class%3D%22icon%22%20viewBox%3D%220%200%201024%201024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20p-id%3D%228847%22%20width%3D%22200%22%20height%3D%22200%22%3E%3Cpath%20d%3D%22M512%2069.479l442.498%20442.498-442.498%20442.498-442.498-442.498%20442.498-442.498z%22%20p-id%3D%228848%22%20fill%3D%22%23ffffff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left center / 1em auto no-repeat ;
}
.li-gear{ padding-left: 1.5em;
 background: url('/assets/img/gear2.png') left center / 1em auto no-repeat ;
}
.li-stack{ padding-left: 1.5em;
 background: url('/assets/pdf/stack.png') left center / 1em auto no-repeat ;
}
.title-alt{
  font-size: 180%;
}
.li-lg{ padding-top: 1.5em; padding-bottom: 1.5em; }
.li-md{ padding-top: 1em; padding-bottom: 1em; }
.li-sm{ padding-top: .5em; padding-bottom: .5em; }
.label-choco{background: #403225; padding: .2em 2em; color: #fff; }

.only_m{display:none}
.only_m_cell{display:none}
.only_m_row{display:none}
.only_m_dib{display:none}
.only_m_inline{display:none}
@media (max-width:767px){
.only_pc{display:none}
.only_m{display:block}
.only_m_cell{display:table-cell}
.only_m_row{display:table-row}
.only_m_dib{display:inline-block}
.only_m_inline{display:inline}
}

.letter-sm {
  letter-spacing: .5em;
}

.ul-magic{border-left: 2px solid #777;}
.ul-magic .ul-magic-title{ position: relative;
  line-height: 1em;
padding-left: 1em;
left: -6px;
border-left: 11px solid #303877;
font-size: 250%;
margin-bottom: .5em;
}
.ul-magic li{padding-left: 2em;}
.prod-title{
  height: 120px;
  line-height: 120px;
  margin-bottom: 50px;
  color: #3F3F3F;
  font-size: 56px;
  font-weight: 500;
  background:linear-gradient(90deg,#5B83CB,#fff 30%,#fff 60%, #5B83CB);/*0deg表示从下到上，90deg表示从左到右，180deg表示从上到下*/
}

.breadcrumb {color: #333;}
.breadcrumb a {color: #333;}
.breadcrumb a:hover {color: #2c2e83;}

@media (max-width:767px){
  .ul-magic .ul-magic-title{
    font-size: 150%;
  }
  .prod-title{
    font-size: 1.5rem;
  }
}